Dim col0 As New DataGridViewTextBoxColumn
col0.DataPropertyName = "your data field here"
col0.HeaderText = "your Header Text here"
col0.Width = 75
col0.DefaultCellStyle.Alignment = DataGridViewContentAlignment.MiddleCenter
DataGridView1.Columns.Add(col0)