Functions.DbContinue Method (Usual) |  |
Resume a pending locate condition.
Namespace:
XSharp.RT
Assembly:
XSharp.RT (in XSharp.RT.dll) Version: 2.16
Syntax FUNCTION DbContinue(
uArea AS USUAL
) AS LOGIC
public static bool DbContinue(
Usual uArea
)
Request Example
View SourceParameters
- uArea
- Type: Usual
Specifies the work area name or number for a table on which the operation must be performed.
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":
1DBUseArea(TRUE, "DBFNTX", "address", "Address",;
2 TRUE)
3LOCATE FOR UPPER(Address->Name) == "WINSTON"
4DO WHILE Found()
5 ? RECNO()
6 DBContinue()
7ENDDO
See Also