Despite specifying my page dimensions, the output pdf document indicates a size of 8.3x 11.7. This occurs even with no content, as in the following. Any...
Could the extra .7 inches be coming from the : <BODY LINK="#CC0000" VLINK="#CC0000" TEXT="#000000" TOPMARGIN=0 LEFTMARGIN=0 MARGINWIDTH=0 MARGINHEIGHT=0> test ...
Anybody here know PHP? Can you convert the following code to CFM? At least give me some ideas on what the PHP code trying to do? Thanks <?php $allowed_formats...
I have a table in sql server. The column I am working with is called unitVale and is defined as datatype decimal, size 9. This column, whne entered in the...
I need to query a transaction table to get the last transaction for each ticket number. Normally, I would just do somthing like select max(txn_id) as...
I'm using the usable forms code on this page http://www.quirksmode.org/dom/usableforms.html. When I make a radio button selection it displays the related...
You have the attribute null set to yes... It will always be NULL. <cfprocparam type="In" cfsqltype="CF_SQL_DATE" null="Yes" value="#arguments.PAYDATE#"> try:: ...
I found this code off the internet and it works fine, and it seems easy to maintain. There is an add and delete button and it just adds and deletes extra rows....
Hello all, I was wondering if I could get some recommendations as to what has been most helpful for you in learning ColdFusion 8. I was following the training...
Hi Bruce, I have to say that the CF 8 Web Application Construction Kit Series 1-3 authored by Ben Forta, Raymond Camden, Charlie Arehart,etc... is the way to...
 Hi CFLOG tag is not creating a log file and also not writing to exixting log file. There is no error messge. I am using cfmx 6.1 ..any clues? "... in all...
If you are looking for ColdFusion, and not absolutely ColdFusion 8, I would also highly recommend the other Lynda.com class, ColdFusion MX Training by Joey...
Hi Hank, Your query gives the out put as : Customerid: noof orders. This is not what I was asking. What I need is the total count grouped by numberof orders ...
What I need to know is this: how many customers placed 1 order, how many placed 2 orders, how many placed 3 orders etc. in this format: No of Single Orders:...
You could do the following... select count(*) as cnt, customerid into TABLE tmpTable from OrderTable group by customerid select count(*) as newCnt, cnt from...
I query a table by a part number and retrieve all the line items for that part number. I then display in a table using <cfoutput query>. At the end of each...
My field name is deliveryNumber and query name is qryView and the unique identifier is gfmPartNumberID. So my form would have this ? <input type="text"...
I have a similar table. I hope this will make sense for you. I did this in Access using my own table, but you can probably pull out the logic: SELECT...
I keep getting this error, can anyone help me out. Error: Line: 638 'document.getElementById[...]' is null or not an object. Which corresponds to this line...
Just wanted to hear from some other folks that may or may not be using a "recursive" approach to table (SQL Server) set up for managing multiple categories and...