Select listbox to another form

  • Thread starter Thread starter Jordan C. Schroeder
  • Start date Start date
J

Jordan C. Schroeder

Hello,

This is probably simple, but I am just trying to have a list box on 1 form
and the value populate a textbox on another form. Anyone have an example?

Thanks
 
Hello,

This is probably simple, but I am just trying to have a list box on 1 form
and the value populate a textbox on another form. Anyone have an example?

Thanks

Both forms must be open at the time.
The ListBox is NOT set to MultiSelect.
Code the ListBox AfterUpdate event:
Forms!OtherFormName.ControlName = Me.ListBox
 
Back
Top