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?
for example.
gridView.DefaultCellStyle.Format = "dd/MM/yyyy";
try this
gridView.Columns[3].DefaultCellStyle.Format = "dd/MM/yyyy";