alfmarc
Newbie
Posts: 1
Registered: 4/26/2005
Member Is Offline
|
| posted on 4/26/2005 at 12:49 AM |
|
|
AspZip with Delphi
I not found any docs about install the Asp Zip in Delphi.
I registered the ActiveX but the object don't appear in the palette.
|
|
|
wit
Member
Posts: 24
Registered: 11/19/2004
Member Is Offline
|
| posted on 7/1/2005 at 07:29 PM |
|
|
You can use Delphi COM Objects (ComObj.pas unit) routines in order to create Zip object.
e.g.
use ComObj;
procedure TestZip
var
Zip: OleVariant;
begin
Zip := CreateOleObject('SoftComplex.Zip');
...
...
...
end
For public properites and methods see component documentation.
|
|
|