MacroRunThis Instruction

Syntax              MacroRunThis MacroCode$

Group                Flow Control

Description       Play the macro code in MacroCode. Execution will continue at the following statement after the macro code has completed. The macro code can be either a single line or a complete macro.

Parameter         Description

MacroName$       Run the macro code in this string value.

See Also            Command$, MacroCheck, MacroCheckThis, MacroDir$, MacroRun, ModuleLoad, ModuleLoadThis.

Example            '#Language "WWB-COM"
Sub Main
    Debug.Print "Before Demo"
    MacroRunThis "MsgBox ""Hello"""
    Debug.Print "After Demo"
End Sub