here's a simple example, but you'll probably need to tie in column2 with the values in column1:

vb Code:
  1. Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
  2.     DataGridView1.Columns.Add("Column2", "Column2")
  3.     For x As Integer = 0 To DataGridView1.Rows.Count - 1
  4.         DataGridView1.Rows(x).Cells(1).Value = x
  5.     Next
  6. End Sub