Click here to Skip to main content
15,901,284 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: qualified name and unqualified name Pin
George_George6-Mar-08 21:21
George_George6-Mar-08 21:21 
GeneralRe: qualified name and unqualified name Pin
George_George6-Mar-08 19:15
George_George6-Mar-08 19:15 
GeneralRe: qualified name and unqualified name Pin
Maxwell Chen6-Mar-08 20:18
Maxwell Chen6-Mar-08 20:18 
GeneralRe: qualified name and unqualified name Pin
George_George6-Mar-08 21:32
George_George6-Mar-08 21:32 
Questionwhat is cl_login? Pin
Nikesh Jagtap6-Mar-08 18:01
Nikesh Jagtap6-Mar-08 18:01 
AnswerRe: what is cl_login? Pin
Mark Salsbery6-Mar-08 18:16
Mark Salsbery6-Mar-08 18:16 
AnswerRe: what is cl_login? [modified] Pin
toxcct6-Mar-08 22:27
toxcct6-Mar-08 22:27 
GeneralA zillion LNK4204 warnings... Pin
dontknowitall6-Mar-08 17:33
dontknowitall6-Mar-08 17:33 
QuestionRe: A zillion LNK4204 warnings... Pin
Rajkumar R6-Mar-08 17:45
Rajkumar R6-Mar-08 17:45 
GeneralRe: A zillion LNK4204 warnings... Pin
dontknowitall6-Mar-08 17:59
dontknowitall6-Mar-08 17:59 
GeneralAdding an exe into resource in MFC Pin
Vikas K.6-Mar-08 17:13
Vikas K.6-Mar-08 17:13 
General[Message Deleted] Pin
sheshidar6-Mar-08 17:41
sheshidar6-Mar-08 17:41 
GeneralRe: Adding an exe into resource in MFC Pin
toxcct6-Mar-08 22:30
toxcct6-Mar-08 22:30 
GeneralRe: Adding an exe into resource in MFC Pin
Hamid_RT9-Mar-08 1:03
Hamid_RT9-Mar-08 1:03 
GeneralRe: Adding an exe into resource in MFC Pin
Ernest Laurentin6-Mar-08 17:42
Ernest Laurentin6-Mar-08 17:42 
GeneralRe: Adding an exe into resource in MFC Pin
Hamid_RT9-Mar-08 1:04
Hamid_RT9-Mar-08 1:04 
GeneralSetRedraw(TRUE) causes a hide window to show Pin
followait6-Mar-08 17:05
followait6-Mar-08 17:05 
GeneralRe: SetRedraw(TRUE) causes a hide window to show Pin
Mark Salsbery6-Mar-08 17:54
Mark Salsbery6-Mar-08 17:54 
QuestionWhen to use Dialog for app and when to use normal Window ? Pin
Defenestration6-Mar-08 13:46
Defenestration6-Mar-08 13:46 
AnswerRe: When to use Dialog for app and when to use normal Window ? Pin
Mark Salsbery6-Mar-08 14:56
Mark Salsbery6-Mar-08 14:56 
AnswerRe: When to use Dialog for app and when to use normal Window ? Pin
JudyL_MD7-Mar-08 1:54
JudyL_MD7-Mar-08 1:54 
QuestionHow does RtlpNumberOf work? Pin
Glenn Sandoval6-Mar-08 12:29
Glenn Sandoval6-Mar-08 12:29 
GeneralRe: How does RtlpNumberOf work? Pin
Randor 6-Mar-08 12:48
professional Randor 6-Mar-08 12:48 
It works because it knows the size of T at compile time.
The compiler generates a function at compile time which does:

#define RTL_NUMBER_OF_V1(A) (sizeof(A)/sizeof((A)[0]))

So if you call the RTL_NUMBER_OF() macro on objects of several different types, it generates a seperate function for each type.

Best Wishes,
-David Delaune
GeneralRe: How does RtlpNumberOf work? Pin
Mark Salsbery6-Mar-08 12:52
Mark Salsbery6-Mar-08 12:52 
GeneralRe: How does RtlpNumberOf work? Pin
Mark Salsbery6-Mar-08 13:14
Mark Salsbery6-Mar-08 13:14 

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.