Reflection Desktop VBA Guide
Attachmate.Reflection.Objects.Emulation.OpenSystems Library / Attachmate.Reflection.Objects.Emulation.OpenSystems Library / Macro Object / RunMacro Method
A ProjectOption value. The location of the macro. ProjectOption_CurrentProject refers to a macro in the current session document's VBA project. ProjectOption_CommonProject refers to a macro in the Common VBA project.
The name of the macro to run.
Parameter to pass to the macro.
In This Topic
RunMacro Method (Macro)
In This Topic
Runs a macro.
Syntax
expression.RunMacro( _
   ByVal macroSource As ProjectOption, _
   ByVal macroName As String, _
   ByVal macroParameter As String _
) 
where expression is a variable that represents a Macro Object

Parameters

macroSource
A ProjectOption value. The location of the macro. ProjectOption_CurrentProject refers to a macro in the current session document's VBA project. ProjectOption_CommonProject refers to a macro in the Common VBA project.
macroName
The name of the macro to run.
macroParameter
Parameter to pass to the macro.
See Also