コード例 #1
0
        private void CbMotivoChamado_SelectedIndexChanged(object sender, EventArgs e)
        {
            CbTipoMotivoSelecionado.DataSource    = null;
            CbTipoMotivoSelecionado.ValueMember   = "";
            CbTipoMotivoSelecionado.DisplayMember = "";

            if (CbMotivoChamado.Text == "INTERNAÇÃO EM UTI" || CbMotivoChamado.Text == "SALA VERMELHA/EMERGÊNCIA")
            {
                BtnAvancada.PerformClick();
                BtnAvancada.Enabled = false;
                BtnBasica.Enabled   = false;
            }
            else
            {
                label2.Visible         = true;
                AgendamentoNao.Visible = true;
                AgendamentoSim.Visible = true;
                TipoAM = "";
                BtnAvancada.Enabled   = true;
                BtnBasica.Enabled     = true;
                BtnAvancada.BackColor = Color.FromArgb(69, 173, 168);
                BtnAvancada.ForeColor = Color.FromArgb(229, 252, 194);
                BtnBasica.ForeColor   = Color.FromArgb(229, 252, 194);
                BtnBasica.BackColor   = Color.FromArgb(69, 173, 168);
            }
            Motivo();
        }
コード例 #2
0
 private void PreencherCampos(int id)
 {
     using (DAHUEEntities db = new DAHUEEntities())
     {
         var query = (from sp in db.solicitacoes_paciente
                      where sp.idPaciente_Solicitacoes == id
                      select sp).FirstOrDefault();
         if (query.Agendamento == "Sim")
         {
             Btnagendasim.PerformClick();
         }
         else
         {
             Btnagendanao.PerformClick();
         }
         if (query.TipoSolicitacao == "BÁSICA")
         {
             BtnBasica.PerformClick();
         }
         else
         {
             BtnAvancada.PerformClick();
         }
         CbLocalSolicita.Text = query.LocalSolicitacao;
         txtTelefone.Text     = query.Telefone;
         txtNomePaciente.Text = query.Paciente;
         if (query.Genero == "M")
         {
             RbMasculino.Checked = false;
         }
         else
         {
             RbFemenino.Checked = true;
         }
         txtIdade.Text                = query.Idade;
         txtDiagnostico.Text          = query.Diagnostico;
         chGestante.Checked           = query.Gestante;
         CbMotivoChamado.Text         = query.Motivo;
         CbTipoMotivoSelecionado.Text = query.SubMotivo;
         Prioridade.Text              = query.Prioridade;
         CbOrigem.Text                = query.Origem;
         txtEnderecoOrigem.Text       = query.EnderecoOrigem;
         CbDestino.Text               = query.Destino;
         txtEnderecoDestino.Text      = query.EnderecoDestino;
         Obs.Text = query.ObsGerais;
     }
 }