private void Button1_Click(object sender, EventArgs e) { frmAdicionarEditora frmAdd = new frmAdicionarEditora(); frmAdd.ShowDialog(); this.editorasTableAdapter.Insert( frmAdd.editoraRow.Nome, frmAdd.editoraRow.Descricao ); this.editorasTableAdapter.Fill(this.sistemaBibliotecaDBDataSet.Editoras); }
private void Button1_Click(object sender, EventArgs e) { frmAdicionarEditora addEditora = new frmAdicionarEditora(); addEditora.ShowDialog(); if (!string.IsNullOrEmpty(addEditora.editoraRow?.Nome)) { this.editorasTableAdapter.Insert( addEditora.editoraRow.Nome, addEditora.editoraRow.Descricao); } this.editorasTableAdapter.Fill(this.sistemaBibliotecaDBDataSet.Editoras); }