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
scripts.prg no puedo ejecutar "hello world"
scripts.prg no puedo ejecutar "hello world"
FWHX 11.11 # xHarbour 1.2.1 Rev.9411 ## Borland C++ 5.8.2
Re: scripts.prg no puedo ejecutar "hello world"
Please change the following line in Scripts.Prg to match the path with your FWH and Harbour installation path
For eg. If you have installed FWH and Harbour on your D: drive then change the code to
It is working fine here.
Regards
Anser
Code: Select all
oHrb = HB_CompileFromBuf( Scripts->Code, "-n", "-Ic:\fwh\include", "-Ic:\harbour\include" )
Code: Select all
oHrb = HB_CompileFromBuf( Scripts->Code, "-n", "-Id:\fwh\include", "-Id:\harbour\include" )
Regards
Anser
Re: scripts.prg no puedo ejecutar "hello world"
Así es, gracias
FWHX 11.11 # xHarbour 1.2.1 Rev.9411 ## Borland C++ 5.8.2