Código Delphi
[-]
procedure CreateFormFromName( const FormName : string);
var
fc : TFormClass;
f : TForm;
begin
fc := TFormClass(FindClass(FormName));
f := fc.Create(Application); f.Show;
end;
en la forma debe añadir:
initialization
RegisterClass(T Fnombre de la forma);