Date entry locale

  • Thread starter Thread starter John
  • Start date Start date
J

John

Hi

I am hoping some of the people here use infragistics data editor control. My
date editors only accept dates in mm/dd/yyyy format. How can I make them
allow entry in dd/mm/yyyy (British) format?

Thanks

Regards
 
If you can get access to the dates, you can format the strings, like this...
String.Format({0:dd/mm/yyyy}, yourDate);

-
Alex
 
Back
Top