I have a tabbed form. I want the label above it to change when each tab is clicked.
Something similar to here: http://www.datapigtechnologies.com/f...abcontrol.html
I have done this:
Private Sub MYTAB_Change()
Select Case MYTAB.Value
Case Is = 0
Me.MYLBL.Caption "WRITE YOUR TEXT HERE"
Case Is = 1
Me.MYLBL.Caption "WRITE YOUR TEXT HERE"
End Select
End Sub
I replaced the MYTAB with the name of my tab.
I am not sure of the MYLBL. Replacing it with the name of a label e.g. 'Text0' does not work
Can somebody help me please!