1
Hello I’m wearing Windows FORM C# Visual Studio, how do I prevent the user to save the information in the bank without filling in the required fields, that is to say (NOT NUL)
from the bank all this via code C#. I tried with IF(){}
as it is below, but it did not work.
void IMPEDIRSALVAR()//Método impedi que o usuário salve as informações
{
if (txtNomeAluno.Text == "")
{
MessageBox.Show("Não é possivel criar um aluno sem o nome do aluno", "Cadastrando Aluno", MessageBoxButtons.OK, MessageBoxIcon.Information);
txtNomeAluno.Focus();
if (mtbNascimentoAluno.Text == "")
{
MessageBox.Show("Não é possivel criar um aluno sem a Data de nascimento", "Cadastrando Aluno", MessageBoxButtons.OK, MessageBoxIcon.Information);
mtbNascimentoAluno.Focus();
}
if (mkb_Cpf.Text == "")
{
MessageBox.Show("Não é possivel criar um aluno sem O CPF do Responsável", "Cadastrando Aluno", MessageBoxButtons.OK, MessageBoxIcon.Information);
mkb_Cpf.Focus();
}
if (txtRG.Text == "")
{
MessageBox.Show("Não é possivel criar um aluno sem o RG do Responsável", "Cadastrando Aluno", MessageBoxButtons.OK, MessageBoxIcon.Information);
txtRG.Focus();
}
if (mkb_fone_contato.Text == "")
{
MessageBox.Show("Não é possivel criar um aluno sem o Fone de contato", "Cadastrando Aluno", MessageBoxButtons.OK, MessageBoxIcon.Information);
mkb_fone_contato.Focus();
}
}
else
{
MessageBox.Show("Salvando");
}
}
All of your answers were unfortunately not valid. In the first txtbox (txtNomepupil) it works but if birth date and Cpf has Fazio it continues saving...
– Fabrício Mendes