DbContinue Function | |
Resume a pending locate condition.
Namespace:
XSharp.RT
Assembly:
XSharp.RT (in XSharp.RT.dll) Version: 2.19
Syntax 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