Equinox Online Help - Language Reference - A to Z

Home

BlankRecord

Applies to
SyntaxBlankRecord
Action[Statement] De-selects the current record.
ScopeOnly usable in subtables
Notes

This statement resets the record pointer, so that no record in the current database is selected. It clears the current record information and empties the current record view buffer. If an error occurs, an error number is stored in the system workarea SysError.

CategoryRecord editing
See Also BlankRecord, DeleteRecord, FieldChanged, InsertRecord, IsField, ReplaceRecord
Example

The following method adds records to a repayments table. The record's fields are left blank, except for the date of the repayment.

number mth
date paydate

subtable repay
BlankRecord | clear all fields

paydate = Today | first payment 1 Month from Today

for mth = 1 to NoRepayments | add 1 record per repayment
paydate = Dmyadd(paydate, , 1)
RepayMonth = paydate
InsertRecord
next
end subtable