report events not executing code

M

mg

i put msgbox message inside a few report events and am not seeing ANY of the
messages pop up???? i put the messages in because the other code i had in
them didnt seem to be working.

Private Sub Report_Activate()
MsgBox ("in report activate event")
If Me.GroupFooter0.Controls(AccessTotalsAmount) = 0 Then
Me.GroupFooter0.Controls(AccessTotalsAmount) = 999999
End If
End Sub

Private Sub Report_Current()
MsgBox ("in report current event")
End Sub

Private Sub Report_Load()
MsgBox ("in report-load event")
If Me.GroupFooter0.Controls(AccessTotalsAmount) = 0 Then
Me.GroupFooter0.Controls(AccessTotalsAmount) = 999999
End If
End Sub
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top