Click here to Skip to main content
16,011,680 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: Using CxImageLib Pin
Kiran Pinjala7-Aug-06 2:47
Kiran Pinjala7-Aug-06 2:47 
GeneralRe: Using CxImageLib Pin
Viorel.7-Aug-06 3:12
Viorel.7-Aug-06 3:12 
QuestionHow to launch Microsoft Word Pin
Wim Engberts7-Aug-06 0:03
Wim Engberts7-Aug-06 0:03 
AnswerRe: How to launch Microsoft Word Pin
Rage7-Aug-06 0:24
professionalRage7-Aug-06 0:24 
AnswerRe: How to launch Microsoft Word Pin
Hamid_RT7-Aug-06 2:29
Hamid_RT7-Aug-06 2:29 
AnswerRe: How to launch Microsoft Word Pin
georgekjolly7-Aug-06 20:02
georgekjolly7-Aug-06 20:02 
QuestionA Question about void! Pin
Abhishek Shekhar6-Aug-06 23:48
Abhishek Shekhar6-Aug-06 23:48 
AnswerRe: A Question about void! Pin
Programm3r6-Aug-06 23:59
Programm3r6-Aug-06 23:59 
Pointers can also be declared as void. They can't be dereferenced without explicit casting. This is because the compiler can't determine the size of the object the pointer points to. For example,

int x;
float f;
void *p = &x; // p points to x
*(int*)p = 2;
p = &r; // p points to r
*(float*)p = 1.1;

Answer your question?

Regards

Programm3r

AnswerRe: A Question about void! Pin
Zac Howland7-Aug-06 5:27
Zac Howland7-Aug-06 5:27 
QuestionNothing on codeproject I NEED HELP ! Pin
Bravoone_20066-Aug-06 23:30
Bravoone_20066-Aug-06 23:30 
AnswerRe: Nothing on codeproject I NEED HELP ! Pin
Bravoone_20066-Aug-06 23:46
Bravoone_20066-Aug-06 23:46 
GeneralRe: Nothing on codeproject I NEED HELP ! Pin
kakan7-Aug-06 0:04
professionalkakan7-Aug-06 0:04 
GeneralRe: Nothing on codeproject I NEED HELP ! Pin
Bravoone_20067-Aug-06 0:09
Bravoone_20067-Aug-06 0:09 
GeneralRe: Nothing on codeproject I NEED HELP ! [modified] Pin
kakan7-Aug-06 0:17
professionalkakan7-Aug-06 0:17 
GeneralRe: Nothing on codeproject I NEED HELP ! Pin
David Crow7-Aug-06 3:12
David Crow7-Aug-06 3:12 
GeneralRe: Nothing on codeproject I NEED HELP ! Pin
kakan7-Aug-06 19:18
professionalkakan7-Aug-06 19:18 
GeneralRe: Nothing on codeproject I NEED HELP ! Pin
PlayByTheRules7-Aug-06 1:45
PlayByTheRules7-Aug-06 1:45 
GeneralRe: Nothing on codeproject I NEED HELP ! Pin
David Crow7-Aug-06 3:02
David Crow7-Aug-06 3:02 
AnswerRe: Nothing on codeproject I NEED HELP ! Pin
PlayByTheRules7-Aug-06 1:45
PlayByTheRules7-Aug-06 1:45 
QuestionRe: Nothing on codeproject I NEED HELP ! Pin
David Crow7-Aug-06 3:05
David Crow7-Aug-06 3:05 
Questionadding table in tooltip Pin
Manjunath S6-Aug-06 23:29
Manjunath S6-Aug-06 23:29 
AnswerRe: adding table in tooltip Pin
Rage7-Aug-06 1:18
professionalRage7-Aug-06 1:18 
AnswerRe: adding table in tooltip Pin
Hamid_RT7-Aug-06 2:41
Hamid_RT7-Aug-06 2:41 
QuestionMySQL / DSN Problem in VC++ [modified] Pin
Programm3r6-Aug-06 22:39
Programm3r6-Aug-06 22:39 
Questionif is someone who can help me? PLZ!!!!!! Pin
Bravoone_20066-Aug-06 22:33
Bravoone_20066-Aug-06 22:33 

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.