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 Chris Miller 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: *

  • Users: lpatton
  • Order by date
  1. lpatton

    weird CLIENT scope

    Is the cilent set to allow cookies?
  2. lpatton

    Embedded pages in coldfusion using cflocation

    Did you try cfinclude?
  3. lpatton

    Help with CFFILE & input type="file".Please!!!!

    Got it done using: cffile action="UPLOAD" nameconflict="MAKEUNIQUE" destination="s:\Gaming\" filefield="Form.FileName"> <cfset mFileName=cffile.serverFile> <cfset mFileDescription=cffile.clientFile> Thanks for all the help! Lyndon
  4. lpatton

    Replace a dash with a empty space

    <cfset cNewCity=Replace(Form.City,'-',' ','All')> Should do it. Lyndon
  5. lpatton

    Help with CFFILE & input type=&quot;file&quot;.Please!!!!

    I'm trying to employ the solution you provided in this post. However, on the action page Form.TextName has no value. Can you see my error? Thanks Lyndon <FORM name="UploadForm" ACTION="AttachLettersSave.cfm" ENCTYPE="multipart/form-data" METHOD="POST"> <tr> <td...
  6. lpatton

    Anxiously awaiting your reviews of CFMX 7

    pathetic, I posed the question about Studio on the board ran by my CF hosting ISP. They said Macromedia now expects developers to use Dreamweaver as their IDE. But, you can buy Homesite seperately; which is what I did. The upgrade for for CF 7.0 is supposed to be out soon.
  7. lpatton

    Change column heading alignment/orientation in Coldfusion

    I'm assuming you still want column headings and not row labels. This would work: <tr> <td> S<br>E<br>R<br>V<br>E<br>R </td> <td> D<br>1 </td> <td> D<br>2 </td> ... </tr> Lyndon
  8. lpatton

    Submitting a Form to CF

    What are you trying to do? I didn't really understand what you mean by: "the CF page does not open in my default browser (IE6) but in Acrobat" I'm guessing you have a HTML page created in Acrobat? If so, include the code for that page and the page that is opening in Acrobat. Then I could...
  9. lpatton

    Submitting a Form to CF

    Did you ever solve this? I'm using CF and generating PDF. Maybe I can help. Lyndon
  10. lpatton

    Creating PDFs from scratch

    Robert, maybe an example of how I use Acrobat might help you. Once installed Acrobat is just another of my output formats. i.e. Acrobat Distiller shows up as if it were a printer. I can then create a PDF from any windows software I happen to be using and distribute that PDF on my web site or...
  11. lpatton

    Open a Word,Excel,Text ... File

    Try referencing a cfm or html in that folder. Lyndon
  12. lpatton

    Open a Word,Excel,Text ... File

    Your link is absolutly correct. There must me something wrong with your path or file name. Or, possibly your browser won't open that file extension. Good Luck Lyndon
  13. lpatton

    how to get a report printed double sided

    Consider using html2pdf to format your output. It gives you several basic format controls and the user can fine tune it from there. Lyndon

Part and Inventory Search

Back
Top