codePage read/write property If
unicodeText property is FALSE
this property specifies the code page used for translations.
Syntax:
object.codePage = value
variable = object.codePage
Code pages:
Most popular code page codes are defined in the ASP
include files:
Const cpAnsi = 0 ' ANSI code page
Const cpOem = 1 ' OEN code page
Const cpMac = 2 ' MAC code page
Const cpThread = 3 ' Current thread code page (not good for scripting)
Const cpSymbol = 42 ' Symbol code page
' Specific code pages - if they are not installed on the system conversions will fail
Const cpThai = 874
Const cpJapanese = 932
Const cpChinese = 936
Const cpKorean = 949
Const cpChinese2 = 950
Const cpEasternEuropean = 1250
Const cpCyrillic = 1251
Const cpWestern = 1252
Const cpGreek = 1253
Const cpTurkish = 1254
Const cpHebrew = 1255
Const cpArabic = 1256
Const cpBaltic = 1257
Applies to: SFFilter object
Supported on:
Windows 95/NT and later
Windows CE 3.0 and later
Pocket PC/Windows Mobile 2003 and later
Windows CE.NET 4 and later
|