#include <Array.au3>
Global $Inputs[9]
$Form1 = GUICreate("Form1", 424, 291)
$Button1 = GUICtrlCreateButton("Очистеть", 152, 240, 75, 25)
$Inputs[0] = GUICtrlCreateInput("111111", 16, 48, 121, 21)
$Inputs[1] = GUICtrlCreateInput("222222", 152, 48, 257, 21)
$Inputs[2] = GUICtrlCreateInput("333333", 72, 80, 225, 21)
$Inputs[3] = GUICtrlCreateInput("444444", 16, 120, 121, 21)
$Inputs[4] = GUICtrlCreateInput("555555", 152, 120, 257, 21)
$Inputs[5] = GUICtrlCreateInput("666666", 80, 152, 225, 21)
$Inputs[6] = GUICtrlCreateInput("777777", 24, 192, 121, 21)
$Inputs[7] = GUICtrlCreateInput("888888", 160, 192, 257, 21)
$Inputs[8] = GUICtrlCreateInput("999999", 72, 8, 225, 21)
GUISetState()
While 1
$nMsg = GUIGetMsg()
Switch $nMsg
Case -3
Exit
Case $Button1
For $i = 0 To _ArrayMaxIndex($Inputs)
GUICtrlSetData($Inputs[$i], '')
Next
EndSwitch
WEnd