Click here to Skip to main content
15,911,646 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: Drawing Pin
Demian Panello28-Sep-06 1:58
Demian Panello28-Sep-06 1:58 
AnswerRe: Drawing Pin
Hamid_RT29-Sep-06 8:11
Hamid_RT29-Sep-06 8:11 
GeneralRe: Drawing Pin
Demian Panello29-Sep-06 11:02
Demian Panello29-Sep-06 11:02 
GeneralRe: Drawing Pin
Hamid_RT29-Sep-06 19:42
Hamid_RT29-Sep-06 19:42 
QuestionAfter WM_PAINT, button disappears Pin
mfranco_neto27-Sep-06 11:51
mfranco_neto27-Sep-06 11:51 
AnswerRe: After WM_PAINT, button disappears Pin
Jörgen Sigvardsson27-Sep-06 13:39
Jörgen Sigvardsson27-Sep-06 13:39 
AnswerRe: After WM_PAINT, button disappears Pin
Christian Graus27-Sep-06 15:57
protectorChristian Graus27-Sep-06 15:57 
GeneralRe: After WM_PAINT, button disappears Pin
mfranco_neto27-Sep-06 16:35
mfranco_neto27-Sep-06 16:35 
GeneralRe: After WM_PAINT, button disappears Pin
mfranco_neto27-Sep-06 17:43
mfranco_neto27-Sep-06 17:43 
GeneralRe: After WM_PAINT, button disappears Pin
Shog927-Sep-06 18:51
sitebuilderShog927-Sep-06 18:51 
AnswerRe: After WM_PAINT, button disappears Pin
Shog927-Sep-06 18:50
sitebuilderShog927-Sep-06 18:50 
QuestionDialog control Pin
LCI27-Sep-06 11:12
LCI27-Sep-06 11:12 
AnswerRe: Dialog control Pin
Christian Graus27-Sep-06 11:24
protectorChristian Graus27-Sep-06 11:24 
GeneralRe: Dialog control Pin
LCI27-Sep-06 11:34
LCI27-Sep-06 11:34 
GeneralRe: Dialog control Pin
Christian Graus27-Sep-06 11:40
protectorChristian Graus27-Sep-06 11:40 
AnswerRe: Dialog control Pin
nutkase27-Sep-06 19:15
nutkase27-Sep-06 19:15 
GeneralRe: Dialog control Pin
LCI28-Sep-06 5:10
LCI28-Sep-06 5:10 
GeneralRe: Dialog control Pin
S Douglas30-Sep-06 23:15
professionalS Douglas30-Sep-06 23:15 
AnswerRe: Dialog control Pin
ShilpiP27-Sep-06 19:57
ShilpiP27-Sep-06 19:57 
AnswerRe: Dialog control Pin
David Crow28-Sep-06 3:26
David Crow28-Sep-06 3:26 
GeneralRe: Dialog control Pin
LCI28-Sep-06 5:40
LCI28-Sep-06 5:40 
GeneralRe: Dialog control Pin
David Crow28-Sep-06 5:47
David Crow28-Sep-06 5:47 
QuestionHandling Stack Overflow [modified] Pin
risingtechie27-Sep-06 10:53
risingtechie27-Sep-06 10:53 
Every program has the potential to run out of stack space. The following does so on purpose. I'm using Borland C++ Builder 5.5 and it doesn't throw an exception for stack overflows. I think Visual C++ does but it's using SEH, (not C++ exception handling), which is also not available in Borland C++ Builder. The program below just terminates after the stack overflows. The error message ("An exception was thrown. Probably out of stack space.") never prints. Is there anyway to handle stack over flow without using windows exceptions? Is it even possible to recover from a stack overflow? Any help would be appreciated.

<br />
#include <iostream.h><br />
<br />
void StackOverflow(int depth)<br />
{<br />
    try<br />
    {<br />
        char blockdata[10000];<br />
        cout << "Overflow: " << depth;<br />
        StackOverflow(depth+1);<br />
    }<br />
    catch (...)<br />
    {<br />
        cout << "An exception was thrown.  Probably out of stack space." << endl;<br />
    }<br />
}<br />
						<br />
 <br />
int main(<br />
{<br />
    StackOverflow(0);<br />
    return 0;<br />
}<br />



-- modified at 16:59 Wednesday 27th September, 2006
AnswerRe: Handling Stack Overflow Pin
Zac Howland27-Sep-06 11:00
Zac Howland27-Sep-06 11:00 
GeneralRe: Handling Stack Overflow Pin
risingtechie27-Sep-06 11:23
risingtechie27-Sep-06 11:23 

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.