home *** CD-ROM | disk | FTP | other *** search
/ PC Press 1998 September / Sezamfile98_2.iso / VBasic / VB5-CGI.ZIP / demoChinese2.ba_ / demoChinese2.ba
Text File  |  1998-06-08  |  916b  |  18 lines

  1. Attribute VB_Name = "moddemoChinese2"
  2. 'VB5-CGI Objects script example: demoChinese2.bas
  3. 'Copyright 1997, 1998 EazyWare - http://www.eazyware.com/vb5-cgi
  4. '-------------------------------------------------------------------------------
  5. 'This demo shows how to implement a custom decoding algorithm for other than
  6. 'single byte character languages, such as Chinese, Japanese, Korean, ...
  7. 'IMPORTANT: It works only on DBMS systems, supporting double bytes characters.
  8. 'NOTE: I could not test myself the proper functionality of the decode algorithm,
  9. '      since I don't have a Chinese Windows (and I wouldn't understand either).
  10. '-------------------------------------------------------------------------------
  11.  
  12. Option Explicit
  13. Private StartClass As New clsdemoChinese2   'Create instance of the clsdemoChinese2 class
  14. Sub Main()
  15.     StartClass.Start                        'Invoke the CGI script
  16. End Sub
  17.  
  18.