I created an application, set the run option to minimized on the shortcut and after opening a report I have no way of allowing the user to print the report. How do I do this?
This shows how an application which runs a popup form with the main application window hidden. It also demonstrates how to display the print preview ribbon whilst a report is open then hide it again when the report is closed.
That should solve your problem.
So what you are saying is not to run the application in minimized size, make the access background invisible through code and the pop up for printing would work.
This is what I do:
Minimize the application window (which effectively hides it)
Hide the nav pane & ribbon
Use a popup form so its floating on the desktop
Use a button to open the report in print preview and show the PP ribbon
Close the report & the ribbon is hidden again
If you look at the example in detail you should be able to see how I've done it