Howdy, Stranger!

It looks like you're new here. If you want to get involved, click one of these buttons!

In this Discussion

TElTrayInfo access violation on show

Hello

we are using the TElTrayInfo control in our applications to show some notifications to the user. Since our last update to the current version (From LMD VCL Complete 2020 to LMD VCL Complete 2021) we are getting access violations when we try to show a message.

The problem can be reproduced relatively easily in a new project by adding a TElTrayInfo to the form and trying to show a message via a button click:

procedure TForm1.Button1Click(Sender: TObject);
begin
  ElTrayInfo1.Message := 'Test';
  ElTrayInfo1.Show();
end;

The access violation occurs when ElTrayInfo1.Show() is called.
After some debugging the problem seems to be in the FormCreate of the TTrayInfoForm.


Kind Regards
Pascal

Comments

Sign In or Register to comment.