Columns (size)

  • Thread starter Thread starter juli jul
  • Start date Start date
J

juli jul

Hello,
I have 2 columns in list view and I want them to spread over all the
area of the list view (to see only the 2 columns -no extra space of list
view)
How can I do it?
Thank you very much!
 
Hello,
I have 2 columns in list view and I want them to spread over all the
area of the list view (to see only the 2 columns -no extra space of list
view)
How can I do it?
Thank you very much!

Set the width of the first column to -1, and the width of the second column
to -2. The -1 means to size the column to fit the contents, and the -2
means to size the column to fill the rest of the ListView. (Or perhaps the
other way around I can't remember for sure.)

-mdb
 
Back
Top