﻿id	summary	reporter	owner	description	type	status	milestone	component	version	severity	resolution	keywords	cc
2892	GUICtrlSetData on dummy control - AutoIt bug or Document Incorrect?	anonymous	Jon	"In [[https://www.autoitscript.com/autoit3/docs/functions/GUICtrlSetData.htm|GUICtrlSetData]]:
It says that the function can set data for a dummy control.
In [[https://www.autoitscript.com/autoit3/docs/functions/GUICtrlRead.htm|GUICtrlRead]]:
It says that you can read the data stored in a dummy control, which is set either by GUICtrlSetData or GUICtrlSendToDummy.

A quick test point out that GUICtrlRead can only read data which is set by GUICtrlSendToDummy. 
{{{
GUICreate(@AutoItVersion)
GUICtrlCreateDummy()
GUICtrlSetData(-1, 100, 101)
ConsoleWrite(@CRLF & GUICtrlRead(-1))
GUICtrlSendToDummy(-1, ""Wow! It can store a string"")
ConsoleWrite(@CRLF & GUICtrlRead(-1))
}}}
I don't know it is autoit bug or documentation bug, but this is absolutely a bug. But I think it may be easy to fix. Hope it's fixed ASAP."	Bug	closed	3.3.15.0	AutoIt	3.3.12.0	None	Fixed		
