Click here to Skip to main content
15,885,979 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hi there,

How can I change the language of a visual studio 2010 setup project? The langauge is not in the Localization Property of the setup project. I saw that I have to create a folder with the language code page in the folder "C:\Program Files (x86)\Microsoft Visual Studio 10.0\Common7\Tools\Deployment\VsdDialogs". I did that but what should I populate that folder with?

Thank you
Posted

1 solution

 
Share this answer
 
Comments
Member 10999544 16-Dec-14 1:04am    
I have a weird problem the GUI is in English bt data displayed in the list box is chinese. i dont know which setting i changed and caused this. plz help.
Volynsky Alex 16-Dec-14 3:14am    
I don't understand your question ...
Please check the language data which is entered in the listbox (maybe they read from the database in Chinese)

Maybe you're doing something like this:
mylistbbox.AddString ((LPCTSTR) "Hello world");
and it print out some random chinese characters.
So, if you have a Unicode build. Use the _T macro for string literals : mylistbbox.AddString(_T("Hello world"));

I think it will be useful for you to read following post:
http://msdn.microsoft.com/en-us/library/c426s321.aspx

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900