Ejemplo n.º 1
0
        private void btALTERAR_Click(object sender, EventArgs e)
        {
            if (MessageBox.Show("Tem certeza que deseja Alterar esse Registro ?", "Alterar Registro", MessageBoxButtons.YesNo, MessageBoxIcon.Exclamation, MessageBoxDefaultButton.Button1) == DialogResult.Yes)
            {
                if (string.IsNullOrEmpty(txtDATACONSULTA.Text) && string.IsNullOrEmpty(txtDATAINICIO.Text) && string.IsNullOrEmpty(txtHORAFIM.Text) && string.IsNullOrEmpty(txtIDCONSULTA.Text))
                {
                    MessageBox.Show(" Verifique campos em Branco !", "Falha ao Alterar !", MessageBoxButtons.OK, MessageBoxIcon.Exclamation);
                }
                else
                {
                    int resultado = 0;

                    resultado = ConsultaDAL.Alterar(Convert.ToInt32(comboMEDICO.SelectedValue), Convert.ToInt16(comboPACIENTE.SelectedValue), Convert.ToDateTime(txtDATACONSULTA), Convert.ToDateTime(txtDATAINICIO), Convert.ToDateTime(txtHORAFIM), txtOBSERVACAO.Text, chkATIVO.Checked, Convert.ToInt16(txtIDCONSULTA.Text));

                    if (resultado == 1)
                    {
                        MessageBox.Show("Registro alterado com sucesso ! ! !");
                    }
                    else
                    {
                        MessageBox.Show("Falha ao alterar o registro  ! ! !");
                    }
                }
            }
            this.tabela_load();
        }