Share via


CListBox::SetSel

intSetSel(intnIndex**,BOOLbSelect=TRUE);**

Return Value

LB_ERR if an error occurs.

Parameters

nIndex

Contains the zero-based index of the string to be set. If –1, the selection is added to or removed from all strings, depending on the value of bSelect.

bSelect

Specifies how to set the selection. If bSelect is TRUE, the string is selected and highlighted; if FALSE, the highlight is removed and the string is no longer selected. The specified string is selected and highlighted by default.

Remarks

Selects a string in a multiple-selection list box.

Use this member function only with multiple-selection list boxes.

Example

// The pointer to my list box.
extern CListBox* pmyListBox;

// Select all of the items with an even index and
// deselect all others.
for (int i=0;i < pmyListBox->GetCount();i++)
{
   pmyListBox->SetSel(i, ((i%2) == 0));
}

CListBox OverviewClass MembersHierarchy Chart

See Also   CListBox::GetSel,