Hallo,
in meinem Script habe ich mein Button transparent gemacht. Der Button ist nun transparent, jedoch schließt sich mein Script wegen dem $GUI_BKCOLOR_TRANSPARENT
sofort wieder. Kann mir da jemand helfen, sodass es sich nicht schließt?
Script :
C
#include <ButtonConstants.au3>
#include <ComboConstants.au3>
#include <GUIConstantsEx.au3>
#include <StaticConstants.au3>
#include <WindowsConstants.au3>
$Form1_1 = GUICreate("", 618, 250, 174, 216)
$Combo1 = GUICtrlCreateCombo("Deutsch", 456, 117, 145, 25)
GUICtrlSetData(-1, "Englisch")
$weiter = GUICtrlCreateButton("weiter", 480, 160, 75, 25, $WS_GROUP,$GUI_BKCOLOR_TRANSPARENT)
$Pic1 = GUICtrlCreatePic("Tool.jpg", 0, 0, 624, 444, BitOR($SS_NOTIFY,$WS_GROUP,$WS_CLIPSIBLINGS))
GUISetState(@SW_SHOW)
While 1
$nMsg = GUIGetMsg()
Switch $nMsg
Case $GUI_EVENT_CLOSE
Exit
Case $weiter
Exit
EndSwitch
WEnd
Alles anzeigen