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 strongm 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. crafter

    cflock - when to use it

    The subject of locking has been extensively discussed on the CF-Talk forum. House of Fusion hosts CF-Talk at http://www.houseoffusion.com. If you check the mail archives you're sure to find many threads, some of which include links to further information.
  2. crafter

    multiple file uploads

    Whoops. Should've read your post a little better. Hope the recommended custom tag was of help.
  3. crafter

    multiple file uploads

    Marc, Here's some code straight from &quot;Mastering ColdFusion 4.5&quot; that might help. This example assumes you will use a form to create a file upload field: <FORM ACTION=&quot;upload.cfm&quot; METHOD=&quot;POST&quot; ENCTYPE=&quot;multipart/form-data&quot;> File: <INPUT...
  4. crafter

    Euro -&gt; formaating

    For something like this, you may want to look into the use of regular expressions. Regular expressions are used to check for a distinct string patterns. I've used JavaScript to validate form entries like email addresses, phone numbers, etc. ColdFusion's regular expressions feature is a bit...
  5. crafter

    SQL Woes

    Given the fact that you're doing what you're doing the way you're doing it, your database design may be hindering your progress. A well-designed database avoids redundant data. I agree with Marc. More information is needed to help you out.
  6. crafter

    HTML editor needed on a form

    Try ezEdit. It's powerful and FREE. Available at http://www.siteobjects.com.
  7. crafter

    QUERY IN BETWEEN DATES

    Try this: <CFQUERY NAME=&quot;Displaylist&quot; DATASOURCE=&quot;DynoRunEx&quot;> SELECT * FROM RunData WHERE 1 =1 <cfif #form.SearchMake# NEQ &quot;All&quot;> AND RunData.Make LIKE '%#SearchMake#%' </cfif> <cfif #form.SearchModel# NEQ &quot;All&quot;> AND RunData.Model LIKE '%#SearchModel#%'...
  8. crafter

    QUERY IN BETWEEN DATES

    SQL provides the BETWEEN condition to test whether a value falls between two other values. Your query would be something like this: SELECT year FROM table WHERE year BETWEEN #Year1# AND #Year2# Hope that helps.

Part and Inventory Search

Back
Top