Jack
2009-05-12 05:23:54 UTC
- I've got three radio buttons that correspond to three list boxes (when a radio button is selected the corresponding list box changes colour, to let the user know which list box is selected).
- I've also got a groupbox that only contains 20 checkboxes (these checkboxes represent items that I want to be able to individually add to a selected list box) and I 've also got a button "add item to list".
Names of items/objects in my program:
- lbxOven1, lbxOven2 and lbxOven3 (the list boxes)
- rdbOven1, rdbOven2 and rdbOven3 (the radio buttons)
- gbxbakeitemstimes (the groupbox)
- btnAddtooven (the add selected item button)
- and my checkboxes start with the prefix chkbx
What I want to do:
- I want to be able to select any check box and/or multiple check boxes and click the "add item to list" button, to add that item/those items (the text next to the checkboxes) to the list box selected by the corresponding radio button.
I'm also bad at programming, so please take that into account.
Thanks in advance.