Pequeños cambios: mas y mejor logging

This commit is contained in:
Ernesto Abarca Ortiz 2018-12-10 14:34:56 +01:00
parent 3d6a99aa78
commit 1c814a0632
3 changed files with 8 additions and 4 deletions

View File

@ -248,7 +248,7 @@ namespace LectorVerdnatura
this.txtMaxRegistros.Name = "txtMaxRegistros"; this.txtMaxRegistros.Name = "txtMaxRegistros";
this.txtMaxRegistros.Size = new System.Drawing.Size(45, 20); this.txtMaxRegistros.Size = new System.Drawing.Size(45, 20);
this.txtMaxRegistros.TabIndex = 10; this.txtMaxRegistros.TabIndex = 10;
this.txtMaxRegistros.Text = "300"; this.txtMaxRegistros.Text = "1000";
this.txtMaxRegistros.Leave += new System.EventHandler(this.txtMaxRegistros_Leave); this.txtMaxRegistros.Leave += new System.EventHandler(this.txtMaxRegistros_Leave);
// //
// frmPrincipal // frmPrincipal

View File

@ -115,7 +115,7 @@ namespace LectorVerdnatura
private void frmPrincipal_FormClosing(object sender, FormClosingEventArgs e) private void frmPrincipal_FormClosing(object sender, FormClosingEventArgs e)
{ {
if (! systemShutdown) if (!systemShutdown)
{ {
// Reset the variable because the user might cancel the shutdown. // Reset the variable because the user might cancel the shutdown.
systemShutdown = false; systemShutdown = false;
@ -123,8 +123,12 @@ namespace LectorVerdnatura
DialogResult respuesta = MessageBox.Show("La aplicacion debe estar en marcha para recoger los fichajes!" + Environment.NewLine + "¿ Esta seguro de que desea cerrar la aplicacion ?", "Confirmacion", MessageBoxButtons.YesNo); DialogResult respuesta = MessageBox.Show("La aplicacion debe estar en marcha para recoger los fichajes!" + Environment.NewLine + "¿ Esta seguro de que desea cerrar la aplicacion ?", "Confirmacion", MessageBoxButtons.YesNo);
if (respuesta == DialogResult.No) if (respuesta == DialogResult.No)
e.Cancel = true; e.Cancel = true;
else
logevent.logeventwritefile("AVISO: FormClosing() ejecutado y el usuario confirmo el cierre: CERRANDO APLICACION....");
}
else {
logevent.logeventwritefile("AVISO: FormClosing() ejecutado y apagado del sistema detectado: CERRANDO APLICACION....");
} }
//e.Cancel = true; //e.Cancel = true;
//this.WindowState = FormWindowState.Minimized; //this.WindowState = FormWindowState.Minimized;

View File

@ -83,7 +83,7 @@ namespace LectorVerdnatura
out idwInOutMode, out idwYear, out idwMonth, out idwDay, out idwHour, out idwMinute, out idwSecond, ref idwWorkcode)) out idwInOutMode, out idwYear, out idwMonth, out idwDay, out idwHour, out idwMinute, out idwSecond, ref idwWorkcode))
{ {
String FechaRegistro = idwYear.ToString() + "-" + String.Format("{0:0#}", idwMonth) + "-" + String.Format("{0:0#}", idwDay) + " " + String.Format("{0:0#}", idwHour) + ":" + String.Format("{0:0#}", idwMinute) + ":" + String.Format("{0:0#}", idwSecond); String FechaRegistro = idwYear.ToString() + "-" + String.Format("{0:0#}", idwMonth) + "-" + String.Format("{0:0#}", idwDay) + " " + String.Format("{0:0#}", idwHour) + ":" + String.Format("{0:0#}", idwMinute) + ":" + String.Format("{0:0#}", idwSecond);
nuevoregistro = "Registro --> " + sdwEnrollNumber + " --> WH: " + warehouseFk.ToString() + " --> " + FechaRegistro; nuevoregistro = "Registro --> NIS=" + sdwEnrollNumber + " --> WH: " + warehouseFk.ToString() + " --> " + FechaRegistro;
DateTime fecha = DateTime.Parse(FechaRegistro); DateTime fecha = DateTime.Parse(FechaRegistro);