I have an Access combobox that contains 4 columns. I am using the following code to populate the combobox with data and is working fine:
responsible_pending.RowSource = ""
rs.MoveFirst
Do
responsible_pending.AddItem rs![work_order] & ";" & _by & ";" & status & ";" & technician
rs.MoveNext
Loop Until rs.EOF
Now I would like to add my own custom column headers to the 4 columns. Can someone help me with this please. Thank you in advance.
responsible_pending.RowSource = ""
rs.MoveFirst
Do
responsible_pending.AddItem rs![work_order] & ";" & _by & ";" & status & ";" & technician
rs.MoveNext
Loop Until rs.EOF
Now I would like to add my own custom column headers to the 4 columns. Can someone help me with this please. Thank you in advance.