I try to get the size of a gui in the function "WM_SIZE". I want to resize some controls depending on the gui size.
#include <GUIConstantsEx.au3>
#include <WindowsConstants.au3>
Global $hGUI = GUICreate("Example", 200, 200, -1, -1, BitOR($WS_SIZEBOX, $WS_SYSMENU, $WS_CAPTION, $WS_MINIMIZEBOX, $WS_MAXIMIZEBOX))
Global $DummyMenuEntry = GUICtrlCreateMenu("DummyMenuEntry", -1, $hGUI)
GUIRegisterMsg($WM_SIZE, 'WM_SIZE')
GUISetState(@SW_SHOW, $hGUI)
While True
Switch GUIGetMsg()
Case $GUI_EVENT_CLOSE
ExitLoop
EndSwitch
WEnd
GUIDelete($hGUI)
Func WM_SIZE($hWnd, $iMsg, $iWParam, $iLParam)
#forceref $hWnd, $iMsg, $iWParam
Local $iGUIWidth1 = BitAND($iLParam, 0xFFFF)
Local $iGUIHeight1 = BitShift($iLParam, 16)
local $iGUIWidth2 = WinGetPos($hGUI)[2]
local $iGUIHeight2 = WinGetPos($hGUI)[3]
ConsoleWrite("GUIWidth : " & $iGUIWidth1 & " " & $iGUIWidth2 & " " & $iGUIWidth1 - $iGUIWidth2 & @CRLF )
ConsoleWrite("GUIHeight: " & $iGUIHeight1 & " " & $iGUIHeight2 & " " & $iGUIHeight1 - $iGUIHeight2 & @CRLF & @CRLF )
Return ($GUI_RUNDEFMSG)
EndFunc ;==>WM_SIZE
First I have used "local $iGUIWidth2 = WinGetPos($hGUI)[2]" - but did not work es expected. After some research I found "Local $iGUIWidth1 = BitAND($iLParam, 0xFFFF)" ( s. URL ). Running the scripts produces the following output
GUIWidth : 200 216 -16
GUIHeight: 180 239 -59
My assumption - the diffference in height is caused by the gui title, menu, .... In a second run I deleted the line
Global $DummyMenuEntry = GUICtrlCreateMenu("DummyMenuEntry", -1, $hGUI)
GUIWidth : 200 216 -16
GUIHeight: 200 239 -39
The gui height is now 20 units less which is the height of the now missing menu. The height difference is caused by the gui title ( my assumption ).
In case my assumption is correct - why is there a difference of 16 units in the gui width ? There is nothing ( title, menu, taskbar, ... ) which increases the gui width.
Using "$iGUIWidth = BitAND($iLParam, 0xFFFF)" works fine for me - but I like to know why my first approach using "WinGetPos" did not work as assumed.