How can multiple selection in a ClistCtrl ( Report view ) be made to work like that in CListBox without using the CTRL key? The problem I want to guard against is losing all the current selection by forgetting to press this key!
Printable View
How can multiple selection in a ClistCtrl ( Report view ) be made to work like that in CListBox without using the CTRL key? The problem I want to guard against is losing all the current selection by forgetting to press this key!
Override PreTranslateMessage() and handle the case yourself
Sally
Bear in mind that the use of the Ctrl key for multiple selection is standard Windows interface behaviour. In general, it is wise to stick to standard interface behaviour unless the situation is an unusual one where standard behaviour may not be expected.
Dave