program NeolTest; uses Vcl.Forms, NeolTestMain in 'NeolTestMain.pas' {frmNeolTestMain}, Editor in 'Editor.pas' {frmEditor}; {$R *.res} begin Application.Initialize; Application.MainFormOnTaskbar := True; Application.CreateForm(TfrmNeolTestMain, frmNeolTestMain); Application.CreateForm(TfrmEditor, frmEditor); Application.Run; end.