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?
dataGridView1.Columns[0].FormatString = "{0:dd.MM.yyyy}";
Just replace your column index[0,1,2...etc] and get your desired result!