Combo Box updates Text Box After Update

  • Thread starter Thread starter jastanle84
  • Start date Start date
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
 
you can use combobox afterupdate event to set testbox value like:
me.textbox1=me.combobox1
 
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)
 
Back
Top