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 wOOdy-Soft on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by CFtaxtron

  1. CFtaxtron

    CGI Timeout

    Help, I have setup a basic fork and everythig runs fine until the end when I get the error message. CGI Timeout The specified CGI application exceeded the allowed time for processing. The server has deleted the process. Here's the code that I'm using. #! d:\perl\bin\perl.exe print...
  2. CFtaxtron

    How to add two hex numbers?

    Thank you, thats what I wanted to do. Got so deep into this project my brain is turning to jello. Thanks Tim
  3. CFtaxtron

    How to add two hex numbers?

    I need to add two hex numbers together and having a problem I can't figure it out $digest = md5_hex("qawsedr"); $digest1=$digest+33C93DC8827080D429A127089CEC3745; $digest2 = md5_hex($digest1); I get the error message Bareword found where operator expected at...
  4. CFtaxtron

    CSS2 - the Aural attribute

    Try downloading the demo from this site. http://www.elantts.com Tim
  5. CFtaxtron

    Set each cells colors for the hyper links

    change the background color from white (ffffff) to another colour for you can see the links on your page. ;-) I believe page does exactly what you want without any other changes <body bgcolor=&quot;#ffffff&quot; leftmargin=&quot;0&quot; marginwidth=&quot;0&quot; topmargin=&quot;0&quot...
  6. CFtaxtron

    Getting Dropdown Value using Netscape?!

    With Netscape you need to retrieve the value of the option object that was selected from the select box. Here's a new version of your function. Tim function getValue() { var x; iSelected = document.form1.select.selectedIndex; x =...
  7. CFtaxtron

    Javascript to Detect Flash Plugin

    Here you go, works with both Netscape and IE, in IE it uses VBscript to detect the plugins via activex. Tim <html> <SCRIPT language=Javascript> <!-- hide script /* Plugin Detector() */ var WM_startTagFix = '</'; var msie_windows = 0; if ((navigator.userAgent.indexOf('MSIE') != -1) &&...
  8. CFtaxtron

    Image source with onClick event

    I have tested your code by adding an alert to the end of the onclick and I see that the value is getting changed to DUMMY, try it and see what you get. onclick=&quot;document.orderinf.TASK.value='DUMMY';alert(document.orderinf.TASK.value);&quot; Tim
  9. CFtaxtron

    Set each cells colors for the hyper links

    Works for me on your page. Try removing the four exta style's that are setting the anchor style. Then copy in Arion123 and set the class in the link. Tim
  10. CFtaxtron

    Clickable text to select a Checkbox

    Try it like this, for some reason I cannot get it to work as a function though, but this works <A href=&quot;javascript:void(0)&quot; style=&quot;TEXT-DECORATION: none&quot; onClick=&quot;if(WantAutoReply.checked==true) WantAutoReply.checked=false; else...
  11. CFtaxtron

    None functioning META tag ...

    Grabbed this from http://www.drclue.net window-target: windowname -------------------------------------------------------------------------------- This header will force the document to load in the window named window_name, or if such a window does not exist, one will be created, and then the...
  12. CFtaxtron

    Help parsing html file

    Thank you, worked like a charm Tim s-)
  13. CFtaxtron

    Help parsing html file

    Someone help me and tell me why this sucker isn't displaying the title of the returned page. use LWP::Simple; $url = 'http://www.embanet.com/indexflash.htm'; # this will get the HTML text $content = get($url); # parse the Title tag from the HTML while ($content =~ /<title.*?\/title>/gis) {...
  14. CFtaxtron

    How to join tables from different datasources

    I believe Lotruth has two two different databases accessed through two different datasources so he would like to do something like <cfquery name=&quot;my_query&quot; datasource=&quot;datasource1, datasource2&quot;> but of course that code won't work. :-( I'm curious to know how to do this as...
  15. CFtaxtron

    Help with complex SQL statement

    Try select * from tablename where HomeTeam= 'TeamName' or VisitingTeam = 'TeamName' Tim develop@embanet.com

Part and Inventory Search

Back
Top