private void FrmAltAlunos_Load(object sender, EventArgs e)
        {
            #region Carregar os Estados
            try
            {
                Estados estados = new Estados();
                comboEstado.DataSource    = estados.selectArray("order by sigla");
                comboEstado.DisplayMember = "sigla";
                comboEstado.ValueMember   = "id_estado";
            }
            catch
            {
            }
            #endregion

            #region Carregar as Cidades
            try
            {
                Cidades   cidades = new Cidades();
                ArrayList array   = cidades.selectArray("where idEstado = " + Convert.ToInt16(comboEstado.SelectedIndex + 1) + " order by nome");
                comboCidade.DataSource    = array;
                comboCidade.DisplayMember = "nome";
                //comboCidade.ValueMember = "idEstado";
                comboCidade.ValueMember = "id";
            }
            catch
            {
            }
            #endregion

            comboEstado.SelectedIndex = idEstado;
            comboCidade.SelectedValue = idCidade;
        }
        public FrmAltAlunos(int id, int cidade, int estado)
        {
            InitializeComponent();

            idEstado = estado;
            idCidade = cidade;

            #region Carrega os dados do Aluno
            Alunos    alunos = new Alunos();
            ArrayList array  = alunos.selectArray("where id_aluno = " + id);

            //Carrega os dados do Aluno
            foreach (Alunos aluno in array)
            {
                id2                        = aluno.Id;
                textNome.Text              = aluno.Nome;
                maskedTextCpf.Text         = aluno.Cpf;
                dateNasc.Text              = aluno.DataNasc;
                maskedTextCep.Text         = aluno.Cep;
                textBairro.Text            = aluno.Bairro;
                textEndereco.Text          = aluno.Endereco;
                maskedTextTelefoneRes.Text = aluno.TelefoneRes;
                maskedTextTelefoneCel.Text = aluno.TelefoneCel;
                textEmail.Text             = aluno.Email;
                //textSenha.Text = aluno.Senha;
                //textConfirmeSenha.Text = aluno.Senha;
                textObservacao.Text = aluno.Observacao;
                if (aluno.Sexo == 'M')
                {
                    radioMasc.Checked = true;
                }
                else
                {
                    radioFem.Checked = true;
                }
            }

            Estados   estados     = new Estados();
            ArrayList arrayEstado = estados.selectArray("where id_estado = " + estado);

            foreach (Estados est in arrayEstado)
            {
                comboEstado.Text = est.Nome;
            }

            Cidades   cidades     = new Cidades();
            ArrayList arrayCidade = cidades.selectArray("where id_cidade = " + cidade);

            foreach (Cidades cid in arrayCidade)
            {
                comboCidade.Text = cid.Nome;
            }
            #endregion
        }
 private void comboEstado_SelectedIndexChanged(object sender, EventArgs e)
 {
     try
     {
         Cidades   cidades = new Cidades();
         ArrayList array   = cidades.selectArray("where idEstado = " + Convert.ToInt16(comboEstado.SelectedIndex + 1) + " order by nome");
         comboCidade.DataSource    = array;
         comboCidade.DisplayMember = "nome";
         //comboCidade.ValueMember = "idEstado";
         comboCidade.ValueMember = "id";
     }
     catch
     {
     }
 }