Advertisement
Guest User

Untitled

a guest
Jun 25th, 2017
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. With receiptCollection
  2.                 .Add(orderNumber)
  3.                 .Add(costumer)
  4.                 .Add(sum)
  5.                 .Add(signCode)
  6.             End With
  7.  
  8.             For i = 0 To (dgvBestillingsListe.RowCount - 1)
  9.                 'makeItemString = ""
  10.                For j = 0 To (dgvBestillingsListe.ColumnCount - 1)
  11.                     makeItemString = ""
  12.                     makeItemString = (dgvBestillingsListe.Item(j, i).Value)
  13.                     'makeItemString += (dgvBestillingsListe.Item(j, i).Value & vbTab)
  14.                    receiptCollection.Add(makeItemString)
  15.                 Next j
  16.                 'receiptCollection.Add(makeItemString)
  17.            Next i
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement