ListBox_FindStringExact macro (windowsx.h)

Finds the first list box string that exactly matches the specified string, except that the search is not case sensitive. You can use this macro or send the LB_FINDSTRINGEXACT message explicitly.

Syntax

void ListBox_FindStringExact(
   hwndCtl,
   indexStart,
   lpszFind
);

Parameters

hwndCtl

Type: HWND

A handle to the control.

indexStart

Type: int

The zero-based index of the item before the first item to be searched. When the search reaches the bottom of the list box, it continues searching from the top of the list box back to the item specified by the indexStart parameter. If indexStart is –1, the entire list box is searched from the beginning.

lpszFind

Type: LPCTSTR

The string to find.

Return value

None

Remarks

For more information, see LB_FINDSTRINGEXACT.

Requirements

Requirement Value
Minimum supported client Windows Vista [desktop apps only]
Minimum supported server Windows Server 2003 [desktop apps only]
Target Platform Windows
Header windowsx.h

See also

ListBox_FindString