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!

Search results for query: *

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

    CF Scheduled Task over HTTPS???

    Hi Can any one suggest how to set up and execute a CF Scheduled Task over HTTPS? It is pretty straightforward over HTTP i have done dozens of times. I am trying to set up a task to HTTPS://foo.cfm but it is failing. What needs to be done to configure this? Do I need to pass in a password/user...
  2. rockyroad

    Problem Installing CF8 on IIS on XP

    Hello, I am trying to install CF8 developer on XP with IIS. I have tried literally a dozen times and always the same result - when I go to CFIDE/Administrator (http://127.0.0.1/CFIDE/Administrator/index.cfm)... the .cfm is not parsed and the system tries to open the file with a text editor...
  3. rockyroad

    Loop over CF ValueList in ColdFusion

    Hi, I have the following javascript: <script type="text/javascript"> function show() { if((document.myForm.Category.options[document.myForm.Category.selectedIndex].value == '13') || (document.myForm.Category.options[document.myForm.Category.selectedIndex].value == '14' ) ||...
  4. rockyroad

    DHTML simple script works in Mozilla, not in IE...

    Hello, This simple code works fine in Mozilla FF but not in IE 6. Any idea why? Is there are different event handler I should be using, or is there some other problem? Ultimately I'll be applying this principal to a form whereby when specific option(s) are selected, hidden DIVs will become...
  5. rockyroad

    Parsing out substrings from a form field

    Hello, I have one form field - basically "Find Location by City, State or Zip". There needs to be just one form field. I will have a DB backend that will do the "lookup"... What I'd like to do is have ColdFusion do a preliminary parsing of the value of the string submitted in the field...
  6. rockyroad

    CSS Styles for printing tabular data.

    Hi, does anyone know of a goood standard .CSS print stylesheet for data tables? I have a good data table stylesheet I am using for screen, but all attempts I have made at adding style to these same tables for print has failed... most specifically, I cannot get any border attribute values to be...
  7. rockyroad

    Find and Replace &quot;TM&quot; junk character... HELP!

    Hi, I am building an RSS feed from DB query in CF.I have all my replace statements for junk chars working... except for the "TM" symbol. I can't seem to even get my replace statements to FIND the thing in order to replace it... I have all these... <cfset description = #replace(description...
  8. rockyroad

    Code for dynamic e- publishing over multiple web &quot;pages&quot;

    Hello I am looking to build or to integrate code that would allow a user to do the following... the user, through an administration screen, could enter long, long text, an essay that would span multiple pages if printed... store that text in DB, and then query on the DB to present the essay to...
  9. rockyroad

    CSS Fixed Layout Core: Should be a simple fix....

    Hi Goal is simple, fixed layout that spans a fixed, centered width, and full 100% height of browser. The code here works in IE but not Firefox, why? The column container column should be centered. What is the problem? [hairpull] <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"...
  10. rockyroad

    rounded corners - on one side?

    Hi, I found this example script --- http://www.html.it/articoli/nifty/nifty1.html for making .css rounded corners. Can anyone make a suggestion on direction to take to alter this script to make just the right side of the box rounded? Any help would be great. Thanks, RR
  11. rockyroad

    Using XSL to select specific page elements for RSS

    Hello, I have read somewhere that it is possible to use XSL to grab only specific information to populate the <description> element for an RSS feed. Consider an example where a query from a database is looking at something like this and then outputting as XML in RSS format: <p...
  12. rockyroad

    Correct Method of .CSS &lt;ul&gt; adjacent to IMG

    Hi, I am trying to figure out how to set correct margin between a left floated IMG and an adjacent <ul>. But I am getting different results in IE and FF. Does anyone know the correct way to do this? <style type="text/css"> #theDiv{width:800px; height:1000px; background-color:#00FFFF;}...
  13. rockyroad

    Use one checkbox to show/hide more than one element

    Hi, I have a script and have seen several scripts that use one checkbox, that can show/hide a <div> or other element... does anyone know how to apply similar code to allow multiple elements to to be shown/hidden when toggle checkbox on/off? Thanks, RR
  14. rockyroad

    SQL UPDATE with ColdFusion - inserting HTML???

    Hi, I need to run a query that will update a DB record with a long, rather complex string of HTML. Here is what I am after --- <cfset String =" <div id="tabs"> <ul id="tablist"> <li><a href="#tabs" onclick="expandcontent('sc1', this)">one</a></li> <li><a href="#tabs"...
  15. rockyroad

    Show/Hide DIV on change of SELECT OPTION

    Hello, I have sucessfully implemented a script that will show/hide a DIV of content depending on which radio button in a form is selected... I am looking for a script, or a resource, or some direction on how to do the same, only with <select> menu... when a specific <option> from a <select>...
  16. rockyroad

    .CSS Menu - Mac &quot;Flicker&quot; Problem - HELP PLEASE!!!

    Hello, Some background: I am redesigning a public-facing website and in doing so with the goal of XHTML compliant, clean, .CSS-based, accessible code. Part of the code will be the implementation of a .CSS based global drop down menu system. The code I am writing dynamically creates a nested...
  17. rockyroad

    .CSS Menu - Mac Safari &quot;Flicker&quot; Problem driving me insane!

    Hello, Some background: I am redesigning a public-facing website and in doing so with the goal of XHTML compliant, clean, .CSS-based, accessible code. Part of the code will be the implementation of a .CSS based global drop down menu system. The code I am writing dynamically creates a nested...
  18. rockyroad

    How to recall position on page

    Hello, I have seen websites where you can navigigate away on a link and come back and the brower "recalls" your position on the page. An example - http://www.archive.org/browse.php?collection=etree&field=%2Fmetadata%2Fcreator where if you click on a link and then use back button, you are right...
  19. rockyroad

    .CSS/javascript based tab menu... so close!!!!

    Hello, I am building a .CSS based menu based on two tutorials I have found.. the first is: http://www.alistapart.com/articles/slidingdoors/ ...which I referenced for building the tab's graphics... but this tutorial didn't delve into the javascript/dhtml aspect of the navigation... for this I...
  20. rockyroad

    Insert database query looping through claendar dates

    Hi, I have a basic CF calendar application which uses an Access DB backend. What I need to do is write a CFQUERY Insert query which will loop through all the actual calendar dates starting April 1 of this year and ending Dec 31st. Is there a server variable or some other variable that is aware...

Part and Inventory Search

Back
Top