I'm interested to know how you do that ?
<{POST_SNAPBACK}>
Somthing like the following
; Script generated by FormDesigner Preview 1 (very alpha state, use at your own risk)
#include <GuiConstants.au3>
If Not IsDeclared('WS_CLIPSIBLINGS') Then Global $WS_CLIPSIBLINGS = 0x04000000
GuiCreate("Form1", 420, 331, 302,218 ,BitOR($WS_OVERLAPPEDWINDOW, $WS_CLIPSIBLINGS))
;offsets for all controls in this groupbox
CONST $FORM1_GROUPBOX1_LEFT=144
CONST $FORM1_GROUPBOX1_TOP=40
$GroupBox1 = GuiCtrlCreateGroup("GroupBox1", 144, 40, 177, 177)
$Edit1 = GuiCtrlCreateInput("Edit1",$FORM1_GROUPBOX1_LEFT+ 64,$FORM1_GROUPBOX1_TOP+80, 97, 21)
$Button1 = GuiCtrlCreateButton("Button1",$FORM1_GROUPBOX1_LEFT+ 32,$FORM1_GROUPBOX1_TOP+ 120, 57, 25)
GuiSetState()
While 1
$msg = GuiGetMsg()
Select
Case $msg = $GUI_EVENT_CLOSE
ExitLoop
Case Else
;;;
EndSelect
WEnd
Exit