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

  • Users: fusionaire
  • Content: Threads
  • Order by date
  1. fusionaire

    Getting Started with Stored Procedures

    OK, here's the deal. I've never even used a stored proc, and I need to install one in order to resolve a text filed issue that I'm having. I have tsweb access to the server, it's using SQL Server 7, IIS 5.0, Windows 2000 professional. I am coding in ColdFusion, and I am using the <textarea>...
  2. fusionaire

    CFFILE error on Macs

    First, here's the code: <cfif IsDefined (&quot;form.pic2&quot;) and form.pic2 is not ''> <CFFILE ACTION=&quot;Upload&quot; FILEFIELD=&quot;pic2&quot; DESTINATION=&quot;d:\HTTP\mywebsite\new\images&quot; accept=&quot;*/*&quot; NAMECONFLICT=&quot;overwrite&quot;> <cfset pic2=#file.serverfile#>...
  3. fusionaire

    CF running on MAC?

    Does anyone know of you can install cf studio 4.5 onto a MAC OS? (ver 9.1)
  4. fusionaire

    Need to grab all text before the @ symbol in email

    Does anyone know a way in CF to grab all the text before the @ sign in an email address? Thanks in advance. Fusionaire
  5. fusionaire

    Dynamically populating second dropdown from first dropdown, same page

    I need to dynamically populate a second dropdown menu based on what the user selected in the first dropdown. The issue is that these dropdowns have to remain on the same page, and I can't refresh the page as it is a large data-entry form. I think I may need to use an array, but I have little...
  6. fusionaire

    previous next functionality

    Does anyone know how to make &quot;previous&quot; and &quot;next&quot; links that are from a db query without having to use custom tags?
  7. fusionaire

    CFSCHEDULE - working TOO WELL!!

    Here is my issue: I am just trying to test the cfschedule functionality, and I think I am doing everything properly, but all I need is for the cfschedule to run only once a day, but it is running once a minute! Any advice will be much appreciated. <CFSCHEDULE ACTION=&quot;UPDATE&quot...
  8. fusionaire

    OnClick Events

    I have a site that uses images to let the user navigate through the site. The problem is, I have pages that contain forms on them ,so I need an &quot;onClick&quot; event of an image so that if they click on the &quot;clear&quot; button, it will actually clear the data from the page. Here is the...
  9. fusionaire

    cfmail query error

    I cannot figure out why this doesn't work, any help would be GRAND.<br><br>HERE IS THE CODE:<br><br>&lt;cfinsert datasource=&quot;#session.dsn#&quot;<br> tablename=&quot;writecustomers&quot;<br> formfields=&quot;name, address, city, state, zip, country, phone, fax, email, needed, type...
  10. fusionaire

    Query Error

    I have a query that I am trying to run, I believe I have all the necessary elelments there, but even when I enter the correct information, CF still goes to the CFLocation page. Here is the code:<br><br>&lt;!-- ZIPCODE VALIDATION TEST --&gt;<br> &lt;cfoutput&gt;#FORM.Zip#&lt;/cfoutput&gt;<br>...
  11. fusionaire

    Evaluate Functionality

    I have a site in which the user's input is pulled out on the final page, and then those values are either multiplied or added to, depending on the user's choice. Then at the end, all those values must be added and multiplied together. I am having trouble with CF and the multiplication after an...
  12. fusionaire

    CFIF properties...

    If a CFIF criteria is not met, does ColdFusion process that information? Or does it simply pass over that statement?<br><br>It seems that is unclear in any Allaire documentation that I have been looking at.
  13. fusionaire

    DateCompare?

    Among the three sites that I am currently responsible for, the client now needs a way to check today's date and year versus a user's input for thier birthday. I have never tried anything like this, and even though I have the CF Bible in hand,reading all about DateCompare, DateDiff and DatePart...
  14. fusionaire

    AutoSend CFMAIL...

    Can you tell a CF server to automatically send emails on a certain date or time?
  15. fusionaire

    Updating Files by time?

    I have a site on which the member names change at diferent times in the course of a year. Does anyone know a good way to use code to run queries on these particular dates? Then, the updated query information will be displayed on the site.<br><br>Thanks in advance
  16. fusionaire

    Access Vs SQL Server

    I am in the process of setting up an elaborate site that will need to input user data into five seperate databases, as well as query the information to be displayed later. I think in total, for each database I will have about 50 tables each, but most of those tables will be for reading...
  17. fusionaire

    Updating a profile page and...

    I have a page where users can update thier profile. Trouble is, right now I have thier &quot;userID&quot; to be the unique identifier in the database when I reference to it in the query statement. I thought about sessionId, but I can't input that value because the client wants to be able to...
  18. fusionaire

    Can you use CF instead of Javascript for an "On Hover"?

    I am attempting to to use ColdFusion instead of Javascript to display text when a user &quot;hovers&quot; over my image. This way I can create smaller file to display as opposed to loading up a huge image file that also includes the text.<br><br>Any ideas would be helpful
  19. fusionaire

    How do I syntactically validate a variable name

    this is the error message that I am getting:<br><br>Error Diagnostic Information<br>Parameter 1 of function IsDefined which is now &quot;209.195.159.132&quot; must be a syntactically valid variable name<br><br>The error occurred while evaluating the expression: <br><br><br>&nbsp;IsDefined...
  20. fusionaire

    Using AUTONUMBER as a CF variable

    I have a shopping cart Application in which I have to set a field called &quot;salenumber&quot; to the value of AUTONUMBER. I have AUTONUMBER set up as my Primary key because the user enters multiple order amounts into the database. How can I query the value(AUTONUMBER) from the Access db for CF?

Part and Inventory Search

Back
Top