VoDbGoto Function | |
Move to a record specified by record number.
Namespace:
XSharp.RT
Assembly:
XSharp.RT (in XSharp.RT.dll) Version: 2.21
Syntax FUNCTION VoDbGoto(
uRecId AS USUAL
) AS LOGIC
public static bool VoDbGoto(
Usual uRecId
)
Request Example
View SourceParameters
- uRecId
- Type: Usual
Return Value
Type:
Logic
TRUE if successful; otherwise, FALSE.
Remarks
VODBGoTo() is like DBGoTo() but is strongly typed.
This function, however, does not call the error handler and will not, therefore, produce a runtime error message or create an error object if it fails. Thus, it may be important to check the return value to determine if the function succeeded.
The global structure, StrucErrInfo, will contain needed information regarding any error that occurs. See DBGoTo() for more information and an example.
Examples See Also