Macro.Execute
Use this function to execute the macro.
| Syntax | Parameters | Return value |
|---|---|---|
| - | This function has no parameters. | This function does not return a value. |
SVB Example
Opening and running another macro:
Option Base 1
Option Explicit
Sub Main
Dim m As Macro
Set m = Macros.Open(Path & _
"\Examples\Macros\Graph Examples\Henon Strange Attractor.svb")
m.Execute()
m.Close()
End Sub