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!

Recent content by ducky62

  1. ducky62

    changing th colors

    is there anyway to change the bgcolor of a table header from the default i have tried <th bgcolor=#EEEEEE> but it doesnt work
  2. ducky62

    calling javascript functions

    thanks, it worked great i was just forgetting the script tags
  3. ducky62

    calling javascript functions

    is there a way to call a javascript function without an event normally you put the calls in an onClick or onChange event, but I want <TR> <TD> ToCurrency(1234); </TD> </TR> but it just displays &quot;ToCurrency(1234)&quot; any ideas Thanks
  4. ducky62

    sorting orders

    convert(int, left(slots, patindex('%-%', slots) - 1)) what exactly does this do??? when i put it in it gives me an error...
  5. ducky62

    passing asp arrays to a javascript function

    I have 3 arrays : Set objRecordSet2 = Server.CreateObject(&quot;ADODB.RecordSet&quot;) objRecordSet2.ActiveConnection = objConnection objRecordSet2.Open &quot;SELECT * FROM...
  6. ducky62

    passing asp arrays to a javascript function

    I have 3 arrays : Set objRecordSet2 = Server.CreateObject(&quot;ADODB.RecordSet&quot;) objRecordSet2.ActiveConnection = objConnection objRecordSet2.Open &quot;SELECT * FROM...
  7. ducky62

    sorting orders

    i have 3 fields bay shelf slots and i'm using order by bay,shelf, slots and I get bay shelf slots 103.2 1 13-16 103.2 1 1-4 103.2 1 17-18 103.2 2 11-14 103.2 2 1-2...
  8. ducky62

    linking javascript and asp

    I have 3 arrays : Set objRecordSet2 = Server.CreateObject(&quot;ADODB.RecordSet&quot;) objRecordSet2.ActiveConnection = objConnection objRecordSet2.Open &quot;SELECT * FROM tbl_names&quot; dim register,register2,register3,v redim register(2000) redim register2(2000) redim...
  9. ducky62

    linking javascript and asp

    I have 3 arrays : Set objRecordSet2 = Server.CreateObject(&quot;ADODB.RecordSet&quot;) objRecordSet2.ActiveConnection = objConnection objRecordSet2.Open &quot;SELECT * FROM tbl_names&quot; dim register,register2,register3,v redim register(2000) redim register2(2000) redim...
  10. ducky62

    suming 11 dates in sql

    i have 2001/11/30 2001/09/30 2001/08/31 2001/07/31 2001/06/30 2001/05/01 2001/03/29 2001/01/24 2000/12/12 2000/06/30 1999/09/24 and the sum should be 2004/04/13 when i just try to add and the dates i get 3013/04/04 What do i use to add these up i get the total in excel by using the sum...
  11. ducky62

    summing a date field

    i have a record set of 12 dates and I want to sum these and store it in another field is there a command like sum([date]) that I can use thx
  12. ducky62

    reloading the page

    I have a checkbox on my page, and when they click it it opens another page which does some sql work and then closes. I also want the current page(the one with the checkbox) to reload when the box is clicked... i've tried things like window.reload or response.refresh, but none of them work...
  13. ducky62

    sql search strings

    &quot;2/18/02 11:37:56 AM&quot; is what is in my field &quot;replydate&quot; in the database... in an sql string i want to get all records where replydate >= 2/1/02 and <= 2/28/02 what would the search string be?? thanks Derek
  14. ducky62

    dynamically clicking check boxes

    i have dim temp, temp2 for i 1 to num temp=&quot;&quot; temp2=&quot;&quot; temp=temp&&quot;1st&quot;&i temp2=&quot;document.forms.form.&quot;&replace(temp,&quot; &quot;,&quot;&quot;)&&quot;.checked=true&quot; response.write(temp2) temp2.execute next...
  15. ducky62

    scrolling table headers

    I have a table with multiple rows (ie 100 +) and multiple columns. when I'm entering data in this table it is hard to remember which column you are in... is there a way so the table headers scroll down with you as you go down the page so you won't lose where you are?? thx

Part and Inventory Search

Back
Top