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

    Getting Started with Stored Procedures

    Thanks, I will look into these issues. Hopefully, I'll have time to remedy all of these things...
  2. fusionaire

    Getting Started with Stored Procedures

    impulse24, Thanks for the reply. Here's the issue: I have an area where a user can unlimited text into a "text" field in the database. However, on my testing, the text gets truncated rather quickly, and any time I try to add more text, the site goes thru the process without any errors, but it...
  3. 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>...
  4. fusionaire

    anyone use cfm-resources.com

    I used to use them for my personal site, but they are extremely unreliable, and take forever (if) and when they reply to your issue. They have so many different &quot;times&quot; to login in that I have a site on there and I have no idea how to access it. STAY AWAY FROM THEM!!!
  5. fusionaire

    IS Null in CF

    Have you tried using <cfif Not IsDefined(&quot;&quot;)>?
  6. fusionaire

    CFMAIL question

    Are you executing the query before putting the results into the mail? You may need to do something similar to this: <cfquery datasource=&quot;#application.dsn#&quot; name=&quot;x1&quot;> select * from email_test </cfquery> <cfinclude template=&quot;build_body.cfm&quot;> <cfmail...
  7. fusionaire

    Sending a ColdFusion e-mail in both plain text and html

    If you would be so kind to pass it along to me as well, that'd be fantastic. info@pontifixx.com Thanks.
  8. fusionaire

    cfmail question please help

    JKA~ First off, you need to run your query to get your results before you run cfmail. So it would look something like this: <cfquery datasource=&quot;#application.dsn#&quot; name=&quot;YOURQUERY&quot;> select itemnum, description, datereceived, catalognum from invy where datereceived =...
  9. fusionaire

    CFFILE error on Macs

    Thanks for the tip. I was able to resolve the issue.
  10. 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#>...
  11. fusionaire

    convert dynamic page to pdf

    Is the tag installed in the 'custom tag' folder on the CF Server? I've used that tag in the past and that was our problem....
  12. fusionaire

    where to find built-in variable reference??

    I've been using Cf since version 4.0, and in the 4.5 version, they included a quick reference guide with the software package. It's 30 pages long, and it has many of the lesser-known variable attributes listed in it. I'm not sure if you can still get it, but it has a great deal of information in...
  13. fusionaire

    CF running on MAC?

    Well, thanks for all the help.
  14. fusionaire

    CF running on MAC?

    Well, thanks for al the help.
  15. fusionaire

    CF running on MAC?

    Does anyone know of you can install cf studio 4.5 onto a MAC OS? (ver 9.1)
  16. 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
  17. 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...
  18. fusionaire

    CFSCHEDULE - working TOO WELL!!

    Nicknash~ That was the answer to my problem, thank you very much. Fusionaire
  19. 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?
  20. 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...

Part and Inventory Search

Back
Top