Share via


LB_SETSEL

This message is sent by an application to select a string in a multiple-selection list box.

LB_SETSEL wParam = (WPARAM)(BOOL) fSelect; 
  lParam = (LPARAM)(UINT) index;

Parameters

  • fSelect
    Boolean that specifies how to set the selection. If set to TRUE, the string is selected and highlighted. If set to FALSE, the highlight is removed and the string is no longer selected.
  • index
    Zero-based index of the string to set. If index is –1, the selection is added to or removed from all strings, depending on the value of fSelect.

Return Values

LB_ERR indicates that an error has occurred.

Remarks

Use this message only with multiple-selection list boxes.

Requirements

OS Versions: Windows CE 1.0 and later.
Header: Winuser.h.

See Also

LB_GETSEL | LB_SELITEMRANGE | List Box Messages

Last updated on Wednesday, April 13, 2005

© 2005 Microsoft Corporation. All rights reserved.