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: hdougl1
  • Content: Threads
  • Order by date
  1. hdougl1

    Form data changed by user?

    I would like to know when a user modifies any of the data presented on a web full of data. I have a JavaScript function (window.confirm) to prompt the user "Are you sure you want to close this window? Yes/cancel" when exiting the page whether or not they made any changes. Instead I...
  2. hdougl1

    XML load method to slow

    I'm actually working on the examples from the Sams 24hrs xml series. Right after using the xmldom load method I'm checking the state of the object if xmlDoc1.readyState=="4", which is false. The actuall return code is "1" Object is loading the data. I'm using javascript and...
  3. hdougl1

    Set and read cookies in client side script?

    Can and how do you set and read cookies via client side VB script? Heres what I am trying that does not work. Thanks <SCRIPT LANGUAGE=vbscript> <!-- Sub SetCalendarDates_Click Dim SelectedDate If document.cookie(&quot;coDateSet&quot;) <> &quot;&quot; Then SelectedDate =...
  4. hdougl1

    Problem writing dynamic XML from an MTS object?

    New to XML and, I'm creating a XML structure with data from a recordset within a MTS object returning a XML string called from a ASP page . I'm using response.write to display the XML structure and all I'm getting is the data written across the screen and not in a XML type structure. The basic...
  5. hdougl1

    With 2 recordset a faster no match report?

    What would be a faster in locating missing records between two record sets generated from two different servers. One of the servers has a proprietary interface so no joins across databases. Currently I'm looping 1 at a time from the first record set through each record of the second record set...
  6. hdougl1

    Please wait! Strategy needed

    I have an asp page which instantiates a dll I created which queries a couple databases on deferent servers. The query process is very slow, so I would like to write to the page &quot;Please wait query in progress&quot; since all of the processing is handling by the dll including all of the...
  7. hdougl1

    Control characters for a page brake

    Is it possible to send html control characters for a page brake for browser printing of a multiple page document.
  8. hdougl1

    How can I maximise the browser?

    How do you maximize the browser on the start up of an asp page? Thanks in advance
  9. hdougl1

    Trap for missing DLL

    I have a VB app that instantiates a dll located on a network server. How can I trap the error generated when access to the dll is lost, such as the network is down etc. While trying to test for this error in the IDE with the dll properlly registerd but not located in the specified location I get...
  10. hdougl1

    Connection.Execute instead of Recordset.Open

    All examples I've seen in returning one or more rows from a database using a Select query use the recordset.Open except in stored procedures. I have found that using the Connection.Execute is SIGNIFICATLY faster. Connection established Set rst =...
  11. hdougl1

    Data Shaping / Hierarchical recordsets &quot;error&quot;

    I can't interpret this error in order to debug my SQL. Any suggestions would be greatly appreciated. ERROR: Microsoft OLE DB Provider for ODBC Drivers error '80004005' [Microsoft][ODBC SQL Server Driver][TCP/IP Sockets]ConnectionRead (recv()). /Track2kShape.asp, line 94 SQL: SHAPE {SELECT...
  12. hdougl1

    Data Shaping / Hierarchical recordsets &quot;error&quot;

    I can't interpret this error in order to debug my SQL. Any suggestions would be greatly appreciated. ERROR: Microsoft OLE DB Provider for ODBC Drivers error '80004005' [Microsoft][ODBC SQL Server Driver][TCP/IP Sockets]ConnectionRead (recv()). /Track2kShape.asp, line 94 SQL: SHAPE {SELECT...
  13. hdougl1

    Data Shaping / Hierarchical recordsets

    Using for the first time MSDataShape provider I'm getting an error on the rs.open statement on my asp page; MSDataShape error '80040e14' Column (Machine_StoreId) does not exist in the appropriate rowset Here's the connection object stuff; Set objConn =...
  14. hdougl1

    Data Shaping / Hierarchical recordsets

    Using for the first time MSDataShape provider I'm getting an error on the rs.open statement; MSDataShape error '80040e14' Column (Machine_StoreId) does not exist in the appropriate rowset Here's my SQL statement; SHAPE {SELECT Store_ID, Store_Address1, Store_Address2, Store_City, Store_State...
  15. hdougl1

    Client side Selection box changing

    How do I change the value of a selection box off a client side click event? Here's the condensed view of the selection wraped in the form. Response.Write &quot;<form name=modify action=track2k.asp method=post>&quot; Response.Write &quot;<Select name=WorkChoice >&quot; Response.Write...
  16. hdougl1

    HELP!!! How to rst.Update or rst.Addnew

    I've written a routine that is suppose to select all the rows based on the criteria add a new record from an array if the information is not already in the database or else update the records found. Here's the code with a .find problem. I need to find a specific value in the specified field in...
  17. hdougl1

    How do can I message another box in a VB app?

    I have an application that creates orders in the office. I need to send that order to be filled to the warehouse PC on the LAN within the application. We currently send third party messages such as win pop or email or phone as notifications. My bandwith is very limited. Thanks Henry
  18. hdougl1

    &lt;OPTION&gt; tag using all the systems resources.

    I am building a table of about 500 rows of text data from a recordset and about 300 of the rows have one OPTION tag with a value of N or Y. When the page first displays the OPTION control is not visible, after I scroll to the bottom and back up there scattered incorrectly in there column. I can...
  19. hdougl1

    Recordset .update updating all rows?

    My objective is select a row from a database based on the where clause. I'm getting back one row, but when I change the value that recordset and do a rst.update all the rows in the database are changed to that value. Here's the code. Thanks a lot people this site is a good thing. Henry strSQL =...
  20. hdougl1

    Recordset .update updating all rows?

    My objective is select a row from a database based on the where clause. I'm getting back one row, but when I change the value that recordset and do a rst.update all the rows in the database are changed to that value. Here's the code and yes it is a ASP page useing VBScript. Thanks a lot people...

Part and Inventory Search

Back
Top