I studied the basic structure of object properties and methods in VBA a bit more. I just read that all the properties and methods for each object are listed in the "Object Browser" in the developer window.
The reason I was asked to take a look at this was because I used a method that was not specified in the object browser. I used:
Sheets("Front face").Shapes("Drop Down 12").ControlFormat
This allowed me to then use .List to change the form. However .ControlFormat is not a property / method specified in the Object Browser.
Can anyone explain this?
source
share