Re: [DUG]: Paradox SQL - Group totals as % of Grand total

2001-09-26 Thread Mike Osborne
Mark The following works in Database Desktop (v7.0) - haven't verified how it goes in Delphi. Table has Amount and ExpType (among other things) in an Expenses table. The following SQL provides total expenses by type and as percentage of total and has a grand total at the end. select

Re: [DUG]: String Encryption routine

2001-09-26 Thread NIRAV KAKU
Why not write an algorithm of your own? If you want to go the world standard way then mail me personally. I have done some heavy encryption work and I don't mind sharing the code of some standard classes written by me. The combination includes - MD5 - (hashing) RC4 (128) - (encryption) RSA

Re: [DUG]: Paradox SQL - Group totals as % of Grand total

2001-09-26 Thread Mark Howard
Mike Thanks for that suggestion. I'm out of the office today but will examine it to see what makes it tick tomorrow, and see if I can use something along those lines. Appreciate your help. Mark - Original Message - From: Mike Osborne To: Multiple recipients of list

RE: [DUG]: String Encryption routine

2001-09-26 Thread Wilfred Verkley
It might not be insecure if you use it in the right way, 1. Make sure your key is random 2. Make the key as long as the message 3. Never re-use the same key This will turn this cypher (a viginere with a feedback loop (?)) into a One-Time-Pad which is proven to be unbreakable. -Original

Re: [DUG]: String Encryption routine

2001-09-26 Thread Ross Levis
Thanks for the offer Nirav but I'm successfully using a variation of Phil Scadden's simple routine. I've just added a simple checksum to it so I can tell if it's been tampered with. Cheers, Ross. NIRAV KAKU wrote: Why not write an algorithm of your own? If you want to go the world

RE: [DUG]: String Encryption routine

2001-09-26 Thread John Christenhusz
Great, show us the code!! John -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of Ross Levis Sent: Thursday, 27 September, 2001 13:36 To: Multiple recipients of list delphi Subject: Re: [DUG]: String Encryption routine Thanks for the offer Nirav

Re: [DUG]: String Encryption routine

2001-09-26 Thread Robert Martin
How very open source of you. I didnt think you could do that sort of thing on a non Linux platform :) Robert Martin Software Engineer Wild Software Ltd - Original Message - From: John Christenhusz [EMAIL PROTECTED] To: Multiple recipients of list delphi [EMAIL PROTECTED] Sent: Thursday,

RE: [DUG]: String Encryption routine

2001-09-26 Thread Nahum Wild
Maybe he is developing for/with Kylix :) like I currently am. Nahum. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of Robert Martin Sent: Thursday, 27 September 2001 15:06 To: Multiple recipients of list delphi Subject: Re: [DUG]: String

Re: [DUG]: String Encryption routine

2001-09-26 Thread Robert Martin
Ahh that must be it! Robert Martin Software Engineer Wild Software Ltd - Original Message - From: Nahum Wild [EMAIL PROTECTED] To: Multiple recipients of list delphi [EMAIL PROTECTED] Sent: Thursday, September 27, 2001 3:10 PM Subject: RE: [DUG]: String Encryption routine Maybe he is

[DUG]: Help with searching a .dat file

2001-09-26 Thread abaddon
Hi all, i have a edit box and a button on my form with the find dialog as well. my program is a address book. which it's data is written to a .dat file. i have made a record type type address=record name :string[50]; streetaddress:string[40]; city:string[20]; phone:string[15];

[DUG]: Right Click Set focus

2001-09-26 Thread Jeremy Coulter
Hi All. I am just working with a treeview at the moment that has a popup meny that appears when you right click on it. The problem IS, even with the property "RightClickSelect" or what ever it is called set to true, the node in the tree does not become "selected" until the popup menu goes

Re: [DUG]: Help with searching a .dat file

2001-09-26 Thread Trevor Jones
Brendon, You don't say whether the data in your .dat file is sorted, or how many entries you are likely to be expecting, or whether you're developing for Win32 or Win16. However: If the records in the .dat file are unsorted and you don't want to lad the entire file into memory, you are going

Re: [DUG]: Help with searching a .dat file

2001-09-26 Thread abaddon
On Thu, 27 Sep 2001 17:14:25 +1200, you wrote: Brendon, You don't say whether the data in your .dat file is sorted, or how many entries you are likely to be expecting, or whether you're developing for Win32 or Win16. the data is unsorted and the file is opened when the program is ran. so i