ADS function list
ADS function list
Where can I find a list with ALL functions, parameters and returns of ACE32.LIB/DLL ?
Email: SamirSSabreu@gmail.com
MSN: SamirAbreu@hotmail.com
Skype: SamirAbreu
xHarbour 1.1.0 + FwXh 8.02
xHarbour 1.2.1 + Fwhh 10.6
MSN: SamirAbreu@hotmail.com
Skype: SamirAbreu
xHarbour 1.1.0 + FwXh 8.02
xHarbour 1.2.1 + Fwhh 10.6
Re: ADS function list
Since 1995 ( the first release of FW 1.9 )
i work with FW.
If you have any questions about special functions, maybe i can help.
i work with FW.
If you have any questions about special functions, maybe i can help.
Re: ADS function list
UWE thx for reply BUT it is not what I want....
I want ADS function list, that is contained in ACE32.DLL OR ACE32.LIB if already converted.
Sample: ADSEncryptTable(), ADSDecryptTable(), AdsEnableEncryption(), etc...
I want ADS function list, that is contained in ACE32.DLL OR ACE32.LIB if already converted.
Sample: ADSEncryptTable(), ADSDecryptTable(), AdsEnableEncryption(), etc...
Email: SamirSSabreu@gmail.com
MSN: SamirAbreu@hotmail.com
Skype: SamirAbreu
xHarbour 1.1.0 + FwXh 8.02
xHarbour 1.2.1 + Fwhh 10.6
MSN: SamirAbreu@hotmail.com
Skype: SamirAbreu
xHarbour 1.1.0 + FwXh 8.02
xHarbour 1.2.1 + Fwhh 10.6
-
- Posts: 117
- Joined: Tue Jan 03, 2006 6:18 pm
Re: ADS function list
Dear Sambomb,
I have sent a list of ADS Function to your email.
regards,
kok
I have sent a list of ADS Function to your email.
regards,
kok
Re: ADS function list
Thx! I'll take a look and then I post here again...
PS.:
Can anyone do a test and send me a sample of how to correct?
Encrypt a DBF
Open the DBF with DBW or another Database manager, modify the value of a field. (PRODNAME From "&%!%¨@" to "TEST")
Encrypt the DBF again, the modified value should be encrypted again, right? It happen, but ALL OTHER FIELDS IN ALL OTHER RECORDS lose the encryption!
PS.:
Can anyone do a test and send me a sample of how to correct?
Encrypt a DBF
Open the DBF with DBW or another Database manager, modify the value of a field. (PRODNAME From "&%!%¨@" to "TEST")
Encrypt the DBF again, the modified value should be encrypted again, right? It happen, but ALL OTHER FIELDS IN ALL OTHER RECORDS lose the encryption!
Email: SamirSSabreu@gmail.com
MSN: SamirAbreu@hotmail.com
Skype: SamirAbreu
xHarbour 1.1.0 + FwXh 8.02
xHarbour 1.2.1 + Fwhh 10.6
MSN: SamirAbreu@hotmail.com
Skype: SamirAbreu
xHarbour 1.1.0 + FwXh 8.02
xHarbour 1.2.1 + Fwhh 10.6
- reinaldocrespo
- Posts: 918
- Joined: Thu Nov 17, 2005 5:49 pm
- Location: Fort Lauderdale, FL
Re: ADS function list
Mr. Kok;
Would you please also email the same list to me?
Thank you,
reinaldo dot crespo at gmail dot com.
Reinaldo.
Would you please also email the same list to me?
Thank you,
reinaldo dot crespo at gmail dot com.
Reinaldo.
Re: ADS function list
Forwarded
Email: SamirSSabreu@gmail.com
MSN: SamirAbreu@hotmail.com
Skype: SamirAbreu
xHarbour 1.1.0 + FwXh 8.02
xHarbour 1.2.1 + Fwhh 10.6
MSN: SamirAbreu@hotmail.com
Skype: SamirAbreu
xHarbour 1.1.0 + FwXh 8.02
xHarbour 1.2.1 + Fwhh 10.6
- reinaldocrespo
- Posts: 918
- Joined: Thu Nov 17, 2005 5:49 pm
- Location: Fort Lauderdale, FL
Re: ADS function list
Sambomb;
Got it.
Thank you.
Reinaldo.
Got it.
Thank you.
Reinaldo.
Re: ADS function list
Reinaldo, do you have ADS 9.x ?
Email: SamirSSabreu@gmail.com
MSN: SamirAbreu@hotmail.com
Skype: SamirAbreu
xHarbour 1.1.0 + FwXh 8.02
xHarbour 1.2.1 + Fwhh 10.6
MSN: SamirAbreu@hotmail.com
Skype: SamirAbreu
xHarbour 1.1.0 + FwXh 8.02
xHarbour 1.2.1 + Fwhh 10.6
- reinaldocrespo
- Posts: 918
- Joined: Thu Nov 17, 2005 5:49 pm
- Location: Fort Lauderdale, FL
Re: ADS function list
I work with 8, 9, and 10.
Reinaldo.
Reinaldo.
Re: ADS function list
Can you do a test for me?
1- Encrypt a DBF
2- Check the DBF and look if all records are crypted.
3- Open the DBF with DBW.exe, DBU.exe or another DataBase viewer
4- Change the value of one field in a single rec
5- Encrypt the same DBF again
6- Check the DBF and look if all records are crypted.
Litle sample of how to crypt the DBF
1- Encrypt a DBF
2- Check the DBF and look if all records are crypted.
3- Open the DBF with DBW.exe, DBU.exe or another DataBase viewer
4- Change the value of one field in a single rec
5- Encrypt the same DBF again
6- Check the DBF and look if all records are crypted.
Litle sample of how to crypt the DBF
Code: Select all
Public pDir := "C:\Test\"
****************************************************************************
function OpenDbf(cFile, cIndex, lExclusive, cAlias, lEncrypt)
****************************************************************************
*
* Abrir arquivos em rede e mante-los criptografados
* Parametro: cFile, cIndex, lExclusive, cAlias, lEncrypt
* Retorno: Lógico - sucesso ao abrir
*
****************************************************************************
local Result := .T., cChave := 'P'+'A'+'S'+'S'+'W'+'O'+'R'+'D'+'.'+'A'+'D'+'S'+'1'+'2'+'3'
default lExclusive := .F.
default lEncrypt := .T.
default cIndex := ''
if ValType(cAlias) != "C"
cFile := AllTrim(Upper(cFile))
if Right(cFile,4) == ".DBF" .or. Right(cFile,4) == ".ADS"
cAlias := Substr( cFile, 1, Len(cFile) -4 )
else
cAlias := cFile
end
end
select 0
if lEncrypt
Try
dbUseArea(.T., "ADS" , pDir + cFile, cAlias, .not. lExclusive)
catch
Return .F.
end
else
Try
dbUseArea(.T.,"DBFCDX",pDir + cFile, cAlias, .not. lExclusive)
catch
Return .F.
end
end
if .not. empty(cIndex) .and. file(pDir + cIndex)
set index to (pDir + cIndex)
dbsetorder(1)
end
if lEncrypt
AdsEnableEncryption(cChave)
end
Result := .T.
return Result
/*------------------------------------------------------------------------*/
Function Test()
If !OpenDbf("C:\Test\MyDBF.DBF", ,.T. , , .T.)
MsgInfo("Erro ao abrir a tabela")
Return .F.
end
If ADSEncryptTable() != 0
AdsShowError("Erro ao criptografar a tabela")
else
MsgInfo("Tabela criptografada")
end
Return nil
Email: SamirSSabreu@gmail.com
MSN: SamirAbreu@hotmail.com
Skype: SamirAbreu
xHarbour 1.1.0 + FwXh 8.02
xHarbour 1.2.1 + Fwhh 10.6
MSN: SamirAbreu@hotmail.com
Skype: SamirAbreu
xHarbour 1.1.0 + FwXh 8.02
xHarbour 1.2.1 + Fwhh 10.6
Re: ADS function list
I am also interested in ADS functions.
Thank you very much.
My email is ukservice.software@gmail.com
Regards,
Thank you very much.
My email is ukservice.software@gmail.com
Regards,
FWH 11.11, Harbour 3.1 and Borland C++ 5.82
Re: ADS function list
Forwarded.
Email: SamirSSabreu@gmail.com
MSN: SamirAbreu@hotmail.com
Skype: SamirAbreu
xHarbour 1.1.0 + FwXh 8.02
xHarbour 1.2.1 + Fwhh 10.6
MSN: SamirAbreu@hotmail.com
Skype: SamirAbreu
xHarbour 1.1.0 + FwXh 8.02
xHarbour 1.2.1 + Fwhh 10.6
Re: ADS function list
Same for me ... but I'd like it for the Harbour compiler.
Thanks.
Tim
"timstone@masterlinksoftware.com"
Thanks.
Tim
"timstone@masterlinksoftware.com"
Tim Stone
http://www.MasterLinkSoftware.com
timstone@masterlinksoftware.com
Using: FWH 19.06 with Harbour 3.2.0 / Microsoft Visual Studio Community 2019
http://www.MasterLinkSoftware.com
timstone@masterlinksoftware.com
Using: FWH 19.06 with Harbour 3.2.0 / Microsoft Visual Studio Community 2019