Hello,
I have a control array of radio buttons and I've set the TabIndex property accordingly. I can't seem to tab over to the next radio button, instead it goes to the next control. Is it not working because it's an array?
Thanks.
TtLai
Printable View
Hello,
I have a control array of radio buttons and I've set the TabIndex property accordingly. I can't seem to tab over to the next radio button, instead it goes to the next control. Is it not working because it's an array?
Thanks.
TtLai
No, Options follow their own rules. :D Tab just jumps to the next set of options. Instead, you have to use the arrow keys, I think, or a keyboary accelerator (if the caption is "&Test", you'd press Alt-T).
You could always intercept the tab keystroke and move the focus to the next item in the array if you're that desperate...
Yeah, but all option buttons in any program follow that rule, so you should be consistent with existing proggies and stick with the defaults. IMHO, of course.
that's why I said if he's desperate ;) . Personally i'd leave it be...
Thanks Guys