SmartFactory_NEOL/SOURCE/NEOL-MES/NeolTest.dpr
2026-09-04 14:06:10 +09:00

17 lines
351 B
ObjectPascal

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.