Almost all my Datareports I display using the "Show" method so the user can decide if they want to print the report.
Code:
DataReport1.Show
And everything is fine when I close the app. wether they print the report or not.

2 of my Datareports I use the "PrintReport" method
Code:
Datareport1.PrintReport
But when I'm in the IDE and I close the app after the "PrintReport", I have to use the IDE to manually stop the program.

If if switch the "printreport" to "show", everything shutsdown fine, even if I print the report. I'm guessing the the report object is staying open but there is no "close" method for the datareport.

I just recently stopped using "End" and I'd like to keep it that way.

Any help would be appriciated, Thanks