private void btnAddSub_Click(object sender, EventArgs e) { if (!txtSubCategoria.Text.Equals("")) { LogicaGo logica = new LogicaGo(); int res = logica.insertarSubCategoria(txtId.Text, txtSubCategoria.Text); if (res != 1) { MessageBox.Show("No se pudo ingresar el registro"); } else { MessageBox.Show("Categoria Cargada Correctamente"); cargarSubCategorias(); } } else { MessageBox.Show("Debe ingresar un nombre"); } }