Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

displaying .pdf files in a microsoft access 2000 image control 2

Status
Not open for further replies.

ind

Programmer
Mar 9, 2000
121
US
Can this be done and if so, how??????
 
You could use the Microsoft Web Browser. Simply insert the ActiveX control (Microsoft Web Browser) on your form. In the OnOpen event of the form, type something like the following (assuming the name of the control is WebBrowser0)

Private Sub Form_Open(Cancel As Integer)

WebBrowser0.Navigate "\\path\YourPdfFile.pdf"

End Sub
 
A few personal touches and it works great!!

THANKS!
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top