Through a series of selection processes I have a form with textbox containing file Name and path. Also a table with the list of documents I'm dealing with. I have displayed the selected document in webbrowser control. My intent is to programmatically do esentially a screen print. I have no problem, using the DoCmd.PrintOut to print the page but absent the document from the webbrowser control.

I have also tried DoCmd.SelectObject acForm, Me.FormName, True
DoCmd.PrintOut acPrintAll
That does not print the document either.

I have been successful in printing a PDF document but not a Jpeg.

Any thoughts?