Hallo,
da ich neu mit coden brauch ich in den nächsten paar tagen etwas hilfe
Ich will ein Taschenrechner machen aber ich finde keine richtiger tutorials für soetwas <.<
z.B. Ich weiß nicht wie man macht das es die buttons benutzt
Ich bin soweit: (eigentlich fast garnix!) habt ihr paar tutorials oder so? hab leider echt nix gefunden!
#include <GUIConstants.au3>
#Region ### START Koda GUI section ### Form=c:\users\user\desktop\autoit sachen\taschenrechner.kxf
$Form1 = GUICreate("Form1", 213, 211, 377, 145)
$Button1 = GUICtrlCreateButton("0", 8, 168, 73, 33, 0)
$Button2 = GUICtrlCreateButton("1", 8, 128, 33, 33, 0)
$Button3 = GUICtrlCreateButton("2", 48, 128, 33, 33, 0)
$Button4 = GUICtrlCreateButton("3", 88, 128, 33, 33, 0)
$Button5 = GUICtrlCreateButton("4", 8, 88, 33, 33, 0)
$Button6 = GUICtrlCreateButton("5", 48, 88, 33, 33, 0)
$Button7 = GUICtrlCreateButton("6", 88, 88, 33, 33, 0)
$Button8 = GUICtrlCreateButton("7", 8, 48, 33, 33, 0)
$Button9 = GUICtrlCreateButton("8", 48, 48, 33, 33, 0)
$Button10 = GUICtrlCreateButton("9", 88, 48, 33, 33, 0)
$Button11 = GUICtrlCreateButton("+", 128, 48, 33, 33, 0)
$Button12 = GUICtrlCreateButton("-", 128, 88, 33, 33, 0)
$Button13 = GUICtrlCreateButton("*", 128, 128, 33, 33, 0)
$Button14 = GUICtrlCreateButton("/", 128, 168, 33, 33, 0)
$Button15 = GUICtrlCreateButton("=", 168, 120, 33, 81, 0)
$Button16 = GUICtrlCreateButton("C", 168, 48, 33, 65, 0)
$Button17 = GUICtrlCreateButton(".", 88, 168, 33, 33, 0)
$Input1 = GUICtrlCreateInput("", 8, 16, 193, 21)
GUISetState(@SW_SHOW)
#EndRegion ### END Koda GUI section ###
While 1
$nMsg = GUIGetMsg()
Switch $nMsg
Case $GUI_EVENT_CLOSE
Exit
EndSwitch
WEnd