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 Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Imbedding pdf into reports

Status
Not open for further replies.

Cogno

Programmer
Jul 12, 2005
4
US
My current project that I am working on requires for a field driven document to print with a report.

Ex: The report is based on a Work Order with all requested details including specific Equipment documents. The field is actually a http:// addy that links to a pdf.

My question: Is it possible to have a pdf imbedded into a report at the time of print with out having access to the Framework Manger and only using Report Studio?

Ty in advance for any insight to my situation.

 
Hi Cogno,

As long as you are rendering as HTML when your report is being run, you can embed PDF quite easily.

From the toolbox, drag an HTML item into your report, and within this use the <EMBED> tag to bring in your PDF document. The code should look something like this:

<EMBED src=" width="450" height="450"></EMBED>

You can specify the size by changing the width and height components.

Hope that helps,

MF.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top