home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
DP Tool Club 19
/
CD_ASCQ_19_010295.iso
/
win
/
prg
/
zs20
/
commentf.fr_
/
COMMENTF.FRM
Wrap
Text File
|
1994-11-21
|
2KB
|
68 lines
VERSION 2.00
Begin Form CommentForm
BackColor = &H00C0C0C0&
BorderStyle = 3 'Fixed Double
Caption = "Set the Zip comment..."
ClientHeight = 2448
ClientLeft = 2028
ClientTop = 2196
ClientWidth = 4260
Height = 2868
Left = 1980
LinkTopic = "Form3"
MaxButton = 0 'False
MinButton = 0 'False
ScaleHeight = 2448
ScaleWidth = 4260
Top = 1824
Width = 4356
Begin CommandButton CancelBtn
Caption = "Cancel"
Height = 360
Left = 3084
TabIndex = 2
Top = 2016
Width = 1104
End
Begin CommandButton OkBtn
Caption = "OK"
Default = -1 'True
Height = 360
Left = 1920
TabIndex = 1
Top = 2016
Width = 1104
End
Begin TextBox CommentText
FontBold = 0 'False
FontItalic = 0 'False
FontName = "MS Sans Serif"
FontSize = 7.8
FontStrikethru = 0 'False
FontUnderline = 0 'False
Height = 1932
Left = 36
MultiLine = -1 'True
ScrollBars = 3 'Both
TabIndex = 0
Top = 48
Width = 4152
End
End
Sub CancelBtn_Click ()
Unload CommentForm
End Sub
Sub OkBtn_Click ()
If CommentText.Text <> "" Then
Form1.VBZip1.Comment = CommentText
Else
Form1.VBZip1.Action = 6
End If
Unload CommentForm
End Sub