home *** CD-ROM | disk | FTP | other *** search
- VERSION 5.00
- Begin VB.Form frmCheck
- Caption = "
- ClientHeight = 3075
- ClientLeft = 2145
- ClientTop = 1980
- ClientWidth = 4530
- BeginProperty Font
- Name = "
- Size = 9
- Charset = 134
- Weight = 700
- Underline = 0 'False
- Italic = 0 'False
- Strikethrough = 0 'False
- EndProperty
- LinkTopic = "Form4"
- ScaleHeight = 3075
- ScaleWidth = 4530
- Begin VB.CommandButton cmdClose
- Caption = "
- (&C)"
- BeginProperty Font
- Name = "
- Size = 9
- Charset = 134
- Weight = 400
- Underline = 0 'False
- Italic = 0 'False
- Strikethrough = 0 'False
- EndProperty
- Height = 495
- Left = 3000
- TabIndex = 3
- Top = 2160
- Width = 1095
- End
- Begin VB.CheckBox chkItalic
- Caption = "
- (&I)"
- BeginProperty Font
- Name = "
- Size = 9
- Charset = 134
- Weight = 400
- Underline = 0 'False
- Italic = 0 'False
- Strikethrough = 0 'False
- EndProperty
- Height = 495
- Left = 480
- TabIndex = 2
- Top = 1440
- Width = 1215
- End
- Begin VB.CheckBox chkBold
- Caption = "
- (&B)"
- BeginProperty Font
- Name = "
- Size = 9
- Charset = 134
- Weight = 400
- Underline = 0 'False
- Italic = 0 'False
- Strikethrough = 0 'False
- EndProperty
- Height = 495
- Left = 480
- TabIndex = 1
- Top = 960
- Width = 1215
- End
- Begin VB.TextBox txtDisplay
- BeginProperty Font
- Name = "
- Size = 9
- Charset = 134
- Weight = 400
- Underline = 0 'False
- Italic = 0 'False
- Strikethrough = 0 'False
- EndProperty
- Height = 375
- Left = 480
- TabIndex = 0
- Text = "
- Top = 360
- Width = 3615
- End
- Begin VB.Label lblEnter
- Caption = "
- BeginProperty Font
- Name = "
- Size = 9
- Charset = 134
- Weight = 400
- Underline = 0 'False
- Italic = 0 'False
- Strikethrough = 0 'False
- EndProperty
- Height = 615
- Left = 1800
- TabIndex = 4
- Top = 1080
- Width = 2295
- End
- Attribute VB_Name = "frmCheck"
- Attribute VB_GlobalNameSpace = False
- Attribute VB_Creatable = False
- Attribute VB_PredeclaredId = True
- Attribute VB_Exposed = False
- Private Sub chkBold_Click()
- Click
- Value
- If chkBold.Value = 1 Then '
- txtDisplay.FontBold = True
- Else '
- txtDisplay.FontBold = False
- End If
- End Sub
- Private Sub chkItalic_Click()
- Click
- Value
- If chkItalic.Value = 1 Then '
- txtDisplay.FontItalic = True
- Else '
- txtDisplay.FontItalic = False
- End If
- End Sub
- Private Sub cmdClose_Click()
- Unload Me '
- End Sub
-