how to use more than one rc file in vc6 project at the same time when compiling project
-
I want to use many a rc file in vc6 project when compiling, dsp file format is below: # Begin Source File SOURCE=.\05.rc -> corresponding to r5.h # End Source File # Begin Source File SOURCE=.\04.rc -> corresponding to r4.h # End Source File # Begin Source File SOURCE=.\03.rc -> corresponding to r3.h # End Source File # Begin Source File SOURCE=.\r5.h # End Source File # Begin Source File SOURCE=.\r4.h # End Source File # Begin Source File SOURCE=.\r3.h # End Source File there is a link error(cannot open file ".\Debug\05.res") when compiling, 03.res is created, 04.res and 05.res are not created,how can I do ?
-
I want to use many a rc file in vc6 project when compiling, dsp file format is below: # Begin Source File SOURCE=.\05.rc -> corresponding to r5.h # End Source File # Begin Source File SOURCE=.\04.rc -> corresponding to r4.h # End Source File # Begin Source File SOURCE=.\03.rc -> corresponding to r3.h # End Source File # Begin Source File SOURCE=.\r5.h # End Source File # Begin Source File SOURCE=.\r4.h # End Source File # Begin Source File SOURCE=.\r3.h # End Source File there is a link error(cannot open file ".\Debug\05.res") when compiling, 03.res is created, 04.res and 05.res are not created,how can I do ?
-
Do not do this by editing the .dsp file. Use the Solution window of the IDE to add files to your project.
One of these days I'm going to think of a really clever signature.
-
I want to use many a rc file in vc6 project when compiling, dsp file format is below: # Begin Source File SOURCE=.\05.rc -> corresponding to r5.h # End Source File # Begin Source File SOURCE=.\04.rc -> corresponding to r4.h # End Source File # Begin Source File SOURCE=.\03.rc -> corresponding to r3.h # End Source File # Begin Source File SOURCE=.\r5.h # End Source File # Begin Source File SOURCE=.\r4.h # End Source File # Begin Source File SOURCE=.\r3.h # End Source File there is a link error(cannot open file ".\Debug\05.res") when compiling, 03.res is created, 04.res and 05.res are not created,how can I do ?
yingkou wrote:
I want to use many a rc file in vc6 project when compiling, dsp file format is below:
You can have only one
.rc
file, but I believe you can have multiple.rc2
files."One man's wage rise is another man's price increase." - Harold Wilson
"Fireproof doesn't mean the fire will never come. It means when the fire comes that you will be able to withstand it." - Michael Simmons
"Show me a community that obeys the Ten Commandments and I'll show you a less crowded prison system." - Anonymous
-
I want to use many a rc file in vc6 project when compiling, dsp file format is below: # Begin Source File SOURCE=.\05.rc -> corresponding to r5.h # End Source File # Begin Source File SOURCE=.\04.rc -> corresponding to r4.h # End Source File # Begin Source File SOURCE=.\03.rc -> corresponding to r3.h # End Source File # Begin Source File SOURCE=.\r5.h # End Source File # Begin Source File SOURCE=.\r4.h # End Source File # Begin Source File SOURCE=.\r3.h # End Source File there is a link error(cannot open file ".\Debug\05.res") when compiling, 03.res is created, 04.res and 05.res are not created,how can I do ?