breakpoint in vb.net

  • Thread starter Thread starter PS2
  • Start date Start date
P

PS2

Can someone pls help me to solve this problem. Thanks in advance.

After adding a breakpoint to a line of coding, the whole line turned red and
there is a big red dot next to it. However if I run the program, a question
mark appeared inside the big red dot with a message of "The breakpoint will
not currently be hit. No symbols have been loaded for this document" and the
program simply pass this breakpoint without stopping. Pls help!!
 
This happens when you have set the configuration manager to run the program
in Release mode. Change the configuration manager back to run the program
in Debug mode, and it should be fine.

-Jason
 
PS2 said:
After adding a breakpoint to a line of coding, the whole line turned red
and there is a big red dot next to it. However if I run the program, a
question mark appeared inside the big red dot with a message of "The
breakpoint will not currently be hit. No symbols have been loaded for this
document" and the program simply pass this breakpoint without stopping.
Pls help!!

Make sure the active build configuration is set to "Debug". You can select
another configuration by changing the selection in the combobox in VS.NET's
toolbar.
 
Back
Top