Jump to content

GUI background image


Recommended Posts

Would someone tell me what the problem with this code is? I can't get the image into the GUI background. Thanks...

Global $hGuiWin = GUICreate ( "Contacts DB", 920, 760)
GUISetBkColor (0x000000, $hGuiWin )
GUICtrlCreatePic(@ScriptDir & '\Images\DB.png', 0, 0, 898, 747)
MsgBox(1, "title", @Error) ; Returns 1
MsgBox(1, "title", @ScriptDir & '\Images\DB.png') ; Says path is correct
GUISetState(@SW_SHOW)

“No other God have I but Thee; born in a manger, died on a tree.” Martin Luther

Link to comment
Share on other sites

Try this:

#include <GUIConstantsEx.au3>
Global $hGuiWin = GUICreate ( "Contacts DB", 920, 660)
GUISetBkColor (0x000000, $hGuiWin )
GUICtrlCreatePic('c:\Program Files (x86)\AutoIt3\Examples\GUI\mslogo.jpg', 0, 0, 0, 0)
GUICtrlSetState(-1, $GUI_DISABLE)
GUISetState(@SW_SHOW)

    Do
        $msg = GUIGetMsg()

    Until $msg = $GUI_EVENT_CLOSE
Exit

Modify the path to the image if needed.

Br,

UEZ

Please don't send me any personal message and ask for support! I will not reply!

Selection of finest graphical examples at Codepen.io

The own fart smells best!
Her 'sikim hıyar' diyene bir avuç tuz alıp koşma!
¯\_(ツ)_/¯  ٩(●̮̮̃•̃)۶ ٩(-̮̮̃-̃)۶ૐ

Link to comment
Share on other sites

Modify the path to the image if needed.

Br,

UEZ

ok, got the logo then I used your script with the full path and it worked. Why the ", 0, 0, 0, 0". Thanks for the help.

“No other God have I but Thee; born in a manger, died on a tree.” Martin Luther

Link to comment
Share on other sites

The image is loading, but when I place "input" controls on the image, I cannot select them unless I tab to the control. The cursor does not change to an Ibeam as it would normally. What is the problem?

“No other God have I but Thee; born in a manger, died on a tree.” Martin Luther

Link to comment
Share on other sites

It says in the help file to make sure that if the image is the background for a GUI to add the picture last, after all other controls have been added. Also make sure you're using the line GUICtrlSetState(-1, $GUI_DISABLE) for the image control.

If I posted any code, assume that code was written using the latest release version unless stated otherwise. Also, if it doesn't work on XP I can't help with that because I don't have access to XP, and I'm not going to.
Give a programmer the correct code and he can do his work for a day. Teach a programmer to debug and he can do his work for a lifetime - by Chirag Gude
How to ask questions the smart way!

I hereby grant any person the right to use any code I post, that I am the original author of, on the autoitscript.com forums, unless I've specifically stated otherwise in the code or the thread post. If you do use my code all I ask, as a courtesy, is to make note of where you got it from.

Back up and restore Windows user files _Array.au3 - Modified array functions that include support for 2D arrays.  -  ColorChooser - An add-on for SciTE that pops up a color dialog so you can select and paste a color code into a script.  -  Customizable Splashscreen GUI w/Progress Bar - Create a custom "splash screen" GUI with a progress bar and custom label.  -  _FileGetProperty - Retrieve the properties of a file  -  SciTE Toolbar - A toolbar demo for use with the SciTE editor  -  GUIRegisterMsg demo - Demo script to show how to use the Windows messages to interact with controls and your GUI.  -   Latin Square password generator

Link to comment
Share on other sites

It says in the help file to make sure that if the image is the background for a GUI to add the picture last, after all other controls have been added. Also make sure you're using the line GUICtrlSetState(-1, $GUI_DISABLE) for the image control.

I had GUICtrlSetState(-1, $GUI_DISABLE) in the code, but evidently located in the wrong place; moved it just after the picture and now things are working. So the question is not, if this disables it, how is it enabled if you don't use the handle?

“No other God have I but Thee; born in a manger, died on a tree.” Martin Luther

Link to comment
Share on other sites

-1 indicates the control that was created last before you set it's state. You could just as easily given that pic control a variable name and referenced that instead of the -1

$hPic_background = GUICtrlCreatePic("c:\Program Files (x86)\AutoIt3\Examples\GUI\mslogo.jpg", 0, 0, 0, 0)
;; create more controls here
GUICtrlSetState($hPic_background, $GUI_DISABLE)

Then you could set the state any time after the control is created even if you create other controls between the 2 lines.

George

Question about decompiling code? Read the decompiling FAQ and don't bother posting the question in the forums.

Be sure to read and follow the forum rules. -AKA the AutoIt Reading and Comprehension Skills test.***

The PCRE (Regular Expression) ToolKit for AutoIT - (Updated Oct 20, 2011 ver:3.0.1.13) - Please update your current version before filing any bug reports. The installer now includes both 32 and 64 bit versions. No change in version number.

Visit my Blog .. currently not active but it will soon be resplendent with news and views. Also please remove any links you may have to my website. it is soon to be closed and replaced with something else.

"Old age and treachery will always overcome youth and skill!"

Link to comment
Share on other sites

-1 indicates the control that was created last before you set it's state. You could just as easily given that pic control a variable name and referenced that instead of the -1

$hPic_background = GUICtrlCreatePic("c:\Program Files (x86)\AutoIt3\Examples\GUI\mslogo.jpg", 0, 0, 0, 0)
;; create more controls here
GUICtrlSetState($hPic_background, $GUI_DISABLE)

Then you could set the state any time after the control is created even if you create other controls between the 2 lines.

That works for me, thanks...

“No other God have I but Thee; born in a manger, died on a tree.” Martin Luther

Link to comment
Share on other sites

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...