Spoiler anzeigen
#include <GUIConstants.au3>
#include <GUIConstantsEx.au3>
#include <StaticConstants.au3>
#include <WindowsConstants.au3>
#Region ### START Koda GUI section ### Form=C:\Dokumente und Einstellungen\Markus\Desktop\Meine Dateien\autoit-Projekts\Wichtig\Koda\Forms\Musik.kxf
$Musik = GUICreate("Musik Learner", 633, 449, 193, 125)
GUISetBkColor(0xA6CAF0)
$Noteneingabe = GUICtrlCreateInput("Noteneingabe", 88, 344, 113, 21)
$InformationNoteneingabe = GUICtrlCreateLabel("Bitte füge hier den richtigen Noten-Namen ein. Mit Nummer Z.b. h1", 56, 384, 439, 20)
GUICtrlSetFont(-1, 8, 800, 0, "System")
$NotenBild = GUICtrlCreatePic(@SystemDir & "\data\c1.jpg", 72, 64, 217, 233 , BitOR($SS_NOTIFY,$WS_GROUP,$WS_CLIPSIBLINGS))
GUISetState(@SW_SHOW)
#EndRegion ### END Koda GUI section ###
While 1
$nMsg = GUIGetMsg()
Switch $nMsg
Case $GUI_EVENT_CLOSE
Exit
EndSwitch
WEnd