Index: /trunk/Eraser.cpp
===================================================================
--- /trunk/Eraser.cpp	(revision 882)
+++ /trunk/Eraser.cpp	(revision 883)
@@ -62,4 +62,5 @@
 m_pDoc(0)
 {
+    setlocale(LC_ALL, "");
     _set_se_translator(SeTranslator);
 }
Index: /trunk/StdAfx.h
===================================================================
--- /trunk/StdAfx.h	(revision 882)
+++ /trunk/StdAfx.h	(revision 883)
@@ -47,4 +47,6 @@
 #define _WIN32_IE 0x0600   // IE6+
 #endif
+
+#include <locale.h>
 
 #define _ATL_CSTRING_EXPLICIT_CONSTRUCTORS  // Some CString constructors will be explicit.
Index: /trunk/SchedulerView.cpp
===================================================================
--- /trunk/SchedulerView.cpp	(revision 882)
+++ /trunk/SchedulerView.cpp	(revision 883)
@@ -1604,5 +1604,5 @@
 
             if (odtLast.GetStatus() == COleDateTime::valid)
-                strData = odtLast.Format();
+                strData = odtLast.Format("%c");
             else
                 strData.Empty();
@@ -1653,5 +1653,5 @@
             else
             {
-                strData = psiItem->GetNextTime().Format();
+                strData = psiItem->GetNextTime().Format("%c");
             }
 
