To jump to next TabCtl

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hi!

I have a form with TabCtl2 with Pages:
[TabCtl2].Pages(0)
[TabCtl2].Pages(1)
....

I would like when Enter or Afterupdate last field on [TabCtl2].Pages(0) jump
to 1st field on [TabCtl2].Pages(1).

Thanks in advance.
an
 
Enter and After Update are pretty much at opposite ends of the event spectrum
for a control. What would be the best would be to use the Lost Focus event
and st the focus to the control on the other tab.
 
Ok, K.

My problem is the sintax.
an

Klatuu said:
Enter and After Update are pretty much at opposite ends of the event spectrum
for a control. What would be the best would be to use the Lost Focus event
and st the focus to the control on the other tab.
--
Dave Hargis, Microsoft Access MVP


an said:
Hi!

I have a form with TabCtl2 with Pages:
[TabCtl2].Pages(0)
[TabCtl2].Pages(1)
...

I would like when Enter or Afterupdate last field on [TabCtl2].Pages(0) jump
to 1st field on [TabCtl2].Pages(1).

Thanks in advance.
an
 
Me.ControlName.SetFocus
--
Dave Hargis, Microsoft Access MVP


an said:
Ok, K.

My problem is the sintax.
an

Klatuu said:
Enter and After Update are pretty much at opposite ends of the event spectrum
for a control. What would be the best would be to use the Lost Focus event
and st the focus to the control on the other tab.
--
Dave Hargis, Microsoft Access MVP


an said:
Hi!

I have a form with TabCtl2 with Pages:
[TabCtl2].Pages(0)
[TabCtl2].Pages(1)
...

I would like when Enter or Afterupdate last field on [TabCtl2].Pages(0) jump
to 1st field on [TabCtl2].Pages(1).

Thanks in advance.
an
 
Oh! Ok.

Thank you very much for your help.
an

Klatuu said:
Me.ControlName.SetFocus
--
Dave Hargis, Microsoft Access MVP


an said:
Ok, K.

My problem is the sintax.
an

Klatuu said:
Enter and After Update are pretty much at opposite ends of the event spectrum
for a control. What would be the best would be to use the Lost Focus event
and st the focus to the control on the other tab.
--
Dave Hargis, Microsoft Access MVP


:

Hi!

I have a form with TabCtl2 with Pages:
[TabCtl2].Pages(0)
[TabCtl2].Pages(1)
...

I would like when Enter or Afterupdate last field on [TabCtl2].Pages(0) jump
to 1st field on [TabCtl2].Pages(1).

Thanks in advance.
an
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads

Requery Page in TabCtl 5
Compile error 3
Requery 5
navigating 1
Switching between 2 sets of Tab Controls...!? 5
Tab control and subforms 4
Syntax 3
Form with Tab Control Pages - Jumping to next record. 2

Back
Top