I have noticed that the combined date time editor is a bit tricky to use and prone to end user frustration. Is there a way I can split a date_time field in a databse into 2 columns in the grid? One for date and one for time?
Peter
I think you don't need to actually split it. Just take the column out of database twice like
SELECT dateDOB AS date1, dateDOB AS date2 FROM tableUser
and then set the Format property of each column to ask each column to display either the date or the time.
Doesn't the update on that get a bit weird? If I change the date column and the time column, I have to write a method that keeps the two in sync.