﻿id	summary	reporter	owner	description	type	status	milestone	component	version	severity	resolution	keywords	cc
931	GuiCtrlSetResizing error with graphic controls	martin	Jpm	"The resizing for a graphic control set by GuiCtrlSetResizing does not override the resizing set in AutoItSetOption using GUIResizeMode.
This example demonstrates the problem
[code]
#include <GUIConstantsEx.au3>
#include <WindowsConstants.au3>
Opt(""GuiREsizeMode"", $GUI_DOCKALL)

$gui = GUICreate(""graphic resizing"",-1,-1,-1,-1,BitOr($GUI_SS_DEFAULT_GUI,$WS_SIZEBOX))

$btn = GUICtrlCreateButton(""button"",30,50,80,22)
GUICtrlSetResizing(-1, BitOR($GUI_DOCKHEIGHT, $GUI_DOCKWIDTH, $GUI_DOCKLEFT, $GUI_DOCKBOTTOM))

$g1 = GUICtrlCreateGraphic(50,120,100,100)
GUICtrlSetBkColor(-1,0xffffff)
GUICtrlSetResizing(-1, BitOR($GUI_DOCKHEIGHT, $GUI_DOCKWIDTH, $GUI_DOCKLEFT, $GUI_DOCKBOTTOM))

GUISetState()

while GUIGetMsg() <> -3
WEnd
[/code]"	Bug	closed	3.3.1.0	AutoIt	3.3.0.0	None	Fixed	GuiCtrlSetResizing	
