LikeThisName
Vendor
what is the best approach to take?
here is the hypothetical situation. i want to form a sports team and assign a captain.
This is the approach i thought I should take
i have two listboxes. the first is built off a query selecting all available players.
the second non-multiselect listbox appears on the form after multiple select listbox has been verified by hitting a button.
i wanted to populate the second listbox with selected items from the first listbox, this is where the captain would be selected.
first listbox works fine but having trouble populating second. this is the code i used:
For Each Item In Me.ListofMembers
Me.ListofChosenMembers.AddItem Item
Next
here is the hypothetical situation. i want to form a sports team and assign a captain.
This is the approach i thought I should take
i have two listboxes. the first is built off a query selecting all available players.
the second non-multiselect listbox appears on the form after multiple select listbox has been verified by hitting a button.
i wanted to populate the second listbox with selected items from the first listbox, this is where the captain would be selected.
first listbox works fine but having trouble populating second. this is the code i used:
For Each Item In Me.ListofMembers
Me.ListofChosenMembers.AddItem Item
Next