M
millie.patel
I have read the previous posts for people who have had problems with
having the design view of the graph and datasheet be updated; I added
this code:
Private Sub Detail_Print(Cancel As Integer, FormatCount As Integer)
On Error Resume Next
Dim objGraph As Object
Set objGraph = Me!objIndicators.Object
objGraph.Requery
'This will update the data sheet
objGraph.Application.Update
DoEvents
Set objGraph = Nothing
End Sub
to my detail print section (that is where the chart is located), but it
still displays the general data (ie East, West, etc)
Any ideas?
Thanks
Millie
having the design view of the graph and datasheet be updated; I added
this code:
Private Sub Detail_Print(Cancel As Integer, FormatCount As Integer)
On Error Resume Next
Dim objGraph As Object
Set objGraph = Me!objIndicators.Object
objGraph.Requery
'This will update the data sheet
objGraph.Application.Update
DoEvents
Set objGraph = Nothing
End Sub
to my detail print section (that is where the chart is located), but it
still displays the general data (ie East, West, etc)
Any ideas?
Thanks
Millie