Jump to content

GUICtrlCreateCombo


Edifice
 Share

Recommended Posts

Yes. You search for it. And then you find this:

Global Const $CBS_DROPDOWNLIST = 0x0003

$gui = GUICreate("Example", 400, 50)
$combo = GUICtrlCreateCombo("Jon", 10, 10, 380, 25, $CBS_DROPDOWNLIST)
GUICtrlSetData (-1, "JPM|Jos|Valik")

GUISetState ()

While 1
    $nMsg = GUIGetMsg ()
    Switch $nMsg
        Case -3;Exit
            Exit
    EndSwitch
WEnd
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...