C++ Builder Runtime Localization

Hello,

I am having a hard time getting the C++ Builder version of the runtime localization packages to work.

In delphi, it is simply the commands of:

uses frxRes
frxResources.LoadFromFile([...]);


But if I use the C++ equivalent of
#include "frxRes.hpp"
TfrxResources *Res = new TfrxResources();
Res->LoadFromfile( [...] );

it does not work.

Comments

  • gpigpi
    edited 10:47PM
    Try
    ((TfrxResources *)frxResources())->LoadFromFile("C:\\Russian.frc");
    frxReport1->ShowReport(True);
    

Leave a Comment