I have a form with a tab control which I have used for several years that is now not working correctly. When I click on the Attendence or the Future tab cmdReports and cmdCerts buttons are to be displayed. Now they only display when the Future tab is clicked on. I haven’t added new tabs. I have checked that the tab numbers are correct Attendance is Page Index 5 and Future is Page Index 6. Below is the code. What issues could make the cmd buttons fail to show when the tab is clicked? Thank you. Fay
Private Sub Attendance_Click()
Me.cmdReports.Visible = True
Me.cmdCerts.Visible = True
End Sub
Private Sub Future_Click()
Me.cmdReports.Visible = True
Me.cmdCerts.Visible = True
End Sub
Private Sub Orientation_Click()
Me.cmdDeptCompCklist.Visible = True
Me.cmdCompCheck.Visible = True
End Sub
Private Sub tabPages_Change()
Me.cmdReports.Visible = (Me.tabPages.Value = 5)
Me.cmdCerts.Visible = (Me.tabPages.Value = 5)
Me.cmdReports.Visible = (Me.tabPages.Value = 6)
Me.cmdCerts.Visible = (Me.tabPages.Value = 6)
Me.cmdDeptCompCklist.Visible = (Me.tabPages.Value = 1)
Me.cmdCompCheck.Visible = (Me.tabPages.Value = 1)
End Sub
Private Sub Form_Open(Cancel As Integer)
DoCmd.Maximize
txtRosterStart.Visible = False
txtRosterEnd.Visible = False
lblRosterStart.Caption = “”
Me.cmdReports.Visible = False
Me.cmdCerts.Visible = False
Me.cmdDeptCompCklist.Visible = False
Me.cmdCompCheck.Visible = False
End Sub