home *** CD-ROM | disk | FTP | other *** search
- VERSION 5.00
- Begin VB.Form frmText
- Caption = "
- ClientHeight = 4455
- ClientLeft = 930
- ClientTop = 1290
- ClientWidth = 6870
- LinkTopic = "Form1"
- ScaleHeight = 4455
- ScaleWidth = 6870
- Begin VB.CommandButton cmdReset
- Caption = "
- (&R)"
- Height = 495
- Left = 2400
- TabIndex = 2
- Top = 3720
- Width = 1575
- End
- Begin VB.CommandButton cmdClose
- Cancel = -1 'True
- Caption = "
- (&C)"
- Height = 495
- Left = 5040
- TabIndex = 3
- Top = 3720
- Width = 1575
- End
- Begin VB.Frame fraInsert
- Caption = "
- Height = 2295
- Left = 120
- TabIndex = 5
- Top = 1200
- Width = 3855
- Begin VB.OptionButton optText
- Caption = "
- (&T)"
- Height = 255
- Left = 360
- TabIndex = 9
- Top = 1800
- Width = 2055
- End
- Begin VB.OptionButton optSelect
- Caption = "
- (&S)"
- Height = 255
- Left = 360
- TabIndex = 8
- Top = 1440
- Width = 2055
- End
- Begin VB.OptionButton optInsert
- Caption = "
- (&I)"
- Height = 255
- Left = 360
- TabIndex = 7
- Top = 1080
- Width = 2775
- End
- Begin VB.OptionButton optEnd
- Caption = "
- (&E)"
- Height = 255
- Left = 360
- TabIndex = 6
- Top = 720
- Width = 2175
- End
- Begin VB.OptionButton optDefault
- Caption = "
- (&D)"
- Height = 255
- Left = 360
- TabIndex = 1
- Top = 360
- Value = -1 'True
- Width = 1815
- End
- End
- Begin VB.TextBox txtDisplay
- Height = 375
- HideSelection = 0 'False
- Left = 120
- TabIndex = 0
- Text = "
- MultiLine
- False
- Top = 480
- Width = 3840
- End
- Begin VB.TextBox txtMulti
- Height = 615
- Left = 4080
- MultiLine = -1 'True
- TabIndex = 4
- TabStop = 0 'False
- Text = "text.frx":0000
- Top = 480
- Width = 2655
- End
- Begin VB.Label lblHelp
- Caption = "
- Height = 735
- Left = 4200
- TabIndex = 10
- Top = 2160
- Width = 2535
- End
- Attribute VB_Name = "frmText"
- Attribute VB_GlobalNameSpace = False
- Attribute VB_Creatable = False
- Attribute VB_PredeclaredId = True
- Attribute VB_Exposed = False
- Private Sub cmdClose_Click()
- Unload Me '
- End Sub
- Private Sub cmdReset_Click()
- '
- txtDisplay.Text = "
- MultiLine
- False
- '
- optDefault.Value = True
- End Sub
- Private Sub optDefault_Click()
- '
- txtDisplay.SelStart = 0
- '
- txtDisplay.SetFocus
- End Sub
- Private Sub optEnd_Click()
- '
- txtDisplay.SelStart = Len(txtDisplay.Text)
- '
- txtDisplay.SetFocus
- End Sub
- Private Sub optInsert_Click()
- '
- txtDisplay.SelStart = 5
-
- '
- txtDisplay.SetFocus
- End Sub
- Private Sub optSelect_Click()
- '
- txtDisplay.SelStart = 0
- '
- txtDisplay.SelLength = Len(txtDisplay.Text)
- '
- txtDisplay.SetFocus
- End Sub
- Private Sub optText_Click()
- '
- '
- txtDisplay.SelText = "
- '
- txtDisplay.SetFocus
- End Sub
-