Click or drag to resize

DbContinue Function

X#
Resume a pending locate condition.

Namespace:  XSharp.RT
Assembly:  XSharp.RT (in XSharp.RT.dll) Version: 2.19
Syntax
 FUNCTION DbContinue() AS LOGIC
Request Example View Source

Return Value

Type: Logic
TRUE if successful; otherwise, FALSE.
Remarks
DBContinue() is the functional form of the CONTINUE command.
For more information, see the CONTINUE command.
Examples
The following example searches for all occurrences of the name "Winston":
X#
1DBUseArea(TRUE, "DBFNTX", "address", "Address",;
2                TRUE)
3LOCATE FOR UPPER(Address->Name) == "WINSTON"
4DO WHILE Found()
5    ? RECNO()
6    DBContinue()
7ENDDO
See Also