More TAB Control Questions

  • Thread starter Thread starter Dave
  • Start date Start date
D

Dave

Access 2003

So I am on one tab and when I click a button on that TAB I have a "msgbox"
as part of the "On Click" even.
Depending on their answers
Yes - will print a report
This part works

No - will return you to the Tab Control but on another tab
This I do not know how to do.

How do I programmable go from one TAB to another TAB?

Any help here will be appreciated.

Thanks in advance

Dave
 
Set focus to the specific Page. If you look at the tab control, you'll see
that each tab is actually referred to as a page. You can make the 3rd tab
the active one using:

Me!Page3.SetFocus
 
I had actually tried that but had the syntax incorrect
Me.Page3.SetFocus
instead of
Me!Page3.SetFocus

Thanks much

dave
 

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

Back
Top