private void btnExcluirMedicamento_Click(object sender, EventArgs e)
        {
            DialogResult resultado = MessageBox.Show("Deseja realizar a exclusão do medicamento?", "Atenção", MessageBoxButtons.YesNo, MessageBoxIcon.Information);
            if (resultado == System.Windows.Forms.DialogResult.Yes)
            {
                try
                {
                    ITENSUSUARIOCRONICOTableAdapter itens = new ITENSUSUARIOCRONICOTableAdapter();
                    itens.DeletaMedicamentoPorIDDescricaoIDCronico(int.Parse(txIdMedicamento.Text), int.Parse(txIdReceita.Text));
                    this.txQuantidade.Value = new decimal(new int[] { 1, 0, 0, 0 });
                    txQuantidade.Enabled = true;
                    txMedicamento.ReadOnly = false;
                    txMedicamento.Clear();
                    txIdMedicamento.Clear();
                    CarregaMedicamentos();
                    btnExcluirMedicamento.Enabled = false;
                    btnIncluirMedicamento.Enabled = true;
                }
                catch (Exception err)
                {

                    MessageBox.Show(err.Message);
                }
            }
        }