PHP Code:
#include <ButtonConstants.au3>
#include <EditConstants.au3>
#include <GUIConstantsEx.au3>
#include <SliderConstants.au3>
#include <StaticConstants.au3>
#include <WindowsConstants.au3>
#Region ### START Koda GUI section ### Form=
$Form1 = GUICreate("Form1", 345, 157, 192, 124)
$Slider1 = GUICtrlCreateSlider(32, 40, 281, 33)
$Input1 = GUICtrlCreateInput("", 32, 80, 129, 21)
$Label1 = GUICtrlCreateLabel("", 32, 120, 68, 17)
$Button1 = GUICtrlCreateButton("Button1", 200, 96, 81, 33, $WS_GROUP)
GUISetState(@SW_SHOW)
#EndRegion ### END Koda GUI section ###
While 1
$nMsg = GUIGetMsg()
Switch $nMsg
Case $GUI_EVENT_CLOSE
Exit
EndSwitch
If GUICtrlRead($Slider1) <> GUICtrlRead($Label1) Then GUICtrlSetData($Label1, GUICtrlRead($Slider1))
WEnd
halt in der haupt schleife laufen lassen...