multilanguage in c#

  • Thread starter Thread starter Ahmet AKGUN
  • Start date Start date
A

Ahmet AKGUN

Hi;

How can I create multylanguage windows forms in c# ?

I mean is it possible to change all resource language (button text, menus
etc.) from english to spanish
with a small change ?

any help will be appreciated..

Ahmet
 
Hi

Windows Forms are entirely Unicode-enabled, meaning that
each character is represented by a unique number, no
matter what the platform, program, or language.


However, certain controls do not support Unicode in
Windows 98 and Windows Millennium Edition. These
controls, all of which inherit from the common control,
will process data with the Windows code pages, as ANSI.
These controls are: TabControl, ListView, TreeView,
DateTimePicker, MonthCalendar, TrackBar, ProgressBar,
ImageList, ToolBar, and StatusBar. The result of this is
that you cannot display Unicode data in these controls on
the listed platforms. For example, you cannot display
Japanese characters on an English Windows 98 system.



Check out this URL:
http://msdn.microsoft.com/library/default.asp?
url=/library/en-
us/vbcon/html/vbtskcustomizingsettingsforspecificcultures.
asp

HTH
Ravikanth[MVP]
 
Sorry Ravikanth,
didn't notice the link you provided on the bottom on your post.

Greetz,
-- Rob.
 
Hi ...
about MultLnaguage..

iam Using Windows XP and it Support Arabic Languafe..
i can write Arabic in Word , or in th Internet..
But....
when i Used Visial Stedeu and try to print some Arabic
Character in the screen it print ????? just a question
mark..

so how do you think can I solve this Problem..??

thank you
 
Hello,

look at the link I posted above. You have to set 2 cultureinfo objects to
your desired language, and then it should work.

Greetz,
-- Rob.
 
Back
Top