Yes, there is an API call to do this. Here's an illustrative example:
[tt]
Option Explicit
Private Declare Function SendMessage Lib "user32" Alias "SendMessageA" (ByVal hwnd As Long, ByVal wMsg As Long, ByVal wParam As Long, ByVal lParam As Any) As Long
Private Const CB_FINDSTRING = &H14C
Private Function GetCBIndexFromString(SearchCombo As ComboBox, strSearch As String) As Long
GetCBIndexFromString = SendMessage(SearchCombo.hwnd, CB_FINDSTRING, -1, strSearch)
End Function
[/tt]