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

    RSS Feeds from Multiple Servers/Sites

    1. Update department.xml by modifying department and article information enclosed within <brackets>. <?xml version="1.0" encoding="Windows-1252" ?> - <rss version="2.0"> - <channel> <language>en</language> <pubDate>8 Sep 2007 23:04:19 GMT</pubDate> <title>department title</title>...
  2. mickeyg

    parameter passing

    Rewriting mycount() to accept a 2nd parameter instead of using a hardcode variable (pwdcount). Logincount is coming back as zero when the email address is filled in. What am I doing wrong? TIA, Mickey Caller... function valdmlogin() { var myform = document.forms[0]; loginErrorMsg =...
  3. mickeyg

    sort table but ignore thead and tfoot

    Table code looks like this... <table class="datatable" id="datatable" cellspacing="0" cellpadding="0"> <thead> <tr> <td class="columnheaderfirst" rowspan="2"><a href="javascript: sortTable(0)">Publication</a></td> <td...
  4. mickeyg

    sort table but ignore thead and tfoot

    I have tried unsuccessfully to modify the standard table sort routine (http://www.tek-tips.com/faqs.cfm?pid=216&fid=3599) to ignore anything inside of thead and tfoot tags. The issue is I have a multi-row header and repeat it as a footer that keeps getting resorted instead of just resorting my...
  5. mickeyg

    linking parent child failing

    I create the parent record (tblAngler) correctly but am not creating the child records (tblSponsor and tblSponsorLink). Am I refinding my record correctly? Is it not there yet--scoping? Thank you for your assistance, Mickey Code: <!-- make sure Angler does not already exist -->...
  6. mickeyg

    redirecting submit button action

    On a form (onSubmit="return valform(this)"), I have a input type="submit" button to go "Back" and images with links for "Continue" and "Cancel". Back is not an image because I was having issues it always wanting to "Continue". Pressing "Enter" in the middle of the form, fires the "Back" action...
  7. mickeyg

    Site Test Emergency

    I am on IE 5.0 and I have to move my horizontal scrollbar to the middle before I can see your logo (1024 x 768 resolution). &quot;Share Your Tips With Yesodot&quot; type blocks have text all on one line so they end up taking up about 75% of the screen space. I guess I would start by looking at...
  8. mickeyg

    tabless layout--fixed center column

    Recently making my first attempts at tableless layout (after reviewing glish.com and Eric Meyer's css). I want the center column to be fixed and not allow the rightcontent (images) to overlay the center column. View http://www.wifom.com at 800x600 resolution. Netscape (7.01) issues: right...
  9. mickeyg

    IE, Mac IE and Netscape 7.1

    I am using IE 5.0 and your &quot;test&quot; text is being overlayed by the nav bar.
  10. mickeyg

    Printer Formatting Help

    I have used this before to print out watermarks... <style media=&quot;print&quot;> .myBackground{ display:inline; border:0px; color: #999999; width:100%; text-align:center; } </style> Haven't tried it using a background-url image, but maybe it's an idea. Hope...
  11. mickeyg

    create pdf from html page?

    I have used PDFMailer a few times http://www.gotomaxx.com/cgi-bin/gm/site.cgi?file=mp_uebersicht
  12. mickeyg

    netscape (7.1) window.open not working

    UGHHHH! Thanks Jeff, yes I did. That had completely slipped my mind. I'll give you a star and stop banging my head on my head. Mickey
  13. mickeyg

    netscape (7.1) window.open not working

    function showAcct() { alert('dude, let go of my browser!'); nw = window.open('acctinfo.html?stateInfo=qkdbhYaUfWaPddlN9034|14&closebutton=yes&prompt=email','wacctinfo','width=450,height=350,left=250,top=100,menubar=no,scrollbars=yes,status=no,toolbar=no,resizable=no'); nw.focus(); } I fire...
  14. mickeyg

    object expected

    Not seeing how I have an object expected error. A second pair of eyes reviewing it is much appreciated! If I just alert the length of the radio button I receive the correct value. I only error when I have the for loop. <html> <head> <title>Find Lakes</title> <meta...
  15. mickeyg

    function parameter parsing

    When I call my function I am not finding a match. However, if I just use my commented out loop, I find the correct match. function dfltreason() { var mydfltreason = searcharray(publarray,&quot;subscription&quot;,mysub,&quot;dfltreason&quot;); /**** // loop through publication array to find...
  16. mickeyg

    code reuse

    Ahhh...I think I found what I need: #CGI.query_string
  17. mickeyg

    code reuse

    I want to combine my two member profile screens instead of having a profileadd.cfm and profileupd.cfm. I started down the path of looking at my Session.UserID to default in data during &quot;modify&quot; mode, but this will not work right if that person wants to &quot;add&quot; someone. Should...
  18. mickeyg

    function parameter parsing

    I am attempting to write a generic function searcharray. However when I return from it, my value is undefined. I am expecting my array length to be 3 but is 9 when I use the alert in my function. Is anything wrong with my syntax? Everything works find when I use my hardcoded inline code...
  19. mickeyg

    cfml tidy?

    Is there such a thing a CFML Tidy like HTML Tidy? Sure would be nice to run a program that would properly indent CFML and capitalize CFML/SQL reserved words. On Dreamweaver MX I only see the standard HTML/XHTML fix tools. Thanks, Mickey
  20. mickeyg

    Site Review

    Nicely laid out web site. I would agree with the opacity comment--that will help readability significantly. The only other thing that struck me was having the navigation links at the bottom on the home page, but at the top for the rest of the site. I think for usability it would be best to...

Part and Inventory Search

Back
Top