Aug 29, 2002 #1 Goha IS-IT--Management May 9, 2002 91 US How do i populate the contents of a list box by a MS SQL query? for example I want the list box to be populated by the listing of all the user tables in the database publisher.... Thanks in advance
How do i populate the contents of a list box by a MS SQL query? for example I want the list box to be populated by the listing of all the user tables in the database publisher.... Thanks in advance
Aug 29, 2002 #2 BPMan Programmer Jun 25, 2002 163 US if your recordset is called res you would do the following Do Until res.EOF lstResults.AddItem res!NAME res.MoveNext Loop Upvote 0 Downvote
if your recordset is called res you would do the following Do Until res.EOF lstResults.AddItem res!NAME res.MoveNext Loop