Build

Takes a variable number of parameters

Usage:

FieldBase, Destination, Item1, Item2, [...other items...], IfLenFld
[WorkWith], Destination, Item1, Item2, [...other items...], IfLenFld
FieldBase, Destination, Item1, Item2, [...other items...], [WorkIf]
[WorkWith], Destination, Item1, Item2, [...other items...], [WorkIf]

Description:

Note: Unlike most other statements in MOX, because of the dynamic number of other items you must specify a blank FieldBase and a blank IfLenFld when they are not needed and they are not otherwise set by the commands WorkWith and WorkIf.

The contents of each Item are appended to each other and placed into Destination. The maximum number of items per statement is 9. For the best efficiency, use as few statements as possible when dealing with many items.

Examples:

Build "MemTab.Person.", "Fullname", "Firstname", "` ", "Lastname", ""

WorkWith "ToDo.Item"
Build "Name", "", "Name", "", "Alias"
NewFields "Delete"
Build "Delete", "Alias", "", "Alias"
End WorkWith