Inserting data into the second colunm of my Combobox

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

Guest

I have a Combobox to which I am updating with certain values from a recordset
I can input values to the first colum using the AddItem Method i.e.

Dim rcsSizes As DAO.Recordset

Set rcsSizes = CurrentDb.OpenRecordset("SELECT * From [Products Size] WHERE
Product_ID =" & Me.OpenArgs)

ComboDimensions.AddItem rcsSizes![Height] & " X " & rcsSizes![Width]

How can I update the second colunm which has the same index

thanx John
 
John

Not sure if it's quite the same thing as you are doing, but there's an
entire set of routines and properties set up around the NotInList event of a
combobox. Check Access HELP if this sounds related.
 
Back
Top