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

    New Forum - Fusebox

    A Fusebox forum has been started here on Tek-Tips. I recommend all "fusers" to join up so we can begin helping each other. Best Regards, FelixTKatt FTK
  2. felixtkatt

    fusebox 3.0 and coldfusion mx

    There is a fusebox mailing list on topica. They often talk about such problems. Check there. As far as I know, it has not been modified for MX yet, but there are many work-arounds that you can use. FTK
  3. felixtkatt

    What are the CGI Variables and what do they do

    SERVER_SOFTWARE The name and version of the information server software answering the request (and running the gateway). Format: name/version SERVER_NAME The server's hostname, DNS alias, or IP address as it would appear in self-referencing URLs. GATEWAY_INTERFACE The revision of...
  4. felixtkatt

    Question with Dynamically Filling Form Elements

    I did something that is almost identical to what you are trying to do. In my case, I had the first select tag choose a group of contacts and the second select had the individual emails of each member of the group. All of my select tags were (however) populated from a database. Here is the...
  5. felixtkatt

    inserting images in an access database to be viewed in a cf template

    Is your question "How do I get an image stored in a database to be displayed on the page?" My answer would be to not store the images (or image files) in the database, but keep the filenames in the database instead. That way, when you want to reference the images in your template...
  6. felixtkatt

    Email Address Validation: Non-CFFORM

    I guess I should learn regular expressions, huh? :-P Thanks for your help, that CFIF was exactly what I needed. FTK
  7. felixtkatt

    Email Address Validation: Non-CFFORM

    I'm attempting to create a (very) weak email validation bit using a simple CFIF and a few string functions. Here's the code: <cfif (FindNoCase(emailFrom, &quot;.com&quot;) IS NOT 0) OR (FindNoCase(emailFrom, &quot;.net&quot;) IS NOT 0) OR (FindNoCase(emailFrom, &quot;.org&quot;)...
  8. felixtkatt

    CFPOP and using From instead of Replyto

    That makes sense. Thanks for the tip. FTK
  9. felixtkatt

    &lt;input type=&quot;image&quot;&gt; and onMouseOver

    After getting this to work (or so I thought), I realized that the submit() refuses to work on Macs. Don't know why, but it doesn't (both in Netscape and IE). In the spirit of sharing and learning. I am going to publish a page on my site for others to pour over and figure out what is up with...
  10. felixtkatt

    &lt;input type=&quot;image&quot;&gt; and onMouseOver

    The final code I ended up using was: <script language=&quot;JavaScript&quot;> <!-- img1On = new Image(); // Active Images img1On.src = &quot;deleteOn.gif&quot;; img2On = new Image(); img2On.src = &quot;replyOn.gif&quot;; img3On= new Image(); img3On.src = &quot;replyallOn.gif&quot;; img4On...
  11. felixtkatt

    Auto Fill Forms IE

    How is the data being passed? Through a URL, through a form on a previous page, etc? FTK
  12. felixtkatt

    &lt;input type=&quot;image&quot;&gt; and onMouseOver

    I ended up replacing the input tag with an image tag and using the onClick method to submit the form instead of the input tag. Thanks for your help. FTK FTK
  13. felixtkatt

    &lt;input type=&quot;image&quot;&gt; and onMouseOver

    I'm trying to create a simple image swap onMouseOver and onMouseOut. The only twist is that the image I want to swap is the submit button on a form. I assume I have to link the input tag itself (because the onMouseOver method belongs to the anchor tag) but I can't get the src parameter to...
  14. felixtkatt

    CFPOP and using From instead of Replyto

    I fixed this problem using the cf_extractemail custom tag. In case anyone is curious... FTK FTK
  15. felixtkatt

    SQL 'WHERE' CLAUSE IN INSERT STATEMENT PROBLEM

    If you are saying &quot;WHERE PRIKEY=1&quot;, that means there is data in the table already. Why are you using insert instead of update? FTK
  16. felixtkatt

    CFPOP and using From instead of Replyto

    I find this curious and can't figure out what is going on. Perhaps the email server I am using causes the problem, but I can't tell. Perhaps someone here can. I want the &quot;mail_to&quot; field to populate automatically based upon the message retrieved. However, the input tag is not...
  17. felixtkatt

    Check Box Problem

    Now here's a follow-up question. I'm trying to unckeck a checkbox (yes/no) field in my database by using a hidden field with the value of 0 (or No or FALSE; I tried them all.) However, the database is not unselecting the checkbox in the database. I've tried with both CFUpdates and SQL Updates...
  18. felixtkatt

    Removing tagged items from a query

    I'm assuming that the solution you proposed will rip out the tags, not the text between them. But that's ok! I realized (read as: &quot;was told&quot;) that if the bolds are replaced with comment tags, that will get rid of any of the text I wanted to rip in the first place. Thanks for all...
  19. felixtkatt

    Removing tagged items from a query

    I have a query that pulls a paragraph of HTML text from a database field. In that text there are italicized and bolded elements that I would like to have removed before I display the text on the page. 1. Would it be better/easier/classier to do this in CF or JavaScript? 2. How would I go...

Part and Inventory Search

Back
Top