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
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