home *** CD-ROM | disk | FTP | other *** search
- VERSION 5.00
- Begin VB.Form frmSplitArchive
- BorderStyle = 1 'Fixed Single
- Caption = "Split Archive"
- ClientHeight = 3570
- ClientLeft = 45
- ClientTop = 330
- ClientWidth = 4695
- Icon = "frmSplitArchive.frx":0000
- LinkTopic = "Form1"
- MaxButton = 0 'False
- MinButton = 0 'False
- ScaleHeight = 3570
- ScaleWidth = 4695
- StartUpPosition = 3 'Windows Default
- Begin VB.Frame frSearch
- Caption = "Search Pattern"
- BeginProperty Font
- Name = "Tahoma"
- Size = 8.25
- Charset = 0
- Weight = 700
- Underline = 0 'False
- Italic = 0 'False
- Strikethrough = 0 'False
- EndProperty
- Height = 680
- Left = 2400
- TabIndex = 6
- Top = 2880
- Width = 2295
- Begin VB.TextBox txtFiles
- BeginProperty Font
- Name = "Tahoma"
- Size = 8.25
- Charset = 0
- Weight = 400
- Underline = 0 'False
- Italic = 0 'False
- Strikethrough = 0 'False
- EndProperty
- Height = 315
- Left = 120
- TabIndex = 7
- Text = "*.az"
- Top = 240
- Width = 2055
- End
- End
- Begin VB.Frame frFileSelect
- Caption = "Select Archive"
- BeginProperty Font
- Name = "Tahoma"
- Size = 8.25
- Charset = 0
- Weight = 700
- Underline = 0 'False
- Italic = 0 'False
- Strikethrough = 0 'False
- EndProperty
- Height = 2895
- Left = 0
- TabIndex = 2
- Top = 0
- Width = 4695
- Begin VB.DriveListBox drvList
- BeginProperty Font
- Name = "Tahoma"
- Size = 8.25
- Charset = 0
- Weight = 400
- Underline = 0 'False
- Italic = 0 'False
- Strikethrough = 0 'False
- EndProperty
- Height = 315
- Left = 120
- TabIndex = 5
- Top = 240
- Width = 4455
- End
- Begin VB.DirListBox dirCopy
- BeginProperty Font
- Name = "Tahoma"
- Size = 8.25
- Charset = 0
- Weight = 400
- Underline = 0 'False
- Italic = 0 'False
- Strikethrough = 0 'False
- EndProperty
- Height = 2115
- Left = 120
- TabIndex = 4
- Top = 675
- Width = 2295
- End
- Begin VB.FileListBox flbCopy
- BeginProperty Font
- Name = "Tahoma"
- Size = 8.25
- Charset = 0
- Weight = 400
- Underline = 0 'False
- Italic = 0 'False
- Strikethrough = 0 'False
- EndProperty
- Height = 2040
- Left = 2520
- TabIndex = 3
- Top = 675
- Width = 2055
- End
- End
- Begin VB.CommandButton cmdCancel
- Caption = "&Cancel"
- BeginProperty Font
- Name = "Tahoma"
- Size = 8.25
- Charset = 0
- Weight = 400
- Underline = 0 'False
- Italic = 0 'False
- Strikethrough = 0 'False
- EndProperty
- Height = 375
- Left = 1200
- TabIndex = 1
- Top = 3120
- Width = 1095
- End
- Begin VB.CommandButton cmdOpen
- Caption = "&Split"
- Default = -1 'True
- BeginProperty Font
- Name = "Tahoma"
- Size = 8.25
- Charset = 0
- Weight = 400
- Underline = 0 'False
- Italic = 0 'False
- Strikethrough = 0 'False
- EndProperty
- Height = 375
- Left = 0
- TabIndex = 0
- Top = 3120
- Width = 1095
- End
- Attribute VB_Name = "frmSplitArchive"
- Attribute VB_GlobalNameSpace = False
- Attribute VB_Creatable = False
- Attribute VB_PredeclaredId = True
- Attribute VB_Exposed = False
- Private Sub cmdCancel_Click()
- Unload Me
- End Sub
- Private Sub cmdOpen_Click()
- If Len(flbCopy.FileName) > 1 Then
- If Right(dirCopy.Path, 1) <> "\" Then
- frmAZPCoDec.ActiveZipperPro1.SplitArchive flbCopy.Path & "\" & flbCopy.FileName
- Else
- ffrmAZPCoDec.ActiveZipperPro1.SplitArchive flbCopy.Path & flbCopy.FileName
- End If
- End If
- Unload Me
- End Sub
- Private Sub dirCopy_Change()
- flbCopy.Path = dirCopy.Path
- End Sub
- Private Sub drvList_Change()
- dirCopy.Path = drvList.Drive
- End Sub
- Private Sub Form_Load()
- flbCopy.Pattern = txtFiles.Text
- End Sub
- Private Sub txtFiles_Change()
- flbCopy.Pattern = txtFiles.Text
- End Sub
-