Hallo zusammen
ist es möglich, dass nach Auswahl eines Eintrages in der ComboBox, der Cursor automatisch in nächste Feld wechselt?
[autoit]#include <ComboConstants.au3>
#include <GUIConstantsEx.au3>
Dim $form_main = GUICreate("Beispiel Formular",250,250)
Dim $input_1 = GUICtrlCreateInput("",10,10,100,20)
Dim $combo_1 = GUICtrlCreateCombo("",10,50,100,20,$CBS_DROPDOWNLIST)
GUICtrlSetData(-1,"Entry 1|Entry 2|Entry 3","Entry 1")
Dim $input_3 = GUICtrlCreateInput("",10,90,100,20)
Dim $bttn_exit = GUICtrlCreateButton("Exit",180,200,60,30)
GUISetState()
While 1
$nmsg = GUIGetMsg()
Select
Case $nmsg = -3 or $nmsg = $bttn_exit
Exit
EndSelect
WEnd
MfG
johny1099