private void btnClavesSucursal_Click(object sender, EventArgs e)
 {
     try
     {
         frmClavesXIDEmpleado Claves = new frmClavesXIDEmpleado();
         Claves.ShowDialog();
         Claves.Dispose();
     }
     catch (Exception ex)
     {
         LogError.AddExcFileTxt(ex, "frmEntregaMaterial ~ btnClavesSucursal_Click");
         MessageBox.Show(Comun.MensajeError, Comun.Sistema, MessageBoxButtons.OK, MessageBoxIcon.Error);
     }
 }
 private void dgvUsuario_CellContentClick(object sender, DataGridViewCellEventArgs e)
 {
     try
     {
         if (e.RowIndex >= 0)
         {
             if (dgvUsuario.Columns[e.ColumnIndex].Name.Equals("VerMateriales"))
             {
                 Usuario DatosUser = this.ObtenerDatosUsuario(e.RowIndex);
                 if (!string.IsNullOrEmpty(DatosUser.IDEmpleado))
                 {
                     frmClavesXIDEmpleado Claves = new frmClavesXIDEmpleado(DatosUser);
                     Claves.ShowDialog();
                     Claves.Dispose();
                 }
             }
         }
     }
     catch (Exception ex)
     {
         LogError.AddExcFileTxt(ex, "frmEntregaMaterial ~ dgvUsuario_CellContentClick");
         MessageBox.Show(Comun.MensajeError, Comun.Sistema, MessageBoxButtons.OK, MessageBoxIcon.Error);
     }
 }