Can't get translation to work in bpl
Posted: Fri Sep 30, 2005 2:11 pm
The following code works in a test application but not in a runtime bpl:
Declaration in form:
In implementation uses clause:
Code to switch to french:
When I run the application using the bpl, the message dialog is displayed, but the chart previewer still displays in english. When I run the test application using the same code, the chart previewer displays in French as I expected. Any suggestions?
Thanks in advance.
Declaration in form:
Code: Select all
dbChartPreviewer: TChartPreviewer;
Code: Select all
TeeFrench, TeeProCo;
Code: Select all
TeeSetFrench;
MessageDlg('Did TeeSetFrench.', mtInformation, [mbOK], 0);
dbchartpreviewer.execute;
Thanks in advance.