| View previous topic :: View next topic |
| Author |
Message |
mike643 Guest
|
Posted: Thu Dec 17, 2009 11:30 am Post subject: listview change header size column |
|
|
I have this:
Gui, Add, ListView, x12 y32 w300 h200 , test4|test5|test6|test7
How can I change the header size for each column? |
|
| Back to top |
|
 |
UncleScrooge
Joined: 14 Apr 2009 Posts: 75 Location: Italy
|
Posted: Thu Dec 17, 2009 1:33 pm Post subject: |
|
|
| Code: | | LV_ModifyCol(1, 30) | that set the 1st column to 30 pixels width ... but please:
read this
though... as I feel samaritan today...
| Code: | colWidth := 100 ;change it to any feasible value
Loop % LV_GetCount("Col")
LV_ModifyCol(A_Index, colWidth) |
this changes all the columns width of any default ListView to colWidth value.  _________________ Intel Centrino @ 2.8GHz
4 GB RAM
WIN XP SP3 |
|
| Back to top |
|
 |
|