[To be supplied.]
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(String, Integer) As Integer
[C#] public int FindStringExact(String, int);
[C++] public: int FindStringExact(String*, int);
[JScript] public function FindStringExact(String, int) : int;
Finds the first item in the combo box that matches the given string. The strings must match excatly, except for differences in casing.
[Visual Basic] Overloads Public Function FindStringExact(String) As Integer
[C#] public int FindStringExact(String);
[C++] public: int FindStringExact(String*);
[JScript] public function FindStringExact(String) : int;
ComboBox Class | ComboBox Members | System.WinForms Namespace