Jump to content

GUI Handle not displaying with -1


charvi
 Share

Recommended Posts

Looks like a bug... the example below does not work in stable 3.2.12.1 nor in beta 3.2.13.11

Replace the -1 with the $h handle and it will work.

Was the -1 not meaning 'the last GUI' ?

#include <GUIConstantsEx.au3>

Opt('MustDeclareVars', 1)

Example()

Func Example()
    Local $h,$msg
    
    $h=GUICreate("TEST")
    GUISetBkColor(0x838b83, -1)  ; replace -1 with $h and it will work

    GUISetState()

    While 1
        $msg = GUIGetMsg()
        
        If $msg = $GUI_EVENT_CLOSE Then ExitLoop
    WEnd
EndFunc   ;==>Example
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...