Using Auto List Members in the VB EditorOne of the most useful features in VBA is an option called Auto List Members. When this option is in effect, VBA displays a list that contains information that would logically complete the statement at the current insertion point. For example, when you type Application (followed by a dot), you'll get a drop-down list of all of the properties and methods for the Application object. Simply select from the list and be on your way. This feature is useful because it:
It gets betterIf you're working in a code module for a UserForm, you may need to specify an object
located on the UserForm (such as a ListBox) -- but you can't remember the object's name.
The solution? Type Me followed by a dot. You'll get a list of all of the
properties, methods, and objects for the UserForm. Then you can simply select the object's
name from the list.
|