Can you tab through each option in option group?

  • Thread starter Thread starter p-rat
  • Start date Start date
P

p-rat

I have an option group. I can't seem to tab from one option to
another. Am I doing something wrong?

Also, I have two check boxes next to each other. I don't want an
option group for these two but would like to be able to only select
one of the two. Is this possible?
 
p-rat said:
I have an option group. I can't seem to tab from one option to
another. Am I doing something wrong?

Tab takes you into the entire option frame and then back out of it. To use the
keyboard to move between options in the frame use the arrow keys.
Also, I have two check boxes next to each other. I don't want an
option group for these two but would like to be able to only select
one of the two. Is this possible?

Possible, but it would be bad form (no pun intended). You would have to use the
AfterUpdate event of each CheckBox to check the value of the other and change it
as appropriate. Might be a good idea to also check in the BeforeUpdate of the
form tro make sure that only one is set.
 
Back
Top