SyntaxFix
Write A Post
Hire A Developer
Questions
You could loop through DataGridView using Rows property, like:
DataGridView
Rows
foreach (DataGridViewRow row in datagridviews.Rows) { currQty += row.Cells["qty"].Value; //More code here }