Message Box Language

  • Thread starter Thread starter cmdolcet69
  • Start date Start date
C

cmdolcet69

How can i handle message box string that are in English and convert
what they display into Portuguese? Is there some sort of built in
library that will do the conversion for me at run time? No to familiar
with this area of language conversion

Please help
 
How can i handle message box string that are in English and convert
what they display into Portuguese? Is there some sort of built in
library that will do the conversion for me at run time? No to familiar
with this area of language conversion

Please help

AFAIK, there is no internal translator, you basically need to store
the translations somewhere and display the proper one. You might want
to do some research into the globalization settings for .NET, thats
the "Microsoft recommend" way of doing this.

Thanks,

Seth Rowe [MVP]
http://sethrowe.blogspot.com/
 
How can i handle message box string that are in English and convert
what they display into Portuguese? Is there some sort of built in
library that will do the conversion for me at run time? No to familiar
with this area of language conversion

Please help

Similar question of you was tried to be answered here:

http://groups.google.com/group/micr...f65e1?hl=en&lnk=st&q=message#4a60618346ff65e1

AFAIK, messagebox's language is based on OS language, so the best way
would be to implement your own messagebox possible using a custom
form.

Hope this helps,

Onur Güzel
 
Back
Top