Is it possible to service TTMSFNCWebBrowser on TFrame in Windows operating system?

When I run TTMSFNCWebBrowser on a TFrame in Windows, the program stops and nothing happens.
test.zip (58.0 KB)

Hi,

Thank you for the sample code, we have applied a fix for this issue, the next version will address this.

Hello, Pieter Scheldeman.
When will I get a new version?

We are currently working on a new version, we aim for an update next week.

I tested the function of TTMSFNCWebBrowser in TFrame with the version released on the 23rd, but there are still problems. When will I get the resolved version?

Hi,

We have tested this here and couldn't reproduce the issue anymore

Please make sure to clean & rebuild your application. Alternatively, please create the webbrowser programmatically.

This code runs fine for me :slight_smile: TThread.ForceQueue(TThread.CurrentThread,
procedure
begin
FWebBrowser := TTMSFNCWebBrowser.Create(self);
with FWebBrowser do
begin
parent := self;
Align := TAlignLayout.Client;
end;

	end);