Objects may provide a default property. When the object is being used without the property being specified by name, it is assumed by default. |
An object can be specifically qualified by mentioning its entire hierarchy tree. |
Eg Application.Documents(3). |
VBA uses the active object when an object isn't qualified. |
The With ... .End with statement lets you use the properties and methods of a specific object in a single block. |
The Set statement can be used to create an object variable to refer to a specific object. |