Error?

starcraft

Centurion
Joined
Jun 29, 2003
Messages
167
Location
Poway CA
whats wrong? when i click start on the debug menu, it some up with a yellow arrow with a red background and says something like "this is the next line to be exicuted. u may change the next line to be exicuted by draging the arrow to the line, this me have unforseen coniquences" whats up? I dont know how to work the vb code window so i'll see if u guys can help me with that if not i'll have to fiqure out how to use it
 
Breakpoints stop your code from executing at a certain point so you can pinpoint the exact line of code that causes an error. While in break mode, you can press F8 to step through your code one at a time, and you can hover your mouse over a variable in the code window and a tooltip will tell you the value.

Very useful for debugging. :)
 
Back
Top