Hey guys, I have an application that I want to display some data from a sql db in a DataGridView... I have the data displayed in the DataGridView now but here are my questions..
For hiding you columns ("Row_ID") You can use
dgView.Columns[0].Visible = false;
For setting header text
dgView.Columns[1].HeaderText = "PartNumber";