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 bkrike 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: mickeyg
  • Content: Threads
  • Order by date
  1. 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 =...
  2. 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...
  3. 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 -->...
  4. 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...
  5. 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...
  6. 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...
  7. 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...
  8. 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...
  9. 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...
  10. 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
  11. mickeyg

    date format when insert

    I am getting an &quot;Error Diagnostic Information ODBC Error Code = 37000 (Syntax error or access violation) &quot; error when I attempt to assign a value to a date field. Everything works correctly if I take the date field out. See code: <cfset MyDate = #Form.Date#> <!--- insert a new record...
  12. mickeyg

    Calc function not setting value

    I have an order form with about 10 line items and am trying to write a reusable function for line price calculating. I pass in the price and fieldname prefix to my function, but it is not updating my 'total' field. It only updates the 'total' field when I hard code the left hand side of the...
  13. mickeyg

    simple form - email results

    It has been a long while since I have done ColdFusion. I would like to email the results of a form and give &quot;a thank you&quot; message. form declaration is: <form action=&quot;mailto.cfm&quot; method=&quot;post&quot; name=&quot;mglures&quot; id=&quot;mglures&quot;> mailto.cfm: <cfmail...
  14. mickeyg

    Site Redesign/Review

    I redesigned this site http://www.sportsmenbassmasters.com last January, but am looking to tweak it some more now. Feedback is greatly appreciated, Mickey
  15. mickeyg

    Using Split to create an array

    I am trying to loop through a combo box and create an 3 component array that I will later use to dynamically rebuild the combo box based on another combo box value. I am not having success using the split command. Here is my code: <form> <table width=&quot;300&quot; class=&quot;formdata&quot...
  16. mickeyg

    Referrer Log

    I would like to output a log file that contains the http referrer and possibly a few other pieces of info such as browser type and current time. Any suggestions? Would Perl be a good choice? Thanks for you input, Mickey
  17. mickeyg

    Excel: finding 2nd highest value

    In Excel I can use the max function to find the highest value, but how can I find the 2nd highest value in a column? Thanks in advance, Mickey
  18. mickeyg

    Not an object error

    I have a button that I want to click to copy a line to another line. Since all the fieldnames are the same except for the ending number(1-5), I want to pass the number to the function and build the syntax. For example, if copyfrom = 1 and copyto = 2 then my syntax should say...
  19. mickeyg

    Function

    I have the following two functions called onBlur: function UpperD() { /* CONVERT TEXT TO UPPERCASE */ var myText = document.lineup.D.value; if(myText == &quot;&quot;) { } else { document.lineup.D.value = myText.toUpperCase(); } } function UpperK() { /* CONVERT TEXT TO...
  20. mickeyg

    Macro Cell Referencing

    Hi all, I have a worksheet where I enter in the SKU and want to populate the Item #, Description, and Qty. I am having two difficulties. 1) trying to use the vlookup function to add the item # and description =VLOOKUP(A21,BathSecretItems!A3:G27,2,FALSE) +...

Part and Inventory Search

Back
Top