makenewform
FORM
,
BEFORE

The makenewform statement creates a new form in the current database.


Parameters

This statement has two parameters:

form – is the name of the new form. There must not already be a form with this name.

before – is used to specify the location of the new form. If before is "" or missing entirely, the new form is added at the end of all current forms. If before contains the name of an existing form, the new form will be inserted in front of the specified form.


Description

This statement will add a new, empty form to the current database.

This example creates a new form named Mailing Label. The new form is added a the end of the list of forms in the database.

makenewform "Mailing Label"

This example creates a new form named Shipping Label. The new form is inserted in front of the Mailing Label form.

makenewform "Shipping Label","Mailing Label"

See Also


History

VersionStatusNotes
10.0UpdatedNew in this version.