How could i now an object is empty ?
dim obj1 as Object
set obj1=nothing
; HOW COULD I NOW HERE THAT OBJ1 is empty
thanx
Printable View
How could i now an object is empty ?
dim obj1 as Object
set obj1=nothing
; HOW COULD I NOW HERE THAT OBJ1 is empty
thanx
if obj1 Is Nothing then...
thanx
works well