Ross,
> When an application exits in the normal way, does it automatically
> destroy all objects created at runtime?
No. You'll need to take care of them
var
Obj: TObject;
begin
Obj := TObject.Create;
try
// do what you need
finally
Obj.Free;
end;
end;
Cheers,
Sergei Stenkov
---------------------------------------------------------------------------
New Zealand Delphi Users group - Delphi List - [EMAIL PROTECTED]
Website: http://www.delphi.org.nz
To UnSub, send email to: [EMAIL PROTECTED]
with body of "unsubscribe delphi"
Web Archive at: http://www.mail-archive.com/delphi%40delphi.org.nz/
- [DUG]: Destroying Objects Ross Levis
- Re: [DUG]: Destroying Objects Nello Sestini
- RE: [DUG]: Destroying Objects James Low
- RE: [DUG]: Destroying Objects Patrick Dunford
- RE: [DUG]: Destroying Objects Sergei Stenkov
- RE: [DUG]: Destroying Objects Alan Rose
- RE: [DUG]: Destroying Objects Myles Penlington
- Re: [DUG]: Destroying Objects Alex Kouznetsov
- Re: [DUG]: Destroying Objects Nello Sestini
- RE: [DUG]: Destroying Objects Myles Penlington
- Re: [DUG]: Destroying Objects Nello Sestini
- Re: [DUG]: Destroying Objects Chrissy R
- Re: [DUG]: Destroying Objects Neven MacEwan
- Re: [DUG]: Destroying Objects Ross Levis
- Re: [DUG]: Destroying Objects Nello Sestini
