This really doesn't need to be in the API section, because InStr() (and what you are asking) isn't related to API.


VB Code:
  1. If (InStr(1, string, "name", vbBinarCompare) > 0) Then
  2.     'its there
  3. End If

Phreak