Problemas al migrar desde FWH2012 a FWH2307 - cerrado

CARLOS ATUNCAR
Posts: 176
Joined: Thu Sep 17, 2015 11:40 pm
Location: Chincha - Peru
Contact:

Re: Problemas al migrar desde FWH2012 a FWH2307

Post by CARLOS ATUNCAR »

efectivamente ya no sale en error con el xharbour. Muy agradecido. Luego sigo con la los problemas de la migracion de la version me interesa usar el potencial de la version 2023.07 del fivewin.
Carlos Atuncar - CaSoftSystem
Chincha - Perú
carlosalbatun@gmail.com
CARLOS ATUNCAR
Posts: 176
Joined: Thu Sep 17, 2015 11:40 pm
Location: Chincha - Peru
Contact:

Re: Problemas al migrar desde FWH2012 a FWH2307

Post by CARLOS ATUNCAR »

Saludos devuelta retomando el tema parece que encontre el origen del problema y parece ser que es causado por la funcion Hb_DirExists()

al usarlo en mi INIT Procedure PrgInit donde reviso si existen algunas carpetas para crearlas a la siguiente linea si uso la funcion FILE ya no ubica pero antes de esto si

Que Solucion puede tener
Carlos Atuncar - CaSoftSystem
Chincha - Perú
carlosalbatun@gmail.com
CARLOS ATUNCAR
Posts: 176
Joined: Thu Sep 17, 2015 11:40 pm
Location: Chincha - Peru
Contact:

Re: fivewin 2023/07 y 2020/12 problemas al crear EXE

Post by CARLOS ATUNCAR »

Enrico Maria Giordano wrote:
CARLOS ATUNCAR wrote:He probado con Bcc7.60 y xHarbour 1.2.3 Intl. (SimpLex) (Build 20221118) la version FW 12.2020 y todo pasa con normalidad tambien he probado la version FW 07.2023 y el problema persiste no he podido probar con xHarbour 1.3.0 Intl. (SimpLex) (Build 20230826)
por que con ambas versiones genera este error
Error: Unresolved external 'utime(const char *, utimbuf *)' referenced from E:\TOOLS\XHARBOUR_BCC74A\LIB\HBZIP.LIB|zipplatform
Estimado Carlos, puede mostrar un pequeno PRG de ejemplo? Desculpa mi Espanol. :-)
al usar function Hb_DirExists() la funcion FILE() ya no ubica ningun archivo si no se pone la ruta completa antes de usar esta funcion si ubica con tan solo poner el nombre del archivo
Carlos Atuncar - CaSoftSystem
Chincha - Perú
carlosalbatun@gmail.com
User avatar
Enrico Maria Giordano
Posts: 8728
Joined: Thu Oct 06, 2005 8:17 pm
Location: Roma - Italia
Contact:

Re: Problemas al migrar desde FWH2012 a FWH2307 - cerrado

Post by Enrico Maria Giordano »

Works fine here:

Code: Select all | Expand

#include "Fivewin.ch"


FUNCTION MAIN()

    ? 2, FILE( "MYTEST.TXT" )

    RETURN NIL


INIT FUNCTION TEST()

    MEMOWRIT( "MYTEST.TXT", "", .F. )

    ? 1, FILE( "MYTEST.TXT" )

    RETURN NIL
CARLOS ATUNCAR
Posts: 176
Joined: Thu Sep 17, 2015 11:40 pm
Location: Chincha - Peru
Contact:

Re: Problemas al migrar desde FWH2012 a FWH2307 - cerrado

Post by CARLOS ATUNCAR »

Enrico Maria Giordano wrote:Works fine here:

Code: Select all | Expand

#include "Fivewin.ch"


FUNCTION MAIN()

    ? 2, FILE( "MYTEST.TXT" )

    RETURN NIL


INIT FUNCTION TEST()

    Hb_DirExists("c:\temp")

    MEMOWRIT( "MYTEST.TXT", "", .F. )
 
    ? 1, FILE( "MYTEST.TXT" )

    RETURN NIL
agregando Hb_DirExists() comienza las fallas
Carlos Atuncar - CaSoftSystem
Chincha - Perú
carlosalbatun@gmail.com
User avatar
Enrico Maria Giordano
Posts: 8728
Joined: Thu Oct 06, 2005 8:17 pm
Location: Roma - Italia
Contact:

Re: Problemas al migrar desde FWH2012 a FWH2307 - cerrado

Post by Enrico Maria Giordano »

You can use LISDIR():

Code: Select all | Expand

#include "Fivewin.ch"


FUNCTION MAIN()

    ? 2, LISDIR( "MYTEST" )

    RETURN NIL


INIT FUNCTION TEST()

    MAKEDIR( "MYTEST" )

    ? 1, LISDIR( "MYTEST" )

    RETURN NIL
User avatar
karinha
Posts: 7885
Joined: Tue Dec 20, 2005 7:36 pm
Location: São Paulo - Brasil
Contact:

Re: Problemas al migrar desde FWH2012 a FWH2307 - cerrado

Post by karinha »

Intenta con:

Code: Select all | Expand

HB_FNAMESPLIT()
ó:
aFindFile()
 
Saludos.
João Santos - São Paulo - Brasil - Phone: +55(11)95150-7341
User avatar
nageswaragunupudi
Posts: 10691
Joined: Sun Nov 19, 2006 5:22 am
Location: India
Contact:

Re: Problemas al migrar desde FWH2012 a FWH2307 - cerrado

Post by nageswaragunupudi »

al usar function Hb_DirExists() la funcion FILE() ya no ubica ningun archivo si no se pone la ruta completa antes de usar esta funcion si ubica con tan solo poner el nombre del archivo
This is due to a bug in hb_DirExists() function.
Fixed now and will be available in FWH2310 to be released in a day or two.
Meanwhile, you can use other functions with the same functionality eg. lIsDir() as suggested by Mr, Enrico
Regards

G. N. Rao.
Hyderabad, India
Post Reply