private void btnInserir_Click(object sender, EventArgs e) { string strTurma = txbTurma.Text; string strBloco = txbBloco.Text; try { ConexaoMySQL conn = new ConexaoMySQL(); bool result = conn.InsertTurma(strTurma, strBloco); if (!result) { MessageBox.Show("Erro ao inserir."); } else { MessageBox.Show("Inserido com sucesso."); this.Close(); } } catch (Exception ex) { MessageBox.Show(this.Name + " - Error: " + ex.Message); } }