Integers showing as code numbers (ie &H33 instead of 3)

kate_cha

Member
Joined
Nov 21, 2006
Messages
5
Programming Experience
3-5
When I'm debugging in VS and either hover over a numeric variable with the mouse or print out the variable in the immediate window, instead of ie 3, I get &H33. If I do i.ToString() then it prints out the number, but it's getting kind of annoying. Does anyone have any ideas about how to change it?
thanks!!
Kate
 
Start your app
Click the Pause button ||
Click the Debug Menu
Click Windows
Click Locals
Right click in the Locals window
Remove the tick from next to "Hexadecimal display"

(The program must be started, but paused (hit a breakpoint or paused) for the Locals window to be interactive)
This menu item also exists in the Watches and Autos windows. All settings are linked, across the entire program.

The advice I posted before about setting the numerical base of the debugger, i think was for C#, sorry
 
Last edited:
Back
Top