Advertisement
Guest User

Untitled

a guest
Jun 25th, 2017
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1.  Dim n As Integer = dgvConfirmSale.Rows.Add()
  2.         Dim i, j As Integer
  3.  
  4.         For i = 5 To Form1.receiptCollection.Count
  5.             'MsgBox(i)
  6.            dgvConfirmSale.Rows.Item(n).Cells(0).Value = (i - (i - 1))
  7.             'MsgBox(dgvConfirmSale.Item(0, 0).Value)
  8.            For j = 5 To Form1.receiptCollection.Count
  9.                 dgvConfirmSale.Rows.Item(n).Cells(j - 4).Value = Form1.receiptCollection.Item(j)
  10.             Next j
  11.         Next i
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement