|
-
Dec 22nd, 2018, 08:44 AM
#1
Re: [vb6] Project Scanner
 Originally Posted by DrUnicode
As mentioned in thread #90, this is LCID 2052 DBCS, not UTF8
What you see on U.S. system
---------------------------
VersionComments="ºÜ°ôµÄÏîĿɨÃèÆ÷"
VersionCompanyName="¹«Ë¾(LaVolpe)"
VersionFileDescription="ÏîĿɨÃèÆ÷"
VersionProductName="ÏîĿɨÃèÆ÷"
Converted to Chinese (LCID 2052)
--------------------------------
VersionComments = 很棒的项目扫描器
VersionCompanyName = 公司(LaVolpe)
VersionFileDescription = 项目扫描器
VersionComments = 项目扫描器
Translated Chinese to English w/Google
--------------------------------------
VersionComments = Great Project Scanner
VersionCompanyName = Company (LaVolpe)
VersionFileDescription = Project Scanner
VersionProductName = Project Scanner
Hi DrUnicode,
you are right. Since VB6 IDE is ANSI, the Chinese chars we input in the VB6 IDE are not Unicode, but ANSI. For example: Ascii of "中" is -10544 (Asc("中") = -10544, Ascw("中") = 20013). So in our VB6 source code we need to judge "Asc(sChar) > 32 Or Asc(sChar) < 0". Olaf's cwTextBox can't input Chinese chars is the same reason.
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|