My requirement is as follows, I am calling a procedure and I'm populating a DataTable
. Assume that the procedure is returning emp_id
, emp_name
, designation and status. When I use DataGridView1.DataSource = <Name of the DataTable>
, I get all the columns populated into the DataGridView. How can I display only selected columns in the DataGridView
. For e.g, I want to show only emp_id
and emp_name
.
Similarly, can you please help me as to how I can increase the width of the columns of the DataGridView by writing code.