Sys(2300)
This function, added in VFP 7, lets you control whether a particular code page is included in the list of languages given National Language Support.
Usage |
cSupported = SYS( 2300, nCodePage [, nAction ] ) |
Parameter |
Value |
Meaning |
nCodePage |
Numeric |
The code page whose status you want to check or set. |
nAction |
0 |
Turn off support for the specified code page. |
1 |
Turn on support for the specified code page. |
|
cSupported |
"0" |
The specified code page is not supported at this time. |
"1" |
The specified code page is supported at this time. |
Example |
* Add support for the Russian Windows code page. cWasSupported = SYS(2300, 1250, 1) |
See Also |
CPConvert(), CPCurrent(), CPDBF(), Double-Byte Character Sets, GetCP(), IDXCollate(), Set Collate, Set CPCompile, Set CPDialog, Set NoCPTrans |