Jump to content

Uwe Raabe

Members
  • Content Count

    2538
  • Joined

  • Last visited

  • Days Won

    145

Everything posted by Uwe Raabe

  1. Uwe Raabe

    Form 'appears' before it should

    Check if fMatchResult has its Visible = True in the designer and switch it off to fix the issue.
  2. Uwe Raabe

    The Delphi 11.2 release thread

    If it is not that difficult, why don't you create such an example yourself and attach it to a bug report with all necessary steps? That would at least match the workflow Embarcadero is used to.
  3. Uwe Raabe

    The Delphi 11.2 release thread

    Is there a way to setup a shortcut to "re-run" the Delphi LSP instances?
  4. Uwe Raabe

    The Delphi 11.2 release thread

    Under Tools - Configure Tools add a new entry named Kill LSP with the following settings: Code: Program: taskkill Parameters: /IM DelphiLSP.exe /F
  5. Uwe Raabe

    FireDAC performances

    Fine, but there are other means to make the query fetch the complete result set. A simple Last call or setting a local index different to the query order can have the same effect.
  6. Uwe Raabe

    FireDAC performances

    Are you fetching the whole result set at once?
  7. I doubt that anyone from Embarcadero can do something against a Windows internal error caused by an update. At least as long as Microsoft doesn't provide steps to work around that.
  8. Where do you get that information? To my knowledge it is Win10 21H1:
  9. That indicates that somewhere is a direct reference to the XE5 folder in your system. Can it be that in the past you had a Professional edition with FireDAC extension and some remnants cause this?
  10. The issue was not caused by the Delphi components itself, but by the WinApi interface they use, which acted faulty after the Windows update. As stated in my previous comment the issue is already solved with KB5020435. Thus I have no need to switch to any 3rd party component.
  11. And you can confirm that $(BDS)\source\data\firedac is in the IDE Browsing Path and the XE5 path doesn't appear anywhere in the Delphi 11 installation nor in the project?
  12. The $(BDS) variable is set for the current IDE when it is started. If you have multiple IDE instances open each get its own value for $(BDS). There must be something else going wrong in your installation. Is this for all projects or only for one?
  13. Have you checked your library and browsing paths?
  14. I can confirm that KB5020435 solves this issue on my system. As Windows Update didn't list it, I had to download and install it manually
  15. Uwe Raabe

    Custom component on a VCL frame

    I don't know if all is necessary, but I at least it is sufficient: have a field for the sub component exposed as a published read-property create the instance in the constructor (Self as Owner is allowed omitting the Free in the destructor) call SetSubComponent(True) after creation set all properties as needed don't forget to set Parent
  16. There simply is no license for older Community Editions than the current one. CE licenses are restricted to one year. After that one can get a new license but for the then current version only. If you need to use an older Delphi version you are supposed to buy a full Delphi version, where the license covers older versions, too.
  17. Uwe Raabe

    Custom component on a VCL frame

    I guess, that is not one of the use cases the developers had in mind when they designed the custom component system. AFAIK, you can either have subcomponents created dynamically with their properties stored as sub-properties of the outer component or you can have a frame stored in the object repository with derived instances in your project.
  18. Uwe Raabe

    Custom component on a VCL frame

    Can you show the code for the custom component?
  19. Yes, the problem is Windows 10 only.
  20. I managed to get it working with the following steps: In the registry add a subkey to HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\SecurityProviders\SCHANNEL\Protocols named "TLS 1.3" Add another subkey to this new key named "Client" Add a DWORD to the Client key named "Enabled" with Value = 1 Add another DWORD to the Client key named "DisabledByDefault" with Value = 0 In the TRESTClient component of your example enable TLS13 in SecureProtocols Edit: You need to restart Windows to make the registry settings active.
  21. Currently removing the Windows Update seems the only solution.
  22. Uwe Raabe

    Delphi 11.2 Patch 1 bug ??

    That one is new with 11.2 and it is indeed enabled by it.
  23. $(SanitizedProjectName) gives the name of the project without extension.
  24. Uwe Raabe

    Issue in copy and past

    What does that garbage look like?
×