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

  1. inf33323

    503 1 AppOffline DefaultAppPool Error

    Hello everybody, I'm new to the IIS topic, so this question may be a basic one. I cannot call any site (not even the default one) on my IIS Server. Anytime I try to do it I get "Service Unavailable". The log file displays following line: ... 80 HTTP/1.1 GET /dtm 503 1 AppOffline DefaultAppPool...
  2. inf33323

    API-Function OpenProcess always returns 0

    Hi there, I need to call a .exe in the DOS-Command Window and display the return codes. I have the following code for this: Private Const WIN32_API_INFINITE = -1& Private Const WIN32_API_SYNCHRONIZE = &H100000 Private Const WIN32_API_PROCESS_QUERY_INFORMATION = &H400 Private Const...
  3. inf33323

    problem in tomcat 4.1.12

    Another question to Tomcat 4.1.12: I deploy and run successfully a web application. After restarting the server it's not available anymore(error message "the requested resource is not available") The Tomcat Web Application Manager shows that my application exists but is not running...
  4. inf33323

    Using multiple .js files in an HTML page

    Hi Wullie, tanks a lot. I tried it again and it worked. Cool!
  5. inf33323

    Using multiple .js files in an HTML page

    Hi all, how can I use multiple JavaScript files in an HTML page? I tried this but it's not working: <script language=&quot;JavaScript&quot; src=&quot;File1.js&quot; type=&quot;text/javascript&quot;> </script> <script language=&quot;JavaScript&quot; src=&quot;File2.js&quot...
  6. inf33323

    Tomcat 4.0.1 and JavaBeans

    Hi all, I can't use JavaBeans in my .jsp files. When I inlcude something like <%@ page import=&quot;SafetyPatterns.Preferences&quot; %> in a jsp file and try to show it in the browser I get the following error: org.apache.jasper.JasperException: Unable to compile class for JSP...
  7. inf33323

    How to access a form element whose name is dynamically created?

    I found the solution, so forget this question. Have to use eval().
  8. inf33323

    How to access a form element whose name is dynamically created?

    Hi all, could anybody tell my why this code is not working? var Element1 = &quot;ClassesRadio&quot; + 1 + &quot;[&quot; + 0 + &quot;]&quot; var Element = window.document.forms[0].Element1 Element.disabled=true ClassesRadio1 is a group of radio buttons in my website. I keep getting the message...
  9. inf33323

    Display last changes on reload

    I have a table containing information that can be chosen using checkboxes. On submitting the form that includes the table I mark the selected row (by changing the background color) and disable the checkbox. Is there any possibility (in JavaScript)to keep these changes when loading the website...
  10. inf33323

    Windows 98 crashes after computer start

    Hi all, I have a problem with Windows 98. It crashes after the computer is started. The error message is that it can't load system configuration. After pressing any key, the computer turns automatically off. If I turn it on again, I can choose to operate the system in safe mode. The fact that I...
  11. inf33323

    DSN-less Connection Questions

    I thought that the Data Source must be a string. If I provide the Data Source name manually I enter the location of my database and this is a string!!!
  12. inf33323

    DSN-less Connection Questions

    Hi all, I would like to connect to a Access2000 database using a DSN-less connection and I don't understand why I keep getting some errors. Everything works fine if I provide the absolute path to my database like in the snippet: Set myConn = Server.CreateObject(&quot;ADODB.Connection&quot;)...
  13. inf33323

    Run-time Error 3170 - Installable ISAM not found

    Hi all, I'm working with Access2000 and have a database that uses tables form an ODBC database. I would like to import some tables from this ODBC database using TransferDatabase. To do this I wrote the following code line: DoCmd.TransferDatabase acImport, &quot;ODBC Database&quot...
  14. inf33323

    Run-time error 3170 - Couldn't find installable ISAM

    Hi, which .dlls need to be reregistered if I'm using a ODBC datasource? Regards, inf33323
  15. inf33323

    Update imported table

    Sure, that was my first attempt and it works fine, but my boss doesn't want me to use linked tables. inf33323
  16. inf33323

    Update imported table

    Hi, Thanks a lot for your answer. With &quot;update&quot; I mean getting the uptodate contents of the tables from the database I imported them. One possibility would be to import the tables again. But the problem is that my tables are in relationship with other tables in the db and you can...
  17. inf33323

    Update imported table

    Hi all, I have a database(Access 2000) with two imported tables. These are in relationships with other tables in the db. Is there any possibility to automatically update the imported tables? Thanks a lot for any input. inf33323
  18. inf33323

    Read-only access to linked tables

    Hi all, I have a Access2000 database and I use two linked tables in it. Anybody using my database can add, delete and update recods in the linked tables. I would like to hinder this and to guarantee only read-only access to them. Would appreciate any idea. Thanks, inf33323
  19. inf33323

    Go to a certain item of a combo-box

    Hi all, I have a combo-box that displays elements I have entered manually in a list. When I open the form containing the combo box, there is no element selected. How can I specify that a certain element (according to its position in the list or to its name) should be selected? Thanks a lot...
  20. inf33323

    Tasks to be executed at Win95 startup???

    Hi, I had a problem for a while. After the loading of Win95, I always got a Winbatch Runtime Errorr #9999 (Fatal Error) when the system was trying to run the program upcrtl32.exe. Something similar happened when the system was trying to execute the program mtx_.exe. After closing the message...

Part and Inventory Search

Back
Top