Integers being stored as Hex

  • Thread starter Thread starter Jeremy
  • Start date Start date
J

Jeremy

I have a weird one here. Yesterday Visual Studio 2003 started storing
integers as Hex values. For example if I Watch the variable below
(DocId), it shows up as &HB. If I do any comparisons, they don't work,
presumably because it's comparing Hex values. If I store it as a string
it's correct as "11" (as it obviously should be). I re-installed VS
last night, but had no luck.

Dim DocId As Integer = 11

Has anyone seen or heard of this before?

Thanks in advance,
Jeremy
 
I figured it out already. Under Tools --> Options --> Debugging -->
General, Hexidecimal Display was checked. How that happened I don't
know...
 
Back
Top