A module contains procedures, data and type declarations, and definitions. Your VBA project does not need to include a module, but there are advantages to doing so. By creating a module, you can include multiple UserForms in your project and you can also run your project as a macro from the Tools menu in IntelliCAD or by using the VBARUN command.
Public myVariable as Double
Sub anyMacro ()
UserForm1.Show
End Sub
Tell me about...