Click here to Skip to main content
15,921,636 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
QuestionFunction Signature Pin
Anilkumar K V23-Nov-06 0:45
Anilkumar K V23-Nov-06 0:45 
AnswerRe: Function Signature Pin
Cedric Moonen23-Nov-06 1:00
Cedric Moonen23-Nov-06 1:00 
QuestionHow to change font of menu to Marathi . Pin
Atul2322-Nov-06 23:30
Atul2322-Nov-06 23:30 
QuestionRe: How to change font of menu to Marathi . Pin
Rajesh R Subramanian22-Nov-06 23:36
professionalRajesh R Subramanian22-Nov-06 23:36 
QuestionUsing static for a Large Data Structure Pin
Andy20222-Nov-06 22:55
Andy20222-Nov-06 22:55 
AnswerRe: Using static for a Large Data Structure Pin
Viorel.22-Nov-06 23:22
Viorel.22-Nov-06 23:22 
AnswerRe: Using static for a Large Data Structure Pin
CPallini22-Nov-06 23:25
mveCPallini22-Nov-06 23:25 
AnswerRe: Using static for a Large Data Structure Pin
Waldermort22-Nov-06 23:45
Waldermort22-Nov-06 23:45 
When you were told to make it static, they probably meant it in the context of where you allocate it ( stack or heap ). If you use operator new with such a large struct there is a good change you will run out of memory, but declaring it on the stack, as it appears in your code, you are guaranteed to have the memory before you run your exe.
JokeRe: Using static for a Large Data Structure [modified] Pin
CPallini23-Nov-06 1:17
mveCPallini23-Nov-06 1:17 
GeneralRe: Using static for a Large Data Structure Pin
Prakash Nadar23-Nov-06 4:21
Prakash Nadar23-Nov-06 4:21 
GeneralRe: Using static for a Large Data Structure Pin
CPallini23-Nov-06 4:31
mveCPallini23-Nov-06 4:31 
GeneralRe: Using static for a Large Data Structure Pin
tom groezer23-Nov-06 9:11
tom groezer23-Nov-06 9:11 
GeneralRe: Using static for a Large Data Structure Pin
Prakash Nadar23-Nov-06 18:41
Prakash Nadar23-Nov-06 18:41 
QuestionSHBrowseForFolder() (bis) Pin
super_ttd22-Nov-06 22:35
super_ttd22-Nov-06 22:35 
AnswerRe: SHBrowseForFolder() (bis) Pin
Viorel.22-Nov-06 22:48
Viorel.22-Nov-06 22:48 
GeneralRe: SHBrowseForFolder() (bis) Pin
super_ttd22-Nov-06 22:54
super_ttd22-Nov-06 22:54 
GeneralRe: SHBrowseForFolder() (bis) Pin
Viorel.22-Nov-06 23:18
Viorel.22-Nov-06 23:18 
GeneralRe: SHBrowseForFolder() (bis) Pin
super_ttd22-Nov-06 23:21
super_ttd22-Nov-06 23:21 
GeneralRe: SHBrowseForFolder() (bis) Pin
Viorel.22-Nov-06 23:38
Viorel.22-Nov-06 23:38 
GeneralRe: SHBrowseForFolder() (bis) Pin
Mark Salsbery23-Nov-06 6:14
Mark Salsbery23-Nov-06 6:14 
GeneralRe: SHBrowseForFolder() (bis) Pin
super_ttd23-Nov-06 6:19
super_ttd23-Nov-06 6:19 
GeneralRe: SHBrowseForFolder() (bis) Pin
Mark Salsbery23-Nov-06 6:35
Mark Salsbery23-Nov-06 6:35 
GeneralRe: SHBrowseForFolder() (bis) Pin
super_ttd26-Nov-06 0:41
super_ttd26-Nov-06 0:41 
QuestionCListCtrl::OnCustomdrawCListCtrl(NMHDR* pNMHDR, LRESULT* pResult) Pin
bosfan22-Nov-06 22:22
bosfan22-Nov-06 22:22 
AnswerRe: CListCtrl::OnCustomdrawCListCtrl(NMHDR* pNMHDR, LRESULT* pResult) Pin
Viorel.22-Nov-06 22:35
Viorel.22-Nov-06 22:35 

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.