private void lblBtnAlunos_Click(object sender, EventArgs e) { frmAlunos telaAlunos = new frmAlunos(); this.Hide(); telaAlunos.Show(); }
private void toolStripMenuItem3_Click(object sender, EventArgs e) { frmAlunos telaAdminAlunos = new frmAlunos(); this.Hide(); telaAdminAlunos.Show(); }
private void pctVoltar_Click(object sender, EventArgs e) { frmAlunos telaAlunos = new frmAlunos(); this.Hide(); telaAlunos.Show(); }
private void lblBtnCadastrar_Click(object sender, EventArgs e) { if (txtNome.Text == string.Empty || mskdCep.MaskFull == false || rdSexFeminino.Checked == false && rdSexMasculino.Checked == false || mskdCpf.Text == string.Empty || txtBairro.Text == string.Empty || txtLogin.Text == string.Empty || mskdNascimento.MaskFull == false || cmbPagPeriodo.Text == string.Empty || cmbPagForma.Text == string.Empty || txtEndereco.Text == string.Empty || txtNum.Text == string.Empty || txtSenha.Text == string.Empty || txtConfirmacao.Text == string.Empty) { MessageBox.Show("Por favor, preencha todos os campos obrigatorios vazios", "Campos vazios", MessageBoxButtons.OK, MessageBoxIcon.Exclamation); if (txtNome.Text == string.Empty) { pbANome.Visible = true; } if (mskdCpf.MaskFull == false) { pbACPF.Visible = true; } if (rdSexFeminino.Checked == false && rdSexMasculino.Checked == false) { pbAsexo.Visible = true; lblObrigatorioSexo.Visible = false; } if (mskdCep.MaskFull == false) { pbACEP.Visible = true; } if (txtBairro.Text == string.Empty) { pbAbairro.Visible = true; } if (txtLogin.Text == string.Empty) { pbAlogin.Visible = true; } if (mskdNascimento.MaskFull == false) { pbADdeN.Visible = true; } if (cmbPagPeriodo.Text == string.Empty) { pbAPagPeriodo.Visible = true; } if (cmbPagForma.Text == string.Empty) { pbAPagForma.Visible = true; } if (txtEndereco.Text == string.Empty) { pbAendereco.Visible = true; } if (txtNum.Text == string.Empty) { pbANum.Visible = true; } if (txtSenha.Text == string.Empty) { pbASenha.Visible = true; } if (txtConfirmacao.Text == string.Empty) { pbAconfSenha.Visible = true; } } else { if (txtSenha.Text == txtConfirmacao.Text) { if (acessarAlunoCad.verificarLogin(txtLogin.Text) == false) { MessageBox.Show("O nome de usuário escolhido (Login) já existe. \r\nPor favor, digite outro!", "Login já existente", MessageBoxButtons.OK, MessageBoxIcon.Error); pbAlogin.Visible = true; txtLogin.Focus(); } else { try { acessarAlunoCad.cadastrarAluno(txtNome.Text, mskdCelular.Text, txtEmail.Text, mskdNascimento.Text, mskdCpf.Text, mskdTelefoneEmer.Text, sexo, cmbPagPeriodo.Text, cmbPagForma.Text, mskdCep.Text, txtEndereco.Text, txtBairro.Text, txtNum.Text, txtComplemento.Text, txtLogin.Text, txtSenha.Text); MessageBox.Show("Aluno cadastrado com sucesso.", "Cadastro de Alunos", MessageBoxButtons.OK, MessageBoxIcon.Information); this.Hide(); frmAlunos telAlunos = new frmAlunos(); telAlunos.Show(); } catch (FormatException) { MessageBox.Show("A data digitada não é válida", "Data inválida", MessageBoxButtons.OK, MessageBoxIcon.Error); pbADdeN.Visible = true; mskdNascimento.Focus(); } } } else { MessageBox.Show("A senha e confirmação não coincidem!", "Senhas diferentes", MessageBoxButtons.OK, MessageBoxIcon.Error); pbAconfSenha.Visible = true; pbASenha.Visible = true; txtSenha.Focus(); } } }
private void lblBtnCadastrar_Click(object sender, EventArgs e) { if (txtNome.Text == string.Empty || mskdCep.MaskFull == false || sexo == null || mskdCpf.Text == string.Empty || txtBairro.Text == string.Empty || txtLogin.Text == string.Empty || mskdNascimento.MaskFull == false || cmbPagPeriodo.Text == string.Empty || cmbPagForma.Text == string.Empty || txtEndereco.Text == string.Empty || txtNum.Text == string.Empty || txtSenha.Text == string.Empty || txtConfirmacao.Text == string.Empty) { MessageBox.Show("Por favor, preencha todos os campos obrigatorios vazios", "Campos vazios", MessageBoxButtons.OK, MessageBoxIcon.Exclamation); if (txtNome.Text == string.Empty) { pbANome.Visible = true; } if (mskdCpf.MaskFull == false) { pbACPF.Visible = true; } if (sexo == null) { pbAsexo.Visible = true; lblObrigatorioSexo.Visible = false; } if (mskdCep.MaskFull == false) { pbACEP.Visible = true; } if (txtBairro.Text == string.Empty) { pbAbairro.Visible = true; } if (txtLogin.Text == string.Empty) { pbAlogin.Visible = true; } if (mskdNascimento.MaskFull == false) { pbADdeN.Visible = true; } if (cmbPagPeriodo.Text == string.Empty) { pbAPagPeriodo.Visible = true; } if (cmbPagForma.Text == string.Empty) { pbAPagForma.Visible = true; } if (txtEndereco.Text == string.Empty) { pbAendereco.Visible = true; } if (txtNum.Text == string.Empty) { pbANum.Visible = true; } if (txtSenha.Text == string.Empty) { pbASenha.Visible = true; } if (txtConfirmacao.Text == string.Empty) { pbAconfSenha.Visible = true; } } else { if (txtSenha.Text == txtConfirmacao.Text) { try { acessarAluno.alterar(txtNome.Text, mskdCelular.Text, txtEmail.Text, mskdNascimento.Text, mskdCpf.Text, mskdTelefoneEmer.Text, sexo, cmbPagPeriodo.Text,cmbPagForma.Text, mskdCep.Text, txtEndereco.Text, txtBairro.Text, txtNum.Text, txtComplemento.Text, txtLogin.Text, txtSenha.Text,dadosAlunosParaTodosFrms.CodAluno); MessageBox.Show("Aluno alterado com sucesso.", "Edição de Alunos", MessageBoxButtons.OK, MessageBoxIcon.Information); frmAlunos telaAlunos = new frmAlunos(); this.Close(); telaAlunos.Show(); } catch (FormatException) { MessageBox.Show("A data digitada não é válida", "Data inválida", MessageBoxButtons.OK, MessageBoxIcon.Error); pbADdeN.Visible = true; mskdNascimento.Focus(); } } else { MessageBox.Show("A senha e confirmação não coincidem!", "Senhas diferentes", MessageBoxButtons.OK, MessageBoxIcon.Error); pbAconfSenha.Visible = true; pbASenha.Visible = true; txtSenha.Focus(); } } }