Page 1 of 1

scripts.prg no puedo ejecutar "hello world"

Posted: Tue Dec 20, 2011 5:10 am
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 :)

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

Posted: Tue Dec 20, 2011 5:31 am
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

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

Posted: Tue Dec 20, 2011 6:31 am
by roberio
Así es, gracias