When I want to create a TComponent
descendent using the Create method in delphi we must pass a parameter :
className.Create(AOwner)
where AOwner
is of type TComponent
From what i know it accepts any one of three parameter(in default create cases)
Nil,Self, application
I did't quite understood when to use which.
Can someone please elaborate on same.