Image cbo with a difference

MikeyLDS

Freshman
Joined
Aug 25, 2004
Messages
35
Hiya guys.

I'm hoping to display a listbox of just small images like the msn messenger does when the user wants to select an emoticon (eg: 8 accross, 3 down).

Is this possible with one of the controls or do I need a user control?
 
It's all done in designer mode. Add a listview to your project and set its View properity to Details. Then add a SmallImageList, set its IconAlignment, and other properities to you requirements and you're done.

Use the listview's SelectedIndexChanged or (my preference) its Click event to trigger the event.
 
Back
Top