Click here to Skip to main content
15,894,907 members
Everything / Multi-lingual

Multi-lingual

multi-lingual

Great Reads

by Steffen Ploetz
How to provide multi-language resources from .NET compatible *.resx files for GUI applications on ReactOS (and other non-Windows OS like Linux)

Latest Articles

by Steffen Ploetz
How to provide multi-language resources from .NET compatible *.resx files for GUI applications on ReactOS (and other non-Windows OS like Linux)

All Articles

Sort by Score

Multi-lingual 

29 Jun 2016 by Jochen Arndt
If you need to do this by code just iterate over the possible IDs.Untested example based on existing code to scan string resources in DLLs:int GetID(HMODULE hModule, LPCTSTR str){ // Declare CString object outside the loop to avoid // memory allocation with each call to...
8 Jan 2018 by Steffen Ploetz
How to provide multi-language resources from .NET compatible *.resx files for GUI applications on ReactOS (and other non-Windows OS like Linux)
9 Nov 2015 by CodingLover
Hi all,Can anyone please redirect me to a tutorial on how to create a MUI installer? All my search results pointed on installing Windows MUIs. Thanks in advance.
29 Jun 2016 by Member 10620726
I know it's a little bit tricky but I need it for an application. Generally we use LoadString function to load a string from a resource in language, specifying the HINSTANCE of the dll.What I have tried:I'm looking for a way to reverse this method by knowing the string and the...
29 Jun 2016 by KarstenK
It is an easy trick: open the dll in Visual Studio as resource file. ("Open File" + select "resource" as file type)Than you see the string list table and can search for it.
18 Jul 2021 by Jeffio_
I have a .NET webforms site and a .NET MVC site. I want to make them multilingual. This is not a "how to" question. I want to know, high level, what people have implemented in production sites and the pros and cons of those implementations. How...