Archive: LangDLL question


LangDLL question
First, I'm not using the modern UI...
How can I apply chosen language in the uninstaller?


MUI saves the value in the registry. You can do as the MUI does or save it in a file, or an INI file.


>> MUI saves the value in the registry

Where? :eek:


Wherever you tell it to using:

MUI_LANGDLL_REGISTRY_ROOT
MUI_LANGDLL_REGISTRY_KEY
MUI_LANGDLL_REGISTRY_VALUENAME


i see - but when i do not use it i wont get any entry

and how about instead? is uninstall using same routines as install to get the language?


Yes, the uninstaller gets the language from the registry, and if not from LangDLL. See the MUI readme for more information.


Originally posted by kichik
MUI saves the value in the registry. You can do as the MUI does or save it in a file, or an INI file.
If I save it in a INI File, how do I make that LangDLL read it?

Use ReadINIStr $LANGUAGE ... before you call LangDLL.


Ok... I'l try that ...
thanks :)

[edit]
Works fine ;) :up:
Thanks
[/edit]