home *** CD-ROM | disk | FTP | other *** search
- VERSION 2.00
- Begin Form Form1
- BorderStyle = 3 'Fixed Double
- Caption = "SoundX Sample"
- ClientHeight = 2370
- ClientLeft = 1935
- ClientTop = 2760
- ClientWidth = 4230
- Height = 2775
- Left = 1875
- LinkTopic = "Form1"
- MaxButton = 0 'False
- MinButton = 0 'False
- ScaleHeight = 2370
- ScaleWidth = 4230
- Top = 2415
- Width = 4350
- Begin TextBox Word
- Height = 285
- Left = 240
- TabIndex = 0
- Top = 480
- Width = 3735
- End
- Begin SoundX SoundX1
- Left = 3720
- Top = 0
- End
- Begin Label ExtSoundex
- Alignment = 1 'Right Justify
- Height = 255
- Left = 2760
- TabIndex = 7
- Top = 1800
- Width = 1215
- End
- Begin Label Soundex
- Alignment = 1 'Right Justify
- Height = 255
- Left = 2160
- TabIndex = 6
- Top = 1440
- Width = 1815
- End
- Begin Label Metaphone
- Alignment = 1 'Right Justify
- Height = 255
- Left = 2160
- TabIndex = 5
- Top = 1080
- Width = 1815
- End
- Begin Label Label4
- Caption = "Extended Soundex Output:"
- Height = 255
- Left = 240
- TabIndex = 4
- Top = 1800
- Width = 2415
- End
- Begin Label Label3
- Caption = "Soundex Output"
- Height = 255
- Left = 240
- TabIndex = 3
- Top = 1440
- Width = 1935
- End
- Begin Label Label2
- Caption = "Metaphone Output:"
- Height = 255
- Left = 240
- TabIndex = 2
- Top = 1080
- Width = 1695
- End
- Begin Label Label1
- Caption = "Input Word:"
- Height = 255
- Left = 240
- TabIndex = 1
- Top = 240
- Width = 1935
- End
- Option Explicit
- Sub Form_Unload (Cancel As Integer)
- End
- End Sub
- Sub Word_Change ()
- SoundX1.Word = Word
- Metaphone = SoundX1.Metaphone
- Soundex = SoundX1.Soundex
- ExtSoundex = SoundX1.ExtSoundex
- End Sub
-