lothos12345
Junior Contributor
How do I read in data from a datareader into a multicolumn listbox. I have for example
While varReader.Read
me.listbox1.Items.Add(varReader.Item(0).ToString & vbtab & varReader.Item(1).ToString)
Loop
I cannot get the second item to go into the next column. How do I accomplish this? Any help given would be greatly appreciated.
While varReader.Read
me.listbox1.Items.Add(varReader.Item(0).ToString & vbtab & varReader.Item(1).ToString)
Loop
I cannot get the second item to go into the next column. How do I accomplish this? Any help given would be greatly appreciated.