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

15 lines
264 B
Plaintext

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