Problems with the use of WebGMaps in frames

Hello,
I use WebGMap component in a frame.

When I close my application with [X] button from window border only then frame closes and applcation stays active.
Next click on [x] button my application close but sometimes with av.

When I close my application with mainform.close I have memory leaks in UWEBGMAPS because HookedClients isn't freed,

Could you please help ?!?!

Hi,


This issue has now been fixed.
The update will be available with the next release of the TMS VCL WebGMaps.
Hi Bart,

I've tested new release 2.9.7.0. but bugs are still there.
Can you please tell me when the errors are fixed?

Thx

It seems the problem can still occur under specific circumstances.
We are currently working on a fix and will report back as soon as possible.

We addressed the issue and we will release an update next week.

Hi,


Even if in version history it is written:

"

v2.9.7.1

  • Fixed : Issue with using TWebGMaps in modal forms
  • Fixed : Issue with using TWebGMaps in modal forms
"

the map continue to not appear in modal forms.
I have installed the latest version. I'm using Delphi 7.

Thanks.

I cannot see an issue with TWebGMaps on a modal form.

Test code to show a modal form holding a TWebGMaps instance from the application mainform, this shows the TWebGMaps as expected on the modal form:


uses
  unit2;

procedure TForm1.Button1Click(Sender: TObject);
var
  frm: TForm2;
begin
  frm := TForm2.Create(Self);
  try
    frm.ShowModal;
  finally
    frm.Free;
  end;
end;