scripts.prg no puedo ejecutar "hello world"

Post Reply
User avatar
roberio
Posts: 27
Joined: Fri Jul 22, 2011 4:04 am

scripts.prg no puedo ejecutar "hello world"

Post by roberio »

hola grupo

scripts.prg => ejemplo en ejecución muestra lo siguiente:
Error F0029 Can't open #include file 'FiveWin.ch'

la adición la ruta al archivo => #include "e:\fwh1111\include\FiveWin.ch" .... muestra lo siguiente:
e:\fwh1111\include\Objects.ch(5) Error F0029 Can't open #include file 'hbclass.ch'

¿Qué debo hacer?

Solucionado!
basta retirar la línea :)
FWHX 11.11 # xHarbour 1.2.1 Rev.9411 ## Borland C++ 5.8.2
User avatar
anserkk
Posts: 1280
Joined: Fri Jun 13, 2008 11:04 am
Location: Kochi, India

Re: scripts.prg no puedo ejecutar "hello world"

Post by anserkk »

Please change the following line in Scripts.Prg to match the path with your FWH and Harbour installation path

Code: Select all

oHrb = HB_CompileFromBuf( Scripts->Code, "-n", "-Ic:\fwh\include", "-Ic:\harbour\include" )
For eg. If you have installed FWH and Harbour on your D: drive then change the code to

Code: Select all

oHrb = HB_CompileFromBuf( Scripts->Code, "-n", "-Id:\fwh\include", "-Id:\harbour\include" )
It is working fine here.

Regards

Anser
User avatar
roberio
Posts: 27
Joined: Fri Jul 22, 2011 4:04 am

Re: scripts.prg no puedo ejecutar "hello world"

Post by roberio »

Así es, gracias
FWHX 11.11 # xHarbour 1.2.1 Rev.9411 ## Borland C++ 5.8.2
Post Reply