Blue squares where breakpoints are displayed

  • Thread starter Thread starter Dino M. Buljubasic
  • Start date Start date
D

Dino M. Buljubasic

This might be a silly question but I have never seen this before.

I suddenly got some blue squares on the left side (the place where break
points are shown if any exist). Anybody knows what these are and how can I
remove them?

Tx,
 
http://www.windowsitlibrary.com/Content/757/05/2.html ...
Watch Window
Like the Locals window, the Watch window ( Figure 10) displays information
about variables including the variable name, value, and type. The Watch
window differs from the Locals window because it displays values for
variables specifically requested while the Locals Window displays all
variables in the current procedure. Another significant difference is that
values in the Watch window are always current, which means that you can
trust the values they display while your application is running.

To add a variable to the Watch window, simply right-click the variable in
the code window and select Add Watch. To remove a variable from the Watch
window, right-click the variable in the Watch window, and select Delete
Watch. To change a value in the Watch window, double-click the Value column
and enter the new value.
 
If they're cyan rather than blue then they bookmarks.
ctrl-k ctrl-k toggles them on off
ctrl-k ctrl-n navigates to the next one

Useful whe you have bohemoth size classes.
Like the ones I write ;-)
 
Back
Top