hansdebadde
Technical User
I am hiding a couple pages of my report based on the answer on a checkbox BeyondDOI. I put this expression in the On Current and AfterUpdate().
Private Sub Form_Current()
Me!Page281.Visible = Me!BeyondDOI
Me!Page373.Visible = Me!BeyondDOI
End Sub
Private Sub tbl_F7A_EEsOffBeyondDOI_AfterUpdate()
Me!Page281.Visible = Me!BeyondDOI
Me!Page373.Visible = Me!BeyondDOI
End Sub
It hides and updates when I make changes to a given record, but when I try to create a new reocrd it freaks, and I get the error 13.
I am using Access 2003
Private Sub Form_Current()
Me!Page281.Visible = Me!BeyondDOI
Me!Page373.Visible = Me!BeyondDOI
End Sub
Private Sub tbl_F7A_EEsOffBeyondDOI_AfterUpdate()
Me!Page281.Visible = Me!BeyondDOI
Me!Page373.Visible = Me!BeyondDOI
End Sub
It hides and updates when I make changes to a given record, but when I try to create a new reocrd it freaks, and I get the error 13.
I am using Access 2003