Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

How to stop users from moving away in the tab control

Status
Not open for further replies.

ak77bd

Programmer
May 9, 2008
4
US
Hi all

I have this tab Control with several pages.

Is there any properties of the tab control that i can disable/enable or something so that if users starts with some thing they can't move away from that page until they are done?

Hope i was clear enough with my questions
 
thanks i just did this
Private Sub TabCtl11_Change()
If gTabFlag = False then
Me.TabCtl11.Value = gTabIndex
End
End Sub
I also set the global gTabIndex variable when i enter the tab...
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top