private void button1_Click(object sender, EventArgs e) { try { //variaverl para guardar o inser into// String strSql; strSql = "Insert Into cadastroAluno(nome_aluno,curso,periodo,semestre,nomeLivro,telefoneCel,email)Values("; strSql += "'" + nomeAluno.Text + "',"; strSql += "'" + comboBox1.Text + "',"; strSql += "'" + comboBox2.Text + "',"; strSql += "'" + comboBox3.Text + "',"; strSql += "'" + txtlivro.Text + "',"; strSql += "'" + telefoneAluno.Text + "',"; strSql += "'" + email.Text + "')"; //pedir permissaõ para conectar e executar os comandos// objCmd.Connection = objCnx; //verificar/liberar a conexão com o banco e qual comando quero executar// //Insert -> sempre utilizar CommandText// objCmd.CommandText = strSql; //executar o comado do insert// objCmd.ExecuteNonQuery(); MessageBox.Show("Cadastro realizado", "cadastro com sucesso!", MessageBoxButtons.OK, MessageBoxIcon.Information); nomeAluno.Clear(); telefoneAluno.Clear(); email.Clear(); nomeAluno.Focus(); this.Visible = false; this.Hide(); menu tela = new menu(); tela.ShowDialog(); } catch (Exception erro) { MessageBox.Show("Erro ao cadastrar" + erro.Message, "ERRO!", MessageBoxButtons.OK, MessageBoxIcon.Error); } }
private void timer1_Tick(object sender, EventArgs e) { if (barrinha.Value < 100) { barrinha.Value = barrinha.Value + 2; } else { timer1.Enabled = false; this.Visible = false; this.Close(); menu m = new menu(); m.ShowDialog(); } if ((barrinha.Value >= 1) && (barrinha.Value <= 20)) { label1.Text = "Carregando Informações..."; label2.Text = barrinha.Value + "%"; } if ((barrinha.Value >= 21) && (barrinha.Value <= 40)) { label1.Text = "Carregando Formularios..."; label2.Text = barrinha.Value + "%"; } if ((barrinha.Value >= 41) && (barrinha.Value <= 60)) { label1.Text = "Carregando Ferramentas..."; label2.Text = barrinha.Value + "%"; } if ((barrinha.Value >= 61) && (barrinha.Value <= 70)) { label1.Text = "Sistema quase pronto aguarde..."; label2.Text = barrinha.Value + "%"; } if ((barrinha.Value >= 81) && (barrinha.Value <= 100)) { label1.Text = "Sistema pronto."; label2.Text = barrinha.Value + "%"; } }