hello,
is there a way to disable the animation when you click 'TestGui' in the taskbar to minimize or maximize the window?
#include <GUIConstants.au3>
$gui = GUICreate("TestGui", 100, 100, @DesktopWidth/2, @DesktopHeight/2, -1, -1)
GUISetState(@SW_SHOW)
While 1
$msg = GUIGetMsg()
If $msg = $GUI_EVENT_CLOSE Then ExitLoop
WEnd