Jump to content

Uwe Raabe

Members
  • Content Count

    2750
  • Joined

  • Last visited

  • Days Won

    162

Everything posted by Uwe Raabe

  1. Uwe Raabe

    FireDAC MSSQL behaviour changed between 11.1 and 11.3

    Just yesterday I had a similar case where I had to add an Encrypt=No to the connection parameters for ODBC 18.
  2. Uwe Raabe

    Touchpad two fingers pan in a VCL app ?

    Have you dropped a TGestureManager onto the form and wire it to the forms Touch.GestureManager property? In addition, the Touch.InteractiveGestures.igPan musst be active (which is by default).
  3. Uwe Raabe

    String literals more then 255 chars

    I for myself have never spent any time on this limitation, because I never had to (and probably never will) write that long string literals. Not only that the style guide is much stricter, it is just way less readable and thus I would never even think of doing that. In addition I would literally slap such code in the face of the developer presenting it to me. So better don't count me in here.
  4. Uwe Raabe

    help for Indy is not available as stated in Delphi dokumentaiton

    It opens up without problems here (RAD Studio 11.3). Edit: It opens via the Help menu entry. Do you expect it to open with F1 in the sources?
  5. Uwe Raabe

    Panels and alignment

    Another answer can be found on StackOverflow (although for alTop) Delphi: How to programmatically adjust visual ordering of components with align = alTop
  6. Uwe Raabe

    Async/Await with updating visual controls

    In addition I would pre-calculate the timestamp (Now) inside the thread. Otherwise you'll get the time stamp when the main thread handles the call. Not sure if this is actually significant, though.
  7. I am reluctant to write the trivial case, but it won't execute if just no exception bubbles up to that point, perhaps because it is caught (not necessary handled properly) at some deeper level. Just curious: What problem are you actually trying to solve?
  8. Uwe Raabe

    Deleting a Field Problem

    Extend that to all dfm files.
  9. Uwe Raabe

    Delphi 11.3 is available now!

    It is indeed. That is also the reason why a couple of bugs are fixed and features implemented the way they are or not even at all.
  10. Uwe Raabe

    Delphi 11.3 is available now!

    There is no copy&paste here. That are just the release notes for Delphi 11 Alexandria when it came out. The relevant info for the update releases are linked in the Notes at the top:
  11. Uwe Raabe

    Delphi 11.3 is available now!

    Those are for Delphi 11.0 and I have doubts that they are still valid for 11.3. See: RSP 37609: PAServer ships with Python 2.7 dependencies - which are no longer available in macOS 12.3
  12. Uwe Raabe

    Delphi 11.3 is available now!

    Given that it is even not intended to work I count that as a pro
  13. In Tools - Options - User Interface - Editor Options - Search there is a percentage value to play with.
  14. Uwe Raabe

    Delphi 11.3 is available now!

    OK, let me reword it this way: I would rather switch my settings or find another workaround than going back to 11.2!
  15. Uwe Raabe

    Delphi 11.3 is available now!

    I would rather buy a new monitor instead. Was really a good investment.
  16. Uwe Raabe

    Delphi 11.3 is available now!

    Does it really matter?
  17. Uwe Raabe

    OAuth2 bearer token example?

    It is probably another module (BPL or DLL) that is internally used by the mentioned package, but is either missing or fails to load.
  18. Uwe Raabe

    TDFBatchMove.GuessFormat - How Many Rows Does It Read?

    TFDBatchMove provides the AnalyzeSample property to control that.
  19. Uwe Raabe

    One place to rule them all???

    As ever so often, the pragmatic solution probably lies somewhere in between...
  20. Uwe Raabe

    client pc database connection problem with interbase server

    Is there a reason why you don't use the original InterBase installer and select Client Only in the Choose Install Set dialog? Where did you get the information, that the steps you describe are sufficient?
  21. Uwe Raabe

    OAuth2 bearer token example?

    Have you tried the TOAuth2Authenticator component linked to a TRESTClient? It has a context menu that lets you specify play with some parameters.
  22. I have encountered the same ac couple of times, but I was not able to reproduce it reliably and thus cannot actually debug it. It is my impression that it helps to have MMX visible in all desktops.
  23. Uwe Raabe

    Connecting Actions query..

    That's the basic idea: You implement the code in the Actions OnExecute event instead of the Buttons OnClick event. That allows to use the same code for multiple controls (f.i. Buttons) spread over different forms or frames.
  24. Uwe Raabe

    Change behaviour of DateTimePicker

    Or a couple of other keys like the decimal point or the DIV key on the numeric keypad.
×