vote up 4 vote down star

I have a form that I use to show some information for some seconds. Is it ok for the form to free itself? Can I start a timer in the constructor, and then call self.free in the timer-event? Or will this potentially lead to trouble?

flag

56% accept rate

4 Answers

vote up 20 vote down check

In addition, with a form you can call release.

It sends a CM_RELEASE message to the form. As a reaction it calls Free. The advantage of release is that there are no messages left for the form which could result in a crash.

link|flag
+1, This is, IMHO, the only clean way to do in that case – Fred Apr 2 at 9:53
I think I will go for this one, in combination with setting the owner as a extra insurance. – Vegar Apr 2 at 10:09
vote up 0 vote down

I have a whole suite of objects that free themselves, and I've run various tests on them with no problems/leaks shown. A TForm might be more complex, but as long as Self.Free() is the last call made, you ought to be safe.

(For those wondering why on earth I have object that free themselves; I pass them around the system a lot, so I implemented by own reference counting scheme. When the last reference is released, so the object frees itself).

link|flag
But Self.Free would almost never be the last call made by a form because a form is almost always running code in reaction to some user action. Use Release instead. – Rob Kennedy Apr 2 at 13:25
Why not just use Interfaces for reference-counting? – Mason Wheeler Apr 2 at 15:58
I'm not after reference-counting. I'm after a form that you create one place, and then frees its self when it wants to. – Vegar Apr 2 at 20:26
@Vegar: I think Mason's comment was meant for Drarok who implemented his own reference counting and not for you :) – Smasher Apr 3 at 10:21
Hehe. Yes, that makes sense. For some reason, I think everythings about me... – Vegar Apr 3 at 20:03
vote up 9 vote down

You can make the form to free itself when it gets closed by the user or from code:

procedure TForm27.FormClose(Sender: TObject; var Action: TCloseAction);
begin
  Action := caFree;
end;

procedure TForm27.FormCreate(Sender: TObject);
begin
  Timer1.Enabled := True;
end;

procedure TForm27.Timer1Timer(Sender: TObject);
begin
  Timer1.Enabled := False;
  Close;
end;

Make sure you supply an owner in the constructor incase the application shutdowns and the form is not destroyed at the time. The owner will free the form before freeing itself.

link|flag
The more I think about it, the more I like the TCloseAction-idea. Maybe I should use that instead of release... – Vegar Apr 2 at 20:32
vote up 0 vote down

This is exactly what is done with Interfaces.

link|flag
Yes, but you should remember that Delphi's TComponent overrides the interface's reference counting, which often causes confusion. – Fabio Gomes Apr 2 at 12:26
Using interfaces, the form would be freed when it goes out of scoop. I don't want that. I want it to live as long as it wants without any references to it, and then free it self when its done showing it self. – Vegar Apr 2 at 20:29
Fabio: I'm sure you could override that. Vegar: Interfaces are reference counted, not scope-managed. – Arafangion Apr 2 at 22:39
Yes, but as long as you don't keep a reference, wouldn't the referencecount go to zero when the code where you created the form goes out of scope? – Vegar Apr 3 at 8:38
Only if you never pass it to something else... When you create the object, the ref gets incremented, so it is 1. When you assign it to something else, it becomes incremented again, so it is 2. When it leaves scope, it gets decremented, to ONE, and thus isn't destroyed. – Arafangion Apr 4 at 4:30

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.