Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chriss Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Visual Basic Internationalization .... Japanese Charaters

Status
Not open for further replies.

leena34

Programmer
Jul 8, 2003
3
AU
Hi,
I am currently working on a visual basic project. I have some difficulties writing Japanese characters.

Can anyone help solving this problem with a clear procedure?

Thanks alot in advance ....
Lee
 
You need to be a little more specific -- Japanese characters on a form, to a file, to a database?

Chip H.
 
Hi,
Japanese Charaters on a form.

Thank you,
Lee
 
Lee -

You need to use the Japanese localized version of Visual Basic, then. It seems that the form engine part of VB 6 does not understand Unicode -- only ANSI (for US market). So if you want to display Hiragana or Katakana characters you need the version of VB for the Japanese market.

If you want to use those character sets to/from a database, that's fine, because that part of VB is fully Unicode enabled (UTF-16). Of course your database columns need to be NCHAR, NVARCHAR or NTEXT! But it will handle it.

Chip H.
 
Thanks alot Mr. Chiph.
Appreciating your response.

Thanks alot,
Lee
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top