Language problem
I have a program that enables an end user to design his own reports, print and save them.
i have a button that when pressed it open a fastreport object in design mode.
when i open it at design mode in design time in delphi it shows ok, in english, but when i run the program and open the design all the captions are in german.
for example, the close button caption is Indiche or something.
This problem started recently and i didnt touch the package for quite a while.
What seems to be the problem?
How can i return it to normal? (English?)
Regards,
Shlomi
i have a button that when pressed it open a fastreport object in design mode.
when i open it at design mode in design time in delphi it shows ok, in english, but when i run the program and open the design all the captions are in german.
for example, the close button caption is Indiche or something.
This problem started recently and i didnt touch the package for quite a while.
What seems to be the problem?
How can i return it to normal? (English?)
Regards,
Shlomi
Comments
Like this:
use resources in a DLL. Compile the resource DLL (run mkdll.bat file from the FRRESyour_resource folder) and write in your program:
frLocale.LoadDll('FR_ENGL.DLL');
If you want to use default resources, write:
frLocale.UnloadDll;
--
And nothing else matter
frReport.DesignReport;
but i talk that it's in romanian (not german if i was mistaken) even when
i double click the report object at design time to edit it.
something was changed in the reports own language, because some words are in romanian and some in english, it's really frustrating.
Thanks for the reply,
Shlomi
running the batch files wasn't enouph, i had to recompile and reinstall fastreport
after that all thing went back to normal
Thanks a lot anyway,
Shlomi