3.18 multilanguage support problem
I have changed the printarray demo project1.dpr file by adding the following lines
uses
...
windows,
reninit
...
LoadNewResourceModule((SUBLANG_ENGLISH_UK shl 10) or LANG_ENGLISH);
ReinitializeForms;
and also added the english language via the languages menu.
Doing so will crash the demo, can someone explain why, and give a hint to a solution.
I have a main application with the same problem and I need it solved before 13:00 (12-okt-05)
I also tried adding
frxResources.LoadFromFile(ExtractFilePath(Application.ExeName) +'english.frc');
but that does not solve it
uses
...
windows,
reninit
...
LoadNewResourceModule((SUBLANG_ENGLISH_UK shl 10) or LANG_ENGLISH);
ReinitializeForms;
and also added the english language via the languages menu.
Doing so will crash the demo, can someone explain why, and give a hint to a solution.
I have a main application with the same problem and I need it solved before 13:00 (12-okt-05)
I also tried adding
frxResources.LoadFromFile(ExtractFilePath(Application.ExeName) +'english.frc');
but that does not solve it
Comments
In catalogue Res\English start mk.bat. To do the multi-language resource, it is necessary to start mkall.bat - is got file English.frc, which it is necessary to load so: uses frxRes; frxResources.LoadFromFile('English.frc');
With the same demo from fastreport and the add language option from delphi and the reninit unit?
With thanks to the help of dennis
Hedaal, can you explain what you did ? I have the some problem too.
Thanks
lmir