CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 2 of 2

Thread: Resource File

  1. #1
    Join Date
    Jan 2000
    Location
    Montreal
    Posts
    58

    Resource File

    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:[email protected]

  2. #2
    Join Date
    May 1999
    Posts
    3,332

    Re: Resource File

    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.


Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured