Hello!

I know that the forms2 combobox can display columns, but I can't get it to work. Here's what would work in an ideal world:

Code:
cboForms2.ColumnCount = 2

Do Until recordset.EOF
     cboForms2.AddItem (recordset!COLUMN1, recordset!COLUMN2)
     rs.MoveNext
Loop
Now, obviously this does not work, I just make it up. It would work in VB - lcdial Edition, but there is no such thing.

The Help file discusses arrays, but I can't use an array b/c I don't have a recordcount, or maybe my understanding is off, PLEASE HELP ME!!! Thanks in adavnace!