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

  1. NJLDoc

    Collection was modified; enumeration operation may not execute

    All posts state this has to do with for each loops however this error only appears on deployed installs never on my development computer. Error does not trap in JIT remote debugger just crashes the deployed application. Developed on windows 7 in VS 2010 VB and occurs on deployed Windows 7 64bit...
  2. NJLDoc

    Redirect Not working

    Solved. The http_REFERER should be replaced with QUERY_STRING and the code works exactly as expected.
  3. NJLDoc

    Redirect Not working

    If InStr(Request.ServerVariables("http_REFERER"),"sitemap.asp")<>0 then Response.Redirect("http://www.my-domain.com/en/sitemap.aspx") Else Response.Redirect("http://www.my-domain.com/en/index.aspx") End If The statement always returns 0 even when I pass...
  4. NJLDoc

    HELP !!! VB Net 2008 app wont run on Server 2008

    You've been a great help. Thanks.
  5. NJLDoc

    HELP !!! VB Net 2008 app wont run on Server 2008

    Awesome. Thank you. I was referencing the database paths by reading the registry also. Is this no longer possible if compiled x86? If not possible that's okay as I can hard code the paths but I would prefer to read from the registry. Your solution works wonderfully.
  6. NJLDoc

    HELP !!! VB Net 2008 app wont run on Server 2008

    I have an application that uses MS Access databases. The client has just upgraded to Server 2008 and none of the application modules will run directly on the server. At a minimum, I need to be able to compact the databases on the server after hours. I have a program that I wote using VBnet 2008...
  7. NJLDoc

    Help!! Change Element Value

    Is there a way to increment the value of a textbox using javascript function(s)? function whichElement(e) { var targ; if (!e) { var e=window.event; } if (e.target) { targ=e.target; } else if (e.srcElement) { targ=e.srcElement...
  8. NJLDoc

    Help!!! Dynamic HTML Button

    Sorry. A little too old for homework. The script i can return the clicked button value is: function whichElement(e) { var targ; if (!e) { var e=window.event; } if (e.target) { targ=e.target; } else if (e.srcElement) {...
  9. NJLDoc

    Help!!! Dynamic HTML Button

    I have a page that requires dynamic buttons. I need buton1 to increment a value in textbox1 and button2 to increment textbox2 and so on. The values of the buttons are derived from a database. If I use ASP buttons, each time a button is clicked the whole page reposts causing an on screen flash...
  10. NJLDoc

    MS Access Compatiple Application?

    Access on the Pocket PC is supported but is in the form of Pocket Access. You can read and write from the .cdb database format but not view the table structure or data directly as on the desktop without third party tools. In order to read write use adoce and present the data in grids or...
  11. NJLDoc

    MS Access Connection Limit

    Trevil I wish to thank you for all your efforts. The problem I have resolved and was an unbelievable oversight on my part. I had been sourcing the problematic database path by comparing a registry value of another database and replacing the name of that database with the problematic one in order...
  12. NJLDoc

    MS Access Connection Limit

    Thanks for the link. I will take a look. Yes, the debug.print line does not show the error at runtime but I had replaced with a message box to be able to identify raised errors.
  13. NJLDoc

    MS Access Connection Limit

    The incoming network connections I believe would be a non issue as the databases are on the local machine. Also, I have an XP Pro machine that runs the application in question just fine. Are there any trouble shooting suggestions anyone has?
  14. NJLDoc

    MS Access Connection Limit

    If you find a reference please let me know. Once I find the solution I will post. I do appreciate the considerable effort you have put forth. Thank you.
  15. NJLDoc

    MS Access Connection Limit

    Your assumption is correct re databse order. I will take a look at the references as an option though this will take some time to effect I think. Was there a report you can refernce re corrupted project references?
  16. NJLDoc

    MS Access Connection Limit

    Yes I am using ADO for the conection object. I cannot understand why the same build of the application would work on one machine and not another if the issue is a closed connection or recordset. The connection state shows = 1 but when the code hits the .AddNew the 3704 is triggered but no ADO...
  17. NJLDoc

    MS Access Connection Limit

    The error message received is 3704 however the connection state shows as 1.
  18. NJLDoc

    MS Access Connection Limit

    I am waiting for the client to try a new build of the application affecting the order of connection. As far as the delete code is concerned, I do not need this process as I had added this to test for a corrupt database which was not the case. Assuming that the connection order does make a...
  19. NJLDoc

    MS Access Connection Limit

    As a test of the problem Iplaced a copy of the database on the local machine. Before the connection was attempted the Kill old was followed by File copy. The kill error was permission denied yet the databse is not in use. I copied the clients database and tested on my machines with no problem...
  20. NJLDoc

    MS Access Connection Limit

    The databses on the machines having trouble are all part of a network yet the database connections are all local to their machine. Most other users do not have access installed though some do. Some have administartive accounts such as the XP Home user and others not. The connection method is...

Part and Inventory Search

Back
Top