steveroberts
Programmer
I want users to be able to select values in a multi column list box and pass them to a blank list box so as to build up their own values in their own list box from the base list. I then want to create a table from their selections.
I can get the results into a suitable array, but cannot pass the array to the blank list box. I've tried:
Forms!FormName!ListBox.List = Array (as works in Excel' VBA environment), but it Access's object model doesn't recognise the list property. I've tried substituting 'List' with RowSource etc, but nothing seems to work.
I really don't want to have the array writing to a temporary table which then drives the list box.
Any ideas?
I can get the results into a suitable array, but cannot pass the array to the blank list box. I've tried:
Forms!FormName!ListBox.List = Array (as works in Excel' VBA environment), but it Access's object model doesn't recognise the list property. I've tried substituting 'List' with RowSource etc, but nothing seems to work.
I really don't want to have the array writing to a temporary table which then drives the list box.
Any ideas?