Hi all,
I have the following code to import from a recordset (Access) to a single column listbox. How do I need to change this to import to a two column listbox or combobox?
Regards
MD
[VBA]Set rst = dbs.OpenRecordset(Sql)
Do While Not rst.EOF
Me.ListBox1.AddItem Format(rst("Job No"), "0000") & " - " & rst("Project Title")
rst.MoveNext
Loop[/VBA]