Trying to format Dim col As Infragistics.Win.UltraWinGrid.UltraGridColumn as date

Deemar

Member
Joined
Aug 19, 2008
Messages
8
Programming Experience
Beginner
Hi, I've got a grid and I'm declaring the columns as
VB.NET:
Dim col As Infragistics.Win.UltraWinGrid.UltraGridColumn
and everything works lovely. I've even got it set so that on load time of the window, it converts all the date/time columns into date/time format using
VB.NET:
col.Format = m_sysSettings.DATE_FORMAT
.
My problem is when I click the cell to edit the date, it flips back to the value I entered in there. So if I enter '1/2/2003' it will format it to 'January 2 2003' like it should. But when I click the cell, it enters edit mode and changes back to '1/2/2003'. How do I fix this?
 
Back
Top