Hello all,
When I change some data in my input forms (which use queries as data sources), the report does not update unless I click "Refresh all".
How can I do that automatically?
Thanks,
Benjamin
Hello all,
When I change some data in my input forms (which use queries as data sources), the report does not update unless I click "Refresh all".
How can I do that automatically?
Thanks,
Benjamin
Okay, I've done the following:
Private Sub Report_Activate()
Me.Requery
End Sub
Private Sub Report_GotFocus()
Me.Requery
End Sub
Private Sub Report_Load()
Me.Requery
End Sub