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!

loading multiple pdf's into one pdf

Status
Not open for further replies.

idanner

Programmer
Aug 30, 2004
17
US
Hello, I am creating pdf documents on the fly and using Adobes fdf. Right now each pdf is showing in it's own window. I would like to know is there a way I can get multiple pdf files to display in the same window? Was I clear enough? Any help is greatly appreciated.
 
you said your creating them on the fly. Are you using the cfdocument tag? If so then why don't you just combine all the info you need between the cfdocument tag?


Keith


The most likely way for the world to be destroyed, most experts agree, is by accident. That's where we come in; we're computer professionals. We cause accidents.
 
This is actually how they are being generated because they are interactive.

Code:
<cfsetting enablecfoutputonly="Yes" showdebugoutput="No">
<cfcontent type="application/vnd.fdf">
<cfoutput >%FDF-1.2
1 0 obj <<
/FDF <<
/Fields
[

<</T(acctChange)/V()>>
<</T(authFor)/V()>>
<</T(bancAcctNums)/V(#getrecord2.account#)>>
<</T(bankCityState)/V()>>
<</T(bankName)/V(#getrecord2.bank#)>>
<</T(businessChecking)/V()>>
<</T(checkingAcct)/V()>>
<</T(checkingNames)/V(#getrecord2.legal#)>>
<</T(existingAptCust)/V()>>
<</T(fpcAcctNums)/V(#getrecord.appid#)>>
<</T(nameOnLoan)/V(#getrecord2.legal#)>>
<</T(newApt)/V()>>
<</T(personalChecking)/V()>>
<</T(taxId)/V(#getrecord2.fid#)>>




 ] 
/F (ACH_Form.pdf)
>>
>>
endobj
trailer
<</Root 1 0 R>>
%%EOF
</cfoutput>
Right now each pdf file is loading separately. I would like to combine several ones to load in the same window. I could even use tips on how to load multiple url's into one window showing at the SAME time.
 
i take it you're running a loop? it looks like you took something out of your <cfoutput> tag (trailing space before the > is making me guess. if you're looping you should just be able to move the <cfoutput> and </cfoutput> to keep it looping in the same document.

Beware of programmers who carry screwdrivers.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top