Cannot find Function IsNothing in Access 97 VBA

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hi,

I find references to the function IsNothing(object) in the helpfile for
Access 97 VBA under IsObject(object), but this function is not present in VBA
97. How can I emulate this function?
 
you can use:

if MyObject is nothing then
....

or just make own function based on this
 
Alex,

It is indeed very simple, I knew that "If MyVar Is Null Then" is equal to
"If IsNull(MyVar) Then" but I just could not make the mindleap to your
solution. Many thanks

"Alex Dybenko" schreef:
 
Back
Top