Click to See Complete Forum and Search --> : Resource File


elefrancois
February 29th, 2000, 11:29 AM
I have a resource file (.RES)
I open the string table of this .Res file in C++ 6.0 and I receive the following message
"This table exeeds 6144 items and will be truncated". So I have to open this resource file in VB.
But, the maters is I cann't copy or add "bunch" of rows of the string table in C++ to the res file in VB.
Does exist any way to add a bunch of rows in a string table of a res file in VB. Or an option to skip the error message in VC++ 6.0
( text editor reading binary file, import string, I don't know )

Thanks in advance out there.

Etienne Lefrançois
Software Developer - STS Systems Ltd.
514.426.0822 Ext: 2344
mailto:elefrancois@stssystems.com

Lothar Haensler
March 1st, 2000, 02:25 AM
why not use several smaller string tables instead of one huge string table?

stringtable begin
100, "dtest"
end

stringtable begin
101, "test2"
end

the Stringtable statement can occur more than once in an RC file.