Y
ym
Hi Rick Brandt,
I tried this and it did not work - tabbing continues to take its own course
instead of jumping to the next tabindex. I also tried setting the tabindex
in the Form_load event. I tried working on a sample form with a bunch of
textboxes and combos - reshuffle them somewhat and then did the tabindex
thing on the form_load event - tried various tabindex order of controls and
it all works fine.
Can it be possible my form is corrupted ?
What I meant is you could try...
DoCmd.OpenForm "Adverse Reaction Report"
Forms![Adverse Reaction Report]!txtRCTrackingNumber.TabIndex = 5
Forms![Adverse Reaction Report]!txtSourceNumber.TabIndex = 4
Forms![Adverse Reaction Report]!cboSourceName.TabIndex = 3
Forms![Adverse Reaction Report]!cboSourceType.TabIndex = 2
Forms![Adverse Reaction Report]!txtDate.TabIndex = 1
Forms![Adverse Reaction Report]!trackingnumber.TabIndex = 0
I don't know if that will make any difference, but often the reshuffling
caused by changing an ordinal setting causes problems unless you traverse
them backwards.
I tried this and it did not work - tabbing continues to take its own course
instead of jumping to the next tabindex. I also tried setting the tabindex
in the Form_load event. I tried working on a sample form with a bunch of
textboxes and combos - reshuffle them somewhat and then did the tabindex
thing on the form_load event - tried various tabindex order of controls and
it all works fine.
Can it be possible my form is corrupted ?