resize the columns of a listView at runtime

  • Thread starter Thread starter touf
  • Start date Start date
T

touf

Hi,
Is it possible to change and save the width of a listview column at runtime?
I mean: if the user changes the width of a column and close the application,
The column will have this width the next time he opens the application.

Thanks.
 
lv.Columns(0).Width() = -1

in any event your using to modify the label
 
Posted the wrong window.

Anyway, setting the column width property to -1 will set the width to the
widest. For loading up, put this in the On Load event for the form.
 
Back
Top