home *** CD-ROM | disk | FTP | other *** search
/ World of Shareware - Software Farm 2 / wosw_2.zip / wosw_2 / QBAS / 5PAK20.ZIP / SNDX20.ZIP / SAMPLE.ZIP / GENERAPP.FRM next >
Text File  |  1993-08-03  |  4KB  |  158 lines

  1. VERSION 2.00
  2. Begin Form Clacker_Form 
  3.    Caption         =   "SndDexTest"
  4.    ClientHeight    =   3885
  5.    ClientLeft      =   1215
  6.    ClientTop       =   1830
  7.    ClientWidth     =   5055
  8.    Height          =   4575
  9.    Left            =   1155
  10.    LinkTopic       =   "Form1"
  11.    ScaleHeight     =   3885
  12.    ScaleWidth      =   5055
  13.    Top             =   1200
  14.    Width           =   5175
  15.    Begin SndDex SndDex1 
  16.       Left            =   720
  17.       Top             =   720
  18.    End
  19.    Begin TextBox TXT_Result 
  20.       Height          =   375
  21.       Left            =   120
  22.       TabIndex        =   6
  23.       Text            =   "Result of compare"
  24.       Top             =   3240
  25.       Width           =   4815
  26.    End
  27.    Begin TextBox TXT_KeyString 
  28.       Height          =   375
  29.       Left            =   120
  30.       TabIndex        =   3
  31.       Text            =   "Dog"
  32.       Top             =   1320
  33.       Width           =   4815
  34.    End
  35.    Begin CommandButton BTN_Exit 
  36.       Caption         =   "Exit"
  37.       Height          =   375
  38.       Left            =   3720
  39.       TabIndex        =   2
  40.       Top             =   240
  41.       Width           =   1215
  42.    End
  43.    Begin TextBox TXT_SearchString 
  44.       Height          =   375
  45.       Left            =   120
  46.       TabIndex        =   1
  47.       Text            =   "Dawg"
  48.       Top             =   2520
  49.       Width           =   4815
  50.    End
  51.    Begin CommandButton Btn_Compare 
  52.       Caption         =   "Compare"
  53.       Height          =   375
  54.       Left            =   2400
  55.       TabIndex        =   0
  56.       Top             =   240
  57.       Width           =   1215
  58.    End
  59.    Begin Label Label3 
  60.       Alignment       =   2  'Center
  61.       Caption         =   "Search String"
  62.       Height          =   255
  63.       Left            =   120
  64.       TabIndex        =   5
  65.       Top             =   2160
  66.       Width           =   4815
  67.    End
  68.    Begin Label Label1 
  69.       Alignment       =   2  'Center
  70.       Caption         =   "Key String"
  71.       Height          =   255
  72.       Left            =   120
  73.       TabIndex        =   4
  74.       Top             =   960
  75.       Width           =   4815
  76.    End
  77.    Begin Menu nmu_File 
  78.       Caption         =   "&File"
  79.       Begin Menu mnu_Exit 
  80.          Caption         =   "&Exit"
  81.       End
  82.    End
  83.    Begin Menu mnu_Edit 
  84.       Caption         =   "&Edit"
  85.       Begin Menu mnu_Cut 
  86.          Caption         =   "Cu&t"
  87.       End
  88.       Begin Menu mnu_Copy 
  89.          Caption         =   "&Copy"
  90.       End
  91.       Begin Menu mnu_Paste 
  92.          Caption         =   "&Paste"
  93.       End
  94.       Begin Menu mnu_submenu 
  95.          Caption         =   "SubMenu"
  96.          Begin Menu mnu_submenu1 
  97.             Caption         =   "SubMenu 1"
  98.          End
  99.          Begin Menu mnu_submenu2 
  100.             Caption         =   "SubMenu 2"
  101.          End
  102.       End
  103.    End
  104. End
  105. Option Explicit
  106.  
  107. Sub Btn_Compare_Click ()
  108. Dim sStdTemp As String
  109. Dim sIntTemp As String
  110.  
  111.     TXT_Result = ""
  112.  
  113.     ' load the words to match
  114.     SndDex1.KeyText = TXT_KeyString.Text
  115.     SndDex1.SearchText = TXT_SearchString.Text
  116.  
  117.     ' do it with std soundex search
  118.     SndDex1.Action = 20   ''SNDEX_STDSEARCH
  119.     ' store results
  120.     ' NOTE: result VAR SoundsLike is an integer
  121.     '       0 => no match
  122.     '       1 => matches
  123.     sStdTemp = Str$(SndDex1.SoundsLike)
  124.  
  125.     ' now do it with int soundex search
  126.     SndDex1.Action = 21   ''SNDEX_STDSEARCH
  127.     ' store results
  128.     ' NOTE: result VAR SoundsLike is an integer
  129.     '       0 => no match
  130.     '       1 => matches
  131.     sIntTemp = Str$(SndDex1.SoundsLike)
  132.  
  133.     TXT_Result = "Std = " + sStdTemp + "    Int = " + sIntTemp
  134. End Sub
  135.  
  136. Sub BTN_Exit_Click ()
  137.     mnu_Exit_Click
  138. End Sub
  139.  
  140. Sub Form_Load ()
  141.  
  142.     Top = 0
  143.     Left = 0
  144.  
  145. End Sub
  146.  
  147. Sub Form_Resize ()
  148.     If Me.WindowState = 0 Then
  149.         Me.Height = 5550
  150.         Me.Width = 5175
  151.     End If
  152. End Sub
  153.  
  154. Sub mnu_Exit_Click ()
  155.     End
  156. End Sub
  157.  
  158.