a ListView problem

Vertical scroll bar is automatically added to a ListView when items go past the bottom of the ListView.
 
yes but if I put
this.listView1.Scrollable = false;

becouse I have a Column I don't whant to show , If I put this.listView1.Scrollable = true; I get also a horizontal scrollbar.

I want only a Vertical scrollbar or not to show one of the coloms in Detailed View. It is posible?
 
The scrollbars are standard windows ones and either on or off. If you want an invisible column, try just settings its width to 0.
 
Back
Top