15 lines
246 B
ObjectPascal
15 lines
246 B
ObjectPascal
program OPCClient;
|
|
|
|
uses
|
|
Vcl.Forms,
|
|
uOPCClient in 'uOPCClient.pas' {fOPCClient};
|
|
|
|
{$R *.res}
|
|
|
|
begin
|
|
Application.Initialize;
|
|
Application.MainFormOnTaskbar := True;
|
|
Application.CreateForm(TfOPCClient, fOPCClient);
|
|
Application.Run;
|
|
end.
|