Print WebBrowser

P

PeterM

I have a form with a WebBrowser objct on it. I need to be able to print out
the contents of the web page being displayed. I've tried

DoCmd.DoMenuItem acFormBar, acEditMenu, 8, , acMenuVer70
DoCmd.PrintOut acPrintAll

and

DoCmd.SelectObject acForm, Me.Form, True
DoCmd.PrintOut acPrintAll


in both cases it prints out the form but not the contents of the webbrowser
on the form...can someone please point me in the right direction!

thanks in advance for your help!
 
T

TC

There are quite a few hits from a google groups search for "webbrowser
print" without the quotes. Most of them are probably for VB, not VBA,
but they might help anyway.

HTH,
TC
 
Top