Programming Reference Manual
 
Syntax
 
MacroRunThis MacroCode$
 
Description
Play the macro code. 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
MacroCode$
The macro code that is to be executed.
See Also
Example
 
Sub Main
    Debug.Print "Before Demo"
    MacroRunThis "MsgBox ""Hello"""
    Debug.Print "After Demo"
End Sub