Hi,
I have a recordset that returns three columns
params="Select LastName, FirstName, Initial from Names"
Set rs = db1.Execute(get_params)
Is it possible to populate the list box with the values from the recordset so that the list would contain the following entries:
Smith, John (JS)
Smith, Bob (BS)
Smith, Ted (TS)
Can I assign the recordset values to the array?
Any help would be greatly appreciated.
Thanks.
I have a recordset that returns three columns
params="Select LastName, FirstName, Initial from Names"
Set rs = db1.Execute(get_params)
Is it possible to populate the list box with the values from the recordset so that the list would contain the following entries:
Smith, John (JS)
Smith, Bob (BS)
Smith, Ted (TS)
Can I assign the recordset values to the array?
Any help would be greatly appreciated.
Thanks.