open PDF from form

  • Thread starter Thread starter Song Su
  • Start date Start date
S

Song Su

I have a form to display PONumber. Users want to click a button to display
the actual PO's pdf file in adobe reader. For example, if my form display
PONumber as 5100015888 the button should open
s:\apps\potrack\data\pdf\5100015888.pdf

How to code that button? Thanks.
 
I have a form to display PONumber. Users want to click a button to display
the actual PO's pdf file in adobe reader. For example, if my form display
PONumber as 5100015888 the button should open
s:\apps\potrack\data\pdf\5100015888.pdf

How to code that button? Thanks.

PONumber is the name of the control on the form that displays the PO
number?

Application Followhyperlink "s:\apps\potrack\data\pdf\" &
Me![PONumber] & ".pdf"
 
Yes, it is a text field on the form.

fredg said:
I have a form to display PONumber. Users want to click a button to
display
the actual PO's pdf file in adobe reader. For example, if my form display
PONumber as 5100015888 the button should open
s:\apps\potrack\data\pdf\5100015888.pdf

How to code that button? Thanks.

PONumber is the name of the control on the form that displays the PO
number?

Application Followhyperlink "s:\apps\potrack\data\pdf\" &
Me![PONumber] & ".pdf"
 
Back
Top