RE: Data compression in Delphi

2007-02-04 Thread Test POP3 filter
I use ZipTV (http://www.ziptv.com/) and it suits my needs in this area. Peter Laman Senior Software Engineer Lance ICT Group Roermond, the Netherlands http://www.lance-safety.com __ Delphi-Talk mailing list -> Delphi-Talk@elists.org http://www.elists

Re: Data compression in Delphi

2007-02-04 Thread CubicDesign
Thank you very very much for opening my eyes. Generally, I knew about that library but in this moment I forgot about it. I tried it today and it worked like magic. The files are even 1-2% smaller than regular ZIP :) Now I have the files not only concatenated, but also compacted. And this with o

Re: Data compression in Delphi

2007-02-03 Thread Dan Kloke
Gabriel, check out VclZip : http://vclzip.bizland.com/kpgbpro.htm certainly meets your first three requirements, and you can stream files in and out, similar to what Rob suggested. [EMAIL PROTECTED] wrote: > Hi. > > I want to save a form with all data inserted by user (in multiple boxes > and gr

Re: Data compression in Delphi

2007-02-03 Thread Kraven
Message - From: "Chris Rutkowski" <[EMAIL PROTECTED]> To: "Delphi-Talk Discussion List" Sent: Saturday, February 03, 2007 3:05 PM Subject: Re: Data compression in Delphi > Hi Gabriel, > > there used to be the zlib distributed with Delphi - I have used that >

Re: Data compression in Delphi

2007-02-03 Thread Chris Rutkowski
Hi Gabriel, there used to be the zlib distributed with Delphi - I have used that once or twice and it worked well. I have also used the ZIP.EXE command line utility, started with a command tail using WINEXEC from within a Delphi program, and that does most of the tricks required. Good luck - C

Re: Data compression in Delphi

2007-02-02 Thread Rob Kennedy
CubicDesign wrote: > I want to save a form with all data inserted by user (in multiple boxes > and grids). > For this, I have added to all controls a procedure > SaveToFile/LoadFromFile (like in TStringList.SaveToFile). > All is working nice with one single exception: I have too many files > ins