+\membersection{wxVListBox::Select}\label{wxvlistboxselect}
+
+\func{bool}{Select}{\param{size\_t }{item}, \param{bool }{select = true}}
+
+Selects or deselects the specified item which must be valid (i.e. not
+equal to {\tt wxNOT\_FOUND}).
+
+Return {\tt true} if the items selection status has changed or {\tt false}
+otherwise.
+
+This function is only valid for the multiple selection listboxes, use
+\helpref{SetSelection}{wxvlistboxsetselection} for the single selection ones.
+
+
+\membersection{wxVListBox::SelectAll}\label{wxvlistboxselectall}
+
+\func{bool}{SelectAll}{\void}
+
+Selects all the items in the listbox.
+
+Returns {\tt true} if any items were changed, i.e. if there had been any
+unselected items before, or {\tt false} if all the items were already selected.
+
+This method is only valid for multi selection listboxes.
+
+\wxheading{See also}
+
+\helpref{DeselectAll}{wxvlistboxdeselectall}, \helpref{Select}{wxvlistboxselect}
+
+
+\membersection{wxVListBox::SelectRange}\label{wxvlistboxselectrange}
+
+\func{bool}{SelectRange}{\param{size\_t }{from}, \param{size\_t }{to}}
+
+Selects all items in the specified range which may be given in any order.
+
+Return {\tt true} if the items selection status has changed or {\tt false}
+otherwise.
+
+This method is only valid for multi selection listboxes.
+
+\wxheading{See also}
+
+\helpref{SelectAll}{wxvlistboxselectall}, \helpref{Select}{wxvlistboxselect}
+