Exemplo n.º 1
0
        private void btn_paciente_Click(object sender, EventArgs e)
        {
            Frm_Paciente form = new Frm_Paciente();

            form.Show();

            this.Hide();
        }
Exemplo n.º 2
0
        private void dvg_paciente_CellClick(object sender, DataGridViewCellEventArgs e)
        {
            if (e.RowIndex >= 0)
            {
                Global.IDPACIENTE = int.Parse(dvg_paciente.Rows[e.RowIndex].Cells[0].Value.ToString());

                if (Global.ABRIU_PESQUISA_PACIENTE)
                {
                    Frm_Agenda form = new Frm_Agenda();
                    form.Show();
                }
                else
                {
                    Frm_Paciente form = new Frm_Paciente();
                    form.Show();
                }

                this.Hide();
            }
        }
Exemplo n.º 3
0
        private void btn_voltar_Click(object sender, EventArgs e)
        {
            if (lbl_mudar.Text == "sim")
            {
                if (MessageBox.Show("Deseja voltar ao cadastro de paciente e perder as alterações desta evolução?", "Medical", MessageBoxButtons.YesNo, MessageBoxIcon.Warning) == DialogResult.Yes)
                {
                    Frm_Paciente form = new Frm_Paciente();
                    form.Show();

                    this.Hide();
                }
                else
                {
                    btn_gravar.Focus();
                }
            }
            else
            {
                Frm_Paciente form = new Frm_Paciente();
                form.Show();

                this.Hide();
            }
        }