Exemplo n.º 1
0
        private void EliminarButton_Click(object sender, EventArgs e)
        {
            MyErrorProvider.Clear();

            int id;

            int.TryParse(IdnumericUpDown.Text, out id);

            if (IdnumericUpDown.Value == 0)
            {
                MyErrorProvider.SetError(IdnumericUpDown, "El campo ID no puede estar vacio");
                IdnumericUpDown.Focus();
            }
            else
            {
                if (!ExisteEnLaBaseDeDatos())
                {
                    MessageBox.Show("No se puede Eliminar un Paciente que no existe", "Fallo", MessageBoxButtons.OK, MessageBoxIcon.Error);
                    return;
                }
                else
                if (PacienteBLL.Eliminar(id))
                {
                    MessageBox.Show("Paciente Eliminado", "Exito", MessageBoxButtons.OK, MessageBoxIcon.Information);
                    Limpiar();
                }
                else
                {
                    MyErrorProvider.SetError(IdnumericUpDown, "Id no Existe");
                }
            }
        }
Exemplo n.º 2
0
        //Eventos de los botones
        private void BtnEliminar_Click(object sender, EventArgs e)
        {
            int id;

            int.TryParse(PacienteId.Text, out id);
            Limpiar();
            if (PacienteBLL.Eliminar(id))
            {
                MessageBox.Show("Eliminado");
            }
            else
            {
                ErrorProvider.SetError(PacienteId, "No se puede eliminar un usuario que no existe");
            }
        }