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?
The easiest way is to use DateTime.ToShortDateString() or DateTime.ToLongDateString()
DateTime.ToShortDateString()
DateTime.ToLongDateString()
If neither of those formats works take a look at DateTime.ToString(string)