Jump to content

How set invisible GUICtrlSetBkColor with label ?


Recommended Posts

What do you mean with invisible?

Edit: this is what you need?

#include <GUIConstantsEx.au3>

$hGUI = GUICreate("Test")
$hPic = GUICtrlCreatePic(@WindowsDir & "Gone Fishing.bmp",0,0,400,400)
$hLabel = GUICtrlCreateLabel("This is a test",100,100,100,20)
GUICtrlSetBkColor($hLabel,$GUI_BKCOLOR_TRANSPARENT)
GUISetState(@SW_SHOW)

Do
    Sleep(10)
Until GUIGetMsg() = $GUI_EVENT_CLOSE
Edited by Andreik

When the words fail... music speaks.

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...