Click here to Skip to main content
15,916,412 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: How to display two dialogues added in tab control at the same time? Pin
Laxman Auti21-Mar-07 20:01
Laxman Auti21-Mar-07 20:01 
QuestionMnemonic not working Pin
Try21-Mar-07 1:49
Try21-Mar-07 1:49 
AnswerRe: Mnemonic not working Pin
prasad_som21-Mar-07 2:10
prasad_som21-Mar-07 2:10 
GeneralRe: Mnemonic not working Pin
Try21-Mar-07 2:13
Try21-Mar-07 2:13 
AnswerRe: Mnemonic not working Pin
prasad_som21-Mar-07 3:10
prasad_som21-Mar-07 3:10 
GeneralRe: Mnemonic not working Pin
Try21-Mar-07 3:19
Try21-Mar-07 3:19 
QuestionRe: Mnemonic not working Pin
prasad_som21-Mar-07 3:29
prasad_som21-Mar-07 3:29 
Questiontry catch not working Pin
Bangerman21-Mar-07 1:10
Bangerman21-Mar-07 1:10 
My very large app was shipped to a customer and as you might guess it failed. My code has lots of try catches in it and I though it strange that it failed with no exception traps shown in the log. After trying to insert some deliberate exceptions I found that the exception traps are not working at all. To test what was going on I created a console app:

int _tmain(int argc, _TCHAR* argv[])
{
printf("Start\n");
try
{
int *pWord=NULL;
*pWord=999;
}
catch(...)
{
printf("Error was caught\n");
}
printf("Stop\n");
return 0;
}

This should display
Start
Error was caught
Stop

But it actually displays
Start
.. the the MS crash dialog pops up.

Does anyone know why my exception traps have been disabled.

Richard.


Hell I thought it was funny .....

AnswerRe: try catch not working Pin
Stephen Hewitt21-Mar-07 1:17
Stephen Hewitt21-Mar-07 1:17 
GeneralRe: try catch not working Pin
Bangerman21-Mar-07 1:23
Bangerman21-Mar-07 1:23 
GeneralRe: try catch not working - msvcrt80 Pin
Bangerman21-Mar-07 3:11
Bangerman21-Mar-07 3:11 
GeneralRe: try catch not working - msvcrt80 Pin
Stephen Hewitt21-Mar-07 13:00
Stephen Hewitt21-Mar-07 13:00 
AnswerRe: try catch not working Pin
zoid ! 21-Mar-07 9:17
zoid ! 21-Mar-07 9:17 
QuestionRight to left language and copy and paste Pin
BadJerry21-Mar-07 0:38
BadJerry21-Mar-07 0:38 
QuestionAdding my application to Quick Launch Pin
velayudhan_raj20-Mar-07 23:57
velayudhan_raj20-Mar-07 23:57 
AnswerRe: Adding my application to Quick Launch [modified] Pin
KaЯl21-Mar-07 1:05
KaЯl21-Mar-07 1:05 
AnswerRe: Adding my application to Quick Launch Pin
Laxman Auti21-Mar-07 3:04
Laxman Auti21-Mar-07 3:04 
QuestionAfxGetWinApp() Pin
deeps_cute20-Mar-07 23:34
deeps_cute20-Mar-07 23:34 
AnswerRe: AfxGetWinApp() Pin
prasad_som20-Mar-07 23:37
prasad_som20-Mar-07 23:37 
AnswerRe: AfxGetWinApp() Pin
ThatsAlok21-Mar-07 19:52
ThatsAlok21-Mar-07 19:52 
QuestionUser Interface style problem Pin
ilgale20-Mar-07 23:14
ilgale20-Mar-07 23:14 
AnswerRe: User Interface style problem Pin
JudyL_MD21-Mar-07 1:49
JudyL_MD21-Mar-07 1:49 
QuestionAPIs or MFC class for working with FAT ? Pin
nguyenvodich20-Mar-07 22:36
nguyenvodich20-Mar-07 22:36 
AnswerRe: APIs or MFC class for working with FAT ? Pin
kakan21-Mar-07 1:17
professionalkakan21-Mar-07 1:17 
QuestionProblem handling CStatic mouse click [modified] Pin
Futterama20-Mar-07 22:31
Futterama20-Mar-07 22:31 

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.