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: *

  • Users: cabobound
  • Content: Threads
  • Order by date
  1. cabobound

    w3wp.exe solution?

    Hi All, I know this issue has been addressed but all the threads and surfing I have found has not solved my issue. I have a browser based app (Firefox only) that uses MSAccess as a back end with about 12-15 users. Problem: w3wp.exe eats up cpu and freezes (IIS) the other users on the...
  2. cabobound

    w3wp.exe solution?

    Hi All, I know this issue has been addressed but all the threads and surfing I have found has not solved my issue. I have a browser based app (Firefox only) that uses MSAccess as a back end with about 12-15 users. Problem: w3wp.exe eats up cpu and freezes (IIS) the other users on the...
  3. cabobound

    Workbench closes on launch

    Hi, Im a newbie to mysql and workbench. I just installed both and wanted to explore. When I run WB it closes right after the splash screen! Any ideas? Thanks in advance. K
  4. cabobound

    ebox

    I am new to linux and have setup a server and a w/s. What is the best way to administer the server? I have installed ebox but there isnt much by way of administering the server. I am coming from Windows and I am used to a graphical interface. I need to setup users, shares, etc. Are there...
  5. cabobound

    Query Date By Year

    I am trying to query a table on a date field by year where the user inputs the year. The code I am using is... sTr="Select * From table Where Right(BuyerPaidDate,4)='" & Request("yr") & "'" The error I am getting is... Arguments are of the wrong type, are out of acceptable range, or are in...
  6. cabobound

    Connection

    I am trying to get a record count without having to loop through with a counter. I believe the problem is with the connection type. I am not having any luck looking on the internet. Here is my current connection..... Set bConn = Server.CreateObject("ADODB.Connection")...
  7. cabobound

    window.close()...NOT

    I am trying to automate a process where the browser opens, runs a script then closes. I am using a system scheduler to open, asp scripting and a footer to close. The window opens, the script executes and gets to the js but the window will not close. I am using firefox where this has not been...
  8. cabobound

    Textfile Into Recordset

    I am trying to import a textfile into a recordset. I have found a couple examples online but they dont work. Is there a way to import a file to a recordset? The import file is a single field in a file on the server. Thanks in advance K
  9. cabobound

    Negative Number

    How do I convert the sign of a number?
  10. cabobound

    Simple Subtraction?

    I am trying to subtract 1 number from another. The first number is passed in a parameter and the other is the sum of a running total. When I display the numbers I get a them, even when displayed as cDbl(x) and cDbl(y). The problem is when I subtract x from y I get 9.99999999999091E-03 even...
  11. cabobound

    error handling

    I am getting an error in a loop that shouldn't be there. It is processing a lot of information and want to see the string so that I can identify the issue. The error is a duplicate key but happens after 10 minutes of processing. How do I allow the script to run but print the string when it...
  12. cabobound

    Loading middle records into a record set

    Is there a way to load only certain records into a recordset? For example: I have a table with 1000 records but only want records 250-500. My connection is: Set aConn = Server.CreateObject("ADODB.Connection") DSNtemp="DRIVER={Microsoft Access Driver (*.mdb)}; " DSNtemp=dsntemp & "DBQ=" &...
  13. cabobound

    Disk or Network error on Vista

    I have Vista home premium and trying to get my IIS running on the notebook. The error I am receiving is Disk or Network Error. Everything I have found has said it cannot find the temp dir. However, I looked that it is still there. So that solution is not viable. Does anyone have info on...
  14. cabobound

    New Install Issue

    I just built a new computer and installed xp pro on it. The o/s did not find the legacy NIC so I dropped in a realtek pci. I can reach other compters on the network and the internet using firefox. However, every time I open IE it errors and closes. It does not matter if it's opening by the...
  15. cabobound

    Permissions

    Hello all, I have an intranet server that I need to create files using a browser and get permissions denied. I open the folder and look at the security for the Internet guest account. When I change the permissions I get a second account. I am testing this so i give it full control but that...
  16. cabobound

    Print Break

    Hello all, I have a report that is 1 page long that uses css for the page break: <DIV style="page-break-after:always"></DIV> What it is giving me is the first notice correct, then the headers on the second page, a page break, then the rest of the second notice on the 3rd page. And repeats a...
  17. cabobound

    Tutorial

    I am new to using MS Word (at least beyond a basic letter). Does anyone know where I can find an article on how to create a form letter, populate it with fields from a database then repeat the letter with all the records from the db? Any help would be better than trying to surf the MS doc...
  18. cabobound

    Updatable Query

    I am writing a small webpage that needs a little data maint. The connection I have is the same I always use but now I am getting a "Operation must use an updateable query." Set xConn = Server.CreateObject("ADODB.Connection") DSNtemp="DRIVER={Microsoft Access Driver (*.mdb)}; " DSNtemp=dsntemp...
  19. cabobound

    Cookies

    I am using cookies for a login and to keep track of login data such as what office they are in. All of a sudden this morning with no changes the login page is not keeping track of the cookies. The client is remote and the in-house dev site works fine so I know its not the workstation settings...
  20. cabobound

    Adding input fields on the fly

    Im sure this has been covered but does anyone know of an article that explains the dom and how to add an input box without reloading the page? Thanks, K

Part and Inventory Search

Back
Top