Click here to Skip to main content
15,922,007 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: INI file processing from memory Pin
Joe Woodbury13-Jul-05 8:24
professionalJoe Woodbury13-Jul-05 8:24 
GeneralPainting Several Images - not refreshing screen Pin
seq-12-Jul-05 1:41
seq-12-Jul-05 1:41 
GeneralRe: Painting Several Images - not refreshing screen Pin
Jose Lamas Rios12-Jul-05 2:26
Jose Lamas Rios12-Jul-05 2:26 
GeneralRe: Painting Several Images - not refreshing screen Pin
seq-12-Jul-05 10:36
seq-12-Jul-05 10:36 
GeneralRe: Painting Several Images - not refreshing screen Pin
Blake Miller12-Jul-05 5:01
Blake Miller12-Jul-05 5:01 
GeneralShowing properties of MULTIPLE files Pin
tabor2512-Jul-05 1:12
tabor2512-Jul-05 1:12 
GeneralRe: Showing properties of MULTIPLE files Pin
David Crow12-Jul-05 3:05
David Crow12-Jul-05 3:05 
GeneralRe: Showing properties of MULTIPLE files Pin
tabor2512-Jul-05 10:03
tabor2512-Jul-05 10:03 
GeneralRe: Showing properties of MULTIPLE files Pin
David Crow14-Jul-05 4:06
David Crow14-Jul-05 4:06 
GeneraliSubItem always = 0 on many ListCtrl Events Pin
Maverick12-Jul-05 0:41
Maverick12-Jul-05 0:41 
GeneralRe: iSubItem always = 0 on many ListCtrl Events Pin
Andrew Kirillov12-Jul-05 1:32
Andrew Kirillov12-Jul-05 1:32 
Generalabout console window positioning Pin
prat7812-Jul-05 0:39
prat7812-Jul-05 0:39 
QuestionHow to capture the image from mediaplayer? Pin
rushing11-Jul-05 23:20
rushing11-Jul-05 23:20 
GeneralWriting Version Info Pin
Mepho11-Jul-05 23:02
Mepho11-Jul-05 23:02 
GeneralRe: Writing Version Info Pin
munawar196812-Jul-05 0:32
munawar196812-Jul-05 0:32 
GeneralRe: Writing Version Info Pin
Mepho12-Jul-05 20:39
Mepho12-Jul-05 20:39 
GeneralThrowing exceptions from COM components Pin
Uwe Keim11-Jul-05 22:27
sitebuilderUwe Keim11-Jul-05 22:27 
GeneralRe: Throwing exceptions from COM components Pin
Tim Smith12-Jul-05 3:53
Tim Smith12-Jul-05 3:53 
GeneralContinous Graph--Scrolling-----HEEELP Pin
Raza568011-Jul-05 22:05
Raza568011-Jul-05 22:05 
GeneralRe: Continous Graph--Scrolling-----HEEELP Pin
Cedric Moonen11-Jul-05 22:54
Cedric Moonen11-Jul-05 22:54 
GeneralPlease help me! Pin
dSolariuM11-Jul-05 21:04
dSolariuM11-Jul-05 21:04 
GeneralDifference b/w #define and const int Pin
wasife11-Jul-05 20:55
wasife11-Jul-05 20:55 
GeneralRe: Difference b/w #define and const int Pin
Cedric Moonen11-Jul-05 23:02
Cedric Moonen11-Jul-05 23:02 
A #define is just a preprocessor directive. Before the compilation, every lines in the code that match the 'first part' of the define will be 'replaced' by the 'second part' of the define. Thus there is no variable at all that is used for the define.

This code:

#define FIVE  5<br />
<br />
int Test = FIVE;


is exactly the same as this line:

int Test = 5;
GeneralRe: Difference b/w #define and const int Pin
toxcct12-Jul-05 1:26
toxcct12-Jul-05 1:26 
GeneralRe: Difference b/w #define and const int Pin
Bob Stanneveld12-Jul-05 3:16
Bob Stanneveld12-Jul-05 3:16 

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.