Pequeños cambios: mas y mejor logging
This commit is contained in:
parent
3d6a99aa78
commit
1c814a0632
|
@ -248,7 +248,7 @@ namespace LectorVerdnatura
|
|||
this.txtMaxRegistros.Name = "txtMaxRegistros";
|
||||
this.txtMaxRegistros.Size = new System.Drawing.Size(45, 20);
|
||||
this.txtMaxRegistros.TabIndex = 10;
|
||||
this.txtMaxRegistros.Text = "300";
|
||||
this.txtMaxRegistros.Text = "1000";
|
||||
this.txtMaxRegistros.Leave += new System.EventHandler(this.txtMaxRegistros_Leave);
|
||||
//
|
||||
// frmPrincipal
|
||||
|
|
|
@ -115,7 +115,7 @@ namespace LectorVerdnatura
|
|||
|
||||
private void frmPrincipal_FormClosing(object sender, FormClosingEventArgs e)
|
||||
{
|
||||
if (! systemShutdown)
|
||||
if (!systemShutdown)
|
||||
{
|
||||
// Reset the variable because the user might cancel the shutdown.
|
||||
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);
|
||||
if (respuesta == DialogResult.No)
|
||||
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;
|
||||
//this.WindowState = FormWindowState.Minimized;
|
||||
|
|
|
@ -83,7 +83,7 @@ namespace LectorVerdnatura
|
|||
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);
|
||||
nuevoregistro = "Registro --> " + sdwEnrollNumber + " --> WH: " + warehouseFk.ToString() + " --> " + FechaRegistro;
|
||||
nuevoregistro = "Registro --> NIS=" + sdwEnrollNumber + " --> WH: " + warehouseFk.ToString() + " --> " + FechaRegistro;
|
||||
|
||||
DateTime fecha = DateTime.Parse(FechaRegistro);
|
||||
|
||||
|
|
Reference in New Issue