home *** CD-ROM | disk | FTP | other *** search
- VERSION 5.00
- Begin VB.Form CommentsForm
- BorderStyle = 4 'Fixed ToolWindow
- Caption = "Enter Comments"
- ClientHeight = 2835
- ClientLeft = 45
- ClientTop = 285
- ClientWidth = 4425
- LinkTopic = "Form2"
- MaxButton = 0 'False
- MinButton = 0 'False
- ScaleHeight = 2835
- ScaleWidth = 4425
- ShowInTaskbar = 0 'False
- StartUpPosition = 3 'Windows Default
- Begin VB.CommandButton bttnOK
- Caption = "O K"
- BeginProperty Font
- Name = "Verdana"
- Size = 9.75
- Charset = 0
- Weight = 700
- Underline = 0 'False
- Italic = 0 'False
- Strikethrough = 0 'False
- EndProperty
- Height = 450
- Left = 3000
- TabIndex = 2
- Top = 2280
- Width = 1320
- End
- Begin VB.CommandButton bttnCancel
- Caption = "CANCEL"
- BeginProperty Font
- Name = "Verdana"
- Size = 9.75
- Charset = 0
- Weight = 700
- Underline = 0 'False
- Italic = 0 'False
- Strikethrough = 0 'False
- EndProperty
- Height = 450
- Left = 120
- TabIndex = 1
- Top = 2265
- Width = 1320
- End
- Begin VB.TextBox Text1
- BackColor = &H0000FFFF&
- BeginProperty Font
- Name = "Verdana"
- Size = 9
- Charset = 0
- Weight = 400
- Underline = 0 'False
- Italic = 0 'False
- Strikethrough = 0 'False
- EndProperty
- Height = 2115
- Left = 15
- MultiLine = -1 'True
- TabIndex = 0
- Top = 30
- Width = 4380
- End
- Attribute VB_Name = "CommentsForm"
- Attribute VB_GlobalNameSpace = False
- Attribute VB_Creatable = False
- Attribute VB_PredeclaredId = True
- Attribute VB_Exposed = False
- Dim comment As String
- Private Sub bttnCancel_Click()
- Text1.Text = comment
- Form2.Hide
- End Sub
- Private Sub bttnOK_Click()
- CommentsForm.Hide
- End Sub
- Private Sub Form_Activate()
- comment = Text1.Text
- Text1.SetFocus
- End Sub
-