Hi all,
Quick question...
from a syntax and a programaticly correct point of view, is it better to form a construct like this...
or this...
Cheers,
Lee.
Quick question...
from a syntax and a programaticly correct point of view, is it better to form a construct like this...
Code:
If oDB.GetObject Is Nothing Then
Exit Sub
End If
Continue...
or this...
Code:
If Not oDB.GetObject Is Nothing Then
Continue...
End If
Cheers,
Lee.