Mega Code Archive

 
Categories / Delphi / Files
 

How to create string resource files (.res)

Title: How to create string resource files (*.res) Create a new textfile. content: STRINGTABLE BEGIN 1 , "first string" 2 , "second string" 3 , "Swiss Delphi Center" END When you have done this, save the file under test.rc Next you have to compile this resource script with the Borland resource compiler. brc32.exe -r test.rc Now you have the compiled resource file test.res