How to display 3 colums in a List Box Archived to Disk
I am trying to get 3 columns displayed on a List Box. The 3 colums are 3 different fields coming from access database. How can i do that.
01-08-2002 at 03:52 PM
|
ASHISH25 Level: Guest
Re: How to display 3 colums in a List Box Archived to Disk
to display 3 column in listbox do this
list1.additem rs(0) & rs(1) & rs(2)
where rs is the recordset and 0,1,2 are the coloum position in table u can specify other also