List of query on form

  • Thread starter Thread starter rblivewire
  • Start date Start date
R

rblivewire

I have made a combo box that shows all of the queries I have built on
the form, but when I try to click on them it gives me nothing. Is
there a way to have a user click on the query and it show the results
form that query.

I have this in the rowsource of the combo box: SELECT Name FROM
MSysObjects WHERE Type=5 AND LEFT$([Name], 3) <> "~sq" ORDER BY Name

And this in the AFTERUPDATE: DoCmd.OpenQuery Me.Combo24,
[acViewNormal], [acReadOnly]

Anything wrong??
 
Back
Top