RunLegacyReflectionMacroFile Method (Macro)
Runs the legacy Reflection macro that in the specified macro file.
This example runs an RMA macro. To run this macro the first time, copy this sample to a code module and run it from that module. After you run this macro, it is copied and saved to the TemporaryLegacyMacro module in the VBA Editor. The next time you run the macro, you'll need to run it from this Legacy Project module.
Sub runLegacyMacro()
Dim path As String
path = Environ$("USERPROFILE") & "\Documents\Micro Focus\Reflection\RUODemo.rma"
Debug.Print path
ThisTerminal.Macro.RunLegacyReflectionMacroFile path, ""
End Sub