Huhu
ich habe mit Koda form designer etwas deignt und dan den code
So wie mache ich dass jetzt wenn ich Button1 klicke das Zbl eine MsgBox kommt mit hi?
ich habe mit Koda form designer etwas deignt und dan den code
PHP Code:
#include <ButtonConstants.au3>
#include <GUIConstantsEx.au3>
#include <WindowsConstants.au3>
#Region ### START Koda GUI section ### Form=
$Form1 = GUICreate("Form1", 625, 103, 192, 124)
$Button1 = GUICtrlCreateButton("Button1", 24, 8, 153, 41, $WS_GROUP)
$Button2 = GUICtrlCreateButton("Button2", 288, 8, 185, 41, $WS_GROUP)
GUISetState(@SW_SHOW)
#EndRegion ### END Koda GUI section ###
While 1
$nMsg = GUIGetMsg()
Switch $nMsg
Case $GUI_EVENT_CLOSE
Exit
EndSwitch
WEnd