Changing value of listbox

  • Thread starter Thread starter DS
  • Start date Start date
D

DS

I have a Listbox based on a Query. I want to change the value of one of
the fields in the Listbox to another value based on a field on the same
form. How would I do this?
I have this on the "On Click" Property of a Command Button.

Forms!DriverAssign!List7.Column(4) = Me.Text16

Thanks
DS
 
It sounds like you are actually trying to update the data that backs
the listbox? If so you might want to update the database and then
..Requery the listbox.

- Andrew Backer
 
Andrew said:
It sounds like you are actually trying to update the data that backs
the listbox? If so you might want to update the database and then
.Requery the listbox.

- Andrew Backer
Well...Are listboxes pdatable? Are they read only? Do i haveto fefer
to the for Query or Table that its based on? If So, How do I do this?
Thanks
DS
 

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