S skate Registered User. Local time Today, 22:13 Joined May 22, 2002 Messages 136 Dec 10, 2002 #1 I have a preview button in my form that opens the report prevew of that form. How do I have the report preveiw open such that it is in front of the my form? Is this b/c my form is a popup?
I have a preview button in my form that opens the report prevew of that form. How do I have the report preveiw open such that it is in front of the my form? Is this b/c my form is a popup?
Fornatian Dim Person Local time Today, 22:13 Joined Sep 1, 2000 Messages 1,394 Dec 10, 2002 #2 Is the form modal property set to yes? I deal with this by minimising the calling form using Docmd.Minimize and this in the report Private Sub Report_Close() Forms("frmName").SetFocus DoCmd.Restore End Sub
Is the form modal property set to yes? I deal with this by minimising the calling form using Docmd.Minimize and this in the report Private Sub Report_Close() Forms("frmName").SetFocus DoCmd.Restore End Sub