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