D
David Cox
I always shudder when I see:
IF Not blah Is Nothing Then
.....
I would write it thus:
If blah Is Nothing
Then ' no action
Else 'things are going to change
.......
Comments?
IF Not blah Is Nothing Then
.....
I would write it thus:
If blah Is Nothing
Then ' no action
Else 'things are going to change
.......
Comments?