How can i get a listview as this
Posted: Sun Feb 10, 2013 9:52 pm
How can i get a listview that looks like this?


Sharing, Teaching and Supporting coders of all ages and levels since 2009
https://www.codenstuff.com/forum/
Dummy1912 wrote:hello m8Do you have any idea how i can obtain that ?
i think thats not a listview maybe you can use custom controls for that
to load into a table thingy.
FlowLayoutPanel1.Controls.Clear()
Dim b As New _Box2() 'your custom control
b.Text = "test"
b.Size = New Size(500, 130)
FlowLayoutPanel1.Controls.Add(b)