Icon View Thread

The following is the text of the current message along with any replies.
Messages 1 to 3 of 3 total
Thread ResizeObserver loop limit exceeded
Tue, Sep 6 2022 11:36 PMPermanent Link

Allen Hunt

Does anyone know what could be causing a "ResizeObserver loop limit exceeded" Application error when using a TVideo component in Brave or Chrome?

It is showing up when the page loads.  Everything else seems to be working if you press OK and ignore it.

Thank you!

Best regards,
Allen
Wed, Sep 7 2022 5:02 AMPermanent Link

Ralf Mimoun

Google / Stack Overflow says that this is a "bening error" that you can safely ignore. Can you catch it in Application.OnError?


Allen W. Hunt wrote:

Does anyone know what could be causing a "ResizeObserver loop limit exceeded" Application error when using a TVideo component in Brave or Chrome?

It is showing up when the page loads.  Everything else seems to be working if you press OK and ignore it.

Thank you!

Best regards,
Allen
Thu, Sep 8 2022 4:57 AMPermanent Link

Allen Hunt

Yes that worked!  Thank you!

For EWB Version 3.02 Build 7:

  TFormMain = class(TForm)
     Video1: TVideo;
     procedure FormMainShow(Sender: TObject);
  private
     function DoError(Sender: TObject; const Message: String): Boolean;
  public
  end;

function TFormMain.DoError(Sender: TObject; const Message: String): Boolean;
begin
  ShowMessage( Message );

  Result := True;
end;

For EWB Version 2.06 Build 20:

function DoError(Sender: TObject; const Message: String; const Url: String; Line: Integer): Boolean;

Best regards,
Allen


Ralf Mimoun wrote:

Google / Stack Overflow says that this is a "bening error" that you can safely ignore. Can you catch it in Application.OnError?
Image