J
Jeff
I click on cmdPrintRMAwReturn on frmMainSwitchboard to open
rptRMAShippingFormNoReturn, which is coded as follows:
Private Sub Report_Close()
DoCmd.Close acForm, "frmFindRMANoReturn"
End Sub
Private Sub Report_Open(Cancel As Integer)
DoCmd.OpenForm "frmFindRMANoReturn", , , , , acDialog
End Sub
This opens frmFindRMANoReturn and the user inputs the RMA#, clicks
cmdPreviewRMANoReturn, which is coded as follows:
Private Sub cmdPreviewRMANoReturn_Click()
Me.Visible = False
End Sub
The report opens in Print Preview to the specific record, and
frmFindRMANoReturn closes as soon as cmdPreviewRMANoReturn is clicked.
However, frmMainSwitchboard closes at the same time. How can I keep
frmMainSwitchboard from closing?
rptRMAShippingFormNoReturn, which is coded as follows:
Private Sub Report_Close()
DoCmd.Close acForm, "frmFindRMANoReturn"
End Sub
Private Sub Report_Open(Cancel As Integer)
DoCmd.OpenForm "frmFindRMANoReturn", , , , , acDialog
End Sub
This opens frmFindRMANoReturn and the user inputs the RMA#, clicks
cmdPreviewRMANoReturn, which is coded as follows:
Private Sub cmdPreviewRMANoReturn_Click()
Me.Visible = False
End Sub
The report opens in Print Preview to the specific record, and
frmFindRMANoReturn closes as soon as cmdPreviewRMANoReturn is clicked.
However, frmMainSwitchboard closes at the same time. How can I keep
frmMainSwitchboard from closing?