Hello
When i press the button i want it to read witch language i selected but it gives me an error that it doesn't understand Dutch,French,English,German
So what does the GUICtrlRead give as outpout ?
$Combo1 = GUICtrlCreateCombo("Server language", 32, 8, 113, 25, BitOR($CBS_DROPDOWN,$CBS_AUTOHSCROLL))
GUICtrlSetData(-1, "Dutch|French|English|German")
Func button1()
$var = GUICtrlRead($combo1)
if $var = Dutch Then
MsgBox(0,"blub","hell yeah")
EndIf
EndFunc
thx in advance