private void btn_Guardar_Click(object sender, EventArgs e) { try { if (valida.ValidarCampoVacio(txt_Id_Tipo.Text) == true) { valida.MensajeSalida("ID"); } else if ((valida.ValidarCampoVacio(this.txt_TipoDocumento.Text)) == true) { valida.MensajeSalida("Tipo Documento"); } else { tipo.ID_TipoDocumento = int.Parse(txt_Id_Tipo.Text); tipo.Descripcion = txt_TipoDocumento.Text; tipo.Grabar_tipoDocumento(); MessageBox.Show("Se han ingresado los Datos correctamente", "Informacion", MessageBoxButtons.OK, MessageBoxIcon.Information); tabla = tipo.Consultar_TipoDocumento(); dgv_tipoDoc.DataSource = tabla; this.btn_Buscar_Logo.Enabled = true; this.btn_Buscar.Visible = false; this.blanquear_objetos(); } } catch (Exception Error) { MessageBox.Show("Error al guardar los datos del Tipo Documento\n" + Error.Message, "Atencion", MessageBoxButtons.OKCancel, MessageBoxIcon.Exclamation); } }