Using selected value from a combo box to populate a list box

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I am presenting my users with a combo box with a list of values. The user
selects a value and selects an Add command button to add the selected value
to a list box. How do I add the value from the combo box to the list box?
Thanks
 
Its ok I got it. I used:

With Me.lstJobRoles
.RowSourceType = "Value List"
.AddItem Item:=Me.cboJobList
End With

Thanks
 
Back
Top