#cs ----------------------------------------------------------------------------

 AutoIt Version: 3.3.6.1
 Author:         myName

 Script Function:
	Template AutoIt script.

#ce ----------------------------------------------------------------------------

; Script Start - Add your code below here

#include <ButtonConstants.au3>
#include <EditConstants.au3>
#include <GUIConstantsEx.au3>
#include <WindowsConstants.au3>
#Region ### START Koda GUI section ### Form=
$Form1 = GUICreate("Form1", 633, 448, 192, 124)
$Edit1 = GUICtrlCreateEdit("", 16, 24, 185, 89)
GUICtrlSetData(-1, "")
$Edit2 = GUICtrlCreateEdit("", 205, 25, 185, 89)
GUICtrlSetData(-1, "")
$Button1 = GUICtrlCreateButton("Button1", 168, 120, 73, 33)
GUISetState(@SW_SHOW)
#EndRegion ### END Koda GUI section ###


While 1
    $nMsg = GUIGetMsg()
    Switch $nMsg
        Case $GUI_EVENT_CLOSE
            Exit
        Case $Button1  
            _Func1 ()  
    EndSwitch
WEnd



Func    _Func1 ()
	

	$Edit3 = GUICtrlCreateEdit("",16,200,185,89)
	GUICtrlSetData(-1, "")
	$Edit4 = GUICtrlCreateEdit("",205,200,185,89)
	GUICtrlSetData(-1, "")
	
	EndFunc