HB_ReadIni xharbour com bcc

Post Reply
jair
Posts: 57
Joined: Sun Aug 27, 2017 7:18 pm

HB_ReadIni xharbour com bcc

Post by jair »

¡Buenas tardes!
Estoy intentando convertir un sistema de xharbour xcc a xharbour bcc7 y hay una función llamada HB_ReadIni que lee archivos ini y devuelve el contenido en un hash. Pero cuando llega esta función, ¡el sistema simplemente se cierra! ¿Alguien ha experimentado esto alguna vez? ¿Existe alguna función que lea un archivo ini y devuelva un hash? Acepto sugerencias

Code: Select all | Expand

 [MAIN]
[Update]
CNPJEmp=
PLANOSIS=
UpdateAuto=S
 
hash:

Code: Select all | Expand

 hRet["Update"] := Hash()
 hRet["Update"]["CNPJEmp"] := ""
 hRet["Update"]["PLANOSIS"]  := "1"
 hRet["Update"]["UpdateAuto"]    := "S"  

 
User avatar
Antonio Linares
Site Admin
Posts: 42259
Joined: Thu Oct 06, 2005 5:47 pm
Location: Spain
Contact:

Re: HB_ReadIni xharbour com bcc

Post by Antonio Linares »

Copia el código de la función hb_readIni() a tu aplicación:

https://github.com/xHarbour-org/xharbou ... ini.prg#L7

Y situa x MsgInfo()s en él para ver hasta donde llega y por qué se sale
regards, saludos

Antonio Linares
www.fivetechsoft.com
Post Reply