topic
stringlengths
1
63
text
stringlengths
1
577k
en xbrowse como capturo el nombre del campo?
Tambien puedes intentar con esto: [code=fw:3smt7z93]<div class="fw" id="{CB}" style="font-family: monospace;">cCampo:=oBrw:<span style="color: #000000;">SelectedCol</span>:<span style="color: #000000;">cHeader</span></div>[/code:3smt7z93]
enable and disable a button with image
Hello, If I have a button with only text I can Enable() or Disable(0 it. However, if i put an image on the button the enable/disable gives an error. How can i enable/disable a butoon with image? This works: [code=fw:lt9wffxr]<div class="fw" id="{CB}" style="font-family: monospace;"><br />&nbsp; &nbsp; @ <span style="co...
enable and disable a button with image
Ok. I implement enable() and disable methods in btnbmp . <!-- s:D --><img src="{SMILIES_PATH}/icon_biggrin.gif" alt=":D" title="Very Happy" /><!-- s:D --> Saludos.
enable and disable a button with image
OK< thank you, Looking forward to it
enabled para los btnbmp...
Hola a todos... Quería saber como poder deshabilitar un boton... El boton lo tengo declarado como @ 0, 32 BTNBMP oBtn2 NAME "anterior" SIZE 32, 32 of odlg action retrocede_articulos(odlg, oGetCod, oGetNom, oGetCant, oGetPrecio,oBtn2) pero a la hora de hacerlo me da error oBtn2:enabled() Esto es correcto?? Saludo...
enabled para los btnbmp...
Elías, oBtn:Disable() y oBtn:Enable()
enabled para los btnbmp...
Gracias Antonio, estaba poniendo una d al final de enable..... fuerte despiste!,jeje Saludos, Elías Torres.
encoding from array
I must take the numbers at n position of plinestring array for z= 1 or 2 or 3 it run ok for z= 4 make error ( return the wrong numbers) why ? [code=fw:2jypq3q9]<div class="fw" id="{CB}" style="font-family: monospace;"><br /><br /><span style="color: #00D7D7;">#include</span> <span style="color: #ff0000;">"fivew...
encoding from array
Silvio, I don't see the problem you are seeing. When I run it I get 1,3,6,7,1 not 9,9,9,9,9. James
encoding from array
sorry , also 1,3,6,7,1 is bad if the z= 4 must return me 11111
encoding from array
perhaps I found the error For k= 1 to 5 // numeri If nposition[k]= alltrim("a") nline:= 1 elseif nposition[k]= alltrim("b") nline:= 2 elseif nposition[k]= alltrim("c") nline:= 3 endif nNumbers[k]:= aline[nline][k] next k nopw seem to ru...
encriptacion de archivo
Hola amigos : Me gustaria saber si se puede encriptar y desencriptar un archivo determinado, yo tengo una aplicacion y genera unos documentos word y me gustaria saber si se pueden encriptar para que no se vea lo que es y cuando los tenga que utilizar desencriptarlos. Un saludo Carlos
encriptacion de archivo
Carlos, Puedes usar las funciones Encrypt() y Decrypt() de FiveWin Es tan sencillo como: MemoWrit( "nombre.ext", Encrypt( MemoRead( "reporte_original" ), "clave tuya" ) ) y luego para usarlo: MemoWrit( "reporte_original", Decrypt( MemoRead( "nombre.ext" ), "clave tuya" ) ) lo usas y luego borras "reporte_orig...
encriptar dbf
hola foro, nuevamente por aqui, ahora quiero encriptar las dbf de mi sistema, como lo puedo hacer, no quiero que ningun software las pueda leer, unicamente por medio de mi sistema, alguna funcion, algun ejemplo? gracias paco
encriptar dbf
Paco, A parte de usar ADS para hacerlo, puedes usar las funciones Encrypt() y Decrypt() de FWH, para encriptar antes de guardar los datos.
encriptar dbf
Gracias Antonio por tu respuesta, esto entiendo es para encriptar los datos, no es asi? mas bien lo que me interesaria seria algo asi como poder modificar la cabecera del .dbf para que no se pueda abrir, ni por dbwide, ni por adr, ni por dbf viewer,esot es por ai alguien llea a apoderarse de las dbf no las puedan leer...
encriptar dbf
Francisco: ADS hace exactametne eso que tu quieres, ADS encripta tanto los datos como las cabeceras, el ARC no puede abrir los archivos encriptados, te pide la contraclave de desencriptamiento. El truco de cambiar el primer byte de la cabecera te funciona, pero para abrir los datos desde algun editor, es eficiente pe...
encriptar dbf
como simpre buen teacher, gracias rene salu2 paco
encrypt DBF using ADS Local
does he have as encrypt DBF using ADS Local for any user to access without the system to be? Clemerson
encrypt DBF using ADS Local
Postea el mensaje en portugues, es totalmente intenedible
encrypt DBF using ADS Local
[quote="RF":b0kg3cri]Postea el mensaje en portugues, es totalmente intenedible[/quote:b0kg3cri] Gostaria de encriptografar o DBF usando o ADS local, para que nenhum usuario consiga abrir usando DBU, wdbu, etc .. Clemerson
encrypt DBF using ADS Local
Ok, aqui va: 1) En el código fuente, deber cargar los componentes necesarios del RDDADS [i:2atorpjc]In the source code you need to include the necesary components for the RDDADS[/i:2atorpjc] Request ADS RddSetDefault(ADS) AdsSetServerType(7) //todos los servidores AdsSetFileType(2) // archivos DBF /CDX No olviden ...
encrypt DBF using ADS Local
Muito Obrigado ...
encrypt DBF using ADS Local
René; Como siempre --muy buena información. Muy agradecido. De paso, si esto funciona tan y tan bien, que razón pudiera existir para no usar encryption con ADS? Recibe un saludo muy coridal, Reinaldo.
encrypt DBF using ADS Local
Reinaldo: [quote="reinaldocrespo":dmfbouhi] De paso, si esto funciona tan y tan bien, que razón pudiera existir para no usar encryption con ADS? [/quote:dmfbouhi] 1) Esta caracteristica esta disponible en el servidor local, sin embargo ten en cuenta que con el server local solo pueden utilizar 5 usuarios en red la ap...
encrypt() ?
Hola amigos Estoy intentado guardar en un archivo ini, una cadena encriptada el problema esta en que no me guarda la cadena clave:=encrypt("12345") Msginfo(clave) // Aqui me lo muestra perfectamente Pero si lo guardo en un ini me muestra un valor distinto al que me muestra en el msginfo alguna idea ? u...
encrypt() ?
Guardalo en un fichero con MEMOWRIT(".\Fichero.dat",clave). Recuperalo con clave := MEMOREAD(".\Fichero") [u:168vl43q]Otra solución [/u:168vl43q]sería convertir cada caracter en un string de su valor ASCII. Por ejemplo: cDat := "" FOR nCont = 1 TO LEN(clave) cDat += STRZERO(ASC(SUBSTR(CLAVE,nCont,1)),3) NEXT Cada ca...
encrypt() ?
Gracias Manuramos me funciona perfecto
encrypt-decrypt word doc
Hello, I am preparing for the GDPR. So I try to encrypt and decrypt a word file. But I get an error if I try to reopen the decypted word file. Could someone please help me. Best regards, Otto [code=fw:34brnnsd]<div class="fw" id="{CB}" style="font-family: monospace;"><span style="color: #B900B9;">// New FiveWin Encry...
encrypt-decrypt word doc
I did something like encrypt part of the file docx. But I used fOpen/fWrite
encrypt-decrypt word doc
Otto, Do you use a SQL-database? Then you store the DOC-file in a BLOB-field. The SQL-database is already password-protected.
encrypt-decrypt word doc
Hello Natter, thank you. Fopen and fwrite is working fine. Hello Mark, thank you. I do not use SQL. Best regards, Otto [code=fw:2sd5s8qa]<div class="fw" id="{CB}" style="font-family: monospace;"><br /><span style="color: #B900B9;">// Encrypt() and Decrypt() functions  DOCX </span><br /><br /><span style="color: #00D7...
encrypt/decrypt in Harbour and php
Hi, Are there a set of functions that, for example, I encrypt the string in the php web page, and I read and decrypt in Habour -prg code? Thank you
encrypt/decrypt in Harbour and php
Pues no es exactamente encriptar... pero para ocultar un poco el contenido puedes usar la codificación en base64. Encode y decode en xharbour [code=fw:qkqv7xhf]<div class="fw" id="{CB}" style="font-family: monospace;"><br />cBas64 := hb_base64encode<span style="color: #000000;">&#40;</span>::<span style="color: #00000...
encrypt/decrypt in Harbour and php
[quote="leandro":t45qyinq] En este momento me encuentro investigando y avanzando de a poco sobre el tema de encriptar con los comandos openssl apenas tenga resultados comento.[/quote:t45qyinq] Leandro, What openssl functions are you using? Moises, use functions hb_base64Encode and hb_base64Decode
encrypt/decrypt in Harbour and php
Cristobal como siempre gracias por responder, en este momento me encuentro leyendo sobre el tema de openssl, es nuevo para mi. Pero a lo que quiero llegar, es a traducir este codigo de php a xharbour "si se puede". [code=fw:gupcsu3j]<div class="fw" id="{CB}" style="font-family: monospace;"><br /><span style="color: #B...
encrypt/decrypt in Harbour and php
Muchas gracias. ¿No existe un método de encriptacion más fuerte?
encrypt/decrypt in Harbour and php
[quote="MOISES":1uz7sryr]Muchas gracias. ¿No existe un método de encriptacion más fuerte?[/quote:1uz7sryr] Look for the hb_Crypt and hb_Decrypt functions, and you can even support yourself for using these functions in the cMimeEnc and cMimeDec functions Pd: in this forum, please use the English language. Thank you ...
encrypt/decrypt in Harbour and php
Thank you Cristóbal. Do you refer to this? <!-- m --><a class="postlink" href="https://github.com/vszakats/hb/blob/master/contrib/xhb/hbcrypt.c">https://github.com/vszakats/hb/blob/mas ... /hbcrypt.c</a><!-- m -->
encrypt/decrypt in Harbour and php
Yes, but in version 3.2 there are also I use this functions with cMimeEnc and cMimeDec functions
encrypting dbf files
Is there a fivewin function that encrypts dbf files by closing or interupting the fivewin program so that they can not be modified with an external program
encrypting dbf files
You can use FWH functions Encrypt() and Decrypt() so all info inside the DBF is encrypted. field->myfield := Encrypt( "value", cPassword )
encrypting dbf files
Note that when using Encrypt/Decrypt all fields must be character format.
encrypting dbf files
Using tables with no memo field I manage them in this way [code=fw:1k7luhle]<div class="fw" id="{CB}" style="font-family: monospace;"><br /><span style="color: #00D7D7;">#include</span> <span style="color: #ff0000;">"fivewin.ch"</span><br /><span style="color: #00D7D7;">#include</span> <span style="color: #ff0000;">"...
encrypting dbf files
What includes are necessary to use encrypt() and decrypt() files please
encrypting dbf files
Jds: (x)Harbour supports three functions to handle encryption / decryption transparently: 1. Sx_DBFencrypt (cPassword) - encrypts all records in database file. 2. Sx_DBFdecrypt () - decrypts all records in database file. 3. Sx_SetPass (cPassword) - set / changes password to be used in the ...
encrypting dbf files
So, if I understood it well, the user has to use a password to encrypt; So it is not possible that by exiting the program all dbf files can be encrypted so that the user can not modify the dbf files with an external program
encrypting dbf files
JDS, [quote:ka2ehfyz]So, if I understood it well, the user has to use a password to encrypt;[/quote:ka2ehfyz] Of course, it would not be secure if anyone can run the program without logging in. So each authorized user needs to login using a password. The actual password that encrypts/decrypts the databases is the sam...
encrypting dbf files
Jds: Steps on using encryption: 1. You encrypt all tables with a tool that uses the Sx_DBFencrypt (cPassword) function. 2. Your program has the password either hard coded or in an external dbf. 3. Make SURE if you hard coded it to not set it up as a literal, build it as a result of some sort of mathematical f...
encrypting dbf files
Hunter, [quote:1ix0mupz]1. You encrypt all tables with a tool that uses the Sx_DBFencrypt (cPassword) function.[/quote:1ix0mupz] I assume this is an EXE? Where does one get the EXE or source? It seems you could also write your own--just open each dbf, read each record, encrypt it and save. Seems simple enough. Rega...
encrypting dbf files
James: You just write a simple program to encrypt tables. [code=fw:2qcepgfv]<div class="fw" id="{CB}" style="font-family: monospace;"><br /><span style="color: #00D7D7;">#include</span> <span style="color: #ff0000;">"Common.ch"</span><br /><span style="color: #00D7D7;">#include</span> <span style="color: #ff0000;">"Fi...
encrypting dbf files
Is it possible to encrypt only some fields of a table . For example, in a People dbf file, i only want to Encrypt Name and Adress . Thanks
encrypting dbf files
Jack, [quote:2v2po7np]i only want to Encrypt Name and Adress[/quote:2v2po7np] Why? Why not just encrypt everything? There is very little speed penalty. If security is an issue, why secure only some of the data? Regards, James
encrypting dbf files
Hunter, Thanks for the example code. Do you have any ideas on how we could check to see if a file is already encrypted? I just thought it might be handy to prevent ever encrypting a file twice. James
encrypting dbf files
I use the free ADS encryption. It encrypts the entire file.
encrypting dbf files
Jeff, [quote:398wswrw]I use the free ADS encryption. It encrypts the entire file.[/quote:398wswrw] So does the Six RDD. I was responding to Jack's request to just encrypt a couple of fields. I don't know if the Six RDD will do this, but I don't know why it would be useful either. James
encrypting dbf files
Hunter, I just reread this: [quote:wg96ir43](x)Harbour supports three functions to handle encryption / decryption transparently: 1. Sx_DBFencrypt (cPassword) - encrypts all records in database file. 2. Sx_DBFdecrypt () - decrypts all records in database file.[/quote:wg96ir43] This leaves me wondering, are there func...
encrypting dbf files
Most of the SX functions are documented in the SIX3.NG. It´s a 500kb file. I have it but I´m not sure it´s allowed to publicly share it. If yes I can upload it to my FTP server, if not I can send as email attachment. Just let me know.
encrypting dbf files
James, [quote="James Bott":3s9vyavn]What would be really nice is just something like SET ENCRYPTION ON, then using the database as you normally would. Is this possible? Or, better yet, if the Six RDD could automatically detect if the file was encrypted, and then automatically (and transparently) encrypt and decrypt th...
encrypting dbf files
Enrico, [quote:yevxkyph]Please have a look at Marco's message at the start of this thread.[/quote:yevxkyph] Hmm, I guess you are telling me, no there are no record or field level decryption Six functions? As I mentioned, it seems impractical to decrypt all DBFs when running a program. When it the program is multi-us...
encrypting dbf files
James, I think you have not read Marco's message carefully. Please do it. <!-- s:-) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":-)" title="Smile" /><!-- s:-) --> EMG
encrypting dbf files
James, Enrico: The Sx_DBFencrypt & Sx_DBFdecrypt functions are used in a separate program, as the one I posted earlier in this post's thread. Afterwards you just open your DBF files and call the Sx_SetPass (cPassWord) function. The SIx driver handles everything transparently, meaning that you DON'T have to decrypt /...
encrypting dbf files
HunterEC, I'm trying the following sample: [code=fw:634slry8]<div class="fw" id="{CB}" style="font-family: monospace;"><span style="color: #00C800;">FUNCTION</span> MAIN<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span><br /><br />&nbsp; &nbsp; USE MYTABLE EXCLUSIVE<br /><br />&nbsp;...
encrypting dbf files
Hi. By simply changing to ADS rdd, you get to use their encryption functions on free .dbf tables as well as data dictionary bound tables -- and it is all very well documented on the help file. Reinaldo.
encrypting dbf files
Enrico: For encryption / decryption via the Sx_DBFencrypt() and Sx_DBFdecrypt() you have to open the DBF with the SIX driver. Afterwards you can keep using the DBFCDX or DBFNTX one. This is due to the fact that these function changes one byte at the DBF header that the Sx_TableType() inspects (first byte). That is...
encrypting dbf files
HunterEC, [quote="HunterEC":2upo5dl9]For encryption / decryption via the Sx_DBFencrypt() and Sx_DBFdecrypt() you have to open the DBF with the SIX driver.[/quote:2upo5dl9] Sorry, no changes I'm still missing something... <!-- s:-( --><img src="{SMILIES_PATH}/icon_sad.gif" alt=":-(" title="Sad" /><!-- s:-( --> [code=...
encrypting dbf files
I also tried this but no lack: [code=fw:3b6t9t4f]<div class="fw" id="{CB}" style="font-family: monospace;"><span style="color: #00D7D7;">#include</span> <span style="color: #ff0000;">"Hbsix.ch"</span><br /><br /><br />REQUEST SIXCDX<br /><br /><br /><span style="color: #00C800;">FUNCTION</span> MAIN<span style="color:...
encrypting dbf files
Hunter, OK, I got SIX encryption working. Decrypting on the fly. I love it! This is going to be really useful. Do you know what form of encryption is being used? I'm sure my customer's are going to want to know. Regards, James
encrypting dbf files
Enrico, It seems to be really transparent. You don't even need the REQUEST or the VIA. Are you sure you are starting with an unencrypted file? James
encrypting dbf files
James, [quote="James Bott":e8rfkxyk]Are you sure you are starting with an unencrypted file?[/quote:e8rfkxyk] Of course. <!-- s:-( --><img src="{SMILIES_PATH}/icon_sad.gif" alt=":-(" title="Sad" /><!-- s:-( --> EMG
encrypting dbf files
James, are you using latest xHarbour from SVN? Can I see your linker configuration file? EMG
encrypting dbf files
Hunter, Another question. Do you know if the SIX driver automatically securely erases the original unencrypted DBF after it encrypts the file? Or, maybe it is encrypted in place (there is no new encrypted copy made)? James
encrypting dbf files
Enrico, [quote:1dza1mzu]are you using latest xHarbour from SVN? Can I see your linker configuration file?[/quote:1dza1mzu] I am using FWH 13.04 with xHarbour 1.2.3 Intl. (SimpLex) (Build 20130326). I don't know if xHarbour is the latest version. Also using Borland 5.82. ilink.cfg contains just this: -L"c:\bcc582\l...
encrypting dbf files
Enrico, Are you closing the file after encryption, then reopening it? I don't see that happening in your posted code. Maybe that is the issue. James
encrypting dbf files
James, [quote="James Bott":kvhbltei]Enrico, Are you closing the file after encryption, then reopening it? I don't see that happening in your posted code. Maybe that is the issue. James[/quote:kvhbltei] Tried. No changes. My current sample is: [code=fw:kvhbltei]<div class="fw" id="{CB}" style="font-family: monospac...
encrypting dbf files
Enrico, This is working for me. [code=fw:2n1z4mev]<div class="fw" id="{CB}" style="font-family: monospace;"><span style="color: #00D7D7;">#include</span> <span style="color: #ff0000;">"fivewin.ch"</span><br /><br /><span style="color: #00C800;">FUNCTION</span> MAIN<span style="color: #000000;">&#40;</span><span style...
encrypting dbf files
James, I found the culprit: it doesn't work with memo fields. <!-- s:-( --><img src="{SMILIES_PATH}/icon_sad.gif" alt=":-(" title="Sad" /><!-- s:-( --> Can you confirm this? EMG
encrypting dbf files
I'm very interested in this thread. However, we have some other considerations. Many of us are now working with Harbour / MSVC 2012. Antonio has been encouraging people to move up to the newer compilers. The functions you are testing and working with are only valid with xHarbour. James, you are using the old com...
encrypting dbf files
Tim, I see no reason it wouldn't work with data objects. We just need to subclass and add the password unlock and possibly a check to make sure the database is encrypted. When time permits, I will test this to be certain. James
encrypting dbf files
James, did you check if the encrypting function works with memo fields? Maybe you missed my message above. EMG
encrypting dbf files
Enrico, [quote:2tnrek9k]did you check if the encrypting function works with memo fields?[/quote:2tnrek9k] I will try to get to it today. James
encrypting dbf files
James: I don't know the encryption algorithm that it uses. It encrypts the records over the old ones, no copy is made. Undelete tools will not recover the unencrypted data. Enrico: It does work with memo fields since I've been using it since 1996 in my production apps. I suggest that you compile a small program t...
encrypting dbf files
HunterEC, [quote="HunterEC":piea84q2]Enrico: It does work with memo fields since I've been using it since 1996 in my production apps.[/quote:piea84q2] Great! <!-- s:-) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":-)" title="Smile" /><!-- s:-) --> [quote="HunterEC":piea84q2]I suggest that you compile a small pro...
encrypting dbf files
Hunter, The following code is working fine for me [b:11xs3pyx]without[/b:11xs3pyx] using the SIX RDD. I can confirm that the file is encrypted. When I attempt to use either VIA SIXCDX or EXTERNAL SIXCDX I get this error: Error: Unresolved external '_HB_FUN_SIXCDX' referenced Any ideas? Do we really need this? Is t...
encrypting dbf files
James, [quote="James Bott":38ho6jov]The following code is working fine for me [b:38ho6jov]without[/b:38ho6jov] using the SIX RDD.[/quote:38ho6jov] As far as I know, SIXCDX is included in xHarbour's DBFCDX. EMG
encrypting dbf files
Enrico, [quote:3guovg90]As far as I know, SIXCDX is included in xHarbour's DBFCDX.[/quote:3guovg90] That was the conclusion that I came to. Probably Hunter has not tried it recently and thus his statement that you have to use the Six driver to encrypt. James
encrypting dbf files
James, [quote="James Bott":clpbpbso]Enrico, [quote:clpbpbso]As far as I know, SIXCDX is included in xHarbour's DBFCDX.[/quote:clpbpbso] That was the conclusion that I came to. Probably Hunter has not tried it recently and thus his statement that you have to use the Six driver to encrypt. James[/quote:clpbpbso] I a...
encrypting dbf files
Enrico, I am unable to encrypt memo files too. Hunter, Are you perhaps using the original SIX library instead of the xHarbour one? Maybe memo field encryption has not yet been implemented in the xHarbour version. James
encrypting dbf files
Six Driver NG Guide online [url:s7wk4116]http&#58;//www&#46;ousob&#46;com/ng/six3/index&#46;php[/url:s7wk4116] From the section on SX_encrypt() (Note that this encrypts a string and is not the same as SX_dbfencrypt() but we can probably assume that this uses the same encryption method). [url:s7wk4116]http&#58;//www&#...
encrypting dbf files
More on encrypted memo fields: This SIX driver apparently doesn't work with memo files. However, I think we can come up with a workaround. You will need to do something like the following. 1) Create a DBF without a memo field (this can be encrypted using SX_DBFENCRYPT(). There needs to be a primary-key field containi...
encrypting dbf files
Regarding my previous message, you will also need to add new Append() and Delete() methods. These will need to add and delete records from both files. James
encrypting dbf files
James, Enrico: I do encrypt my DBFs with a 16 bit Clipper utility program using the SIX driver. Memos do encrypt. In 32 bit you can encrypt the memo field before storing it with the Sx_encrypt (cPassword) function and that's it (in case that the memo fields does not get encrypted).
encrypting dbf files
Hunter, [quote="HunterEC":13xwa04a]James, Enrico: I do encrypt my DBFs with a 16 bit Clipper utility program using the SIX driver. Memos do encrypt. In 32 bit you can encrypt the memo field before storing it with the Sx_encrypt (cPassword) function and that's it (in case that the memo fields does not get encrypted)...
encrypting dbf files
Enrico: If you can email me (morenoec2007 at hotmail dot com) your program or a sample program and your DBFs, I'll give it a try. Thank you.
encrypting dbf files
Hunter, [quote="HunterEC":3q6i0h19]Enrico: If you can email me (morenoec2007 at hotmail dot com) your program or a sample program and your DBFs, I'll give it a try. Thank you.[/quote:3q6i0h19] Here it is: [code=fw:3q6i0h19]<div class="fw" id="{CB}" style="font-family: monospace;"><span style="color: #00C800;">FUNC...
encrypting dbf files
Hunter, [quote:h6xnumh9]I do encrypt my DBFs with a 16 bit Clipper utility program using the SIX driver. Memos do encrypt. In 32 bit you can encrypt the memo field before storing it with the Sx_encrypt (cPassword) function and that's it (in case that the memo fields does not get encrypted).[/quote:h6xnumh9] I am not ...
encrypting dbf files
James, [quote="James Bott":3va4fnuv]Do you know why memo field encryption was never implemented in 32bits?[/quote:3va4fnuv] It was a Przemek decision. <!-- s:-( --><img src="{SMILIES_PATH}/icon_sad.gif" alt=":-(" title="Sad" /><!-- s:-( --> EMG
encrypting dbf files
Enrico, [quote:1setswcn]It was a Przemek decision.[/quote:1setswcn] I wonder why. It seems that it would be simple to implement since the encryption/decryption code is already working. Maybe there is some other technical issue... Maybe some user requests would get him motivated. James
encrypting dbf files
To All There functions have served me well over the years .. I copied this ( public domain ) code from an old Clipper Tools book some time ago and have modified it from time to time. As you can see .. I added msginfo() to test the values and rem'd them out. Feel free to try them for yourselves. Please note that this...
encrypting dbf files
Rick, [quote="Rick Lipkin":u1ny12rf]To All There functions have served me well over the years .. I copied this ( public domain ) code from an old Clipper Tools book some time ago and have modified it from time to time.[/quote:u1ny12rf] Thank you. We are discussing an encrypting system at RDD level here. It already e...