Button to tab between fields?

  • Thread starter Thread starter Anna
  • Start date Start date
A

Anna

Hi,

Any help would be gratefully received:
I have a form with 16 fields on, and a lot of the time I
will only need to use the first 4 or 5 and then the bottom
two fields, so I would like a button that makes the cursor
tab to the 14th box (wherever the cursor is when I click
it). Is there an easy way to do this?

Hope it made sense, thanks,

Anna
 
Anna said:
Hi,

Any help would be gratefully received:
I have a form with 16 fields on, and a lot of the time I
will only need to use the first 4 or 5 and then the bottom
two fields, so I would like a button that makes the cursor
tab to the 14th box (wherever the cursor is when I click
it). Is there an easy way to do this?

In the Click event of the button...

Me![ControlName].SetFocus
 
Back
Top