Name: Anonymous 2008-07-16 14:35
So, usually when I write a program in VB.NET and an error occurs during runtime, it kicks me back to the IDE and shows me which line of code caused the error. For some reason this is not happening anymore.
Here is sample code trying to get an error:
Dim Zomg(0 To 5) As String
MsgBox(Zomg(6))
All errors are being reported to the immediate window... IE:
A first chance exception of type 'System.IndexOutOfRangeException' occurred in MyApp.exe
Where in the past it would highlight the MsgBox(Zomg(6)) Line, show a little popup box and they says "Subscript out of range" or something like that.
How do I get the only error display (non immediate window) back? It makes debugging so much easier...
Here is sample code trying to get an error:
Dim Zomg(0 To 5) As String
MsgBox(Zomg(6))
All errors are being reported to the immediate window... IE:
A first chance exception of type 'System.IndexOutOfRangeException' occurred in MyApp.exe
Where in the past it would highlight the MsgBox(Zomg(6)) Line, show a little popup box and they says "Subscript out of range" or something like that.
How do I get the only error display (non immediate window) back? It makes debugging so much easier...