I have face resize problem of listview columns. If you anchor/docking the listview to normal winform than the listview anchor or docking works well. I mean lis
use this
Private Sub ListView1_Resize(sender As Object, e As EventArgs) Handles ListView1.Resize
Dim k = ListView1.Width - 10
Dim i = k / 3
ListView1.Columns(0).Width = k - i
ListView1.Columns(1).Width = i / 2
ListView1.Columns(2).Width = i / 2
End Sub
three columns one bigger two smaller with same size