Click or drag to resize

DbServer.Continue Method

X#
Resume a pending DBServer:Locate() operation, searching for the next record that matches (like the DBContinue() function).

Namespace:  VO
Assembly:  VORDDClasses (in VORDDClasses.dll) Version: 2.19
Syntax
 VIRTUAL METHOD Continue() AS USUAL
Request Example View Source

Return Value

Type: Usual
TRUE if successful; otherwise, FALSE. After the operation, the DBServer:Found access can be used to determine if a record was found.
Remarks
Sends a NotifyIntentToMove message before the operation.
Sends a NotifyRecordChange message upon completion, whether successful or not.
Continue respects the FOR clause of the original Locate(), but ignores any WHILE clause and scope. If you want to continue searching with the WHILE clause of the original Locate() operation, set the scope to REST and do another Locate(). If DBServer:Found returns FALSE, the current record will be the last record and DBServer:EOF will be TRUE.
See Also