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: ErroR
  • Order by date
  1. ErroR

    Drive Offline Notification / Alerts for TSM??

    With the TSM Operational Reporting, you should setup an Operational Monitor that runs more often. This can be found under "Tivoli Storage Manager > TSM Server # > Reports > Operational Monitors" in the Operational Reporting console. When you create a report, the default will be to check the...
  2. ErroR

    Find window handle with only the executable/process name

    Excellent suggestion, however this application is already running when my application is started. I have no control over the application besides trying to close it. The only thing I have to work with the classname obviously, the list of titles the window usually has (inconsistent), the name of...
  3. ErroR

    Find window handle with only the executable/process name

    paulbent thanks for the utility suggestion. I have the classname, but it's running in a command prompt so the class is "ConsoleWindowClass" and this is what all command prompt windows show for their class. I think somewhere I had seen a suggestion to search for the specific class of...
  4. ErroR

    Find window handle with only the executable/process name

    I'm currently using the GetWindow() and GetWindowText() APIs (among others) to find the window text of the program I need to shutdown. I then use PostMessage() to send a WM_CLOSE to it and it works great. However, the title is not consistent and therefore it makes the code a mess to search for...
  5. ErroR

    How to deal with .dll dependencies for single .exe project

    That might actually work... then all I'd need to do is keep the two executables together, with the needed .dll files. Hmm....0
  6. ErroR

    How to deal with .dll dependencies for single .exe project

    I have a small application that I want users to run from a network share and would rather that we never need to run an install on each PC. I've written it to handle its own registry entries so that's taken care of. However, it requires tabctl32.ocx which is a tabs control and it also needs...
  7. ErroR

    Minimize a form after a period of user inactivity

    Well.. I'm just using Me.Windowstate to control the minimize. My question is, does anyone know a way to intiate and/or cancel the minimize timer that is better than putting a Timer.Enabled = False in the KeyDown and MouseDown events on the form?
  8. ErroR

    Minimize a form after a period of user inactivity

    Any suggestions for an efficient method to have my application minimize itself when a period of time elapses and the user has no interaction with the form? It also must cancel the minimize if the user clicks on something else before the timeout. For instance, user uses my application to launch...
  9. ErroR

    Query a WINS server with VB and/or Winsock control

    I would like to setup something that could query a WINS server (and DNS and DHCP eventually) using Visual Basic 6, and I'm assuming the Winsock control would be required. Does anyone know how or have any info?
  10. ErroR

    Performance on Compaq Smartarray 5i Controller

    3-4 MB/s is slow, for any controller. What RAID level are you running the array in? How are you obtaining your throughput numbers?
  11. ErroR

    Detect Browse results with InternetExplorer object

    The ReadyState would seem to be what I needed, but it has limited return codes, and you get the same return code regardless if the browser results are 200 or 404. The other suggestions you made are helpful in other ways, but for this particular function, I need those return codes. ReadyState...
  12. ErroR

    Detect Browse results with InternetExplorer object

    Using the IE object, I've got the browsing down with VB. I would like to detect if the browse resulted in a 404 - File Not Found result, in case the URL that was determined by my VB App is invalid. I'm able to use the DownloadComplete and NavigateComplete events, so I'm wondering if there is...
  13. ErroR

    Query a WINS server?

    Has anyone wrote any code to query a WINS server? For instance, if you wanted to query the server for it's records for a certain host, user or service?
  14. ErroR

    Seperate IP Address (Text Manipulation)

    Well now that was too easy... Thanks for the hint....
  15. ErroR

    Seperate IP Address (Text Manipulation)

    I'm trying to build a list of servers that workstations should contact depending on the subnet they are in. What would be the simplest way to break an IP address down into the first three octets and then compare it against a list of the servers the workstations should contact. Basically, if...
  16. ErroR

    SmartStart pratice program

    Can you not just take a new or unused server and "practice" with the actual Smart Start software?
  17. ErroR

    Array reconfiguration question

    We just did something very similiar on very new boxes and the same controller series... impossible as far as we could tell. What we did was used the Veritas IDR recovery software to backup the system and the data, put the new drives in, built the array to the full size of the new drives, and...
  18. ErroR

    RAID Array controller

    My first question is, why did you go with the ML370? This is just a suggestion, but the DL380 will do everything the ML370 will do, and it's less than half the size. The only thing you lose is two PCI slots. If you go with the DL380, it has on onboard ROC chip that will serve your RAID array...
  19. ErroR

    Sending commands to another program (like Sendkeys)

    Argh! Everything I look at either requires it to be used in something other than Win9x, OR it will not send the input unless the receiving applications has the active focus. I know this can be done, I've seen several different game add-on's do it for instance.
  20. ErroR

    Sending commands to another program (like Sendkeys)

    vb5prgrmr do you have any examples for hooking into it's window?

Part and Inventory Search

Back
Top