Cantidad de archivos .RC

Post Reply
Compuin
Posts: 1017
Joined: Tue Dec 28, 2010 1:29 pm

Cantidad de archivos .RC

Post by Compuin »

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
User avatar
Rick Lipkin
Posts: 2397
Joined: Fri Oct 07, 2005 1:50 pm
Location: Columbia, South Carolina USA

Re: Cantidad de archivos .RC

Post by Rick Lipkin »

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

Code: Select all

COPY *.RC MyRC32.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
Compuin
Posts: 1017
Joined: Tue Dec 28, 2010 1:29 pm

Re: Cantidad de archivos .RC

Post by Compuin »

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

Code: Select all

COPY *.RC MyRC32.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
That's great!

Thanks a lot Mr. Rick
Post Reply