Page 1 of 1

Cantidad de archivos .RC

Posted: Tue Apr 30, 2019 2:54 pm
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

Re: Cantidad de archivos .RC

Posted: Sun May 05, 2019 3:47 pm
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

Re: Cantidad de archivos .RC

Posted: Sun May 05, 2019 5:07 pm
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