Print from IE

J

Joel Allen

Hello,

From a custom form, I'm trying to print something from Internet Explorer.
All the code works except for the PrintOut. Can anybody give me some
pointers?

Set objWeb = CreateObject("InternetExplorer.Application")
objWeb.Navigate "\\tgps8\Documents\Company Documents-Public\Profilit
Info\Profilit Submittal Documents\2. Fact Sheet.pdf"
objWeb.Visible = True
objWeb.PrintOut

Thank you,
Joel
 
K

Ken Slovak - [MVP - Outlook]

Shouldn't the PrintOut() method only apply to the Document object in the
browser control? Does objWeb.Document.PrintOut() work?
 
J

Joel Allen

That didn't work. I get the error "Object doesn't support this property or
method......"

I'm basically trying to print a PDF document programmatically, and I'm not
well versed in programming, so I just trying to find the easiest and most
simple way.

Any other ideas?

Thanks for your help,
Joel
 
K

Ken Slovak - [MVP - Outlook]

All I know is the object browser doesn't show any PrintOut method for IE,
only for documents.

You might be better off in posting a question about IE programming in a
group that handles that application.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads

navigate 1
open file 8
Hyperlink in Outlook form v2 5
SueHelpMe 1
print PDF 1
query parameter 6
populating excel file from custom form 1
Launch IE and scrap data from the web site 1

Top