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

    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...
  4. 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...
  5. 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...
  6. 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...
  7. 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...
  8. 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;)...
  9. 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...
  10. 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
  11. 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
  12. 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...
  13. 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...
  14. inf33323

    Hi all, The people in my student

    Hi all, The people in my student house have a problem with their computer (OS Nt 4.0). Some program has altered some registry files and they can't log in as administrator anymore. Furthermore, the BIOS password was set long time ago and nobody rememberes it. Questions: 1. Does anybody know...
  15. inf33323

    Capabilities of ASP

    Hi, my question refers to the capabilities of ASP: I have a database application created with MS Access 97 and would like to offer access to it through a Web-browser. If I use ASP, can I maintain all the implemented capabilities (like linked forms) without considerable programming effort or do...
  16. inf33323

    Hide window - deactivate workbook?

    Hi all, another question: does the fact that I hide a window deactivate the contained workbook? Thanks for the answer.
  17. inf33323

    Detect Last Row in Table

    Hi, is there any method that retrieves the last row in a workbook? Thanks in advance.
  18. inf33323

    Execute VB Code in Background

    Hi, is there any possibility for background VB code execution? This would be helpful in the following situation: I compare values in two different workbooks. In order to read them, I need to open them and they will show up on the screen all the time. I could hide the windows but I wonder if...
  19. inf33323

    Show current record in a new form

    Hi there, I have a form displayed in a table layout. Each record has attached a button. I want to show further record information in a separate from when clicking on the button next to the record. Following code is attached to the button: Dim ActForm As Form Set ActForm =...

Part and Inventory Search

Back
Top