Jump to content

Recommended Posts

Posted (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 by Info

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
×
×
  • Create New...