combo box

  • Thread starter Thread starter Lauren B
  • Start date Start date
L

Lauren B

How can I build a combo box so that the user of the form can add and delete
entries in the drop-down menu?

Thank you for any assistance.

LB
 
Hi,


Base the list on a table. Add and remove the records in that table
(through an SQL statement or otherwise, like through a recordset) and
requery the rowsource:

Me.ComboBoxName.RowSource=Me.ComboBoxName.RowSource



Hoping it may help,
Vanderghast, Access MVP
 
Back
Top