Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
if myobj Is Nothing then
'object not yet created
'or referece has been set to Nothing
else
'object exists
end if
dim myObj as new MyClass
Dim A As MyObject
Dim B As MyObject
Set A = New MyObject
Set B = A
Set A = Nothing
Set B = Nothing