T teabags Registered User. Local time Yesterday, 18:49 Joined Jun 29, 2006 Messages 21 Jul 10, 2006 #1 How do you append a string value to the rowsource of a combo box
N namliam The Mailman - AWF VIP Local time Today, 03:49 Joined Aug 11, 2003 Messages 11,695 Jul 10, 2006 #2 Formname.Comboboxname.Source = Formname.Comboboxname.Source & ";" & StringValue Or something along those lines depending where your code is and where the combobox is.... also assuming the combobox is allready value based.... Last edited: Jul 10, 2006
Formname.Comboboxname.Source = Formname.Comboboxname.Source & ";" & StringValue Or something along those lines depending where your code is and where the combobox is.... also assuming the combobox is allready value based....