Hi Leute ;D
Ich habe ein ganz einfaches Script geschrieben wo durch klicken vom Button ein neues GUI aufgeht.
Das habe ich soo xxxx male gemacht nur irgentwie geht das bei mir gerade nicht und ich sehe bzw. finde den fehler nicht.
;=============================
; Little Helper
;=============================
#include <GUIConstantsEx.au3>
#include <WindowsConstants.au3>
#include <StaticConstants.au3>
#include <ButtonConstants.au3>
#include <GUIConstantsEx.au3>
#include <WindowsConstants.au3>
#include <EditConstants.au3>
DirCreate("C:\goldy")
$PicLoad = True
If $PicLoad = True Then FileInstall("C:\Users\Goldy\Desktop\Little Helper\Bilder\Start.jpg", "C:\goldy\Start.jpg")
$PicLoad3 = True
If $PicLoad3 = True Then FileInstall("C:\Users\Goldy\Desktop\Little Helper\Bilder\WindowsWahl.jpg", "C:\goldy\WindowsWahl.jpg")
$destination1 = "C:\goldy\Start.jpg"
$destination3 = "C:\goldy\WindowsWahl.jpg"
$Form1 = GUICreate("Little Helper © by Goldy 2011", 657, 327, 413, 127)
$Pic1 = GUICtrlCreatePic($destination1, 0, 0, 650, 322)
$Button11 = GUICtrlCreateButton("Enter", 112, 184, 385, 81)
GUICtrlSetFont(-1, 48, 400, 0, "Arial")
GUISetState(@SW_SHOW)
While 1
$nMsg = GUIGetMsg()
Switch $nMsg
Case $GUI_EVENT_CLOSE
Exit
Case $Button11
GUISetState(@SW_HIDE, $Form1)
_WindowsWahl()
EndSwitch
WEnd
Func _WindowsWahl()
$Form2 = GUICreate("Little Helper © by Goldy 2011", 654, 327, 413, 127)
$Pic3 = GUICtrlCreatePic($destination3, 0, 0, 650, 315)
GUISetState(@SW_SHOW)
While 1
$nMsg = GUIGetMsg()
Switch $nMsg
Case $GUI_EVENT_CLOSE
Exit
EndSwitch
WEnd
EndFunc
DirRemove("C:\goldy", 1)