Equinox Online Help - Language Reference - A to Z

Home

GroupSkipRecord

Applies to
SyntaxGroupSkipRecord GroupnameExpression, SkipExpression
Action[Statement] Allows you to specify a group via the GroupnameExpression parameter rather than defaulting to the current group.
ScopeOnly usable in forms.
Notes

It allows you to skip the number of records specified by the SkipExpression parameter. The system workarea SysError is set to a non-zero value if an error occurs, otherwise zero.

CategoryRecord navigation
See Also GroupFirstRecord, GroupLastRecord, GroupNextRecord, GroupPreviousRecord, LastRecord, NextRecord, PreviousRecord, SkipRecord
Example

This method selects an index which is based on the customer name and finds a default record. It then skips the next ten records.

GroupSetIndex "STOCK", StockCode
GroupFindRecord "STOCK", EQ, "TR002"
If Not SysError Then GroupSkipRecord "STOCK", 10