Dim myObject As SomeClass ' create a reference pointer to an objectSet myObject = New SomeClass ' instantiate the object' or, do it all in one line, but this is frowned upon:Dim myObject AsNew SomeClass
destroying an object
when an object's reference count is at 0, the object is removed from memory; Access will destroy objects if the only variable reference to them goes out of scope