Make a particular tab visible on a forms tab control

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

Guest

How do I make a particular tab on a forms tab control the one that is visible?

I've tried

me.myTab = 0

me.mytab.page(0).setfocus
 
On a tabstrip, you'd use:
Me.TabStrip1.Value = 2
(0 is the first, 1 the second, ...)

On a multipage control, you'd use:
Me.MultiPage1.Value = 2
(0 is the first, 1 the second, ...)
 

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