Edge Chromium information messages

Hello, I'm using TMSFNCWXQRCode for generating QR codes in VCL app.
Is it possible to hide information messages about Edge chromium? (Could not initialize Edge Chromium! ...)

Hi,

You can add this to your form unit

implementation

{$R *.dfm}

uses
  VCL.TMSFNCWebBrowser.Win;

initialization
  EdgeSilentErrors := False;

It is working perfectly.
Thank you for your help

1 Like