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: ducky62
  • Content: Threads
  • Order by date
  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

    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
  3. 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...
  4. 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...
  5. 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...
  6. 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...
  7. 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...
  8. 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...
  9. 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
  10. 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...
  11. 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
  12. 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...
  13. 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
  14. ducky62

    document.forms.form.submit();

    i have a button... when they click the button it goes to a function to validate the data. if the data is valid I want to submit the form i have <INPUT TYPE=button VALUE=&quot;Send to :&quot; onClick=&quot;if (forceEntry()) {document.forms.okay3.submit();}&quot;> but this doesn't work and I...
  15. ducky62

    Forcing a Selection in a &lt;Select Multiple&gt; list

    I have Set objRst = Server.CreateObject(&quot;ADODB.Recordset&quot;) strSQL = &quot;SELECT * FROM tblTimeMatrix ORDER BY fldTechnology, fldTechID&quot; objRst.Open strSQL, objConnection %> <select name=&quot;listTech&quot; size=&quot;10&quot; multiple> <% Do...
  16. ducky62

    parameter types for sql 2000

    I'm trying to call a stored procedure through an asp page. My call to the stored procedure includes the following line .Parameters.Append .CreateParameter(&quot;txtclli_code&quot;, adVarChar, adParamOutput, 50) What do I replace adVarChar with if the type is NVarChar, also what do I put in for...
  17. ducky62

    Stored Procedures

    Hi, Im tring to run a stored procedure and I keep getting the following error: Add Microsoft OLE DB Provider for ODBC Drivers error '80040e21' [Microsoft][ODBC SQL Server Driver]Optional feature not implemented /colo/power/power_1_r.asp, line 48 The code I'm trying to execute is: Set...
  18. ducky62

    Connecting to a Database

    I'm trying to connect to a database through html and I keep getting the error &quot;Impossible to open the database per defect of the user. Use of the base master in the place.&quot; I have no clue as to what this means... The connection string I am using is as follows: 'dsn =...
  19. ducky62

    Cross Server database connection

    Hi, I'm trying to connect to a Access 97 Database through ASP. The Server my database is on is not the same server that my asp pages are on. Now when I try to connect to the database I get the following error: Microsoft JET Database Engine error '80040e4d' Cannot start your application. The...

Part and Inventory Search

Back
Top