Saludos
Cuantos archivos .RC puedo incluir en el .mak de mi aplicacion y si es posible, alguien me puede mostrar algun ejemplo?
Gracias de antemano
Cantidad de archivos .RC
- Rick Lipkin
- Posts: 2397
- Joined: Fri Oct 07, 2005 1:50 pm
- Location: Columbia, South Carolina USA
Re: Cantidad de archivos .RC
Compuin
If you are worried about too many .rc's you can use a simple CMD Dos COPY command and combine them all together into a single .RC
Then all you have to do is load the one file MyRC32.RC in your link list .. Rc files are text only and you can combine as many of them together as you like into a single monolithic RC file
Rick Lipkin
If you are worried about too many .rc's you can use a simple CMD Dos COPY command and combine them all together into a single .RC
Code: Select all
COPY *.RC MyRC32.RC
Rick Lipkin
Re: Cantidad de archivos .RC
That's great!Rick Lipkin wrote:Compuin
If you are worried about too many .rc's you can use a simple CMD Dos COPY command and combine them all together into a single .RC
Then all you have to do is load the one file MyRC32.RC in your link list .. Rc files are text only and you can combine as many of them together as you like into a single monolithic RC fileCode: Select all
COPY *.RC MyRC32.RC
Rick Lipkin
Thanks a lot Mr. Rick