Jump to content

Recommended Posts

Posted

How can i make it so they cant input any thing into the combbobox and are forced to use defined values?

Thanks.

like this:

#include<guiconstants.au3>
$gui = GUICreate("blah",200,200)
$cb = GUICtrlCreateCombo("",10,10,175,190,$CBS_DROPDOWNLIST)
GUICtrlSetData($cb,"My|Choices|Only","")
GUISetState()
While 1
    $msg = GUIGetMsg()
    select
    Case $msg = $GUI_EVENT_CLOSE
        Exit
    EndSelect
WEnd
Posted

like this:

#include<guiconstants.au3>
$gui = GUICreate("blah",200,200)
$cb = GUICtrlCreateCombo("",10,10,175,190,$CBS_DROPDOWNLIST)
GUICtrlSetData($cb,"My|Choices|Only","")
GUISetState()
While 1
    $msg = GUIGetMsg()
    select
    Case $msg = $GUI_EVENT_CLOSE
        Exit
    EndSelect
WEnd
thx, i dont know how i missed that.

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...