$Input = GUICtrlCreateInput(" "& @CRLF, 190,332,150,25,$ES_MULTILINE)
$Button = GUICtrlCreateButton("OK", 342,332,24,24,$BS_DEFPUSHBUTTON)
While 1
$msg = GUIGetmsg()
Select
Case $msg = $Button
if GUICtrlRead($Input) = "01234" Then Exit
EndSelect
WEnd