Xbasic
FORM.RECNO_GOTO Function
Syntax
L Form.Recno_goto(N recno )
Arguments
- recno
The record order number of the desired record.
Description
The .RECNO_GOTO() method makes the specified record number current.
Example
The following example displays the Inventory form with record number 6.
dim sptr as P sptr = form.load("Inventory") sptr.Recno_goto(6) sptr.show()
Limitations
Desktop applications only.
See Also