Problemas al migrar desde FWH2012 a FWH2307 - cerrado
-
- Posts: 176
- Joined: Thu Sep 17, 2015 11:40 pm
- Location: Chincha - Peru
- Contact:
Re: Problemas al migrar desde FWH2012 a FWH2307
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.
-
- Posts: 176
- Joined: Thu Sep 17, 2015 11:40 pm
- Location: Chincha - Peru
- Contact:
Re: Problemas al migrar desde FWH2012 a FWH2307
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
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
-
- 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
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 archivoEnrico Maria Giordano wrote:Estimado Carlos, puede mostrar un pequeno PRG de ejemplo? Desculpa mi Espanol.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
- 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
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
-
- Posts: 176
- Joined: Thu Sep 17, 2015 11:40 pm
- Location: Chincha - Peru
- Contact:
Re: Problemas al migrar desde FWH2012 a FWH2307 - cerrado
agregando Hb_DirExists() comienza las fallasEnrico 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
- 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
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
Re: Problemas al migrar desde FWH2012 a FWH2307 - cerrado
Intenta con:
Saludos.
Code: Select all | Expand
HB_FNAMESPLIT()
ó:
aFindFile()
João Santos - São Paulo - Brasil - Phone: +55(11)95150-7341
- nageswaragunupudi
- Posts: 10691
- Joined: Sun Nov 19, 2006 5:22 am
- Location: India
- Contact:
Re: Problemas al migrar desde FWH2012 a FWH2307 - cerrado
This is due to a bug in hb_DirExists() function.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
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
G. N. Rao.
Hyderabad, India