|
|
|
|
NewRecord (Property) In french: NouvelEnregistrement
 Not available with these kinds of connection
The NewRecord property is used to determine if the record is a new record or if it comes from the data file.
// Find out whether the record was created IF Customer.NewRecord = True THEN Info("This record was created") END
Syntax
Finding out whether the record is a new record Hide the details
<Result> = <Data file>.NewRecord
<Result>: Boolean - True if the record is a new record (HReset was used),
- False otherwise.
<Data file>: Character string Name of the data file used. Remarks By default, the NewRecord property is set to True. This property is also set to True if HReset was used. It is reset to False when one of the following functions is called: Remark: Assigning a variable of type Record to a file also changes the value of the NewRecord property.
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|