Info Posted July 30, 2007 Posted July 30, 2007 (edited) I just learned about the "GUISetBkColor" and all I know is that "0x00E0FFFF" is a green backround. Like this: #include <GuiConstants.au3> GuiCreate("MyGUI", 138, 82,-1, -1 , BitOR($WS_OVERLAPPEDWINDOW, $WS_CLIPSIBLINGS)) GUISetBkColor (0x00E0FFFF) $Label_1 = GuiCtrlCreateLabel("See the color? ^^", 20, 40, 90, 20) GuiSetState() While 1 $msg = GuiGetMsg() Select Case $msg = $GUI_EVENT_CLOSE ExitLoop Case Else ;;; EndSelect WEnd Exit So I asking you to post here all the background colors (or only the basic colors) Thank you. Edited July 30, 2007 by Info
Generator Posted July 30, 2007 Posted July 30, 2007 Google will be much efficient than us posting this for you.
Info Posted July 30, 2007 Author Posted July 30, 2007 (edited) Thanks! Working! =) Edited July 30, 2007 by Info
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