I need help on my DataGridView column date format. I want the date to be \"MM/dd/yyyy\". I dont need the time.
How can this be done programmatically?
After you set the DataSource of the DataGridView, set the desired format of the column:
DataSource
DataGridView
dataGridView1.Columns["dateReceived"].DefaultCellStyle.Format = "MM/dd/yyyy";