Click here to Skip to main content
15,891,725 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
AnswerRe: child thread Pin
Bob Stanneveld6-Jan-06 23:11
Bob Stanneveld6-Jan-06 23:11 
AnswerRe: child thread Pin
Prakash Nadar7-Jan-06 1:58
Prakash Nadar7-Jan-06 1:58 
GeneralRe: child thread Pin
ThatsAlok9-Jan-06 17:23
ThatsAlok9-Jan-06 17:23 
AnswerRe: child thread Pin
ThatsAlok9-Jan-06 17:24
ThatsAlok9-Jan-06 17:24 
Questionquestion about class/object passing by pointers Pin
neodeaths6-Jan-06 20:31
neodeaths6-Jan-06 20:31 
AnswerRe: interesting question Pin
S. Senthil Kumar6-Jan-06 20:50
S. Senthil Kumar6-Jan-06 20:50 
GeneralRe: interesting question Pin
neodeaths6-Jan-06 21:38
neodeaths6-Jan-06 21:38 
AnswerRe: question about class/object passing by pointers Pin
Curtis Schlak.8-Jan-06 8:24
Curtis Schlak.8-Jan-06 8:24 
neodeaths wrote:
void add_new_item(grahpic_card* gc_add);

Your function expects a pointer to a graphic_card.

neodeaths wrote:
grahpic_card gc[10];

You declare an array of graphic_cards.

neodeaths wrote:
add_new_item(&gc);

Your passing the address of an array, not a graphic_card.

Try this:
add_new_item( &( g[ 0 ] ) );
Now, this is passing the address of a single graphic_card.


"we must lose precision to make significant statements about complex systems."
-deKorvin on uncertainty
QuestionLoading Bitmap from Harddisk instead from resource file Pin
Anu_Bala6-Jan-06 20:00
Anu_Bala6-Jan-06 20:00 
AnswerRe: Loading Bitmap from Harddisk instead from resource file Pin
Gavin Taylor7-Jan-06 2:10
professionalGavin Taylor7-Jan-06 2:10 
AnswerRe: Loading Bitmap from Harddisk instead from resource file Pin
#realJSOP7-Jan-06 3:05
mve#realJSOP7-Jan-06 3:05 
AnswerRe: Loading Bitmap from Harddisk instead from resource file Pin
ThatsAlok9-Jan-06 17:22
ThatsAlok9-Jan-06 17:22 
QuestionList box background Pin
sthalasayanam6-Jan-06 19:43
sthalasayanam6-Jan-06 19:43 
AnswerRe: List box background Pin
Gavin Taylor7-Jan-06 2:51
professionalGavin Taylor7-Jan-06 2:51 
GeneralRe: List box background Pin
sthalasayanam8-Jan-06 15:59
sthalasayanam8-Jan-06 15:59 
Questionhow to add checkmark on selecting menu item Pin
Laxman96-Jan-06 18:44
Laxman96-Jan-06 18:44 
AnswerRe: how to add checkmark on selecting menu item Pin
Owner drawn8-Jan-06 17:15
Owner drawn8-Jan-06 17:15 
AnswerRe: how to add checkmark on selecting menu item Pin
ThatsAlok9-Jan-06 17:27
ThatsAlok9-Jan-06 17:27 
QuestionHalp regarding setting /NOENTRY resource DLL Pin
nitin_ap6-Jan-06 18:06
nitin_ap6-Jan-06 18:06 
AnswerRe: Halp regarding setting /NOENTRY resource DLL Pin
Prakash Nadar6-Jan-06 19:52
Prakash Nadar6-Jan-06 19:52 
GeneralRe: Halp regarding setting /NOENTRY resource DLL Pin
nitin_ap8-Jan-06 18:12
nitin_ap8-Jan-06 18:12 
GeneralRe: Halp regarding setting /NOENTRY resource DLL Pin
ThatsAlok9-Jan-06 17:58
ThatsAlok9-Jan-06 17:58 
GeneralRe: Halp regarding setting /NOENTRY resource DLL Pin
Prakash Nadar9-Jan-06 18:00
Prakash Nadar9-Jan-06 18:00 
GeneralRe: Halp regarding setting /NOENTRY resource DLL Pin
ThatsAlok9-Jan-06 18:06
ThatsAlok9-Jan-06 18:06 
GeneralRe: Halp regarding setting /NOENTRY resource DLL Pin
Prakash Nadar9-Jan-06 18:08
Prakash Nadar9-Jan-06 18:08 

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.