Query, Update

  • Thread starter Thread starter Rick Cass
  • Start date Start date
R

Rick Cass

I would like like to have a query run, against
tblCustomers, and get a list of the customer names and
then update a listbox values on the form.

Can someone tell how to perform this?

Thanks,
Rick Cass
 
Maybe I'm not understanding, but you can use this query as the row source of
the listbox. No need to do something separately. If you want to "refresh"
the list after something has been added to the tblCustomers, just use code
to do a Requery on the list box:

Me.ListBoxName.Requery
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top