I have a standard data control, and I can't figure out how to get the info produced after a query to show up in it...
Any help is appreciated,
Bryan Kalicki
Printable View
I have a standard data control, and I can't figure out how to get the info produced after a query to show up in it...
Any help is appreciated,
Bryan Kalicki
where is the query from?? are you using ado to create a recordset??? if so here is the code to load the rs field into a list box
do until rs.eof
ListBox.additem rs("fieldname")
rs.movenext
loop