How to show the source code when debugging??
I've right click and tick the "Show source code"
but there is no change on the screen.
And also, there is no info in the Breakpoint column
and Auto, Watch......are all blank
Please, help. ???
Thanks.....
What are you looking at, assembly? The debugger starts by showing the source code. "Show source code" is only necessary when you are looking at assembly and want to get rid of it.
Project Options:
Compiler Debug information: Full
Linker Debug information: Codeview format
Auto might be blank until you've executed some code.
Watch is blank until filled in by you.
Breakpoints don't exist until you place them. Without breakpoints the debugger will automatically stop at the first line in main()
Check Locals and Globals for your variables.
Thanks~~ it works now ;D
"Project Options:
Compiler Debug information: Full
Linker Debug information: Codeview format"