A Microsoft Office (Excel, Word) forum. OfficeFrustration

If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

Go Back   Home » OfficeFrustration forum » Microsoft Access » Using Forms
Site Map Home Register Authors List Search Today's Posts Mark Forums Read  

How do I add the Adobe PDF reader activex control to a form?



 
 
Thread Tools Display Modes
  #1  
Old May 18th, 2009, 04:42 AM posted to microsoft.public.access.forms
Rob Harrington
external usenet poster
 
Posts: 1
Default How do I add the Adobe PDF reader activex control to a form?

In Access 2007 - I clicked activex controls on the design tab and selected
PDF reader. I tried entering the URL that points to my PDF file (stored in a
SharePoint document library) in the src property for this control, but it
doesn't stick. It blanks out my entry as soon as I hit enter. I then tried to
set the src property programattically in the onload event for the form, but
there is no src property listed for this control when I am in the VB editor.

Am I going about this wrong. I want to embed the display of a PDF document
in my form without having to click the link and have it open in another
window.

Thanks in advance for your help.

-Rob Harrington
  #3  
Old May 18th, 2009, 09:29 PM posted to microsoft.public.access.forms
Rob Harrington[_2_]
external usenet poster
 
Posts: 2
Default How do I add the Adobe PDF reader activex control to a form?

Thank you Arvin. Where do I find the browser control? it doesn't show up as
one of the available activeX controls. Can you point me to an example or
documentation?

-Rob Harrington

"Arvin Meyer MVP" wrote:

Early Adobe ActiveX did this, but Adobe made it more difficult starting with
version 5.0. You might try using an IE browser control and open PDF document
within that.
--
Arvin Meyer, MCP, MVP
http://www.datastrat.com
http://www.mvps.org/access
http://www.accessmvp.com


"Rob Harrington" Rob wrote in message
...
In Access 2007 - I clicked activex controls on the design tab and selected
PDF reader. I tried entering the URL that points to my PDF file (stored in
a
SharePoint document library) in the src property for this control, but it
doesn't stick. It blanks out my entry as soon as I hit enter. I then tried
to
set the src property programattically in the onload event for the form,
but
there is no src property listed for this control when I am in the VB
editor.

Am I going about this wrong. I want to embed the display of a PDF document
in my form without having to click the link and have it open in another
window.

Thanks in advance for your help.

-Rob Harrington




  #4  
Old May 18th, 2009, 10:01 PM posted to microsoft.public.access.forms
Rob Harrington[_2_]
external usenet poster
 
Posts: 2
Default How do I add the Adobe PDF reader activex control to a form?

I figured out how to turn on the web browser control and I added it to my
form, but when I try webBrowser3.Navigate = "www.mydomain.com" I get an error
that this method is not supported. I don't see a SRC or URL method - how to I
send a URL to my control?

-Rob

"Rob Harrington" wrote:

Thank you Arvin. Where do I find the browser control? it doesn't show up as
one of the available activeX controls. Can you point me to an example or
documentation?

-Rob Harrington

"Arvin Meyer MVP" wrote:

Early Adobe ActiveX did this, but Adobe made it more difficult starting with
version 5.0. You might try using an IE browser control and open PDF document
within that.
--
Arvin Meyer, MCP, MVP
http://www.datastrat.com
http://www.mvps.org/access
http://www.accessmvp.com


"Rob Harrington" Rob wrote in message
...
In Access 2007 - I clicked activex controls on the design tab and selected
PDF reader. I tried entering the URL that points to my PDF file (stored in
a
SharePoint document library) in the src property for this control, but it
doesn't stick. It blanks out my entry as soon as I hit enter. I then tried
to
set the src property programattically in the onload event for the form,
but
there is no src property listed for this control when I am in the VB
editor.

Am I going about this wrong. I want to embed the display of a PDF document
in my form without having to click the link and have it open in another
window.

Thanks in advance for your help.

-Rob Harrington




  #5  
Old May 18th, 2009, 11:48 PM posted to microsoft.public.access.forms
Douglas J. Steele[_3_]
external usenet poster
 
Posts: 3,143
Default How do I add the Adobe PDF reader activex control to a form?

What happens if you try

webBrowser3.Navigate = "http://www.mydomain.com"

--
Doug Steele, Microsoft Access MVP
http://I.Am/DougSteele
(no private e-mails, please)


"Rob Harrington" wrote in message
...
I figured out how to turn on the web browser control and I added it to my
form, but when I try webBrowser3.Navigate = "www.mydomain.com" I get an
error
that this method is not supported. I don't see a SRC or URL method - how
to I
send a URL to my control?

-Rob

"Rob Harrington" wrote:

Thank you Arvin. Where do I find the browser control? it doesn't show up
as
one of the available activeX controls. Can you point me to an example or
documentation?

-Rob Harrington

"Arvin Meyer MVP" wrote:

Early Adobe ActiveX did this, but Adobe made it more difficult starting
with
version 5.0. You might try using an IE browser control and open PDF
document
within that.
--
Arvin Meyer, MCP, MVP
http://www.datastrat.com
http://www.mvps.org/access
http://www.accessmvp.com


"Rob Harrington" Rob wrote in
message
...
In Access 2007 - I clicked activex controls on the design tab and
selected
PDF reader. I tried entering the URL that points to my PDF file
(stored in
a
SharePoint document library) in the src property for this control,
but it
doesn't stick. It blanks out my entry as soon as I hit enter. I then
tried
to
set the src property programattically in the onload event for the
form,
but
there is no src property listed for this control when I am in the VB
editor.

Am I going about this wrong. I want to embed the display of a PDF
document
in my form without having to click the link and have it open in
another
window.

Thanks in advance for your help.

-Rob Harrington





  #6  
Old May 19th, 2009, 04:25 AM posted to microsoft.public.access.forms
Arvin Meyer MVP
external usenet poster
 
Posts: 640
Default How do I add the Adobe PDF reader activex control to a form?

Navigate is the correct method. You need to use the http:// protocol, or for
local files, you need the full qualified path.
--
Arvin Meyer, MCP, MVP
http://www.datastrat.com
http://www.mvps.org/access
http://www.accessmvp.com


"Rob Harrington" wrote in message
...
I figured out how to turn on the web browser control and I added it to my
form, but when I try webBrowser3.Navigate = "www.mydomain.com" I get an
error
that this method is not supported. I don't see a SRC or URL method - how
to I
send a URL to my control?

-Rob

"Rob Harrington" wrote:

Thank you Arvin. Where do I find the browser control? it doesn't show up
as
one of the available activeX controls. Can you point me to an example or
documentation?

-Rob Harrington

"Arvin Meyer MVP" wrote:

Early Adobe ActiveX did this, but Adobe made it more difficult starting
with
version 5.0. You might try using an IE browser control and open PDF
document
within that.
--
Arvin Meyer, MCP, MVP
http://www.datastrat.com
http://www.mvps.org/access
http://www.accessmvp.com


"Rob Harrington" Rob wrote in
message
...
In Access 2007 - I clicked activex controls on the design tab and
selected
PDF reader. I tried entering the URL that points to my PDF file
(stored in
a
SharePoint document library) in the src property for this control,
but it
doesn't stick. It blanks out my entry as soon as I hit enter. I then
tried
to
set the src property programattically in the onload event for the
form,
but
there is no src property listed for this control when I am in the VB
editor.

Am I going about this wrong. I want to embed the display of a PDF
document
in my form without having to click the link and have it open in
another
window.

Thanks in advance for your help.

-Rob Harrington





 




Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Forum Jump


All times are GMT +1. The time now is 12:30 AM.


Powered by vBulletin® Version 3.6.4
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 OfficeFrustration.
The comments are property of their posters.