FiveTech Support Forums

FiveWin / Harbour / xBase community
Board index Utilities / Utilidades ResEdit - Error: RLINK32: Unsupported 16bit resource in file
Posts: 990
Joined: Wed Oct 19, 2005 02:17 PM
ResEdit - Error: RLINK32: Unsupported 16bit resource in file
Posted: Tue Sep 15, 2015 09:10 AM

Hi / Hola,

i had this error message / yo tuve este mensaje de error.

And i fixed it with / Y lo solucione con:

Adding this lines to .rc file / añadiendo estas líneas al fichero .rc

include "C:\Develop\Borland\bcc7\include\windows\sdk\windows.h"

include "C:\Develop\Borland\bcc7\include\windows\sdk\commctrl.h"

include "C:\Develop\Borland\bcc7\include\windows\sdk\richedit.h"

include "resource.h"

Regards / Saludos

Posts: 989
Joined: Thu Nov 24, 2005 03:01 PM
Re: ResEdit - Error: RLINK32: Unsupported 16bit resource in file
Posted: Tue Sep 15, 2015 10:55 AM

Gracias!

:wink:

Saludos
Carlos Mora
http://harbouradvisor.blogspot.com/
StackOverflow http://stackoverflow.com/users/549761/carlos-mora
“If you think education is expensive, try ignorance"
Posts: 2706
Joined: Fri Oct 07, 2005 01:50 PM
Re: ResEdit - Error: RLINK32: Unsupported 16bit resource in file
Posted: Tue Sep 15, 2015 11:45 AM
To All

You can configure Resedit to look for your include path .. Preferences, General, Include Paths .. that way you do not have to hard code the the path of resource Includes ..

Code (fw): Select all Collapse
#include <windows.h>
#include <commctrl.h>
#include <richedit.h>
#include "resource.h"


Rick Lipkin

Posts: 990
Joined: Wed Oct 19, 2005 02:17 PM
Re: ResEdit - Error: RLINK32: Unsupported 16bit resource in file
Posted: Tue Sep 15, 2015 12:25 PM

Hi Rick,

of course, you are right !!!

Thanks.

Regards

Continue the discussion