18 lines
390 B
ObjectPascal
18 lines
390 B
ObjectPascal
program NeolLsPlc;
|
|
|
|
uses
|
|
Vcl.Forms,
|
|
LsPlcMain in 'LsPlcMain.pas' {frmLsPlcMain},
|
|
PlcAddressEdit in 'PlcAddressEdit.pas' {frmPlcAddressEdit},
|
|
plc_addr_info in 'plc_addr_info.pas',
|
|
plc_tmp_data in 'plc_tmp_data.pas';
|
|
|
|
{$R *.res}
|
|
|
|
begin
|
|
Application.Initialize;
|
|
Application.MainFormOnTaskbar := True;
|
|
Application.CreateForm(TfrmLsPlcMain, frmLsPlcMain);
|
|
Application.Run;
|
|
end.
|