Jump to content
Fórum Script Brasil
  • 0

Execução Do Sistema


wavrick

Question

Olá Gente,

Gostaria de sabe como eu faço para não deixa o minha aplicação abrir mais de uma vez, ex: eu já estou com o sistema aberto(em execução), e por um acaso eu abrir outro sem que tenha fechado o anterior, sem sei como eu faço para não deixar duas janelas do sistema aberta beleza, valeu.

Link to comment
Share on other sites

2 answers to this question

Recommended Posts

  • 0

Coloque no .dpr:

uses Windows, Dialogs;
var hMutex:THandle;
begin
  hMutex := 0;
  try
    hMutex := CreateMutex(nil, true, 'Caption da Aplicação');
    if GetLastError = ERROR_ALREADY_EXISTS then
    begin
      ShowMessage('Aplicação já está aberta !');
      CloseHandle(hMutex);  
    end
    else
    begin
      Application.Initialize;
      Application.CreateForm(TForm1, Form1);
      Application.Run;
    end;
  finally
    ReleaseMutex(hMutex);
  end;

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.



  • Forum Statistics

    • Total Topics
      152.2k
    • Total Posts
      652k
×
×
  • Create New...