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 bkrike 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

    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...
  3. 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...
  4. 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#...
  5. 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#...
  6. 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.)...
  7. yoshismokey

    CFINPUT validation order

    I have a CFFORM with CFINPUT statements containing validate for zip, phone, etc. When I run the code, the order of validation is random and jumps all over the place. Is there any way to fix this? Here is the code: <cfform name="addagency" action="AddAgency1.cfm" method="post"> <tr>...
  8. yoshismokey

    Variable name problem

    I am having a problem accessing my cold fusion variables in a javascript function to validate the form fields. Here is the cold fusion section where I am populating the form fields: <form name="addfamily" action="AddUprForm.cfm" method="post" onSubmit="return CheckForm(this)"> <!---...

Part and Inventory Search

Back
Top