Jump to content

Uwe Raabe

Members
  • Content Count

    2527
  • Joined

  • Last visited

  • Days Won

    145

Everything posted by Uwe Raabe

  1. https://quality.embarcadero.com/browse/RSP-16511
  2. Uwe Raabe

    How do I update the sqlite dll in RAD Studio?

    The Client info mentions <sqlite3_x86.obj statically linked> That means the SQLite engine is part of the exe or bpl. You cannot change that for the IDE.
  3. Uwe Raabe

    IDE Syntax Highlighter using Tree-sitter

    If such an API would wrap things like "provide LSP with all necessary code for the current project" and "notify this interface with the requested results" that would make things easier. Even not trivial, though.
  4. Uwe Raabe

    IDE Syntax Highlighter using Tree-sitter

    The LSP protocol is documented, but one has to implement the complete client code from the ground up and that is a pretty complex task. Currently there is no ready to use API provided by the IDE.
  5. That is a scenario known not to work. Especially it is the driver behind RSP-35301
  6. Uwe Raabe

    Cannot compile FMX app for window 32 bits platform

    Under Tools - Options - Language - Delphi - Library check if the Library path contains c:\program files (x86)\embarcadero\studio\22.0\lib\Win32\release (or wherever you installed Delphi to). If that holds true, then check that FMX.FontGlyphs.dcu is available there.
  7. Uwe Raabe

    Flash when showing form with VCL Styles

    My advice is related to styles that have a TPanel with a solid color. This rules out scenarios where a form wide image or pattern is visible as a (semi-)transparent background. If a TPanel is drawn in a solid color anyway, there is no benefit from drawing its parent background first. Thus setting ParentBackground to false omits some of teh drawing completely. It also helps when the form gets a full client TPanel containing all other controls to omit drawing that form client area on each paint event. With these simple steps we reduced flicker from highly annoying to no more perceptible.
  8. Uwe Raabe

    No uses clause at cursor position.

    The new release V15.1.3 is available now.
  9. Uwe Raabe

    No uses clause at cursor position.

    The release is scheduled for later this day.
  10. I know and that is already planned. For the moment MMX provides an action Insert Attributes... which allows to select an attribute from a configurable list. If you customize the MMX toolbar to contain this action, you get a simple way to add attributes to existing fields, properties and methods.
  11. Uwe Raabe

    FireDac ParamByName Exception

    ResourceOptions.ParamCreate is True?
  12. Uwe Raabe

    Welcome Page - Edit Layout not working

    No, you probably misunderstood. The Edit Layout offers an Options button, which takes you to the Welcome Page options page. There you can select a background image for each theme. You only have to make sure that when you change the image for one theme, you need to save this change before you start the process again to change the background for another theme. This has been reported already and closed as Works as expected: https://quality.embarcadero.com/browse/RSP-37883
  13. Uwe Raabe

    Welcome Page - Edit Layout not working

    After you change the background image, you need to save the dialog before selecting another theme.
  14. Uwe Raabe

    class operator TRectF.Add

    https://quality.embarcadero.com/browse/RSP-38757
  15. Currently this is not possible, but it is already in the feature requests. You can add attributes to existing fields or properties, though.
  16. Uwe Raabe

    class operator TRectF.Add

    That is not the case here. Negative numbers are allowed. In both cases the non-zero borders are ordered correctly. The check for IsEmpty on both rectangles is a logical flaw. A Union of two empty rectangles can result in a non-empty rectangle. @Gustav Schubert Please file a bug report in QP.
  17. Uwe Raabe

    Your experience with custom styles - do they work well?

    That doesn't hold for applications that have to conform to some external guide lines like Corporate Identity or security considerations. Imagine a control software for a machine or automat that looks different depending on the OS used for the current hardware. What if the software on the stationary PC looks different to that used on an iPad for remote access. There are plenty of use cases where the look and feel of a software has to be independent from the underlying operating system - and be it just independent of its current version.
  18. Uwe Raabe

    Your experience with custom styles - do they work well?

    Isn't that a highly subjective question? Any answer would probably depend on someone's personal opinion.
  19. The IDE has always been non DPI aware before version 11, so such a setting didn't even exist for versions below 11.
  20. Uwe Raabe

    No uses clause at cursor position.

    I had a related issue just yesterday where the synchronization between Editor and MMX failed completely. Normally moving the cursor inside the editor selects the current item in MMX. There are several source files where this doesn't work with build 2527. Although I wasn't able to determine the parts leading to that, I was able to fix it. I will provide a new version shortly.
  21. Uwe Raabe

    Show Cyclic Dependencies

    The DSM view shows only units that are part of cycles - direct or indirect. If you are not familiar with the DSM view you can as well switch to the Cycles tab and see the cycles as a tree.
  22. Uwe Raabe

    TMemo instead of TLabel

    procedure GetString(param1: string; param2:string; myLabel: TLabel); overload; Begin myLabel.caption := GetDescription(); End; procedure GetString(param1: string; param2:string; myMemo: TMemo); overload; Begin myMemo.lines.Add(GetDescription()); End;
  23. Uwe Raabe

    I solved my problem but

    Are you sure about that? The code shown looks like this if formatted properly: function GetUpDate(Link: string): string; var S: string; IdHTTP: TIdHTTP; begin IdHTTP := TIdHTTP.Create(nil);//Form1); try S := IdHTTP.Get(Link); result := S; except ShowMessage('Could not get VERSION information'); end; IdHTTP.Free; end; The exception is handled with a ShowMessage call and after that the code following the end is executed, which calls IdHTTP.Free. Although I also prefer the try-finally approach, this code is perfectly valid, as long as ShowMessage returns as expected.
  24. Uwe Raabe

    High DPI & anchoring in Delphi 11

    Hello Mathias, At least it is not intended, but as you have a reproducible test case you should file a report in QP. Regards Uwe
  25. Uwe Raabe

    Show the ancestors for a class?

    Yes, and that is exactly what I wrote. MMX can only display what is somewhere in the current unit. This includes the ancestor of a class, but not the ancestor of that. I am not sure what you mean. If you Ctrl-Click on the type TButton in the source editor it will navigate you to the declaration of TButton in Vcl.StdCtrls.pas, but that is totally unrelated to MMX.
×