Ir para conteúdo

POWERED BY:

Arquivado

Este tópico foi arquivado e está fechado para novas respostas.

Rodrigo Miss

Aplicativo já em execução

Recommended Posts

Coloque issu no codigo do Projeto...

 

var  Mutex : THandle;{$R *.res}  begin  Mutex:= CreateMutex(nil, true, 'MinhaAplicacao');  if Mutex <> 0 then	  begin	  if GetLastError = Error_Already_Exists then		  begin		  Application.MessageBox('O sistema já está em execução!','MeuSistema', mb_Ok + mb_IconInformation);		  exit;		  end;	  end;  Application.Initialize;  Application.Title := 'Rodrigo';  Application.CreateForm(TForm1, Form1);  Application.Run;end.

Compartilhar este post


Link para o post
Compartilhar em outros sites

e para os esquecidinhos e ligeirinhos não esqueçam de Declarar no Uses a biblioteca Windows

 

 

Coloque issu no codigo do Projeto...

 

var
  Mutex : THandle;

{$R *.res}
  begin
  Mutex:= CreateMutex(nil, true, 'MinhaAplicacao');
  if Mutex <> 0 then
	  begin
	  if GetLastError = Error_Already_Exists then
		  begin
		  Application.MessageBox('O sistema já está em execução!','MeuSistema', mb_Ok + mb_IconInformation);
		  exit;
		  end;
	  end;

  Application.Initialize;
  Application.Title := 'Rodrigo';
  Application.CreateForm(TForm1, Form1);
  Application.Run;
end.

Compartilhar este post


Link para o post
Compartilhar em outros sites

×

Informação importante

Ao usar o fórum, você concorda com nossos Termos e condições.