home *** CD-ROM | disk | FTP | other *** search
- VERSION 5.00
- Begin VB.Form frmTest
- BorderStyle = 4 'Fixed ToolWindow
- Caption = "Test"
- ClientHeight = 4065
- ClientLeft = 7380
- ClientTop = 4365
- ClientWidth = 4440
- LinkTopic = "Form1"
- MaxButton = 0 'False
- MinButton = 0 'False
- ScaleHeight = 4065
- ScaleWidth = 4440
- ShowInTaskbar = 0 'False
- Begin VB.CommandButton cmdUpdate
- Caption = "Update"
- Height = 375
- Left = 0
- TabIndex = 1
- Top = 0
- Width = 4455
- End
- Begin VB.ListBox AZPList
- Height = 3570
- Left = 0
- TabIndex = 0
- Top = 480
- Width = 4455
- End
- Attribute VB_Name = "frmTest"
- Attribute VB_GlobalNameSpace = False
- Attribute VB_Creatable = False
- Attribute VB_PredeclaredId = True
- Attribute VB_Exposed = False
- Private Sub cmdUpdate_Click()
- AZPList.Clear
- AZPList.AddItem "Compression: " + Str(frmAZPCoDec.ActiveZipperPro1.Compression)
- AZPList.AddItem "DecompressedFile: " + frmAZPCoDec.ActiveZipperPro1.DecompressedFile
- AZPList.AddItem "Destination: " + frmAZPCoDec.ActiveZipperPro1.Destination
- AZPList.AddItem "Extension: " + frmAZPCoDec.ActiveZipperPro1.Extension
- AZPList.AddItem "FileProperties: " + frmAZPCoDec.ActiveZipperPro1.FileProperties
- ' AZPList.AddItem "Index: " + frmAZPCoDec.ActiveZipperPro1.Index
- AZPList.AddItem "Level: " + Str(frmAZPCoDec.ActiveZipperPro1.Level)
- AZPList.AddItem "MaxFiles: " + Str(frmAZPCoDec.ActiveZipperPro1.MaxFiles)
- AZPList.AddItem "Name: " + frmAZPCoDec.ActiveZipperPro1.Name
- ' AZPList.AddItem "Object: " + frmAZPCoDec.ActiveZipperPro1.Object
- AZPList.AddItem "OutPutFile: " + frmAZPCoDec.ActiveZipperPro1.OutPutFile
- ' AZPList.AddItem "Parent: " + Str(frmAZPCoDec.ActiveZipperPro1.Parent)
- AZPList.AddItem "Password: " + frmAZPCoDec.ActiveZipperPro1.Password
- ' AZPList.AddItem "Progress: " + Str(frmAZPCoDec.ActiveZipperPro1.Progress)
- AZPList.AddItem "Protected: " + Str(frmAZPCoDec.ActiveZipperPro1.Protected)
- AZPList.AddItem "SourceFile: " + frmAZPCoDec.ActiveZipperPro1.SourceFile
- AZPList.AddItem "StopOperation: " + Str(frmAZPCoDec.ActiveZipperPro1.StopOperation)
- AZPList.AddItem "Tag: " + frmAZPCoDec.ActiveZipperPro1.Tag
- AZPList.AddItem "UseExtension: " + Str(frmAZPCoDec.ActiveZipperPro1.UseExtension)
- AZPList.AddItem "UsingClass: " + Str(frmAZPCoDec.ActiveZipperPro1.UsingClass)
- AZPList.AddItem "Version: " + frmAZPCoDec.ActiveZipperPro1.Version
- AZPList.AddItem "Web: " + Str(frmAZPCoDec.ActiveZipperPro1.Web)
- End Sub
-