public FrmAltObjetivos(int id) { InitializeComponent(); Objetivo objetivos = new Objetivo(); ArrayList array = objetivos.selectArray("where id_objetivo = " + id); foreach (Objetivo objetivo in array) { id2 = objetivo.Id; textNome.Text = objetivo.Nome; } }
private void FrmAltTreino_Activated(object sender, EventArgs e) { #region Carrega os Alunos try { Alunos aluno = new Alunos(); ArrayList array = aluno.selectArray("order by nome"); comboAluno.DataSource = array; comboAluno.DisplayMember = "nome"; comboAluno.ValueMember = "id"; } catch { } #endregion #region Carrega os Treinadores try { Treinadores treinador = new Treinadores(); ArrayList array = treinador.selectArray("order by nome"); comboTreinador.DataSource = array; comboTreinador.DisplayMember = "nome"; comboTreinador.ValueMember = "id"; } catch { } #endregion #region Carrega os Objetivos try { Objetivo objetivo = new Objetivo(); ArrayList array = objetivo.selectArray("order by nome"); comboObjetivo.DataSource = array; comboObjetivo.DisplayMember = "nome"; comboObjetivo.ValueMember = "id"; } catch { } #endregion #region Carrega os Grupos Musculares try { GrupoMuscular grupo = new GrupoMuscular(); ArrayList array = grupo.selectArray("order by nome"); comboGrupoMuscular.DataSource = array; comboGrupoMuscular.DisplayMember = "nome"; comboGrupoMuscular.ValueMember = "id"; } catch { } #endregion comboAluno.SelectedValue = idAluno; comboTreinador.SelectedValue = idTreinador; comboObjetivo.SelectedValue = idObjetivo; }