Text only
|
Text with Images
The MASM Forum Archive 2004 to 2012
General Forums => The Campus => Topic started by: mariø on April 04, 2005, 03:40:08 PM
Title:
CheckListBox
Post by:
mariø
on
April 04, 2005, 03:40:08 PM
Exist a style to create a listbox with checkboxes?
Title:
Re: CheckListBox
Post by:
Tedd
on
April 05, 2005, 09:35:28 AM
Only in MFC :bdg
(Or you subclass and make your own :wink)
Title:
Re: CheckListBox
Post by:
hitchhikr
on
April 05, 2005, 11:36:59 AM
You can eventually use a listview with:
LVS_REPORT
LVS_NOCOLUMNHEADER
LVS_SINGLESEL
LVS_EX_FULLROWSELECT
LVS_EX_CHECKBOXES
instead.
Text only
|
Text with Images