Search found 37 matches
- Mon Feb 12, 2024 9:04 pm
- Forum: All products support
- Topic: come recuperare il codice fivewin da .c file
- Replies: 7
- Views: 2768
- Mon Feb 12, 2024 12:19 pm
- Forum: All products support
- Topic: come recuperare il codice fivewin da .c file
- Replies: 7
- Views: 2768
Re: come recuperare il codice fivewin da .c file
THe file is too long 148k and i do not know how to attach a file
Thank You Antonio
Lorenzo
Thank You Antonio
Lorenzo
- Tue Jan 16, 2024 9:33 am
- Forum: FiveWin for Harbour/xHarbour
- Topic: reverse engineering of a harbour compiled c file
- Replies: 1
- Views: 738
reverse engineering of a harbour compiled c file
I have overvrite last version of a fivewin prg file that was compiled with harbour for fivewin and also linked to an exe that is well running.
So i have a running exe but last modified source prg overvrite by precedent version ( do not know how i made this disaster)
In a prg file (lefunz.prg) i ...
So i have a running exe but last modified source prg overvrite by precedent version ( do not know how i made this disaster)
In a prg file (lefunz.prg) i ...
- Tue Jan 16, 2024 9:02 am
- Forum: All products support
- Topic: come recuperare il codice fivewin da .c file
- Replies: 7
- Views: 2768
come recuperare il codice fivewin da .c file
Buongiorno, ho sovrascritto inavvertitamente il codice di un file prg compilato con harbour e mi sono accorto di avere perso l'ultima modifica fatta con due nuove funzioni abbastanza complesse. L'unica traccia che ho è il file compilato in c dove ho la funzione in formato hb_func
E' possibile ...
E' possibile ...
- Sat Jan 29, 2022 6:04 pm
- Forum: All products support
- Topic:
- Replies: -1
- Views:
Re: dbase III/IV file encrypted
Thanks Enrico
Lorenzo
Lorenzo
- Sat Jan 29, 2022 1:17 pm
- Forum: All products support
- Topic:
- Replies: -1
- Views:
Re: dbase III/IV file encrypted
Cannot find definition for DBI_PASSWORD
here are all DBI_ the constant i found for dbinfo()
/* constants for dbInfo() */
#define DBI_ISDBF 1 /* Does this RDD support DBFs? */
#define DBI_CANPUTREC 2 /* Can this RDD Put Records? */
#define DBI_GETHEADERSIZE 3 /* Data file's header size */
#define ...
here are all DBI_ the constant i found for dbinfo()
/* constants for dbInfo() */
#define DBI_ISDBF 1 /* Does this RDD support DBFs? */
#define DBI_CANPUTREC 2 /* Can this RDD Put Records? */
#define DBI_GETHEADERSIZE 3 /* Data file's header size */
#define ...
- Sat Jan 29, 2022 9:51 am
- Forum: All products support
- Topic:
- Replies: -1
- Views:
Re: dbase III/IV file encrypted
I tried the suggestion but i cannot find DBI_PASSWORD definition.
Anyway my intent is to make the dbf unreadable by normal dbf tools, to protect privacy outside from the specific software that created and use the dbf.
Lorenzo
Anyway my intent is to make the dbf unreadable by normal dbf tools, to protect privacy outside from the specific software that created and use the dbf.
Lorenzo
- Sat Jan 29, 2022 9:32 am
- Forum: All products support
- Topic:
- Replies: -1
- Views:
Re: dbase III/IV file encrypted
Ok, but i just want to use the dbf with an old VB6 program that uses a JET connection like this
"Provider=Microsoft.Jet.OLEDB.4.0;Extended Properties=dBase IV;Data Source="
I suppose that i must change the encrypted flag in dbf file header in some way (do not know how), and then open with a ...
"Provider=Microsoft.Jet.OLEDB.4.0;Extended Properties=dBase IV;Data Source="
I suppose that i must change the encrypted flag in dbf file header in some way (do not know how), and then open with a ...
- Fri Jan 28, 2022 7:19 pm
- Forum: All products support
- Topic:
- Replies: -1
- Views:
dbase III/IV file encrypted
I am asking if it is possible to encrypt an entire .dbf file (without memo) by setting the flag in the dbf header?
And then?
What do i have to do to read and write the fields in the .dbf ?
Thanks
Lorenzo
And then?
What do i have to do to read and write the fields in the .dbf ?
Thanks
Lorenzo
- Sun Oct 11, 2020 3:22 pm
- Forum: FiveWin for Harbour/xHarbour
- Topic:
- Replies: -1
- Views:
Re: How to get http response text
Prova questo esempio:
#include "Fivewin.ch"FUNCTION MAIN() LOCAL cUrl := "https://www.nonsolocap.it/cap?k=calori&b=&c=bologna" LOCAL cRes := GETURL( cUrl ) MEMOWRIT( "Response_Test.htm", cRes, .F. ) RETURN NIL#command IF <condition> THEN <*statements*> => if <condition ...
#include "Fivewin.ch"FUNCTION MAIN() LOCAL cUrl := "https://www.nonsolocap.it/cap?k=calori&b=&c=bologna" LOCAL cRes := GETURL( cUrl ) MEMOWRIT( "Response_Test.htm", cRes, .F. ) RETURN NIL#command IF <condition> THEN <*statements*> => if <condition ...
- Sun Oct 11, 2020 9:31 am
- Forum: FiveWin for Harbour/xHarbour
- Topic:
- Replies: -1
- Views:
Re: How to get http response text
Che versione di Windows stai usando? Dall'errore sembra che la DLL relativa al componente non supporti quella proprietà, cosa che mi sembra assurda. E comunque la prova dell'EXE può essere utile per avere qualche indizio in più.
EMG
uso windows 10
ok inviami l'exe per provare via mail a ...
EMG
uso windows 10
ok inviami l'exe per provare via mail a ...
- Sun Oct 11, 2020 5:25 am
- Forum: FiveWin for Harbour/xHarbour
- Topic:
- Replies: -1
- Views:
Re: How to get http response text
No, non credo. Vuoi che ti mandi il mio EXE così lo provi da te? Se sì, mandami un indirizzo email che accetti gli EXE.
EMG
Grazie Enrico ma io devo capire il motivo dell'errore per poter programmare la logica successiva, in realtà poi dovrei creare un DOM e poi cercare tra i nodi del documento ...
EMG
Grazie Enrico ma io devo capire il motivo dell'errore per poter programmare la logica successiva, in realtà poi dovrei creare un DOM e poi cercare tra i nodi del documento ...
- Sun Oct 11, 2020 5:21 am
- Forum: FiveWin for Harbour/xHarbour
- Topic:
- Replies: -1
- Views:
Re: How to get http response text
#Include "FiveWin.ch"#Include "Fileio.ch"#ifdef __XHARBOUR__ // xHarbour #include "tip.ch"#endifFUNCTION http( therequest ) LOCAL oHttp, cResp DEFAULT therequest := "https://www.nonsolocap.it/cap?k=calori&b=&c=bologna" /* Try oHttp := CreateObject( "Microsoft.XMLHTTP" ) Catch MsgInfo ...
- Sat Oct 10, 2020 1:45 pm
- Forum: FiveWin for Harbour/xHarbour
- Topic:
- Replies: -1
- Views:
Re: How to get http response text
Your sample works fine here.
EMG
Non funziona , l'errore è causato da ohttp:responsebody che sembra non essere accessibile e comunque non ritorna nessuna stringa (credo sia null)
Prima non ho errori !
Lorenzo
Qui funziona regolarmente e ohttp:responsebody contiene la pagina web di risposta ...
EMG
Non funziona , l'errore è causato da ohttp:responsebody che sembra non essere accessibile e comunque non ritorna nessuna stringa (credo sia null)
Prima non ho errori !
Lorenzo
Qui funziona regolarmente e ohttp:responsebody contiene la pagina web di risposta ...
- Sat Oct 10, 2020 1:12 pm
- Forum: FiveWin for Harbour/xHarbour
- Topic:
- Replies: -1
- Views:
Re: How to get http response text
#Include "FiveWin.ch"#Include "Fileio.ch"#ifdef __XHARBOUR__ // xHarbour #include "tip.ch"#endifFUNCTION http( therequest ) LOCAL oHttp, cResp DEFAULT therequest := "https://www.nonsolocap.it/cap?k=calori&b=&c=bologna" /* Try oHttp := CreateObject( "Microsoft.XMLHTTP" ) Catch MsgInfo ...