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!

Internationalization ??

Status
Not open for further replies.

vmaruv

Programmer
Apr 8, 2002
102
US
Hi,

I have developed a VB 6 interface for backup and recovery of SQL Database. Is it possible to translate the VB code in other languages like Japanese, French etc ? Is there any tool that can automatically do the conversion if I input the exe ? The requirement is that all the lables,buttons etc have to be in the respective langugage.
I have no idea about this..please can someone suggest ?

Thanks in Advance
 
you need to look at resource string tables. There are quite a few good examples in this forum. As for automated services, there are a few websites for direct translation, although I'm not sure of their technical knowledge, but these only translate line by line. I'm not sure of any application translate your entire exe for you. I'd be quite happy to be shown otherwise.

Good luck

BB
 
You should be aware that the VB forms engine uses ANSI, not Unicode, so you're pretty much limited to Western European character sets.

An alternative would be to find a copy of VB which had been localized by Microsoft for that market, and port your code to it (should just be a load & compile, but could be more)

If you want true internationalization, you'll need to switch to VB.NET.

Chip H.


____________________________________________________________________
If you want to get the best response to a question, please read FAQ222-2244 first
 
Thanks a lot for the answers. I was really not knowing anything about internationalization before I put my question here. I have a better picture of doing things now.

THANKS A LOT AGAIN !!

Reagards to all
Vidya.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top