Quote:
Originally Posted by JennEx
I'm wondering though, when the user chooses edit, the report is prepared and saved. Is there anyway to keep the report open in Word for the user to work with it once it's been prepared?
|
Hi Jenn,
Swap:
Code:
End If
.Close False
[/quote]
Also, I am getting a margin warning with the printing. It's all OK, but how can I disable the warning? It interferes with the automation.[/quote]
You could try changing:
.PrintOut
to:
Code:
Application.DisplayAlerts = wdAlertsNone
.PrintOut
Application.DisplayAlerts = wdAlertsAll