Ian Branch 127 Posted June 24, 2021 Hi Team, What is the difference, if any, between.. MyForm := TMyForm.Create(nil); and Application.CreateForm(TMyForm, MyForm) Just curious. Regards & TIA, Ian Share this post Link to post
Lajos Juhász 293 Posted June 24, 2021 The first one will create TMyForm instance with no owner. While the second one creates an instance of TMyForm owned by the application object. In case the form is the first form created by the application it will make it the mainform of the application. For more detail open VCL.Forms. Share this post Link to post