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!

Search results for query: *

  1. yoshismokey

    Cold Fusion to PDF Print Pagination Issue

    Hi, I've developed a product ordering Cold Fusion site that displays the results of a SQL Query to an Oracle database. The results are summarized in tabular format on a CF page under 6 columns heads with anywhere from 1 to 200 records. Using "cfdocument" we are outputting nice looking PDF...
  2. yoshismokey

    Saving Dynamic Page to PDF

    Thanks! Here is the code that ended up working for me: <cfsavecontent variable="savesummary"> html code here... </cfsavecontent> <cfdocument format="pdf" filename="UPRSummary#TransNumber#.pdf" pagetype="a4" overwrite="yes"> <cfdocumentitem type="header"> <cfoutput>Your Summary has been sent...
  3. yoshismokey

    Saving Dynamic Page to PDF

    That's the problem that I'm having. I can't figure out how to save the PDF to a file. This is the code that I am using now: <cfsavecontent variable="savesummary"> my html here... </cfsavecontent> <cfdocument format="pdf" pagetype="a4" margintop="0.1"> <cfdocumentitem type="header">...
  4. yoshismokey

    Saving Dynamic Page to PDF

    Hi, Thanks for the info. So far I have the folowing code which gives me a pdf page with the message "Connection failure" on it. <cfdocument format="pdf" filename="C:\UPRSummary.pdf" pagetype="a4" margintop="0.1" overwrite="yes"> <cfoutput>#savesummary#</cfoutput> </cfdocument> <cfoutput>...
  5. yoshismokey

    Saving Dynamic Page to PDF

    Hi, Thanks to this forum, I was able to learn how to use the cfsavecontent tag to capture a dynamic cf page and display it. I was also able to send it via email as html. Is there a way I can save the output from a cfsavecontent to a pdf file? Here's the code I have for the html...
  6. yoshismokey

    Cfdocument Question

    I was able to view cfsavecontent tag to display the page and also to send it as html via email. Is there a way I can save it to a pdf file? Here's the code I have for the html: <cfsavecontent variable="savesummary"> <html> code for page here... </html> </cfsavecontent> <cfoutput>Your summary has...
  7. yoshismokey

    Cfdocument Question

    Thanks again, this sounds like the best solution!
  8. yoshismokey

    Cfdocument Question

    Just a thought - Could I somehow save that web page as an html document outside of the session and then have it generate the PDF file so I could attach it to an email? I don't actually have to let them preview the pdf online. Thanks again.
  9. yoshismokey

    Cfdocument Question

    That's what I thought. Thanks!
  10. yoshismokey

    Cfdocument Question

    Hi, I would like to display a web page from my cold fusion application in a PDF file to be viewed by the user when they click on a button. I have the following code which partially works: <cfif IsDefined("form.Preview")> <!--- You can pass a URL in the URL string ---> <cfparam...
  11. yoshismokey

    How to Concatenate notes into a note field

    I tried it, but got an error on the char(13) so I just did this: AddedNotes= AddedNotes +'#form.Notes#' which works as long as something is in AddedNotes to begin with, otherwise, it doesn't work. Is there something about the char(13) and char(10) that I'm missing?
  12. yoshismokey

    How to Concatenate notes into a note field

    By that, do you mean every time they go in and add a note, a new record will be added to the new "Notes" table with the transaction number as the key?
  13. yoshismokey

    How to Concatenate notes into a note field

    I have a field "notes" that I would like to allow the users to add to without overwriting the last note added. Is there an easy way to do this in SQL? Here is the code I have so far: <cfquery name="UpdateApproval" datasource=#MM_connproducts_DSN# username=#MM_connproducts_USERNAME#...
  14. yoshismokey

    CFSelect Dropdownvalue Problem

    Thanks so much, it works! Robin
  15. yoshismokey

    CFSelect Dropdownvalue Problem

    If they are NULL, why don't any of the other fields show up? They may very well be NULL. Robin
  16. yoshismokey

    CFSelect Dropdownvalue Problem

    Hi, I have a cfselect problem. When the following code is run, if there are any blanks in the fields, none of the values appear in the drop down box. Any ideas why? Thanks, Here's the code.... <cfquery name="getcust" datasource=#MM_connproducts_DSN# username=#MM_connproducts_USERNAME#...
  17. yoshismokey

    Problem with user hitting enter on form with 3 submit buttons

    That code was actually pulled out of context. But anyway, I decided to go with 2 radio buttons and one submit button instead of the 3 submit buttons. This way, the enter key doesn't do anything horrible and everyone's happy. Thanks again for your help.
  18. yoshismokey

    Problem with user hitting enter on form with 3 submit buttons

    Thanks to both of you... I tried it but I get the message the form.whichbutton is not defined. Here's the javascript: <script language="JavaScript"> <!-- function SubmitButton(bttn) { document.forms[0].submit(); document.forms[0].whichButton.value = bttn; } function UDPButton(bttn) {...
  19. yoshismokey

    Problem with user hitting enter on form with 3 submit buttons

    No, that's not what I mean. Actually, the user can hit the submit button multiple times. The form is like a spreadsheet that does calculations on the fly. Every time they make a change to an enterable field, they can hit the submit button and it will calculate the numbers on the form. The...
  20. yoshismokey

    Problem with user hitting enter on form with 3 submit buttons

    I have a problem with a form that has 3 possible submit buttons. One button is on the bottom of the form to calculate the fields and submit them to the database. The other 2 buttons switch the mode (1 allows the one column to be updateable, the other allows the other field to be updateable.)...

Part and Inventory Search

Back
Top