Combo Box updates Text Box After Update

J

jastanle84

Hell

I am new to VBA and Access. I need to know how to update a text bo
after a selection has been made in the combo box. Any help please
 
A

Alex Dybenko

you can use combobox afterupdate event to set testbox value like:
me.textbox1=me.combobox1
 
N

NevilleT

Hi Alex May also need to use columns. If column 0 is your primary key, and
you want to display a name for example, you may need to use
me.combobox1.colunms(1)
 
Top