I am trying to create a DataTable and bind it to a DataGridView. It works, but I can\'t set columns headers via the Caption property.
DataTable
DataGridView
Caption
You should try this:
datagridView.Columns[0].HeaderText = "Title Goes Here.";
You may do this for the number of columns you have added. Only the index will change.