Tab Controls

M

Monik

I have a tab control with 4 tabs or pages. then as the user clicks on
each tab I want the form caption to change. how can I do that?
 
A

Allen Browne

Select Case Me.Tab0
Case 0
Me.Caption = "You picked the first page."
Case 1
...
 
Top