Multiple Select list boxes

  • Thread starter Thread starter Juls
  • Start date Start date
J

Juls

Guest
I've got my list boxes set up, but can't quite get the code right in order for them to work. Any assistance would be appreciated. Thanks.
 
I have 3 different questions that can have more than one answer. I want to set it up as a simple multi select so that when a response is double clicked, it will fill into the other empty list box
 
(This is not a multi-select problem.)

Obviously you've got two list-boxes and want to add one line from the first to the second on double-click.
You need to add that line to the recordSource for the second list-box, i.e. to the table containing data for the second list-box. After that you simply do

Me.ListBox2.Requery

And the item is also shown in the 2nd box.

Hope it solves your problem.

Mic
 

Users who are viewing this thread

Back
Top Bottom