SamSavva Posted November 2, 2006 Posted November 2, 2006 any way of putting in a backround.. a JPEG backround or bmp or GIF or anything? please help with command.. for GUI based autoit program
Helge Posted November 2, 2006 Posted November 2, 2006 (edited) Personally I wouldn't think of bumping before at least a day had went by, but doing it when it hasn't even gone 30 minutes is just way too early. Actually I would call it kind of rude too, as you seem to demand people to come and help you instantly... 1st grade behaviour. Edited November 2, 2006 by Helge
jvanegmond Posted November 2, 2006 Posted November 2, 2006 #include <GUIConstants.au3> $Width = 400 $Height = 400 $BgImage = "background.jpg" GUICreate("", $Width, $Height) GUICtrlCreateGraphic($BgImage,$Width,$Height) GUICtrlSetState(-1,$GUI_DISABLE) ; The control must be disabled for it to appear behind other images GUISetState() While 1 Switch GUIGetMsg() Case $GUI_EVENT_CLOSE Exit EndSwitch Wend github.com/jvanegmond
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now