Tab ? Field issue

(Client Based only- No web) Tabbing problem:

I have Field A, Field B and Field C. Fielda A & B are both Radio Button fields each with two values: Field A is Yes, No

Field B Winter, Summer, Field C has 5 choices and is a Checkbox field.

When Tabbing I go from Field A to B to C and realize I can change the order of focus. My question is this: Is it possible to go from field VALUE to Field Value when tabbing?

In other words when focus is on Filed A to tab from Yes to No then TAB to Winter then Tab to Summer OR would I have to do this by making four distinct fields each containing a value… ( Now before you ask WHY would I want to do this) just say it is an end user requirement that I am trying to talk them out of.

When I am in a checkbox field I do not have this problem as it tabs from choice to chouice but obviously not in a radio button field.

Thanks for all of your help

ccl

Subject: Tab ? Field issue

Hi

Try below code on the field EXITING event.

Provide position in tab order (in field properties) then write below code with proper field names to move

Sub Exiting(Source As Field)

Dim ws As New NotesUIWorkspace

Dim uidoc As NotesUIDocument

Set uidoc = ws.CurrentDocument

If uidoc.FieldGetText(“RB”) = “Winter” Then

Call uidoc.GotoField(“CH2”)

Else

Call uidoc.GotoField(“CH1”)

End If

End Sub

Hope this helps u…

Cheers

Nanda.