I'm working on Visual Studio Extensibility and I need to set the "shell" language from code. In other words, I'm looking for an API to do the same you can do "by hand" with the Tools -> Options... -> Environment -> International Settings property page.
Up to now I didn't find any reference: hints and suggestions are welcome. ;-)
Thanks in advance.
EDIT: to clarify a bit the question, I need to set the current language of Visual Studio itself (actually of an Isolated Visual Studio Shell).
views:
177answers:
3I thank you, but the article is about setting culture inside a generic Windows application you write. Perhaps I was not clear enough in the question, but I need to set the current language of Visual Studio itself.
Fabrizio C.
2008-12-29 16:33:03
A:
Yes, ask on win32 api newsgroup (it's a FAQ)
news://comp.os.ms-windows.programmer.win32
Thank you. I went through the archive of the group but I wasn't able to find what I'm looking for. Can you give some more details?See my (tentative) answer for something we find in the meanwhile.
Fabrizio C.
2008-12-30 20:29:54
A:
I post here the current results of our (my coworker and me) search.
We found something at http://msdn.microsoft.com/en-us/library/ms165643.aspx .
In particular you can access that kind of options with
DTE.Properties("Environment", "International")
Fabrizio C.
2008-12-30 20:34:59