Dear all,
unfortunately, TFrame doesn't implement the Release method as TForm does. TForm.Release does nothing more than
procedure TCustomForm.Release;
begin
if Application <> nil then
Application.ReleaseComponent(Self)
else
Free;
end;
As TFrame is also a TComponent descendant, I'd like to add the same Release method to my frames.
But I wonder whether I can do this safely because I assume that there's a good reason that TFrame lacks the Release method.