This is what I have so far.... As I'm sure you can probably tell, I am just trying to feel my way through this. I have only been coding in C# for a couple of weeks.
Code:
List<string> orders = new List<string>(); foreach (DataGridViewRow dr in ordersTable.Rows) { orders.Add(dr.Cells["szPOSOrderNumber"].Value.ToString());
Leave a comment: