﻿id	summary	reporter	owner	description	type	status	milestone	component	version	severity	resolution	keywords	cc
802	ControlID fails with full X/Y/W/H definition	PsaltyDS	Valik	"The new X/Y/W/H ControlID definition fails when all four values are provided.  

AutoIt 3.3.0.0 with WinXP Pro SP2 on x86 32-bit

{{{
Global $hGUI = GUICreate(""Test"", 300, 200)

; Create 3 buttons
$idButton_1 = GUICtrlCreateButton(""1"", 100, 20, 100, 30)
$idButton_2 = GUICtrlCreateButton(""2"", 100, 70, 100, 30)
$idButton_3 = GUICtrlCreateButton(""3"", 100, 120, 100, 30)

GUISetState()

; Set text by X/Y
Sleep(1000)
ControlSetText($hGUI, """", ""[X:100; Y:20]"", ""Button_ONE"")
Sleep(1000)
ControlSetText($hGUI, """", ""[X:100; Y:70; W:100]"", ""Button_TWO"")
Sleep(1000)
ControlSetText($hGUI, """", ""[X:100; Y:120; W:100; H:30]"", ""Button_THREE"")

Do
    Sleep(20)
Until GuiGetMsg() = -3
}}}

The first two buttons change text the third does not.

Slightly off-topic from this bug, the help file needs an example of correct usage for these values under ""Controls""."	Bug	closed	3.3.1.0	AutoIt	3.3.0.0	None	Fixed		
