Click or drag to resize

GetNatDLL Function

X#
Get the current DLL for nation-dependent operations and messages.

Namespace:  XSharp.Core
Assembly:  XSharp.Core (in XSharp.Core.dll) Version: 2.19
Syntax
 FUNCTION GetNatDLL() AS STRING
Request Example View Source

Return Value

Type: String
The name of the current nation-dependent DLL.
Remarks
The default library for nation-dependent operations is VO28NAT.DLL, but you can change it using SetNatDLL(). GetNatDLL() returns the current setting for the nation-dependent DLL.
Examples
This example shows the difference in the return value of GetNatDLL() before and after a call to SetNatDLL():
X#
1? GetNatDLL()                // VO28NAT.DLL
2? SetNatDLL("GERMAN.DLL")        // .T.
3? GetNatDLL()                // GERMAN.DLL
See Also