home *** CD-ROM | disk | FTP | other *** search
- VERSION 2.00
- Begin Form Form1
- BackColor = &H8000000F&
- Caption = "Form1"
- ClientHeight = 3585
- ClientLeft = 1770
- ClientTop = 2595
- ClientWidth = 6330
- Height = 3990
- Icon = FORM1.FRX:0000
- Left = 1710
- LinkTopic = "Form1"
- ScaleHeight = 3585
- ScaleWidth = 6330
- Top = 2250
- Width = 6450
- Begin CommandButton Command2
- Caption = "Quit"
- Height = 495
- Left = 1920
- TabIndex = 2
- Top = 120
- Width = 1575
- End
- Begin TextBox Text1
- Height = 2775
- Left = 120
- MultiLine = -1 'True
- ScrollBars = 2 'Vertical
- TabIndex = 1
- Text = "Check the spellling on thiss."
- Top = 720
- Width = 6135
- End
- Begin CommandButton Command1
- Caption = "Spell Check"
- Height = 495
- Left = 120
- TabIndex = 0
- Top = 120
- Width = 1575
- End
- Sub Command1_Click ()
- Dim x As Integer
- If Not SpellCheck(Form1.Text1) Then
- MsgBox "Unable to complete spell check succesfully."
- End If
- End Sub
- Sub Command2_Click ()
- End Sub
- Sub Form_Load ()
- Form1.Caption = ProgTitle
- End Sub
-