[To be supplied.]
Finds the first item after the given index which starts with the given string. The search is not case sensitive.
[Visual Basic] Overloads Public Function FindString(String, Integer) As Integer
[C#] public int FindString(String, int);
[C++] public: int FindString(String*, int);
[JScript] public function FindString(String, int) : int;
Finds the first item in the list box that starts with the given string. The search is not case sensitive.
[Visual Basic] Overloads Public Function FindString(String) As Integer
[C#] public int FindString(String);
[C++] public: int FindString(String*);
[JScript] public function FindString(String) : int;