YourSurrogateGod
September 11th, 2005, 04:53 PM
What I'd like to do is read info from an online database (this is solved) and display it in a list where you have you can sub-divide the inputs. How would I do that?
I tried ListView, but this proved to be problematic since whenever I tried to add data to the control, it would often appear on the side of previous info and not in a column-like order.
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) _
Handles Button1.Click
ListView1.Items.Add("123465", 0)
ListView1.Items.Add("34", 1)
ListView1.Items.Add("12", 2)
End Sub
I tried ListView, but this proved to be problematic since whenever I tried to add data to the control, it would often appear on the side of previous info and not in a column-like order.
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) _
Handles Button1.Click
ListView1.Items.Add("123465", 0)
ListView1.Items.Add("34", 1)
ListView1.Items.Add("12", 2)
End Sub