CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 5 of 5
  1. #1
    Join Date
    Aug 2005
    Posts
    218

    How to update string table without using IDE?

    Whare are some ways of updating the string table of a project without going into the IDE and changing the string table?

    Is there a file I can edit directly?
    Command line option to set a string table when compiling?

    Thanks!

  2. #2
    Join Date
    Feb 2000
    Location
    San Diego, CA
    Posts
    10,354

    Re: How to update string table without using IDE?

    Just open.rc file using notepad

  3. #3

    Re: How to update string table without using IDE?

    Quote Originally Posted by kirants
    Just open.rc file using notepad
    And must update resource.h file using notepad.
    Best Api Monitor tool.
    Trace the target program automatically and monitor the parameters of all API and COM interfaces.

    Auto Debug for Windows 4.0
    Auto Debug for .Net
    http://www.autodebug.com/

  4. #4
    Join Date
    Aug 2005
    Posts
    218

    Re: How to update string table without using IDE?

    Quote Originally Posted by pengch
    And must update resource.h file using notepad.
    ok I know that's simple, but I'm automating this using ANT scripts, so I was wondering if there are COMMAND line options to change string tables on the fly or if there was an easy way of tweaking it without parsing through text etc.

    thanks!

  5. #5
    Join Date
    Aug 2005
    Posts
    218

    Re: How to update string table without using IDE?

    So I found the
    Code:
    /Vstring
    command line option, but after setting it, how do I load it into a CString?

    CString mystring;
    mystring.LoadString(???);

    Thanks =)

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