Whenever possible, create macros in Modules. Doing so will add to the integrity and stability of your program. The exception to this rule is event procedures, which are added directly to Reflection objects.
To create a macro in the Visual Basic Editor
In Reflection, open a session document.
The steps depend on your user interface mode.
User Interface Mode |
Steps |
---|---|
Reflection Ribbon |
From the Macros tab, click Visual Basic. |
Reflection Browser |
On the Reflection menu, choose Tools, Macroand then Visual Basic. |
TouchUx |
Tap the Wrench icon and then under Macro, select Visual Basic. |
The session document appears as a project in the Project Explorer; for example, Project (My Session.rd3x).
In the Project Explorer, select the project in which you want save the macro, and then choose Insert > Module to create a new module.
Double-click the module you created.
The Codewindow opens.
Choose Insert> Procedure, type a name in the Namebox, and then click OK.
The name you choose must follow the Visual Basic naming conventions for macros. For further information, see Naming Macros.
Type code for your macro between the Sub (or Public Sub) and End Sub statements.
Context-sensitive Help is available for Visual Basic commands. Position the insertion point within a command and press F1.