Aviso de ya esta en ejecucion mas claro

This commit is contained in:
Ernesto Abarca Ortiz 2018-09-12 12:03:46 +02:00
parent 45d5aca358
commit 640d63ec31
1 changed files with 2 additions and 2 deletions

View File

@ -44,9 +44,9 @@ namespace LectorVerdnatura
string aProcName = aProcess.ProcessName;
if (Process.GetProcessesByName(aProcName).Length > 1)
{
string mensaje = " ===== AVISO: LA APLICACION YA ESTA EN EJECUCION!! =====" + Environment.NewLine + "Verifique si hay un icono en la barra de tareas o un proceso anterior colgado." + Environment.NewLine + "Cerrando esta instancia...";
string mensaje = " ===== AVISO: LA APLICACION YA ESTA EN EJECUCION!! =====" + Environment.NewLine + "Verifique si hay un icono en la barra de tareas, un proceso anterior colgado o ejecutandose en otra sesion." + Environment.NewLine + "Cerrando esta instancia...";
logevent.logeventwritefile(mensaje);
MessageBox.Show(mensaje);
MessageBox.Show(mensaje,"Verdnatura Lector Huellas");
// Application.Exit(); ESTA FORMA NO FUNCIONA EN ESTA APLICACION
Environment.Exit(1);
}