PDA

View Full Version : How to make a mui from exe or dll?


dancer_69
25th September 2007, 12:05 AM
Anyone knows if it is possible to make a mui translated file from an executable or a dll and how can I do this?

levenum
28th September 2007, 01:11 PM
An MUI file is a regular DLL file that has no code, just resources.
You could use a small DLL that has some code as an MUI but this will cause memory problems with the system if you use too many of them...

Best choice is to compile an empty DLL using one of the MS compilers.
Just create a basic DLL project, add the resources you want and compile.

dancer_69
28th September 2007, 02:56 PM
That was very helpfull, thank you!