I want to make 6 digit number and put it number of count at data grid view 1. Currently I used below code. This show numbers like 1,2,3,4,5..... like....
For Each row As DataGridViewRow In DataGridView1.Rows
Dim obj(row.Cells.Count - 1) As Object
For i = 0 To row.Cells.Count - 1
obj(i) = row.Cells(i).Value
Next
Me.DataGridView3.Rows.Add((obj))
Next
But I want to >> make numbers like this. 100001,100002,100003 .....
Can anyone help ?