In a C# Programm of mine I'm using a ListView. The ListVieew owns columns. In an iniatialisation phase i'm setting the width of the columns. At a later point of time listview items can be added by the user. If the number of listview items grows enough a vertical scrollbars appears. Because the Scrollbar takes space from the ClientRect the total amount of width of all columns couldn't be displayed and a horizontal scrollbar appears too. Now I don't want to have a horizontal scrollbar. How can I resize the column width of a listview after the vertical scrollbars appeared?

Thanks in Advance

Akademon