הערה
הגישה לדף זה מחייבת הרשאה. באפשרותך לנסות להיכנס או לשנות מדריכי כתובות.
הגישה לדף זה מחייבת הרשאה. באפשרותך לנסות לשנות מדריכי כתובות.
Question
Wednesday, May 8, 2013 5:17 AM
How can I make a multiple language programs in Vb.Net just I need advices for a small scale program. When a user chose another language that moment programs label and text directly chance on current screen. Is it possible?
All replies (4)
Wednesday, May 8, 2013 5:40 AM ✅Answered | 1 vote
It's called localization.
You can do it with code, where you access all the forms and all the controls on your forms and update them from tables specific to each supported language. Or, you can use the official MS procedure:
http://msdn.microsoft.com/en-AU/library/y99d1cd3(v=vs.110).aspx
Wednesday, May 8, 2013 8:33 AM ✅Answered | 1 vote
Keep in mind that this is only available for the older UI Windows Forms. And it is a bunch of work to deploy.
Creating your own XML file for this in an application you describe is mostly much easier.
Success
Cor
Wednesday, May 8, 2013 6:32 AM
It's called localization.
You can do it with code, where you access all the forms and all the controls on your forms and update them from tables specific to each supported language. Or, you can use the official MS procedure:
http://msdn.microsoft.com/en-AU/library/y99d1cd3(v=vs.110).aspx
That looks very nice to do.. And I also watched a video clip about that on youtube. Thanks for localization... I think I need to learn more about multilingual support.
Wednesday, May 8, 2013 8:48 AM
Keep in mind that this is only available for the older UI Windows Forms. And it is a bunch of work to deploy.
Creating your own XML file for this in an application you describe is mostly much easier.
Success
Cor
Car, thanks but I need to see a sample for that. I am a newbie one in VB.Net