whats going on with my exe file

Joined
3/23/07
Messages
130
Points
26
sorry. it seems like a easy problem but i just cannt fix it.

After ive clicked the "debug" of VC05 express and input related parameters, it computes out results and....this exe file automatically closes! so quick that i even cant check out that results.:cry:
how can i fix this,guys? thanks so much.
 
sorry. it seems like a easy problem but i just cannt fix it.

After ive clicked the "debug" of VC05 express and input related parameters, it computes out results and....this exe file automatically closes! so quick that i even cant check out that results.:cry:
how can i fix this,guys? thanks so much.

1. Open the source file that contains your program's main() or _tmain() function
2. Insert a breakpoint at the last } of the main function.

The program should then stop there allowing you to review your results. Alternatively you can use Debug->Step Into to start up the program, and then step thru the code at your leisure using F10 and F11.
 
Back
Top Bottom