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!

Recent content by ResonantEcho

  1. ResonantEcho

    Delphi 10.2 Tokyo / VCL REST Components / Ignore Verifying the SSL Certificate

    Several months ago I developed an application with Delphi 10.2 Tokyo using the VCL REST components. Up until this point a certificate check wasn't necessary. Is there a way to disable the certificate check? It doesn't appear the client or request component has a property to toggle this on and...
  2. ResonantEcho

    Delphi Berlin 10.1 Update 1 / Screen Scraping

    Never mind. I figured it out. You got me to thinking, Glenn. ;) Since I already have the handle for the window, I then can use "EnumChildWindows" to get the handle to the checkbox. Then do: if SendMessage(hWndForCheckBoxControl, BM_GETCHECK, 0, 0) = BST_CHECKED then begin...
  3. ResonantEcho

    Delphi Berlin 10.1 Update 1 / Screen Scraping

    Hi Glenn, You asked how far along was I and if I was able to locate the form in question. I did answer both of those questions....I thought. :D With additional detail. While I am able to load a form via a HOTKEY, verify it indeed exists (via caption), grab its window handle, make sure it has...
  4. ResonantEcho

    Delphi Berlin 10.1 Update 1 / Screen Scraping

    Hi Glenn, Yes. The application does identify forms by caption and enters information on said forms (emulating keyboard input). I've created classes for each form that I'm currently working with. Each class contains properties for that form (what data can be entered on that form). Also, methods...
  5. ResonantEcho

    Delphi Berlin 10.1 Update 1 / Screen Scraping

    Has anyone done any development in regard to screen scraping? For example, let's say a form on the screen (not Delphi, but a Java applet) has several checkboxes. I would need to verify which are checked or not and update user data accordingly. Thank you for your response in advance. //...
  6. ResonantEcho

    Delphi Service Example

    Going to give it a try. Thanks! ;) // ResonantEcho
  7. ResonantEcho

    Delphi Service Example

    Hi Glenn, Believe it or not I'm having to use Delphi 7 and TEventLogger does exist. [bigsmile] It's what Xerox currently has available. Hoping they upgrade to Delphi 10 here soon considering I'm having to update up to 160 applications written in Delphi. I did eventually find the "u_eventlog"...
  8. ResonantEcho

    Delphi Service Example

    BTW, is it necessary to use the "u_eventlog" unit? Why not use TEventLogger instead? // ResonantEcho
  9. ResonantEcho

    Delphi Service Example

    Okay. Would you happen to have the source code for these units as well? :D I'm converting an old Delphi 7 service to use a thread and have seen these units referenced on Stack Overflow, etc. However, source never provided. u_eventlog u_MyThread ResonantEcho
  10. ResonantEcho

    Delphi Service Example

    Most definitely helps!!!! [thumbsup2] Thank you. Very much appreciated.
  11. ResonantEcho

    Delphi Service Example

    thread102-791024 In regard to the above thread. May I get you to provide the values for the following constants you use in your code example? STR_REGKEY_SVC STR_REGVAL_IMAGEPATH STR_REGVAL_DESCRIPTION STR_INFO_SVC_DESC STR_REGKEY_EVENTMSG STR_REGVAL_EVENTMESSAGEFILE STR_REGVAL_TYPESSUPPORTED...
  12. ResonantEcho

    Multiple Instances of Application / Prevent SELECTing Same Row

    I posted this earlier but not sure where it went. So... here I go again. ;) We have an application that runs every x minutes and looks for a row that is in a 'READY' status. A row represents a batch to be processed. We used to run one instance of the application. However, our volume has...
  13. ResonantEcho

    Query Help / List What Isn't Found

    Never mind, Borislav. I just realized I could probably add those conditions to the original query. SELECT DebtID FROM Table1 WHERE SUBSTRING(DebtID, 1, 1) IN ('F', 'G', 'N') AND LEN(DebtID) = 14 AND NOT EXISTS(SELECT IndexValues FROM Table2 WHERE...
  14. ResonantEcho

    Query Help / List What Isn't Found

    Borislav, Gotcha! One last question. What if I want to narrow down the DebtIDs in Table1? For example. Let's say I want only DebtIDs that start with F, G, or N and are exactly 14 characters long? Where would I add that to the last query you supplied? I know the syntax to check for those...
  15. ResonantEcho

    Query Help / List What Isn't Found

    Correction: 100,000+ rows scanned compared to 500+ million?

Part and Inventory Search

Back
Top