Hi all,
I want to know if there is any sample in evc++ in vs2005 that shows how to create a checked listbox kind of things .I have searched a lot and came up with this two things but they dont build anyting so i am looking for help
This example shows the checkedcombobox
http://www.pocketpcdn.com/articles/check_combobox.html
the other example shows listbox with images
http://www.codeproject.com/ce/ccelistctrlex.asp df=100&forumid=15486&exp=0&select=719293
Both the examples i have t use at the end but i am not geting a starting point i have to develop is for windows mobile 2003 pocket pc

Regarding Checked listbox
slisbin
Here is a typical way of creating:
1. Create MFC dialog project
2. Open resources > Dialog
3. Drag and drop the item from the toolbox that you want to place on dialog window
4. Create object for the item
5. Initialize the object in the OnInitDialog method of the dialog.
6. You can add a handler to the items.
Start playing...
I hope this helps.