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.
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