Hello, I'm using Windows Form C # Visual Studio , how do I prevent the user from saving the information in the database without filling in the required fields, ie those% in> C # . I tried with
(NOT NUL)
as 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");
}
}