|
How to print a web page with VBA? With VBA, I do something like the following:
Set obIe = CreateObject("InternetExplorer.Application")
obIe.navigate (URLaddress)
The page loads, and now I want to print the page.
I've tried:
obIe.print
me.print
printer.print
obIe.document.print
and some others. Nothing I've tried works. Does anyone know the
correct way to do this?
Thank you in advance. |