Comments are available to members only. Sign up or Log in to view these comments.
Main Topics
Browse All TopicsHello Everyone,
Here is my problem. I would like to check if a PDF file exists in a website. Then if it does to send that PDF file to my default printer. I am writing all the code in VB.net. This is what I have so far.
Public Function PdfCheck()
Dim URL As String = "http://www.vecernjilist.h
Dim PDFDoc As Acrobat.CAcroPDDoc
Try
PDFDoc.Open(URL)
Catch e As Exception
MessageBox.Show(e.Message)
End Try
‘Add printing code here..
PDFDoc.Close()
End Function
Now my problem is that the “PDFDoc.Open(URL)” line is for opening a file on the local computer. What is the syntax for open a PDF from the web?
If anyone has ever done something like this and may give me some code I can use, I will increase points
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
Business Accounts
Answer for Membership
by: DaneJurkovicPosted on 2004-03-25 at 10:41:56ID: 10679896
Comments are available to members only. Sign up or Log in to view these comments.