I want to change the background color using VBA on the fly to a subReport. I've specified the following in the main report 'Event Open procedure' but it won't work.
Private Sub Report_Open(Cancel As Integer)
me!subreport1.Report!Section(0).BackColor = vbBlue
End Sub
Private Sub Report_Open(Cancel As Integer)
me!subreport1.Report!Section(0).BackColor = vbBlue
End Sub