I try again with auto tab

A

Alvin Hansen

Hi
When i have make my choise in one combobox can't i
make it go to the next combobox auto ??

regards alvin
 
S

sebastienm

Hi Alvin,
- If the controls are on a Userform, the TAB key sends you to the next control
To make a control behave on the TAB key, set its TabStop property
(default=true).
To re-order the controls for Tab key, change their TabIndex property
(starts at 0)
- If the controls are on a spreadsheet, the TAB does nothing. This behavior
does not work (disabled).

Regards,
Sebastien
 
Top