Changing value of listbox

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
 
A

Andrew Backer

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
 
D

DS

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
 
Top