I have data from an excel file which contains one column as DateTime with a specific format. Now I retrieved data from the file using dataadapter and fill the datatable.
How can I change the DateTime column format into specific culture before binding datatable with datagridview?
You could use the DefaultCellStyle property of the DateTime column of your DataGridView to format and display your DateTime values in a culture specific format.
Here is a small example:
Hope, this helps.