Command Line operation

All announcements, questions and issues related to the Resource Builder
Post Reply
jeffdavis
Posts: 4
Joined: Tue Jun 12, 2007 12:49 am

Command Line operation

Post by jeffdavis »

I would like to run Resource Builder as part of our build process for localization.

I have 23 separate .RES files one for each language (these are provided to me from the translators). I need to import the string tables from each of these .RES files into a .RES file that has the english string table and then save that .RES file.

How would I do this with command lines that are available?
isiticov
Site Admin
Posts: 2383
Joined: Thu Nov 21, 2002 3:17 pm

Post by isiticov »

You can use
resbldr2.exe -e ALL input_file_name output_file_name command line to extract all resources from RES files into RC files. And later combine created RC files into one big RC file which can be compiled into RES that will contain all your strings at same time.
Does this help?
Best regards,
Igor Siticov.
jeffdavis
Posts: 4
Joined: Tue Jun 12, 2007 12:49 am

Command Line operation

Post by jeffdavis »

What I did was build my application. I then use the sircc32.exe with the -la command and pass the .RES file and the .EXE filename. I just repeat this for each language .RES file in a batch file. When done the .EXE contains all the language files. It is working fine for me.

Jeff
Post Reply