Click here to Skip to main content
15,925,255 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralAdd OnOK button in Cpropertysheet Pin
sdfdsfa20-Aug-03 14:50
sdfdsfa20-Aug-03 14:50 
QuestionHow can I tell... Pin
Brian Shifrin20-Aug-03 13:31
Brian Shifrin20-Aug-03 13:31 
AnswerRe: How can I tell... Pin
Garth J Lancaster20-Aug-03 17:42
professionalGarth J Lancaster20-Aug-03 17:42 
AnswerRe: How can I tell... (Reply #2) Pin
Garth J Lancaster20-Aug-03 17:47
professionalGarth J Lancaster20-Aug-03 17:47 
AnswerRe: How can I tell... Pin
Member 42425920-Aug-03 22:38
Member 42425920-Aug-03 22:38 
GeneralRe: How can I tell... Pin
Brian Shifrin21-Aug-03 7:45
Brian Shifrin21-Aug-03 7:45 
GeneralUnhandled exception in ...EXE: stack overflow Pin
Anonymous20-Aug-03 12:58
Anonymous20-Aug-03 12:58 
GeneralRe: Unhandled exception in ...EXE: stack overflow Pin
Abin20-Aug-03 13:59
Abin20-Aug-03 13:59 
Stack overflow, as the name implies, means your app process stack memory got overflew, so the best way to solve your problem could be moving your stuff from stack to the heap. Maybe you have put your "big array" of objects in the stack? For example:

My_Obj aObjs[9999]; // this could cause stack overflowing

// allocate them in heap instead:
My_Obj* pObjs = new My_Obj[9999]; // this could work
// ...
delete [] pObjs;
pObjs = NULL;
GeneralRe: Unhandled exception in ...EXE: stack overflow Pin
PJ Arends20-Aug-03 16:26
professionalPJ Arends20-Aug-03 16:26 
GeneralCDataGrid Pin
sdfdsfa20-Aug-03 11:20
sdfdsfa20-Aug-03 11:20 
GeneralDigital Scope tool Pin
Kenny O'Dell20-Aug-03 10:49
Kenny O'Dell20-Aug-03 10:49 
GeneralRe: Digital Scope tool Pin
Iain Clarke, Warrior Programmer20-Aug-03 22:57
Iain Clarke, Warrior Programmer20-Aug-03 22:57 
QuestionMaking Combobox items visible? Pin
Jim D20-Aug-03 10:27
Jim D20-Aug-03 10:27 
AnswerRe: Making Combobox items visible? Pin
peterchen20-Aug-03 10:38
peterchen20-Aug-03 10:38 
GeneralRe: Making Combobox items visible? Pin
Jim D20-Aug-03 11:05
Jim D20-Aug-03 11:05 
GeneralRe: Making Combobox items visible? Pin
Joel Lucsy20-Aug-03 11:22
Joel Lucsy20-Aug-03 11:22 
GeneralRe: Making Combobox items visible? Pin
Terry O'Nolley20-Aug-03 16:01
Terry O'Nolley20-Aug-03 16:01 
GeneralRe: Making Combobox items visible? Pin
Ryan Binns21-Aug-03 0:00
Ryan Binns21-Aug-03 0:00 
AnswerRe: Making Combobox items visible? Pin
Jim D20-Aug-03 11:32
Jim D20-Aug-03 11:32 
GeneralRe: Making Combobox items visible? Pin
Abin20-Aug-03 14:04
Abin20-Aug-03 14:04 
QuestionCTreeCtrl Checkbox notification? Pin
Bob Stanneveld20-Aug-03 9:43
Bob Stanneveld20-Aug-03 9:43 
AnswerRe: CTreeCtrl Checkbox notification? Pin
peterchen20-Aug-03 10:39
peterchen20-Aug-03 10:39 
GeneralRe: CTreeCtrl Checkbox notification? Pin
Bob Stanneveld20-Aug-03 12:17
Bob Stanneveld20-Aug-03 12:17 
GeneralBitmap::FromResource Pin
arturapps20-Aug-03 9:37
arturapps20-Aug-03 9:37 
GeneralSorry people ... Pin
arturapps20-Aug-03 9:41
arturapps20-Aug-03 9:41 

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.