IFindSoundex Method |
Return the soundex version of the Name string.
Note that the soundex algorithm has changed between CRM 5 and SIX. The upgrade process updates all the soundex fields with new values.
Namespace: SuperOffice.COM.SuperOfficeDB
SoundEx
This text may be copied to the notepad, and saved as a *.vbs file. Remember to change the login information.
This will return the SoundEx value for SuperOffice
Dim objSO Dim objSound Set objSO = CreateObject("SuperOfficeDB.Database") If not (objSO is nothing) Then objSO.login "<USERID>", "<password>" objSound = objSO.Find.SoundEx("SuperOffice") msgbox "The SoundEx for SuperOffice is: " & objsound Else MsgBox "Could not log in" End If Set objSO = Nothing