because I want that myexefile.exe is of the same language of the main setup.
ExecWait '" $DESKTOP\myfolder\myexefile.exe" $LANGUAGE' $0
in myexefile.exe in .myGuiInit function I wrote this code
In $0 variable I find the language code sent by exec for example for italian I found 1040, for spanish 1034 of for french 1036 anyway I found the right code of the chosen language.
Function .myGuiInit
${GetParameters} $0
FunctionEnd
I tried setting $LANGUAGE with this code or with ${LANG_SPANISH} if I found the spanish code but this way doesn't work. Installation files page is shown in italian.(my OS language)
How can I make the language change according to the code in .myGuiInit?
I hope I was clear my english sucks
Thnks