SyntaxFix
Write A Post
Hire A Developer
Questions
I agree with "Is Nothing". As stated above, it's easy to negate with "IsNot Nothing".
I find this easier to read...
If printDialog IsNot Nothing Then 'blah End If
than this...
If Not obj Is Nothing Then 'blah End If