Zedna Posted September 4, 2006 Share Posted September 4, 2006 I have GUI window with handled WM_GETMINMAXINFO and setup GUICtrlSetResizing() for controls.It's working fine only one little problem:I can't achieve to have constant space between ListView and StatusBar (label statusbar)while resizing window.Can somebody help me with this?Here is my code:expandcollapse popup#include <GUIConstants.au3> Const $WM_GETMINMAXINFO = 0x24 Const $LVM_SETCOLUMNWIDTH = 0x101E $Form1 = GUICreate("Test resize", 456, 521, -1, -1,BitOR($GUI_SS_DEFAULT_GUI,$WS_SIZEBOX)) $Label1 = GUICtrlCreateLabel("Label:", 119, 17, 43, 17, $SS_RIGHT) GUICtrlSetResizing (-1,$GUI_DOCKTOP + $GUI_DOCKHEIGHT) $cb_server = GUICtrlCreateCombo("Data", 166, 16, 145, 200, BitOR($CBS_DROPDOWNLIST,$CBS_AUTOHSCROLL,$WS_VSCROLL)) GUICtrlSetResizing (-1,$GUI_DOCKTOP + $GUI_DOCKHEIGHT) $ListView1 = GUICtrlCreateListView("Col1|Col2|Col3|Col4", 2, 56, 452, 443) GUICtrlSetResizing (-1,$GUI_DOCKTOP) GUICtrlSendMsg($ListView1, $LVM_SETCOLUMNWIDTH, 0, 100) GUICtrlSendMsg($ListView1, $LVM_SETCOLUMNWIDTH, 1, 65) GUICtrlSendMsg($ListView1, $LVM_SETCOLUMNWIDTH, 2, 165) GUICtrlSendMsg($ListView1, $LVM_SETCOLUMNWIDTH, 3, 80) $statusbar = GUICtrlCreateLabel("Number of records = 0", 2, 502, 452, 17, -1, $WS_EX_CLIENTEDGE) GUICtrlSetResizing (-1,$GUI_DOCKBOTTOM + $GUI_DOCKHEIGHT) GUISetState(@SW_SHOW) Global $size = WinGetPos($Form1) $size = $size[2] ; width of window (GUICreate is ClientSize) GUIRegisterMsg($WM_GETMINMAXINFO, "MY_WM_GETMINMAXINFO") While 1 $msg = GUIGetMsg() Select Case $msg = $GUI_EVENT_CLOSE Exit EndSelect WEnd Exit ; set min. and max. width to initial width, so it can be changed only height Func MY_WM_GETMINMAXINFO($hWnd, $Msg, $wParam, $lParam) $minmaxinfo = DllStructCreate("int;int;int;int;int;int;int;int;int;int",$lParam) DllStructSetData($minmaxinfo,7,$size) ; min width DllStructSetData($minmaxinfo,9,$size) ; max width Return 0 EndFunc Resources UDF ResourcesEx UDF AutoIt Forum Search Link to comment Share on other sites More sharing options...
GaryFrost Posted September 4, 2006 Share Posted September 4, 2006 Try: GUICtrlSetResizing($ListView1, $GUI_DOCKTOP + $GUI_DOCKBOTTOM) SciTE for AutoItDirections for Submitting Standard UDFs Don't argue with an idiot; people watching may not be able to tell the difference. Link to comment Share on other sites More sharing options...
Zedna Posted September 4, 2006 Author Share Posted September 4, 2006 Try: GUICtrlSetResizing($ListView1, $GUI_DOCKTOP + $GUI_DOCKBOTTOM) Gafrost that's exactly what I need. Thank you very much Resources UDF ResourcesEx UDF AutoIt Forum Search Link to comment Share on other sites More sharing options...
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