Option Group Controlling List Box%

  • Thread starter Thread starter Netdoor News
  • Start date Start date
N

Netdoor News

Hi,

I have an option group with three options and a list box. The list box is
tied back to a table. There are three different tables that the list box
could display from. Depending on which option button is selected, I would
like the option buttons to control which table is refrenced and displayed in
the list box. On a side note. I also need some code to spit the value from
the list box to a text box when a selection in the list is double clicked.

Thanks,


BEN
 
Sorry, I forgot the second part.

I also added a textbox to the form named text8. I added
the following code to the Update event of the List box.

Me.Text8 = Me.List6.Column(1)
 
Back
Top