bucky002 Posted May 26, 2006 Posted May 26, 2006 How can I make the column the full size of the box. Well, like this.Instead of only 1/4 of the way. I hope you understand here is a code I wrote up that replicates it.$Form1 = GUICreate("AutoIt", 507, 373, 187, 121) $List1 = GUICtrlCreateListView("Items", 15, 92, 211, 250, 253) GUISetState() While 1 Sleep(500) WEndThanks.
Zedna Posted May 27, 2006 Posted May 27, 2006 #include <GuiListView.au3> GUICtrlSendMsg($List1 , $LVM_SETCOLUMNWIDTH, 0, 300) 0 is zero based index to array of colums 300 is width of column in pixels Resources UDF ResourcesEx UDF AutoIt Forum Search
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now