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!
Printable View
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!
Just open.rc file using notepad :)
And must update resource.h file using notepad. :)Quote:
Originally Posted by kirants
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.Quote:
Originally Posted by pengch
thanks!
So I found thecommand line option, but after setting it, how do I load it into a CString?Code:/Vstring
CString mystring;
mystring.LoadString(???);
Thanks =)