B
Bob Hughes
I have a report with the following code
Private Sub GroupHeader0_Format(Cancel As Integer, FormatCount As Integer)
If Me.NumberOrders > 1 Then
Me.GroupFooter1.Visible = True 'want total
Else
Me.GroupFooter1.Visible = False 'no total
End If
End Sub
When I run the 2K mde file with Access 2K a report is printed but when I
run the same file with acess 2003 It looks busy for a brief time but no
report is printed & no errors are displayed.
The mdb file works with both versions.
THe report is opened with this command
DoCmd.OpenReport RptLocQuery, acPreview, , Pub_View_filter
Any idea why this happens?
Bob
Private Sub GroupHeader0_Format(Cancel As Integer, FormatCount As Integer)
If Me.NumberOrders > 1 Then
Me.GroupFooter1.Visible = True 'want total
Else
Me.GroupFooter1.Visible = False 'no total
End If
End Sub
When I run the 2K mde file with Access 2K a report is printed but when I
run the same file with acess 2003 It looks busy for a brief time but no
report is printed & no errors are displayed.
The mdb file works with both versions.
THe report is opened with this command
DoCmd.OpenReport RptLocQuery, acPreview, , Pub_View_filter
Any idea why this happens?
Bob