GeekS Posted August 5, 2008 Posted August 5, 2008 Is there any simple way of inserting an image for the background on GUICreate? $FormMenu = GUICreate("Gnu's little helper", 457, 376, 263, 271) ; <-- Image should be background on this GUI, ; Imagedirection --> @WorkingDir&"\Images\AmazonBG.bmp" Thanks in advance, Gnu / GeekS
Zedna Posted August 5, 2008 Posted August 5, 2008 (edited) $FormMenu = GUICreate("Gnu's little helper", 457, 376, 263, 271); <-- Image should be background on this GUI, GUICtrlCreatePic(@WorkingDir & "\Images\AmazonBG.bmp", 0, 0, 457, 376) GuiCtrlSetState(-1,$GUI_DISABLE) ... Edited August 5, 2008 by Zedna Resources UDF ResourcesEx UDF AutoIt Forum Search
GeekS Posted August 5, 2008 Author Posted August 5, 2008 $FormMenu = GUICreate("Gnu's little helper", 457, 376, 263, 271); <-- Image should be background on this GUI, GUICtrlCreatePic(@WorkingDir & "\Images\AmazonBG.bmp", 0, 0, 457, 376) GuiCtrlSetState(-1,$GUI_DISABLE) ... Fast and usefull, thanks alot, appreciate it!
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