set a tabcontrol.value??? (1 Viewer)

casey

Registered User.
Local time
Today, 02:04
Joined
Dec 5, 2000
Messages
448
Is it possible to set the tabcontrol.value on a form upon opening the form? I would like to have the tabcontrol on the form display the second tab instead of the first tab when it's opened. Can this be done? I tried something like...

Me.tabEstimates.Value = 1

When I try this, I get an error. It doesn't recognoze the control.

Any ideas?

Thanks.
 

casey

Registered User.
Local time
Today, 02:04
Joined
Dec 5, 2000
Messages
448
Got it!

Full reference names are wonderful (when they work, that is)!!!
 

andrewf10

Registered User.
Local time
Today, 02:04
Joined
Mar 2, 2003
Messages
114
How about this?


Private Sub Form_Current()
Me.tabEstimates = 1
End Sub
 

Users who are viewing this thread

Top Bottom