|
|
|
|
|
<Source>.RestorePosition (Function) In french: <Source>.RetourPosition
Not available with this kind of connection
Restores the previously saved context of a table (function <Source>.SavePosition): record in progress, filter, read pointers. <Source>.RestorePosition is used to restore: - the different pointers in the index,
- the current filter.
This function can be used with the tables, HFSQL views or queries.
Customer.ReadSeekFirst(Name, Name)
WHILE Customer.Found() = True
nPos = Customer.SavePosition(Name)
Customer.ReadSeek(Name, Name2)
IF Customer.Found() = True THEN Counter = Counter + 1
HRestorePosition(nPos)
Customer.ReadNext(Name)
END
Syntax
<Result> = <Source>.RestorePosition()
<Result>: Boolean - True if the specified position was restored,
- False otherwise. HError returns more details about the problem.
<Source>: Type corresponding to the specified source Name of the table whose context is to be restored. Business / UI classification: Business Logic
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|