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 Chriss 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: *

  1. jdhilljr

    Displaying results of an SQL Pivot Query

    I haven't used the pivot function but I would suggest using a cfdump to see the structure of the data. If you can't stand behind your troops, stand in front of them. Semper Fidelis Jim
  2. jdhilljr

    How to submit a form ?

    You want to put all of the form elements within one form tag. Each acts as its own entity. <form action="eval.php" method="POST" name="Evaluation" id="HP2"> <p>1. Question</p> <fieldset> <input type="radio" id="PG01S01" name="PG01" value="0"> <label for="PG01S01"> Answer 1</label> <br> <input...
  3. jdhilljr

    PHP &amp; .NET

    Sadly you fall under the old adage of "Whoever controls the data is in charge!" If you can't stand behind your troops, stand in front of them. Semper Fidelis Jim
  4. jdhilljr

    PHP &amp; .NET

    As far as I know you should be able to connect to it with no issues using soap. I have used them with Coldfusion with no issues. $client = new SoapClient("http://localhost/csharp/web_service.asmx?wsdl", array( "trace" => 1, // enable trace to view what is happening...
  5. jdhilljr

    fillable pdf - Is it possible?

    Actually the PDF FORM should be editable when rendered providing you don't use the "Flatten" command. If you can't stand behind your troops, stand in front of them. Semper Fidelis Jim
  6. jdhilljr

    CFpdf Tag Locking up my server

    Glad you figured out how to make it work. Hopefully you can find and repair the server. If you can't stand behind your troops, stand in front of them. Semper Fidelis Jim
  7. jdhilljr

    CFpdf Tag Locking up my server

    Semper Fi I graduated MCRD San Diego September 1975 and spent 2 years on Okinawa then 2 years at the stump with 1st Bn 4th Marines all 4 years lol If you can't stand behind your troops, stand in front of them. Semper Fidelis Jim
  8. jdhilljr

    CFpdf Tag Locking up my server

    I hate things like this as they stick in my head lol Good luck. If I run across anything I will let you know. If you can't stand behind your troops, stand in front of them. Semper Fidelis Jim
  9. jdhilljr

    CFpdf Tag Locking up my server

    Sounds like a plan. Otherwise I think it's an Adobe question or a new install. I can find nothing with anyone having this problem and I think only changes in the IDE would cause it. I have tried having all files open and editing but can not produce an error. If you can't stand behind your...
  10. jdhilljr

    CFpdf Tag Locking up my server

    Is there a thumbnails folder in the directory? Perhaps it has to do with file permissions as it will need to create that directory if it doesn't exist. If you can't stand behind your troops, stand in front of them. Semper Fidelis Jim
  11. jdhilljr

    CFpdf Tag Locking up my server

    You should have gotten an error since it should be... <cftry> <cfpdf action="thumbnail" overwrite="yes" source="C:/Workgroups/WebPages/binkley/BadgeCard/PDFs/2016-OC-276693.pdf" format="png" /> <cfcatch type="any" name="myTry"> <cfdump var="#myTry#" > </cfcatch> </cftry> If you can't...
  12. jdhilljr

    CFpdf Tag Locking up my server

    <cftry> <cfpdf action="thumbnail" source="Test1.pdf" overwrite="yes" imageprefix="thumb"> <cfcatch type="any"> <cfoutput> Error Message: #cfcatch.message#<br> Error Detail: #cfcatch.detail#<br> Error Location: #GetBaseTemplatePath()#<br>...
  13. jdhilljr

    CFpdf Tag Locking up my server

    <cfcatch type="any"> If you can't stand behind your troops, stand in front of them. Semper Fidelis Jim
  14. jdhilljr

    CFpdf Tag Locking up my server

    What version coldfusion are you using? I would recommend a try catch to see any errors. If you can't stand behind your troops, stand in front of them. Semper Fidelis Jim
  15. jdhilljr

    CFpdf Tag Locking up my server

    The path in your post would not be reachable by the coldfusion server. It can not go above the wwwroot folder. Try putting the pdf in the same directory with the file calling it and use this code. <cfpdf action="thumbnail" source="Test1.pdf" overwrite="yes" imageprefix="thumb"> If you can't...
  16. jdhilljr

    CFpdf Tag Locking up my server

    A little clarification on my response. If this is on a server on your computer even though the path is on your computer it would not be reachable by coldfusion. The file must reside within reach of the server. With most setups it would be 'C:\ColdFusion10\cfusion\wwwroot\' If you can't stand...
  17. jdhilljr

    fillable pdf - Is it possible?

    I use Coldfusion to fill PDF's with form fields and flatten them. Have not found a PHP tool for this. Since Coldfusion is an Adobe product they have an advantage. If you can't stand behind your troops, stand in front of them. Semper Fidelis Jim
  18. jdhilljr

    CFpdf Tag Locking up my server

    I would say your path is wrong for the source. source = "absolute or relative pathname to a PDF file|PDF document variable| If you can't stand behind your troops, stand in front of them. Semper Fidelis Jim
  19. jdhilljr

    Code uploads to the server but not inserting to the database

    Oh and you also have 2 commas together in your field list. If you can't stand behind your troops, stand in front of them. Semper Fidelis Jim
  20. jdhilljr

    Code uploads to the server but not inserting to the database

    Your have a few values missing an apostrophe $bidTitle and $status don't know if they are string or not. $sql="INSERT INTO bids...

Part and Inventory Search

Back
Top