rasim Posted October 14, 2008 Posted October 14, 2008 (edited) Hi All!I try to set background transparency for an icon control on the Tab control, but unsuccessful Maybe someone already did this?#include <GuiConstantsEx.au3> #include <WindowsConstants.au3> $hGUI = GUICreate("Test", 200, 100) GUICtrlCreateTab(10, 10, 180, 80) GUICtrlCreateTabItem("Tab1") $icon = GUICtrlCreateIcon("shell32.dll", -23, 80, 43) GUICtrlCreateTabItem("") GUISetState() Do Until GUIGetMsg() = -3 Edited October 14, 2008 by rasim
Zedna Posted October 14, 2008 Posted October 14, 2008 (edited) On my WINXP with XP theme off and standard color settings I got this result: so it seems to be OK Edited October 14, 2008 by Zedna Resources UDF ResourcesEx UDF AutoIt Forum Search
Zedna Posted October 14, 2008 Posted October 14, 2008 Maybe try it without TabItem first if it's Tab control related or if it's global icon problem. #include <GuiConstantsEx.au3> #include <WindowsConstants.au3> $hGUI = GUICreate("Test", 200, 100) $icon = GUICtrlCreateIcon("shell32.dll", -23, 80, 43) GUISetState() Do Until GUIGetMsg() = -3 Resources UDF ResourcesEx UDF AutoIt Forum Search
rasim Posted October 14, 2008 Author Posted October 14, 2008 ZednaOn my WINXP with XP theme off and standard color settings I got this result:so it seems to be OKI know about this. Maybe try it without TabItem first if it's Tab control related or if it's global icon problem.No, need solution with Tab.
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