Multipick listbox

dsigner

Registered User.
Local time
Today, 21:32
Joined
Jun 9, 2006
Messages
68
I have a book which gives code for using multipick listboxes but it seems extremely complex and still lacks the "Notinlist" functionality of combo boxes.
A search of this forum fails to find any references. Does anyone have experience using these controls?
My current design is putting in the list boxws with single pick functionality and "here be dragons" comment until I can fifure out some solid code.
Any comments would be very welcome.
 
You can't have a "not in list" problem with a listbox because the user can't enter data.
Multiple selection in a listbox is a moderately difficult problem. Code has to loop through the list and figure out what was selected. Then you have to process those selections, clear the list, etc...
Maybe look at the code in the book again. Anything you find elsewhere that solves the problem is going to look a lot the same anyway.
Cheers,
 
OK so I was just being lazy. I will do the whole 9 yards including a text box to add a new record to the source.
Thanks to the messenger if not to the message.
 

Users who are viewing this thread

Back
Top Bottom