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 bkrike 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: ajbufort
  • Content: Threads
  • Order by date
  1. 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. :)...
  2. 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...
  3. 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...
  4. ajbufort

    Indy TCP Client Disconnection From TCP Server

    Hello All, I have a client/server pair of programs in which the client makes a connection to the server, and then the connection can potentially lie dormant for a time until commands are sent back and forth. During this dormant state, I want to be able to fire a TCP-client-disconnected...
  5. ajbufort

    How Can Java Run A Windows Service?

    Hello All, How can I use the Runtime.getRuntime().exec() command to start/stop a Windows service? Thanks, -Tony
  6. ajbufort

    System Tray Icon Without Using Forms Unit?

    Hello All, I am trying to write a program which has no forms, but places a small icon in the system tray. All of the examples I am seeing regarding system tray icons and Delphi are for apps using the FORMS unit. I do not wish to include this unit unless I absolutely have to, for size...
  7. ajbufort

    Can't Catch Exception - WHY??

    Hello All, I have the following OnGet procedure in my code: procedure TWebServer.OnGet(AThread: TIdPeerThread; ARequestInfo: TIdHTTPRequestInfo; AResponseInfo: TIdHTTPResponseInfo); var Response: String; MemStream: TMemoryStream; Size: Integer; begin...
  8. ajbufort

    TIdHTTPServer, OnGet, and Threads

    Hello All, I am writing an HTTP server (TIdHTTPServer) program that services GET requests for images. This 'OnGet' procedure, a procedure of my main form 'Form1', calls other procedures of Form1 to do various tasks, and then finally gets back to the client via TIdHTTPResponseInfo. I...
  9. ajbufort

    TAviWriter Component and AVIs from Jpegs

    Hi Guys, Trying to use TAviWriter (http://www.torry.net/pages.php?id=168) in a program I am writing in order to save a series of jpegs out as an AVI. When I view the resulting movie, however, the colors are splotchy and everything is just plain crappy. What factors might be affecting this...
  10. ajbufort

    Delphi -to-Flash Communication

    Hello All, I have a theory about how Delphi-to-Flash communications can be implemented. I would appreciate any feedback on the viability of the theory, or perhaps more importantly, whether or not there is an easier way to go about this communication. Premises: - Flash can talk to...
  11. ajbufort

    Calling A DLL From Within Flash To Launch App

    Hi Guys, I want a viewer of my embedded Flash (non-projector) movie to be able to, upon clicking a button, open a custom app on their machine without seeing the security dialog box. I realize this is there for a reason, and I agree with the reason. But if one has a group of users that know...
  12. ajbufort

    Seamless Playback of External, Dynamically-Loaded JPEGs

    Hi Guys, I've been at this for a while, and I am afraid I am still quite the newbie when it comes to Flash. I want to use Flash as the GUI for a (near real-time) screen capture viewer. I want a user to be able to transmit screen captures of their screen on one end, and on the other...
  13. ajbufort

    Speeding Up FTP / Threads

    Hello All, I am writing an app in Delphi that takes continuous captures of the client's screen and FTPs them to a server. I have one thread taking the captures and another FTPing them as they are taken. The speed of the captures far surpasses the speed ot the uploads (as one might expect)...

Part and Inventory Search

Back
Top