XBase.Next
Next()
Type:
Boolean.
True indicates the next record was received;
False indicates the end of the selection has been reached.
Positions the object in the next record. Depending on whether or not the current index is set, positioning takes place either in ascending order by record number, or in ascending order by the current index expression value (if the index was created with the "Descending" flag set, the object will be moved in descending order).
Thin client, server, thick client, external connection.
// Zeroizes value of all fields in all existing records xB.First(); While True Do xB.Clear(); xB.Write(); If Not xB.Next() Then Break; EndIf; EndDo;
|