report events not executing code

  • Thread starter Thread starter mg
  • Start date Start date
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
 
Back
Top