FiveTech Support Forums

FiveWin / Harbour / xBase community
Board index FiveWin para Harbour/xHarbour Cantidad de archivos .RC
Posts: 1276
Joined: Tue Dec 28, 2010 01:29 PM
Cantidad de archivos .RC
Posted: Tue Apr 30, 2019 02:54 PM

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

FWH 25.12

Harbour/Hbmk2

Microsoft Visual C++

MySql 8.0

Antigravity

Posts: 2706
Joined: Fri Oct 07, 2005 01:50 PM
Re: Cantidad de archivos .RC
Posted: Sun May 05, 2019 03:47 PM
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 (fw): Select all Collapse
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
Posts: 1276
Joined: Tue Dec 28, 2010 01:29 PM
Re: Cantidad de archivos .RC
Posted: Sun May 05, 2019 05:07 PM
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 (fw): Select all Collapse
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

FWH 25.12

Harbour/Hbmk2

Microsoft Visual C++

MySql 8.0

Antigravity

Continue the discussion