DbContinue Function | |
Resume a pending locate condition.
Namespace:
XSharp.RT
Assembly:
XSharp.RT (in XSharp.RT.dll) Version: 2.21
Syntax FUNCTION DbContinue() AS LOGIC
public static bool DbContinue()
Request Example
View SourceReturn 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":
1DBUseArea(TRUE, "DBFNTX", "address", "Address",;
2 TRUE)
3LOCATE FOR UPPER(Address->Name) == "WINSTON"
4DO WHILE Found()
5 ? RECNO()
6 DBContinue()
7ENDDO
See Also