Click here to Skip to main content
15,900,724 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
AnswerRe: Read exe File? Pin
Nibu babu thomas6-Nov-06 0:18
Nibu babu thomas6-Nov-06 0:18 
GeneralRe: Read exe File? Pin
bosfan6-Nov-06 0:28
bosfan6-Nov-06 0:28 
GeneralRe: Read exe File? Pin
David Crow6-Nov-06 4:25
David Crow6-Nov-06 4:25 
GeneralRe: Read exe File? Pin
bosfan6-Nov-06 5:45
bosfan6-Nov-06 5:45 
QuestionRe: Read exe File? Pin
David Crow6-Nov-06 5:49
David Crow6-Nov-06 5:49 
QuestionAdd image to button Pin
priyank_ldce6-Nov-06 0:11
priyank_ldce6-Nov-06 0:11 
AnswerRe: Add image to button Pin
Nibu babu thomas6-Nov-06 0:15
Nibu babu thomas6-Nov-06 0:15 
AnswerRe: Add image to button Pin
Hamid_RT6-Nov-06 0:21
Hamid_RT6-Nov-06 0:21 
QuestionEvent in a control ActiveX Pin
zizzzz5-Nov-06 23:49
zizzzz5-Nov-06 23:49 
QuestionHow to get IE version Pin
rrrado5-Nov-06 22:36
rrrado5-Nov-06 22:36 
AnswerRe: How to get IE version Pin
Nibu babu thomas5-Nov-06 23:41
Nibu babu thomas5-Nov-06 23:41 
GeneralRe: How to get IE version Pin
rrrado6-Nov-06 1:25
rrrado6-Nov-06 1:25 
QuestionRe: How to get IE version Pin
David Crow6-Nov-06 4:23
David Crow6-Nov-06 4:23 
AnswerRe: How to get IE version Pin
rrrado6-Nov-06 6:07
rrrado6-Nov-06 6:07 
QuestionRelease version with shared Dll not running Pin
NorGUI5-Nov-06 22:21
NorGUI5-Nov-06 22:21 
AnswerRe: Release version with shared Dll not running Pin
Cedric Moonen5-Nov-06 22:35
Cedric Moonen5-Nov-06 22:35 
Questionhow to use CPerftimer class in Dialog-based MFC application Pin
daemone5-Nov-06 22:08
daemone5-Nov-06 22:08 
AnswerRe: how to use CPerftimer class in Dialog-based MFC application Pin
Rage5-Nov-06 22:51
professionalRage5-Nov-06 22:51 
GeneralRe: how to use CPerftimer class in Dialog-based MFC application Pin
daemone6-Nov-06 3:15
daemone6-Nov-06 3:15 
AnswerRe: how to use CPerftimer class in Dialog-based MFC application Pin
Hamid_RT5-Nov-06 23:59
Hamid_RT5-Nov-06 23:59 
Questionusing const Pin
minkowski5-Nov-06 22:08
minkowski5-Nov-06 22:08 
AnswerRe: using const Pin
Cedric Moonen5-Nov-06 22:32
Cedric Moonen5-Nov-06 22:32 
This is not because of the const keyword but because the two types are unrelated: char* i is a pointer to a char array and char* letter[] is an array of pointer to char arrays. So you one is a simple pointer and this other one is an array of pointer. You should do something like this: const char* i = letters[0]; instead


Cédric Moonen
Software developer

Charting control [Updated - v1.1]

GeneralRe: using const Pin
minkowski5-Nov-06 22:37
minkowski5-Nov-06 22:37 
GeneralRe: using const Pin
Rage5-Nov-06 22:45
professionalRage5-Nov-06 22:45 
GeneralRe: using const Pin
minkowski6-Nov-06 3:02
minkowski6-Nov-06 3:02 

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.