|
Post by RWerning on Apr 24, 2006 8:26:59 GMT -5
VCLZip pro 3.06 doesn't compile for D2006. I'm trying to work thru the issues to make it compile, but was wondering if you were going to make a release version for D2006?
Thanks
|
|
|
Post by RWerning on Apr 24, 2006 8:39:39 GMT -5
Nevermind - I just noticed the post in the General board. Adding the defines to kpDefs.inc seemed to work for me.
|
|
|
Post by Lasse Storr-Hansen on Nov 13, 2006 12:25:33 GMT -5
I am really looking forward to get a version for Delphi 2006. I have to port my application from Delphi 7 to Delphi 2006 before april 2007. Will there be a version for Delphi 2006 before that date?
Lasse :-)
|
|
|
Post by Kevin on Nov 15, 2006 22:33:31 GMT -5
VCLZip will work with D2006 now with a small addition to the KPDEFS.INC file...
If you are a registered user, open up KPDEFS.INC and add the following block. It will be obvious how to do it because there are other similar blocks and this is infact essentially just like the Delphi2005 block, just with a different compiler version.
{$IFDEF VER180} { Delphi 2006} {$DEFINE DELPHI_BCB_3} {$DEFINE HAS_64_BIT_INT} {$WARN SYMBOL_PLATFORM OFF} {$WARN UNIT_PLATFORM OFF} {$DEFINE INT64STREAMS} {$DEFINE ISDELPHI4} {$DEFINE ISDELPHI5} {$DEFINE ISDELPHI6} {$DEFINE ISDELPHI7} {$DEFINE ISDELPHI2005} {$DEFINE ISDELPHI2006} {$DEFINE ISDELPHI} {$DEFINE ISCLX} {$ENDIF}
|
|
|
Post by Lasse Storr-Hansen on Mar 30, 2007 1:56:28 GMT -5
I have just installed my new D2007 for Win32 and my question is the same: Will there be a version of VCL Zip Pro for D2007W32? Next: How do I use the current version from D2007?
Lasse :-)
|
|
|
Post by Kevin on Mar 30, 2007 7:26:07 GMT -5
I don't have D2007 yet. I would suspect that another block of code just like the one I showed above, except the {$IFDEF VER180} would have to be changed to reflect the compiler version for Delphi 2007.
I think it might also work to change the {$IFDEF VER180} line to something like:
{$IF COMPILER_VERSION >= 180}
might work too, but I have not had a chance to experiment with this. Infact I am not sure off hand if COMPILER_VERSION would be 180 or 18.0.
Kevin
|
|