CheckedListBox TabStops

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hi
SendMessage LB_SETTABSTOPS works for ListBox but does not work for CheckedListBox. The CheckedListBox does have UseTabStops=True and does in fact show the tab spacing. The problem is that the tabstops are in awkward places for my data.

Any suggestions? Is this "by design" for the CheckedListBoxes not to respond

vin
 
* "=?Utf-8?B?VkNJRg==?= said:
SendMessage LB_SETTABSTOPS works for ListBox but does not work for
CheckedListBox. The CheckedListBox does have UseTabStops=True and does
in fact show the tab spacing. The problem is that the tabstops are in
awkward places for my data.

Why not use a ListView control instead?
 
I need the checkboxes and two "columns".
Can this be done with the listview
If you can have checkboxes in the listview please give me a hint or example
 
* "=?Utf-8?B?VkNJRg==?= said:
I need the checkboxes and two "columns".
Can this be done with the listview?
If you can have checkboxes in the listview please give me a hint or example

Define some columns, set the 'CheckBoxes' property to 'True' and the
'View' property to 'Details'. Then add some items.
 
Back
Top