CoreDb.SetSelect Method | |
Select a new work area.
Namespace:
XSharp
Assembly:
XSharp.Core (in XSharp.Core.dll) Version: 2.19
Syntax STATIC METHOD SetSelect(
siNew AS LONG
) AS DWORD
public static uint SetSelect(
int siNew
)
Request Example
View SourceParameters
- siNew
- Type: Long
The number of the new work area. 0 indicates the first available free Workarea. -1 indicates the last available free Workarea.
Return Value
Type:
DWordThe newly selected work area.
Remarks This function is like DBSetSelect() but strongly typed.
This function, however, does not call the error
handler and will therefore not produce a runtime error message or create an error object if it fails.
Therefore it is important to check the return value to determine if the function succeeded.
The LastRddError property in the runtimestate
will contain needed information about any error that occurs.
Tip |
---|
VoDbSetSelect() and CoreDb.SetSelect() are aliases |
See Also