Jump to content

FPiette

Members
  • Content Count

    1188
  • Joined

  • Last visited

  • Days Won

    16

Everything posted by FPiette

  1. As far as I understand the code you show, you thread's Execute method doesn't have the message pump. So no event is triggered and nothing works. Another error in your code is that you create the HTTP component within the thread's Create method, which is executed in the context of the main thread! You must create the component in the context of the thread, that is at the beginning of the Execute method. Alternatively, you may call the ThreadAttach method to attaché the component created in another context to the thread's context. First solution is better. Also destruction must be done at the end of the Execute procedure. There are several multithreaded samples delivered with ICS. You can follow client or server sample, as far as multithreading is concerned, it makes no difference. Regards.
  2. This is the reference document describing the HTPP authentication using Kerberos : https://tools.ietf.org/html/rfc4559 This document https://docs.microsoft.com/en-us/dotnet/framework/wcf/feature-details/understanding-http-authentication will help understand how it works. Everything could probably be implemented in HTTP client component. François Piette
  3. FPiette

    MMX Beta 14.1 available

    This version crashes with Delphi 10.3.1 Version 26.0.33219.4899. See attached file. Mail sent to support@mmx-delphi.de Regards, François Piette Embarcadero MVP www.overbyte.be MMX Code Explorer 14.1 Crash with Rio 10.3.1 Version 26.0.33219.4899.txt
  4. Hello, An interesting feature (IMO): add a popup menu item to the source indexer to show a file in a Windows Explorer window (Much like you have in Delphi project manager). Regards,
  5. Hello, I'm an absolute fan of MMX :: Source Indexer. It is incredibly fast (Well, when scanning is done) and helpful. I'll be more than happy to have MMX :: Source Indexer window remember his position and size each time it is reopened. it is a real pain to have it always opened in the top left corner of the screen with his default position and size. Another important feature I'd like to have: In the search indexer, we have "exclude paths". That's nice but I would like to have "exclude files and paths" and be able to enter a list of wild card file/folder names. For example "*old.*" to suppress scanning of anything ending with "old" in the filename such as "blablaold.pas". Or "*old" to suppress any directory ending by "old" and any file ending by "old" such as "blabla.pas.old" but not "balablaold.pas". Another small feature: when you have auto-scan turned on, the first time you click on the search identifier tool button, the scanning begins. Then when it is done, the identifier you had selected is not searched. You have to click once more. Less important than windows position and size, but interesting for a lazy guy like me. Regards. François Piette Embarcadero MVP
  6. FPiette

    Feature request for Source Indexer

    I'm using Delphi since version 1, every single day of the year. And there are still tricks that I don't know! Thanks.
  7. FPiette

    Feature request for Source Indexer

    There is probably a way to do that since other IDE windows have a popup menu with a dockable item you can check/uncheck. When an IDE form is dockable, it can be tricky to move it exactly where you want to put it. François Piette Embarcadero MVP
  8. FPiette

    Feature request for Source Indexer

    I was not aware of that. Indeed it works as expected. Thank for the tip! How to make the window not dockable? Thanks. François Piette Embarcadero MVP
×