|
-
Dec 27th, 2001, 04:04 PM
#1
Thread Starter
Addicted Member
Getting data into a listbox
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
-
Dec 27th, 2001, 04:07 PM
#2
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
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|