TAdvPanel HTML image refresh

I have a HTML text assigned to TAdvPanel.Text pointing to image with <IMG> tag. Images are stored in TPictureContainer.

When I changed the text with link, image was refreshed automatically until some revisions back, since then I must call refresh on TAdvPanel. Is it intended behaviour?
The panel is placed on TAdvOfficePager, switching pages force refresh, but without switching pages, the image is not refreshed (only when I call Refresh).

I have retested this here with a TAdvPanel connected to a TPictureContainer with 2 images and the code:




procedure TForm1.Button1Click(Sender: TObject);
begin
  advpanel1.Text := 'This is a picturecontainer picture: <img src="asterisk">';
end;

procedure TForm1.FormCreate(Sender: TObject);
begin
  advpanel1.Text := 'This is a picturecontainer picture: <img src="appadd">';
end;

but I cannot see an issue with drawing the image when changing the Panel caption text at runtime.
What exactly are you doing different?

my picture container loads and clears images on runtime.


I will try to make a sample project.

Ok, please send it by email and we'll investigate here upon receipt.