HI Rajesh,
If your need s about alternatively set focus to the option buttons,
then the tabindex propery mightnot complete your obligation
you can acheive it by using arrow keys(any one in four arrow keys...),
place the option buttons in a frame
now use arrow key to change selection(single key-no need to use different keys to move the selection)
i hope this will help you,
with regards
venkatramasamy SN
venkatramasamy
Junior Poster in Training
71 posts since Aug 2007
Reputation Points: 12
Solved Threads: 12
actually Shouvik and venkatramasamy was given the solution but if you want to try other way you can use enter keys.
Private Sub Option1_KeyPress(KeyAscii As Integer)
If KeyAscii = 13 Then
Option2.SetFocus
End If
End Sub
may help.
Jx_Man
Nearly a Senior Poster
3,329 posts since Nov 2007
Reputation Points: 1,372
Solved Threads: 444