ChildWin, DialogBox, and MainWin.
Invokes the dialog or window, using the menu, menu item, pushbutton, or command line provided in the declaration.
window.Invoke()
The Invoke method invokes the current dialog or window, using information specified in the declaration to determine how to invoke the object. For a dialog box, the declaration must contain the wInvoke variable, which defines the menu, menu item, or pushbutton that invokes the dialog box. For a ChildWin, wInvoke can be either a menu or a menu item.
For more information about how the Start method uses these parameters when they are passed to it by Invoke, see Start Method (MainWin).
[ ] // in declarations [-] window DialogBox Find [ ] tag "Find" [ ] parent TextEditor [ ] // ... [ ] WINDOW wInvoke = TextEditor.Search.Find [ ] [ ] // in script [ ] TextEditor.Invoke() [ ] Find.Invoke()