Folks,
I think this may have been asked and answered before, but having searched I can't find the answerm although I think it's related to GUICoordMode.
I have a window with some icons in it. I want to be able to resize the window without moving the icons, just clip whatever doesn't fit inside the window. I have included below a simple script to show the problem.
Thanks for any help.
#include <GUIConstantsEx.au3>
#include <WindowsConstants.au3>
GUICreate(" My GUI Icons", 250, 250, -1, -1, BitOR($WS_SIZEBOX, $WS_MAXIMIZEBOX, $WS_MINIMIZEBOX))
GUICtrlCreateIcon("shell32.dll", 10, 20, 20)
GUICtrlCreateIcon("shell32.dll", 7, 20, 75, 32, 32)
GUISetState()
While 1
Local $msg = GUIGetMsg()
If $msg = $GUI_EVENT_CLOSE Then ExitLoop
WEnd
GUIDelete()