#include <GUIConstants.au3>
#include <EditConstants.au3>

#Region ### START Koda GUI section ### Form=
$Form1 = GUICreate("Form1", 265, 163, 193, 125)
$Input1 = GUICtrlCreateInput("Dein Name", 8, 16, 241, 21)
$Input2 = GUICtrlCreateInput("123456", 8, 48, 241, 21, $ES_PASSWORD)
$Button1 = GUICtrlCreateButton("LOGIN", 56, 96, 161, 41, 0)
GUICtrlSetFont(-1, 12, 800, 0, "@Meiryo")
GUISetState(@SW_SHOW)
#EndRegion ### END Koda GUI section ###

While 1
	$nMsg = GUIGetMsg()
	Switch $nMsg
		Case $GUI_EVENT_CLOSE
			Exit
			
			$Inhalt1 = GUICtrlRead ($Input1)
			$Inhalt2 = GUICtrlread ($Input2)

	EndSwitch
WEnd
