If you do not care about finding the position, use the Like operator.
Code:
If String1 Like String2 Then MsgBox "Yes"
Else, use the InStr function.
Code:
nPos = InStr(1, StringToSearch, StringToFind)
If nPos > 0 Then MsgBox "String found at position " & nPos