Click here to Skip to main content
15,893,594 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: Can't send text trough socket-connection, help me please! Pin
SimCom6-Jan-05 23:41
SimCom6-Jan-05 23:41 
GeneralRe: Can't send text trough socket-connection, help me please! Pin
El Corazon7-Jan-05 4:08
El Corazon7-Jan-05 4:08 
GeneralMs Visual C++ Toolkit 2003 Resource Pin
mycha6-Jan-05 9:26
mycha6-Jan-05 9:26 
GeneralTools->Custimize->Keyboard Pin
John R. Shaw6-Jan-05 9:02
John R. Shaw6-Jan-05 9:02 
QuestionHow to find the toolbar button's position? Pin
transoft6-Jan-05 7:11
transoft6-Jan-05 7:11 
AnswerRe: How to find the toolbar button's position? Pin
PJ Arends6-Jan-05 7:55
professionalPJ Arends6-Jan-05 7:55 
QuestionHow to change the Color of Scroll Bars? Pin
pubududilena6-Jan-05 6:48
pubududilena6-Jan-05 6:48 
GeneralStack Overflow Exception Pin
AssemblySoft6-Jan-05 6:43
AssemblySoft6-Jan-05 6:43 
Hi I'm getting an unhandled exception in MSVCRTD.DLL Stack Overflow.

Basically I can't see where it's coming from. The below try block call's itself recursively and doing some other stuff along the way until a global count has been reached.

The only exception i can trap is the catch all. Is there anyway of determining the type of exception? I can't work out where it is being thrown from? Frown | :(

code:

try
{
AddNextCallToPlayList();
}
catch( CMemoryException* e )
{
LOG_ERROR(_T("CMem\n"));
// Handle the out-of-memory exception here.
}
catch( CFileException* e )
{
// Handle the file exceptions here.
LOG_ERROR(_T("CFile\n"));
}
catch( CException* e )
{
// Handle all other types of exceptions here.
LOG_ERROR(_T("CException \n"));
}
catch(_com_error e)
{
LOG_ERROR(_T("catch com\n"));
}
catch(...) //__except(EXCEPTION_EXECUTE_HANDLER)
{
LOG_ERROR(_T("catch all\n"));
}
GeneralRe: Stack Overflow Exception Pin
Tim Smith6-Jan-05 7:15
Tim Smith6-Jan-05 7:15 
GeneralRe: Stack Overflow Exception Pin
AssemblySoft6-Jan-05 11:19
AssemblySoft6-Jan-05 11:19 
GeneralRe: Stack Overflow Exception Pin
Ryan Binns6-Jan-05 17:47
Ryan Binns6-Jan-05 17:47 
GeneralRe: Stack Overflow Exception Pin
AssemblySoft6-Jan-05 22:02
AssemblySoft6-Jan-05 22:02 
GeneralRe: Stack Overflow Exception Pin
Ryan Binns7-Jan-05 13:00
Ryan Binns7-Jan-05 13:00 
QuestionSimulate pressing of tab key ??? Pin
Raul Simcic6-Jan-05 6:06
Raul Simcic6-Jan-05 6:06 
AnswerRe: Simulate pressing of tab key ??? Pin
Michael Dunn6-Jan-05 11:00
sitebuilderMichael Dunn6-Jan-05 11:00 
GeneralRe: Simulate pressing of tab key ??? Pin
Raul Simcic7-Jan-05 8:04
Raul Simcic7-Jan-05 8:04 
AnswerRe: Simulate pressing of tab key ??? Pin
Anonymous6-Jan-05 11:13
Anonymous6-Jan-05 11:13 
AnswerRe: Simulate pressing of tab key ??? Pin
lisoft6-Jan-05 20:51
lisoft6-Jan-05 20:51 
AnswerRe: Simulate pressing of tab key ??? Pin
Raul Simcic7-Jan-05 1:40
Raul Simcic7-Jan-05 1:40 
AnswerRe: Simulate pressing of tab key ??? Pin
DBob10-Jan-05 5:59
DBob10-Jan-05 5:59 
GeneralDetect mouse up and after drag Pin
Anonymous6-Jan-05 4:11
Anonymous6-Jan-05 4:11 
GeneralRe: Detect mouse up and after drag Pin
Ravi Bhavnani6-Jan-05 4:50
professionalRavi Bhavnani6-Jan-05 4:50 
GeneralRe: Detect mouse up and after drag Pin
Ryan Binns6-Jan-05 17:54
Ryan Binns6-Jan-05 17:54 
GeneralRe: Detect mouse up and after drag Pin
DBob10-Jan-05 6:50
DBob10-Jan-05 6:50 
GeneralOpen a COM port greater than COM9 Pin
Cedric Moonen6-Jan-05 3:52
Cedric Moonen6-Jan-05 3:52 

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.