hoffe ihr könnt mir helfen
Ausschnitt:
PHP Code:
#include <GUIConstantsEx.au3>
#include <GUIConstants.au3>
GUICreate("Rechner", 450, 280, 0)
Global $Anfang = 0
$Unter = GuiCtrlCreateButton( "Unter",30,39,100,55)
Dim $Unter1 = 2
$Edit= GUICtrlCreateEdit ("" , 50, 200, 300, 80)
GUISetState(@SW_SHOW)
While 1
$nMsg = GUIGetMsg()
Switch $nMsg
Case $GUI_EVENT_CLOSE
Exit
Case $Unter
$Ergebnis = ToolTip ($Anfang + $Unter1,0,0,"blablabla")
EndSwitch
WEnd






