Click here to Skip to main content
15,894,540 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
AnswerRe: 900520 - VC6 vs VS 2010 Pin
ilostmyid212-Aug-11 18:22
professionalilostmyid212-Aug-11 18:22 
GeneralRe: 900520 - VC6 vs VS 2010 Pin
ilostmyid212-Aug-11 18:30
professionalilostmyid212-Aug-11 18:30 
QuestionDirecting logcxx to a log4net appender Pin
Berlus10-Aug-11 23:47
Berlus10-Aug-11 23:47 
AnswerRe: Directing logcxx to a log4net appender Pin
Richard MacCutchan11-Aug-11 5:50
mveRichard MacCutchan11-Aug-11 5:50 
AnswerRe: Directing logcxx to a log4net appender Pin
jschell11-Aug-11 13:03
jschell11-Aug-11 13:03 
QuestionHow to eliminate MOBILE SDK from my Document Explorer 2008? Pin
Cold_Fearing_Bird10-Aug-11 19:19
Cold_Fearing_Bird10-Aug-11 19:19 
AnswerRe: How to eliminate MOBILE SDK from my Document Explorer 2008? Pin
Richard MacCutchan10-Aug-11 22:59
mveRichard MacCutchan10-Aug-11 22:59 
GeneralRe: How to eliminate MOBILE SDK from my Document Explorer 2008? Pin
Cold_Fearing_Bird11-Aug-11 0:11
Cold_Fearing_Bird11-Aug-11 0:11 
GeneralRe: How to eliminate MOBILE SDK from my Document Explorer 2008? Pin
Richard MacCutchan11-Aug-11 0:26
mveRichard MacCutchan11-Aug-11 0:26 
QuestionVC6 in Win 7 problem Pin
_Flaviu10-Aug-11 19:06
_Flaviu10-Aug-11 19:06 
AnswerRe: VC6 in Win 7 problem Pin
ThatsAlok10-Aug-11 20:39
ThatsAlok10-Aug-11 20:39 
AnswerRe: VC6 in Win 7 problem Pin
MicroVirus11-Aug-11 6:59
MicroVirus11-Aug-11 6:59 
GeneralRe: VC6 in Win 7 problem Pin
_Flaviu11-Aug-11 21:38
_Flaviu11-Aug-11 21:38 
GeneralRe: VC6 in Win 7 problem Pin
MicroVirus12-Aug-11 4:25
MicroVirus12-Aug-11 4:25 
GeneralRe: VC6 in Win 7 problem Pin
_Flaviu11-Aug-11 21:37
_Flaviu11-Aug-11 21:37 
QuestionHow to do the MFC to get the return of another console program? Pin
adalcol10-Aug-11 4:55
adalcol10-Aug-11 4:55 
QuestionRe: How to do the MFC to get the return of another console program? Pin
David Crow10-Aug-11 5:26
David Crow10-Aug-11 5:26 
AnswerRe: How to do the MFC to get the return of another console program? Pin
adalcol10-Aug-11 6:34
adalcol10-Aug-11 6:34 
GeneralRe: How to do the MFC to get the return of another console program? Pin
David Crow10-Aug-11 8:00
David Crow10-Aug-11 8:00 
GeneralRe: How to do the MFC to get the return of another console program? Pin
adalcol10-Aug-11 8:25
adalcol10-Aug-11 8:25 
GeneralRe: How to do the MFC to get the return of another console program? Pin
David Crow10-Aug-11 8:29
David Crow10-Aug-11 8:29 
GeneralRe: How to do the MFC to get the return of another console program? Pin
adalcol10-Aug-11 8:44
adalcol10-Aug-11 8:44 
AnswerRe: How to do the MFC to get the return of another console program? Pin
Chuck O'Toole10-Aug-11 7:06
Chuck O'Toole10-Aug-11 7:06 
GeneralRe: How to do the MFC to get the return of another console program? Pin
adalcol10-Aug-11 8:30
adalcol10-Aug-11 8:30 
GeneralRe: How to do the MFC to get the return of another console program? Pin
Chuck O'Toole10-Aug-11 8:36
Chuck O'Toole10-Aug-11 8:36 
Of course you need to monitor the thread, the exit code isn't available until the program exits and how do you know when that happens unless you monitor the thread?

You don't have to sit and wait until it's done, you can periodically check the state of the thread (wait with a short timeout or other "test" conditions for the state of the handle) and then you'll know the exit code is valid.

Also, it's better to have the command line be "Download.exe /v" (whatever /v means to your program) than to have a .BAT file run the command. This way you'll be sure to get the exit code of the application.

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.