program Project1;
uses
Forms,windows,
Unit1 in 'Unit1.pas' {Form1};
{$R *.RES}
begin
Application.Initialize;
createmutex(nil,false,'project1');
if GetLastError =ERROR_ALREADY_EXISTS then
application.Terminate ;
Application.CreateForm(TForm1, Form1);
Application.Run;
end.