Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Adding to a combo box

Status
Not open for further replies.

eussias

Programmer
Sep 25, 2001
97
0
0
AU
I’m trying to add some text to a Combo box once a form is loaded. If certain criteria is met, text is to be added to the combo box… Does anyone know the easiest way to do this?? Thanks in advance :cool:
 
Assuming your combobox is a value list you can do this, where Combo0 is the name of the combo box on your form. Make sure to add semi-colons after each value.

Me.Combo0.RowSource = Me.Combo0.RowSource & "NewText;"
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top