Jump to content

Uwe Raabe

Members
  • Content Count

    2907
  • Joined

  • Last visited

  • Days Won

    169

Posts posted by Uwe Raabe


  1. 3 minutes ago, John R. said:

    Embarcadero employees and/or Delphi enthusiasts are free to use that video, should they care to file a report.

    I am happily taking that task for you. Can you just list the installed packages accountable for that number of standard actions? I'm not sure if I was able to identify all of them.

    • Thanks 1

  2. 9 minutes ago, PeterPanettone said:

    This shows that the Embarcadero team does not conduct real-world tests. It seems they do their tests with empty environments.

    That is probably true, but it isn't wrong in the first place. As real-worlds tend to differ significantly between users, it would be tedious and most likely incomplete what Embarcadero can do about simulating these scenarios and test every and all IDE functionality with it. 

     

    Usually these real-world problems show up in beta tests, where a bunch of developers test in their own environment, but obviously in this case they didn't. This can be caused by people with multiple libraries installed registering a lot of standard actions just not using standard actions.

     

    That is the point where QP reports from normal users come into play. Without anyone complaining about an issue via the official channel there is no trigger to analyze the problem and fix it.

     

    I suggest to file a QP report about the visual delay and a separate report about the search/filter box. The request for a busy indicator would be moot when the performance problem is be fixed, which I would favor over that indicator.

    • Like 3

  3. 5 minutes ago, tgbs said:

    We have a problem when double-clicking on the TActionlist. There are only a few actions, but the image list (TVirtualImageList) is large

    There are several QP entries about that. It has been fixed in Delphi 12. It is one of the driving issues for me for moving to D12.

    • Like 1

  4. 26 minutes ago, ErikT said:

    Often, the only feasible way around using an Application.ProcessMessages call is to use multiple threads.

    It just looks like the easiest to implement, but most of the time it turns out to be the hardest to get it done right.

     

    Another approach is to wrap the code into some TThread.ForceQueue construct. F.i. a loop calling Applicaton.ProcessMessages can be refactored like this:

     

    procedure DoAllTheThings;
    begin
      DoSomething;
      while DoWeNeedToWait do
        Application.ProcessMessages;
      DoWhatEverIsNecessary;
    end;

    Refactored:

    procedure DoAllTheThings;
    begin
      DoSomething;
      DoTheRest;
    end;
    
    procedure DoTheRest;
    begin
      if DoWeNeedToWait then
        TThread.ForceQueue(nil, DoTheRest)
      else
        DoWhatEverIsNecessary;
    end;

    All the code is still executed in the main thread, but there is no loop blocking anything.

    • Like 2

  5. That is just like Application.ProcessMessages works: It processes the messages in the queue. If one of those messages calls Application.ProcessMessages in a loop, the outer Application.ProcessMessages will only get control back when that inner loop ends and the event call returns. 

     

    IMHO, you can safely remove the frivolous in your last statement.

    • Like 1

  6. Although it is not written explicitly in the docs

    Quote
    • For a logical operator and a bitwise operator using the same symbol, the logical operator is used only when the operands are booleans. Since the type of record for this record operator is not a boolean, a logical operator will only be used when the other operand is a boolean.

    I assume the Logical operators are used as if they were Bitwise operators when the condition above is not met and no corresponding Bitwise operators are declared.

     

    Nevertheless could you achieve the same using Bitwise operators in the first place.


  7. 33 minutes ago, Lainkes said:

    But once you disable the panel, nothing can be changed.

    Well, you have to enable all parent controls of the PageControl to let the user change tabs.

     

    In most of the cases disabling a whole form is not what you actually need. Often it boils down to disable individual components unless you can group some with TPanel or TTabSheet. There is no common approach to that as it usually depends on your UI design - which we cannot see.

×