Click here to Skip to main content
15,886,362 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: Please help me regarding :LoadCursorFromFile with .ani file Pin
ptr_Electron26-May-09 1:09
ptr_Electron26-May-09 1:09 
GeneralRe: Please help me regarding :LoadCursorFromFile with .ani file Pin
Stuart Dootson26-May-09 2:24
professionalStuart Dootson26-May-09 2:24 
GeneralRe: Please help me regarding :LoadCursorFromFile with .ani file Pin
ptr_Electron26-May-09 2:26
ptr_Electron26-May-09 2:26 
GeneralRe: Please help me regarding :LoadCursorFromFile with .ani file Pin
ptr_Electron26-May-09 21:46
ptr_Electron26-May-09 21:46 
GeneralRe: Please help me regarding :LoadCursorFromFile with .ani file Pin
Stuart Dootson26-May-09 21:49
professionalStuart Dootson26-May-09 21:49 
QuestionRe: Please help me regarding :LoadCursorFromFile with .ani file Pin
David Crow26-May-09 3:09
David Crow26-May-09 3:09 
QuestionOperator [] Overloading Pin
Mikey_H25-May-09 22:19
Mikey_H25-May-09 22:19 
AnswerRe: Operator [] Overloading Pin
CPallini25-May-09 22:43
mveCPallini25-May-09 22:43 
Mikey_H wrote:

#include <string>
using std::string;

int x = 0;
int y = 1;

string = "Foo";

array = new Array<AssocArray<int>>();

// Error C2679
array[x][str] = y;


does it stands for:
int x = 0;
int y = 1;

string str = "Foo";
Array<AssocArray<int>> * array;

array = new Array<AssocArray<int>>();
(*array)[x][str] = y;
?


Mikey_H wrote:
template <class ttype="">
TType& AssocArray<TType>::operator [](string s)
{
return new TType;
}


does it stands for
TType& AssocArray<TType>::operator [](string s)
{
  return *(new TType);
}
?


Have you C# (or Java) roots?

Smile | :)

If the Lord God Almighty had consulted me before embarking upon the Creation, I would have recommended something simpler.
-- Alfonso the Wise, 13th Century King of Castile.

This is going on my arrogant assumptions. You may have a superb reason why I'm completely wrong.
-- Iain Clarke

[My articles]

GeneralRe: Operator [] Overloading Pin
Mikey_H25-May-09 23:19
Mikey_H25-May-09 23:19 
AnswerRe: Operator [] Overloading Pin
Stuart Dootson25-May-09 22:49
professionalStuart Dootson25-May-09 22:49 
GeneralRe: Operator [] Overloading [modified] Pin
Mikey_H25-May-09 23:17
Mikey_H25-May-09 23:17 
GeneralRe: Operator [] Overloading Pin
Stuart Dootson25-May-09 23:35
professionalStuart Dootson25-May-09 23:35 
GeneralRe: Operator [] Overloading Pin
Mikey_H26-May-09 0:35
Mikey_H26-May-09 0:35 
AnswerRe: Operator [] Overloading Pin
Cedric Moonen25-May-09 23:31
Cedric Moonen25-May-09 23:31 
GeneralRe: Operator [] Overloading Pin
Mikey_H26-May-09 0:36
Mikey_H26-May-09 0:36 
QuestionDoes anyone know about "MSUIM.Msg.Private"? Pin
fitatc25-May-09 22:00
fitatc25-May-09 22:00 
QuestionVC++ 6.0 + Processor Pack + Service Pack 5 cause stack overflow ? Pin
felixfan81925-May-09 21:57
felixfan81925-May-09 21:57 
QuestionHow to handle time delays Pin
V K 225-May-09 20:32
V K 225-May-09 20:32 
AnswerRe: How to handle time delays Pin
CPallini25-May-09 20:45
mveCPallini25-May-09 20:45 
AnswerRe: How to handle time delays Pin
Rajesh R Subramanian25-May-09 20:53
professionalRajesh R Subramanian25-May-09 20:53 
GeneralRe: How to handle time delays Pin
V K 225-May-09 20:54
V K 225-May-09 20:54 
GeneralRe: How to handle time delays Pin
CPallini25-May-09 20:59
mveCPallini25-May-09 20:59 
QuestionHelp on dynamic memory allocation and deallocation Pin
pani6825-May-09 20:08
pani6825-May-09 20:08 
AnswerRe: Help on dynamic memory allocation and deallocation Pin
«_Superman_»25-May-09 20:22
professional«_Superman_»25-May-09 20:22 
AnswerRe: Help on dynamic memory allocation and deallocation Pin
Cedric Moonen25-May-09 20:29
Cedric Moonen25-May-09 20:29 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.