SmartFactory_NEOL/SOURCE/Agent,Kiosk/NEOL-LS_PLC_Agent01_20251106/LSPLCAgent01.dpr
2026-09-04 14:08:41 +09:00

15 lines
259 B
ObjectPascal

program LSPLCAgent01;
uses
Vcl.Forms,
U_LSPLCAgent in 'U_LSPLCAgent.pas' {F_LSPLCAgent};
{$R *.res}
begin
Application.Initialize;
Application.MainFormOnTaskbar := True;
Application.CreateForm(TF_LSPLCAgent, F_LSPLCAgent);
Application.Run;
end.