private void btnActivar_Click(object sender, EventArgs e) { string mensaje = ""; try { if (dtgProducto.SelectedRows.Count > 0) { P.Id = Convert.ToInt32(dtgProducto.CurrentRow.Cells[1].Value); P.Estado = Convert.ToBoolean(dtgProducto.CurrentRow.Cells[7].Value); P.Tabla = "Producto"; P.Campo = "id_producto"; mensaje = P.Activar(); if (mensaje == "0") { MessageBoxEx.Show("Desactivado", "FactSYS", MessageBoxButtons.OK, MessageBoxIcon.Information); } else { MessageBoxEx.Show("Activado", "FactSYS", MessageBoxButtons.OK, MessageBoxIcon.Information); } } else { MessageBoxEx.Show("Seleccione un registro!", "FactSYS", MessageBoxButtons.OK, MessageBoxIcon.Exclamation); } } catch (Exception ex) { MessageBoxEx.Show("Error:" + ex.Message, "FactSYS", MessageBoxButtons.OK, MessageBoxIcon.Error); } LlenarGridProducto(); }