Xbasic
FORM.SWAP Function
Syntax
N Form.Swap([C formname ])
Arguments
- formname
The name of the new form to use.
Description
The .SWAP() method replaces the current form with a different form. Both forms have to be based on the same table.
Example
dim sptr as P
sptr = form.load("Customer Information")
sptr.show()
? sptr.swap("customerx")Limitations
Desktop applications only.
See Also