M Monik Aug 2, 2005 #1 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?
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 Aug 2, 2005 #2 Use the Change event of the tab control to set the Caption of the form.
A Allen Browne Aug 2, 2005 #4 Select Case Me.Tab0 Case 0 Me.Caption = "You picked the first page." Case 1 ...
M Monik Aug 2, 2005 #5 Thanks a lot for you help.... Do I have to mark your last replay as an answer?