1
I’m studying some sources of how to internationalize the software, and in the example I have the software has a Unit with constant strings (captions, etc), something like:
unit Resources;
interface
resourcestring
CompanyName = '***';
implementation
end.
And another one with the Ids for each string to then call via:
System.SysUtils{$ELSE}SysUtils{$ENDIF}.LoadStr(ID)
The project has an RES file, something like Strconsts.res, which he calls in the program directive:
{$R StrConsts.res}
res has only one Stringtable, with all the Ids and the referring strings, what I wanted to know is how to generate the res file from Unit resourcestring.
i understood what you wrote, but I’m wondering how to generate the RES file.
– Artur_Indio