J jhob Registered User. Local time Today, 20:09 Joined Aug 9, 2007 Messages 23 Sep 20, 2007 #1 I was wondering if there was any way of making the headings on tab controls to be controlled by variables set elsewhere? cheers!
I was wondering if there was any way of making the headings on tab controls to be controlled by variables set elsewhere? cheers!
J jhob Registered User. Local time Today, 20:09 Joined Aug 9, 2007 Messages 23 Sep 20, 2007 #2 I should add that I am expecting the answer to be no, but if someone could confirm that it will save me a fair bit of fiddling time.
I should add that I am expecting the answer to be no, but if someone could confirm that it will save me a fair bit of fiddling time.
Rabbie Super Moderator Local time Today, 20:09 Joined Jul 10, 2007 Messages 5,906 Sep 20, 2007 #3 Try setting the caption property of each tab. This should do the the trick ie something like me!Tab1.caption = "My new caption" Hope this helps
Try setting the caption property of each tab. This should do the the trick ie something like me!Tab1.caption = "My new caption" Hope this helps
M mdb4me Registered User. Local time Tomorrow, 05:09 Joined Aug 6, 2007 Messages 16 Sep 20, 2007 #4 I haven't had a need to do it before but just tried this and it works. Private Sub Form_Load() Page1.Caption = "hello" Page2.Caption = "bye" End Sub
I haven't had a need to do it before but just tried this and it works. Private Sub Form_Load() Page1.Caption = "hello" Page2.Caption = "bye" End Sub
J jhob Registered User. Local time Today, 20:09 Joined Aug 9, 2007 Messages 23 Sep 20, 2007 #5 Worked a treat, thanks!