Any good utilities out there for verifying VBScript syntax without actually running the script?
What I'm getting at is if I do something like:
If (year == "2005" && type == 1) Then
...
End If
Is there a tool that will tell me that the '&&' really should be 'And' and the '==', just '='?