Programming Reference Manual
 
Syntax
 
MacroRun MacroName$[, Command$]
 
Description
Play a macro. Execution will continue at the following statement after the macro has completed.
 
Parameter
Description
MacroName$
Run the macro named by this string value.
Command$ 
Pass this string value as the macro's Command$ value.
See Also
Example
 
Sub Main
    Debug.Print "Before Demo"
    MacroRun "Demo"
    Debug.Print "After Demo"
End Sub