Small IDE issues

Scubaticus

Active Member
Licensed User
Ignored = False
Goto NoExecute

NoExecute: Ignored = True
Msgbox(Ignored)

If 1=1
Ignored = True
End If

The "Ignored = True" after the "NoExecute" label is not processed. The compiler doesn't complain.

Forgetting the "then" after the "if" gives the error "Missing Keyword: end sub"
and the cursor is positioned on the "end if"
 
Top