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 wOOdy-Soft on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by ajbufort

  1. ajbufort

    DOS Batch File Issue

    FORGET IT - I found the problem. After I delete Uninstall.exe, I am still in the Program Files/MM folder!! So being in that folder obviously prevents me from deleting it later in my .BAT file. Wow - sorry for the wild goose chase fellas! -Tony
  2. ajbufort

    DOS Batch File Issue

    Okay, here's the official scoop: " C:\Program Files\MegaMeeting>rmdir "C:\Program Files\MegaMeeting" The process cannot access the file because it is being used by another process. " So there you have it. For some reason, even though my Uninstall.exe has finished running, Windows still...
  3. ajbufort

    DOS Batch File Issue

    Okay, there's definitely something deeper going on here. Zathras, your theory that "Perhaps the .exe is still in the stack while the .bat is running" is one I need to check out. I have ruled out that it has anything to do with the explorer window being open or having the focus, as I have tried...
  4. ajbufort

    DOS Batch File Issue

    Hi, Okay: We all know that someone cannot currently be 'using' the directory one is trying to delete in order to be able to delete it, correct? But "not currently using" does not include having it open in Windows explorer, right? Because I know I can delete a folder in a DOS window and...
  5. ajbufort

    DOS Batch File Issue

    Zathras, Which version of my fiUninst.bat were you using - the one with or without the ping delay? Whatever it was, it deleted the folder, huh? Hmmm. Well, let me review and see if I missed informing you guys about anything. Okay, so I have an Uninstall.exe file that a user must click...
  6. ajbufort

    DOS Batch File Issue

    Great input guys! Thanks. Here is where I am so far: Zathras - I was thinking along exactly the lines you were, so I implemented a ping-based delay, like this: :Repeat del "C:\Program Files\MegaMeeting\Uninstall.exe" if exist "C:\Program Files\MegaMeeting\Uninstall.exe" goto Repeat...
  7. ajbufort

    DOS Batch File Issue

    Okay Guys, I always stay on topic (Delphi-related) here, but after having scoured the forums for a DOS-specific area to post my question and not finding one, I am posting here. My app is written in Delphi, but that really has nothing to do with the question, so please have mercy on me. :)...
  8. ajbufort

    Using TApplicationEvents In A Program

    Hi whosrdaddy, Thanks very much for your response. I will take the approach you suggested. -Tony
  9. ajbufort

    Using TApplicationEvents In A Program

    Hello All, Trying to implement global exception handling in a service, but I can't seem to get it to work. Is there something I'm missing? I am trying to do the following: ApplicationEvents := TApplicationEvents.Create(nil); ApplicationEvents.OnException := LogException; in my...
  10. ajbufort

    Windows Virtual Device Drivers In Delphi

    Okay, thanks for the clarification. :) -Tony
  11. ajbufort

    Windows Virtual Device Drivers In Delphi

    whosrdaddy, Thanks for confirming that for me. I thought that was the case. You could use Delphi, provided you did the whole thing in Win32 API calls, right? I understand, though, that there are much more appropriate tools for this, like you said. -Tony
  12. ajbufort

    Windows Virtual Device Drivers In Delphi

    Hello All, Just wanted to ask a question and get a general read on the situation. How easy/hard is it to write a VxD, in general, I mean? I know there are simpler and more complex ones, but is this something a beginner at Windows programming should get into? I am getting the feeling that...
  13. ajbufort

    How to manipulate .res files?

    Hi Guys, I am using Delphi 7 Enterprise, and I cannot find BRCC32 in my bin directory. Are things done a different way in Delphi 7? I've been using the Image Editor to edit .res files, but now I want to add a JPEG resource, and want to make my own .rc to compile into a .res. Can I obtain...
  14. ajbufort

    Indy TCP Client Disconnection From TCP Server

    Well, for anyone who is interested, I found a way to get around the need for using a ReadLn, but it is only useful for people in certain circumstances. The circumstances, to be brief, are ones in which you are willing or able to put an IdHTTPServer into the code for your TCP server. Doing...
  15. ajbufort

    How Can Java Run A Windows Service?

    Very cool, thanks! -Tony

Part and Inventory Search

Back
Top