FiveTech Support Forums

FiveWin / Harbour / xBase community
Board index FiveWin para Harbour/xHarbour scripts.prg no puedo ejecutar "hello world"
Posts: 27
Joined: Fri Jul 22, 2011 04:04 AM
scripts.prg no puedo ejecutar "hello world"
Posted: Tue Dec 20, 2011 05:10 AM

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
Posts: 1335
Joined: Fri Jun 13, 2008 11:04 AM
Re: scripts.prg no puedo ejecutar "hello world"
Posted: Tue Dec 20, 2011 05:31 AM
Please change the following line in Scripts.Prg to match the path with your FWH and Harbour installation path

Code (fw): Select all Collapse
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 (fw): Select all Collapse
oHrb = HB_CompileFromBuf( Scripts->Code, "-n", "-Id:\fwh\include", "-Id:\harbour\include" )


It is working fine here.

Regards

Anser
Posts: 27
Joined: Fri Jul 22, 2011 04:04 AM
Re: scripts.prg no puedo ejecutar "hello world"
Posted: Tue Dec 20, 2011 06:31 AM

Así es, gracias

FWHX 11.11 # xHarbour 1.2.1 Rev.9411 ## Borland C++ 5.8.2

Continue the discussion