Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- foreach (DataGridViewRow row in this.dataGridView1.Rows)
- {
- foreach (DataGridViewCell cell in row.Cells)
- {
- if (cell.Size.IsEmpty)
- {
- continue;
- }
- MessageBox.Show(cell.Value.ToString());
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement