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 Mike Lewis 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. Kenjan

    Concering: Tomcat 5.5.16. and Native Connector 1.1.1

    So I think I've figured out that the answer is no, they are not the same. I think the "native" connector is the APR (Apache Portable Runtime). Someone correct me if I'm wrong. You can find out more here: http://tomcat.apache.org/tomcat-5.5-doc/apr.html And download the latest binaries here...
  2. Kenjan

    Concering: Tomcat 5.5.16. and Native Connector 1.1.1

    This is a newbie question(s). On the Apache website for the download of Tomcat 5.5.16, they state that the Native Connector 1.1.1 included in the binaries have a lot of bugs and urge you to download 1.1.2 which is supposed to fix these bugs. When I download version 1.1.2 using the link supplied...
  3. Kenjan

    Viewing Current Trasaction Isolation Level

    I saw this somewhere, but was confused. Doesn't the command 'SET TRANSACTION ISOLATION LEVEL READ UNCOMMITTED' set the isolation level? I was afraid that DBCC USEROPTIONS would just show me what I set in the command before.
  4. Kenjan

    Viewing Current Trasaction Isolation Level

    Does anyone know how to see what the current Transaction Isolation Level is set to?
  5. Kenjan

    Find a Process not a window.

    I had to use the OpenProcess with the PROCESS_ALL_ACCESS parameter and the th32ProcessID. I then used the return with the TerminateProcess API. It works! Here is part of my code: hProcess = OpenProcess(PROCESS_ALL_ACCESS, 0, th32ProcessID) If (hProcess > 0) Then TerminateProcess hProcess...
  6. Kenjan

    Find a Process not a window.

    Does anyone know how to kill a process that is returned with the code reference in this thread?
  7. Kenjan

    Timing Out An Application

    [smile] Thanks!!! I never have looked at the form keypreview. That little bit of information just cut the code I thought about in half!
  8. Kenjan

    Set a combobox to a previous value

    Try this: Option Explicit Private m_ComboSelection As String Private m_OldValue As String Private Sub cboSelect_Click() Dim iRet As Integer iRet = MsgBox("Do you want to save", vbYesNo + vbQuestion) Select Case iRet Case vbYes 'Save selection...
  9. Kenjan

    Timing Out An Application

    Does anyone have a way or suggestion to time out an application? We have a problem in our development environment with people leaving our application running when they're not at their desk. When we need to do a re-compile and move a dll to the application server, the dll is already in use. The...
  10. Kenjan

    Keeping State With Session Variables

    Thanks to everyone for the help!
  11. Kenjan

    Keeping State With Session Variables

    How do you handle keeping state for multiple items? Such as vehicle information for multiple vehicles or contact information for multiple people. I'm guessing most people just write the info to the DB each time a new person or vehicle is entered instead of trying to keep the state for each...
  12. Kenjan

    Keeping State With Session Variables

    First, I'm new to ASP so I may be asking something that seems obvious. Background: I'm working on a small ASP application that keeps track of state using session variables. The session variables contain objects that belong to a VB6 dll library. There are not any connections to a database. The...

Part and Inventory Search

Back
Top