Hi I have a list box on a form where I can select any table in my database, the onclick event puts my selection into the rowsource of another listbox.
Private Sub lsttables_Click()
tblsamp.RowSource = lsttables.Value
tblsamp then acts as a sample view for the selected table. At the moment I...