For those who like to create Functions() and have always wondered "How can I place my Function() underneath a new Control and only specify -1 and not the $Variable of the Control" e.g.   GUICtrlCreateLabel("ExampleID", 0, 0) _Function(-1, "New Example") ; How It's Normally Done With Custom Functions. $Label = GUICtrlCreateLabel("ExampleID", 0, 0) _Function($Label, "New Example")Then maybe this will help you understand how to achieve this. I have included 2 Versions of the basic Function, one r