Show pageOld revisionsBacklinksBack to top This page is read only. You can view the source, but not change it. Ask your administrator if you think this is wrong. ====== Objects ====== ===== creating an object ===== <code vb> Dim myObject As SomeClass ' create a reference pointer to an object Set myObject = New SomeClass ' instantiate the object ' or, do it all in one line, but this is frowned upon: Dim myObject As New SomeClass </code> ===== 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 * **Set myObject = Nothing** * reduces reference count by 1 docs/programming/office_vba/objects.txt Last modified: 2008/08/03 00:25by 127.0.0.1