*BeginForm()
Indicates the beginning of a form block inside a *DefineAnalysis() block.
Syntax
*BeginForm(form_name)Arguments
- form_name
- The variable name of a form inside the *DefineAnalysis() block specified in the *BeginTask() statement.
Example
*BeginPanel()
    *Title("Panel 1")
    *Prompt("make selections")
    *BeginTaskGroup(group_1, "Task Group 1")
        *BeginTask("Task 1", andef_1, "file2.mdl",
                   "The first analysis task",
                   model.sys_1.body_1,
                   model.sys_1.body_2)
            *BeginForm(form_1)
                *Title("Form number one")
                *Prompt("Enter data")
            *EndForm()
        *EndTask()
    *EndGroup()
*EndPanel()Context
*BeginTask()
Comments
Every *BeginForm() statement requires an ending.
A form created using *BeginForm() is accessible from the Task Wizard in MotionView.
Multiple forms can be displayed on the same panel by using a *BeginTabbedForm() statement in place of the *BeginForm() statement.