Click to See Complete Forum and Search --> : EMPTY OBJECT


eric33
October 4th, 1999, 06:19 AM
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

Lothar Haensler
October 4th, 1999, 06:22 AM
if obj1 Is Nothing then...

eric33
October 4th, 1999, 06:46 AM
thanx

works well