Splitting resources
-
-
Does anybody know, how can I split resource file into more files? And second, when I change rc file outside of VC, then open it in VC and save, my changes are OK, but rc file itself is changed (order of dialogs, strings....) Any suggestions? Thank You Jirka
Is this a programming question? Tomasz Sowinski -- http://www.shooltz.com
-
Does anybody know, how can I split resource file into more files? And second, when I change rc file outside of VC, then open it in VC and save, my changes are OK, but rc file itself is changed (order of dialogs, strings....) Any suggestions? Thank You Jirka
Take a look at the .rc2 file in the "res" subfolder of your project. This file is included in the original .rc file. I suppose you could put your own resources in the .rc2 file or even create another .rc file (.rc3?) and include it in the .rc file. (I usually put my version info resources into the .rc2 file and use #define values from my version.h file to populate the version info data. Version.h is also included in my about box, so now I have ONE source for version information in my about box AND version info resources for the exe/dll.) V