Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Is checkedlistbox the way to go

Status
Not open for further replies.

basbrian

Programmer
Feb 18, 2002
49
AU
Doing my first project in Visual Studio 2008 and very new to vb. To simplify things, I have 3 tables in a DB, employee, delegations and emp-delegates. I have a drop down list to select the emp no. I was then going to use a checkedlist box to display all the delegations and have the delegations that are in the emp-delegates for the selected emp ticked. Then hoping to allow the user to tick or untick delegations before selecting an "update" button to update the emp-delegates table with the new selections

Is a checkedlistbox the way to go and is this do-able???
 
I've used a CheckedListBox for this type of scenario several times, so yes, I would recommend it.
 
I second that. With what you are doing CheckListBox is the way to go. That is very much a type of situation it was created to handle.

-I hate Microsoft!
-Forever and always forward.
-My kingdom for a edit button!
 
If the list of available delegations is large, it also may be benficial to your user if you include a second, read-only list that shows only those delegations currently selected so the user doesn't need to scroll up and down to double-check the entries they've selected.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top