Click or drag to resize

IFindSoundex Method

Returns the soundex form of the name

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
Assembly:  SuperOfficeDB.Interop (in SuperOfficeDB.Interop.dll) Version: 8.0.0.0
Syntax
string Soundex(
	string Name
)

Parameters

Name
Type: SystemString
a name or word to convert to Soundex

Return Value

Type: String
The Soundex version of Name
Examples

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

VB
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

See Also