In the ThisDocument module (but NOT standard modules) you can simply start typing the name of the object. It appears in IntelliSense.
eg. "tex" and Ctrl-SpaceBar will jump IntelliSense right to Textbox1 - assuming there is a ActiveX textbox1. You do need to click the Object dropdown to get the Procedures available. However, all valid methods applicable to the object are available through IntelliSense.
eg. "tex", Ctrl-Spacebar, ".v="Hello"", and Enter will write:
Textbox1.Value = "Hello"
"msg", Ctrl-Spacebar, space, "tex", Ctrl-Spacebar, ".te" and Enter, will write:
Msgbox Textbox1.Text
Gerry