I'm developing a windows form application ported over from a very basic lotus notes database app. As an example of There is a "Jobs" table a "Parts" table and a many to many relationship table "Job_Parts" with JobID and PartID.
When adding a new job record I need a input method for the user to select from the parts list and I envision this being a checkbox list and allowing the user to quickly check off the parts in the job. I have done something similar in asp.net and binding the checkbox list to the "Parts" table and then capturing selections and adding them to a new many to many record should work. I need some help on when pulling up the job record to edit, how to then bind the parts records selected in the many to relationship records into the checkbox list.
The second request may not be something that can be matched in windows forms in comparison to the lotus notes checkbox list control. In the lotus notes control a user could easily use a key strokes within the checkbox list by typing the first couple letters of a part select a value and then a pressing comma allows them to begin typing the next part.. and so on.
Has anyone seen anything like this, or any other way to quickly (with a keyboard) select many to many data.
As I'm about to submit this... I begin adding tags to the question and realize this is the perfect and quick method of doing what I need. Has anyone done the same in winforms, if so can you send me some pointers?