home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Hot Shareware 37
/
hot37.iso
/
FICHEROS
/
LVB
/
CGIT201.ZIP
/
DEMOCHIN.BA_
/
DEMOCHIN.BA
Wrap
Text File
|
1998-06-08
|
916b
|
18 lines
Attribute VB_Name = "moddemoChinese2"
'VB5-CGI Objects script example: demoChinese2.bas
'Copyright 1997, 1998 EazyWare - http://www.eazyware.com/vb5-cgi
'-------------------------------------------------------------------------------
'This demo shows how to implement a custom decoding algorithm for other than
'single byte character languages, such as Chinese, Japanese, Korean, ...
'IMPORTANT: It works only on DBMS systems, supporting double bytes characters.
'NOTE: I could not test myself the proper functionality of the decode algorithm,
' since I don't have a Chinese Windows (and I wouldn't understand either).
'-------------------------------------------------------------------------------
Option Explicit
Private StartClass As New clsdemoChinese2 'Create instance of the clsdemoChinese2 class
Sub Main()
StartClass.Start 'Invoke the CGI script
End Sub