L
Les Coover
When I open one report I want to check to
see if another report is open. If it is not open
I want to open it. The following is my attempt
at the code. Could someone help me get it?
Thanks, Les
Private Sub Report_Open(Cancel As Integer)
If [Gross Pay Report for 6/14/2002].IsOpen = True Then
End
Else
DoCmd.OpenReport "Gross Pay Report for 6/14/2002", acViewNormal
End If
End Sub
Thanks, Les
see if another report is open. If it is not open
I want to open it. The following is my attempt
at the code. Could someone help me get it?
Thanks, Les
Private Sub Report_Open(Cancel As Integer)
If [Gross Pay Report for 6/14/2002].IsOpen = True Then
End
Else
DoCmd.OpenReport "Gross Pay Report for 6/14/2002", acViewNormal
End If
End Sub
Thanks, Les