Finds the first item after the given index that matches the given string. The strings must match excatly, except for differences in casing.
[Visual Basic] Overloads Public Function FindStringExact( _ ByVal s As String, _ ByVal startIndex As Integer _ ) As Integer [C#] public int FindStringExact( string s, int startIndex ); [C++] public: int FindStringExact( String* s, int startIndex ); [JScript] public function FindStringExact( s : String, startIndex : int ) : int;
The index of the first item that matches the given string, or-1 if no match was found.
ComboBox Class | ComboBox Members | System.WinForms Namespace | ComboBox.FindStringExact Overload List