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. htower

    Coldfusion Stats Application

    what kind of information do you want to capture? what are you trying to do? ---------------------------------- htower if( !succeed ) try( );
  2. htower

    Daylight Savings Time

    yep kjmurphy711 is correct just follow the instructions on that techNote ---------------------------------- htower if( !succeed ) try( );
  3. htower

    cfcs and udfs

    im not saying a udf doesnt have it's place anymore... im just saying it is cleaner to build them like a componet.. <cffunction name="CapFirst" returntype="string" output="false"> <cfargument name="str" type="string" required="true" /> <cfset var newstr = "" /> <cfset var word = "" />...
  4. htower

    Daylight Savings Time

    what r u running... standalone or Multi-server configuration... ---------------------------------- htower if( !succeed ) try( );
  5. htower

    cfcs and udfs

    in my eyes, a udf is old school.... you can create a udf.cfc page with all your functions in it... instanciate it <script> objUDFs = createObject('component','cfcs.udfs'); </script> then you can call your function like you would with a udf...
  6. htower

    Gallery Navigation Help - Please

    this is for you AJAX Buffs...... http://www.cbronline.com/article_news.asp?guid=484BC88B-630F-4E74-94E9-8D89DD0E6606 ---------------------------------- htower if( !succeed ) try( );
  7. htower

    count on cfif

    or better yet use switch case statement it reads faster. <cfswitch expression="#vComply#"> <cfcase value="Compliant"> <cfset color="0000FF"> <cfset compliant=compliant+1> </cfcase> <cfcase value="Concurrent"> <cfset color="990000"> <cfset...
  8. htower

    CF hosting companies

    i use crystaltech and hostmysite.com ---------------------------------- htower if( !succeed ) try( );
  9. htower

    document uploading issue

    the reason for doing that is to get away from descriptive names....... you dont want to go through the direcorty structure to get a file you want the Application to get the file for you.... this way you dont get the human hands on it to mess it up... you should have a descriptive title for...
  10. htower

    Sort Date Question

    What database are you using. I know in Oracle you can specify Nulls First. ---------------------------------- htower if( !succeed ) try( );
  11. htower

    document uploading issue

    what i like doing is uploading the file to the directory where i store files then i add a record into a db (where i store my documents for quick reference) then i rename the file just uploaded to the primary key for the documents. so thisIsTHeOldFIleName.xls and change it to 25.xls...
  12. htower

    Excel file not forcing a download cfcontent

    Try adding a file path in the cfcontent tag <cfcontent type="text/msexcel" file="fullPathtoTheFile.xls"> ---------------------------------- htower if( !succeed ) try( );
  13. htower

    Resizing Images / Creating Thumbnails

    ive used this one for a few years now and it is really Fast and compresses very good... http://www.chestysoft.com/jpegresize/manual.htm
  14. htower

    Request For Comments on Database Security

    here is a good link to read on cfqueryparam: http://www.adobe.com/devnet/coldfusion/articles/ben_forta_faster.html
  15. htower

    cfdocument css

    have you looked at CASE.. in your stylesheet what si the case of the class. what case you you using in your code to display.. example. STYLESHEET ******* .header{whatever} ****************** in code <div class="Header">Text Here </div> also check the case of the .css file and where you are...

Part and Inventory Search

Back
Top