Click here to Skip to main content
15,915,864 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
QuestionAdd Member Function-VC ++ 6.0 bug? Pin
7stud12-Apr-03 16:46
7stud12-Apr-03 16:46 
Generalnot getting messages Pin
cgreathouse12-Apr-03 14:50
cgreathouse12-Apr-03 14:50 
GeneralRe: not getting messages Pin
Miszou14-Apr-03 6:48
Miszou14-Apr-03 6:48 
QuestionSending a CString to an edit control? Pin
stf12-Apr-03 13:43
stf12-Apr-03 13:43 
AnswerRe: Sending a CString to an edit control? Pin
Ravi Bhavnani12-Apr-03 14:03
professionalRavi Bhavnani12-Apr-03 14:03 
GeneralRe: Sending a CString to an edit control? Pin
stf12-Apr-03 16:10
stf12-Apr-03 16:10 
Generaldynamic memory allocation Pin
SHaroz12-Apr-03 12:57
SHaroz12-Apr-03 12:57 
GeneralRe: dynamic memory allocation Pin
Dominik Reichl13-Apr-03 1:12
Dominik Reichl13-Apr-03 1:12 
Unfortunately allocating multidimensional arrays in C++ is not that easy as in your example Wink | ;)

See these articles:

http://www.geocities.com/SPUR4444/prog/multidimensional.html[^]

http://cpptips.hyperformix.com/cpptips/alloc_multi_dim[^]


SHaroz wrote:
int i = 2;
int var1 = ++i; // 2
int var2 = ++i; // 3
int var3 = ++i; // 4
MyClass ***table;


The comments are wrong. You are using ++ before the variable what means that the variable is incremented before it is used.

So these comments would be correct:
int i = 2;
int var1 = ++i; // 3
int var2 = ++i; // 4
int var3 = ++i; // 5
MyClass ***table;


Big Grin | :-D
-Dominik



_outp(0x64, 0xAD);
and
__asm mov al, 0xAD __asm out 0x64, al
do the same... but what do they do?? Wink | ;)

GeneralRe: dynamic memory allocation Pin
SHaroz13-Apr-03 7:56
SHaroz13-Apr-03 7:56 
GeneralLoading partial bitmap Pin
georgiek5012-Apr-03 11:02
georgiek5012-Apr-03 11:02 
GeneralUNICODE build - but something's linking incorrectly Pin
Mark Otway12-Apr-03 10:52
Mark Otway12-Apr-03 10:52 
Questionhow to return HRESULT function in MFC ActiveX Pin
Obi-Wan-Kenobi12-Apr-03 10:06
Obi-Wan-Kenobi12-Apr-03 10:06 
GeneralUse defined message Pin
Member 25731512-Apr-03 4:02
Member 25731512-Apr-03 4:02 
GeneralRe: Use defined message Pin
valikac12-Apr-03 5:55
valikac12-Apr-03 5:55 
QuestionWhat are Crystal Reports?? Pin
IrishSonic12-Apr-03 3:58
IrishSonic12-Apr-03 3:58 
AnswerRe: What are Crystal Reports?? Pin
Michael P Butler12-Apr-03 4:02
Michael P Butler12-Apr-03 4:02 
General2 quick questions about ShellExecuteEx() and CreateProcess().. Pin
IrishSonic12-Apr-03 3:56
IrishSonic12-Apr-03 3:56 
GeneralRe: 2 quick questions about ShellExecuteEx() and CreateProcess().. Pin
valikac12-Apr-03 5:56
valikac12-Apr-03 5:56 
GeneralRe: 2 quick questions about ShellExecuteEx() and CreateProcess().. Pin
Michael Dunn12-Apr-03 6:25
sitebuilderMichael Dunn12-Apr-03 6:25 
GeneralThanks, worked fine.. Pin
IrishSonic12-Apr-03 6:52
IrishSonic12-Apr-03 6:52 
Generaldialog's CreateEx Pin
Member 25731512-Apr-03 3:38
Member 25731512-Apr-03 3:38 
GeneralRe: dialog's CreateEx Pin
Chris Losinger13-Apr-03 10:44
professionalChris Losinger13-Apr-03 10:44 
Generaldialog-based windows programing Pin
karanba12-Apr-03 3:37
karanba12-Apr-03 3:37 
GeneralRe: dialog-based windows programing Pin
Toni7813-Apr-03 15:39
Toni7813-Apr-03 15:39 
GeneralFirst screensaver Pin
karanba12-Apr-03 3:28
karanba12-Apr-03 3:28 

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.