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 John Tel 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 econnections

  1. econnections

    Problem accessing folders below cfdocs from web

    Hello, I have just upgraded our server from Coldfusion MX 6.1 to 7 and I find that all the programmes in myapps that site below cfdocs cannot be accessed using my domain name. They can only be run if I use 127.0.0.1 or localhost. This all worked fine before the upgrade. If I move the programmes...
  2. econnections

    Strange Connection Requests

    Dian, Thank you for the reply. The link explains exactly what I needed to know. Great job
  3. econnections

    Strange Connection Requests

    Hi, I have McAfee installed on my w2000 and the logs show services.exe has been for months trying to connect to 192.175.48.1 port 53 (prisoner.iana.org, Redwood City, CA) and 87.106.71.163 port 53 (e.dnsvr.co.uk located in Germany). It tries to connect to the first IP address three times and...
  4. econnections

    Multiplicaton Error or Bug

    I noticed an error in one of my reports. I simplified the problem to the lines shown below. I have only tried this with IE6.0 document.getElementById('text1').value = 0.4 * 33; ANSWER 13.200000000000001
  5. econnections

    Automated CF Script Help?

    Many thanks. This looks like what I need. Graham
  6. econnections

    Automated CF Script Help?

    Can anyone advise how to automate the starting of a cfm programme. The intention is that the programme I have written with tidy up a database and collect cfpop mail for nightly processing. I don't know where to start to look for help with this problem. Some help would be much appreciated...
  7. econnections

    Can you use Javascript to change Style properties

    In the simple example shown below I want to be able hide column3 by calling a function that changes the properties of style1 from .style1 {display:block;} to .style1 {display:none;}. Is this possible? Any help would be appreciated. <style> .style1 {display:block;} </style> <table> <tr>...
  8. econnections

    DIV's and onclick

    I'm having a trouble using onclick with DIV's and hope somebody might be able to resolve my problem. DIV 1 is used to position an image on the page. DIV 2 contains an button image. DIV 2 also contains an onclick. My intention was when an onclick event ocurred on DIV 2 the button image would...
  9. econnections

    Help with creating a DIV using appendChild

    With a little help from another forum I found a way to add a new element to a document using a javascript function and then hide the element (DIV) with another function. I share the code as it may be helpful for other users: <html> <head> <script type="text/javascript"> function createDIV()...
  10. econnections

    Help with creating a DIV using appendChild

    Hello, Is it possible to append a DIV or SPAN to an existing document using the appendChild command? And if so how would I do this? Thanks Graham
  11. econnections

    Displaying Code in Textarea?

    Sorry, its actually running the code. After the last line on my page there is a textarea and submit button. So the question is how do I stop the code from running?
  12. econnections

    Displaying Code in Textarea?

    Hello, I'm creating a TechNotes DB where I can store solutions to problems I have had when coding. It allows me to copy code into a Textarea which is submitted to a meno field in an MS Access DB. The problem is then viewing the code when retrieved from the DB without it running in the page. To...
  13. econnections

    Assigning onClick to TD

    Can this me modified to it is only applied to certain TD's within the table. ie using <TD class='style1'> I'm not sure what to put in the <style> section to limit the behaviour. Is it: <style> TD#style1 {.... }
  14. econnections

    Assigning onClick to TD

    Thanks Jeff. I've just written that into my test programme along with a variance for onmouseover: document.getElementById('x').onmouseover= function(){ this.style.cursor='pointer' }; Great! thanks again.
  15. econnections

    Assigning onClick to TD

    Hello, Is it possible to assign onclick to TD using a function? The reason I ask is that my table represents a calander and I only want to cells populated with dates to have onclick assigned. The number of cells vary depending on the month. I know I can assign values to a cell using...

Part and Inventory Search

Back
Top