du musst das von "Bernhard Geyer" und "mkinzler" kombinieren. Mit Application.FindComponent findest du nur die Forms welche als Owner Application bekommen haben.
Also entweder so:
Delphi-Quellcode:
m1_form := Tm1_form.create(Application);
m1_form.Name := 'm1_form';
oder
Delphi-Quellcode:
Application.CreateForm(Tm1_form, m1_form);
m1_form.Name := 'm1_form';