Hi everyone, i have a form with a tab control which contains 3 pages. I also have a sub-form on the footer of the main form, now when i click on page 2 of the tab control i want the formfooter to disappear. Ive used the following on the onclick event of page 2 of the tab control but it doesnt seem to work.
Private Sub Issue_New_Key_Click()
If Me.FormFooter.Visible = True Then
Me.FormFooter.Visible = False
End If
End Sub
Can someone steer me in the right direction
thanks,
nim
Private Sub Issue_New_Key_Click()
If Me.FormFooter.Visible = True Then
Me.FormFooter.Visible = False
End If
End Sub
Can someone steer me in the right direction
thanks,
nim