Ver Mensaje Individual
  #4  
Antiguo 06-04-2009
Avatar de Kipow
Kipow Kipow is offline
Miembro
 
Registrado: abr 2006
Ubicación: Guatemala
Posts: 329
Reputación: 19
Kipow Va por buen camino
Este codigo me sirvio a mi:

Código Delphi [-]
var
   Mutex : THandle;

begin
   Mutex := CreateMutex(nil, True, 'miEXE);
   if (Mutex <> 0) and (GetLastError = 0) then
   begin
      Application.MainFormOnTaskbar := True;
      Application.Initialize;
      Application.Run;
      if Mutex <> 0 then
          CloseHandle(Mutex);
   end;
end.
Responder Con Cita