Click or drag to resize

AdsSetServerType Function

X#
See the ADS documentation for more information about this function.

Namespace:  XSharp.RDD
Assembly:  XSharp.Rdd (in XSharp.Rdd.dll) Version: 2.19
Syntax
 FUNCTION AdsSetServerType(
	usServerOptions AS WORD
) AS DWORD
Request Example View Source

Parameters

usServerOptions
Type: Word

Return Value

Type: DWord
All methods in the Advantage Client Engine return either 0 for success or an error code. Most of the error numbers are defined in the AceError enumeration. You can call AdsGetLastError() to retrieve the message for the error code.
Remarks
This function calls the method with the same name in the Avantage Client Engine.
Some important differences between the ADS API in Visual Objects and the ADS API in X#
Handles In Visual Objects the handles (Table Handle, Index Handle, Connection Handle etc) are declared as DWORD. In X# they are declared as IntPtr since the size can be 32 bits when the application is running in 32 bit mode but 64 bits when the application is running in 64 bits mode.
String parameters In Visual Objects the string parameters are all declared as PSZ. In X# you can use normal strings. The .Net runtime takes care of the conversions between managed unicode strings and unmanaged native Ansi strings.
See Also