﻿id	summary	reporter	owner	description	type	status	milestone	component	version	severity	resolution	keywords	cc
3865	Image Control resizing behave as forced $GUI_DOCKWIDTH and $GUI_DOCKHEIGHT	anonymous	Jon	"
{{{#!autoit
#include <GUIConstants.au3>
#include <WindowsConstants.au3>

Test()

Func Test()
	GUICreate(""My GUI picture"", 350, 300, -1, -1, BitOR($WS_CAPTION, $WS_SIZEBOX + $WS_SYSMENU)) ; will create a dialog box that when displayed is centered
	GUICtrlCreatePic('C:\Program Files (x86)\AutoIt3\Examples\GUI\logo4.gif', 10, 10, 330, 280)
	GUICtrlSetResizing(-1, $GUI_DOCKALL)

	GUISetState(@SW_SHOW)

	While 1
		Switch GUIGetMsg()
			Case $GUI_EVENT_CLOSE, -3
				ExitLoop
		EndSwitch
	WEnd

EndFunc

}}}
"	Bug	closed	3.3.16.1	AutoIt	3.3.15.1	None	Fixed	GUICtrlSetResizng, GUICtrlCreatePic	
