Advertisement
Guest User

Untitled

a guest
Jan 24th, 2017
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. private void listBox1_SelectedIndexChanged(object sender, EventArgs e)
  2. {
  3. DataRow[] result = ds.Tables["AssessmentItems"].Select("GroupId = " + listBox1.SelectedIndex);
  4.  
  5. var newTable = result.CopyToDataTable();
  6. BindingSource bindSource = new BindingSource();
  7. bindSource.DataSource = newTable;
  8. dataGridView1.DataSource = bindSource;
  9. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement