A
A Taylor
I have a bit of code that simply takes in a date from an EditCtrl and
uses COleDateTime, ParseDateTime to get the date
m_Ectrl.GetWindowText(str);
if (dt.ParseDateTime(str, VAR_DATEVALUEONLY))
{
//some code
}
The problem is a client in Korea is using my application and it is
failing to parse the date that he enters.
He enters the date like
17 [korean character for December] 2003
In english we would enter
17 December 2003.
Note: Clients in France, Spain etc have had no problems with this.
Is there any issues I should be aware of when dealing with languages
like Korean?
I have searched on Google and MSDN and come up with nothing so far so
I am hoping someone on here can help.
Many thanks for your time.
uses COleDateTime, ParseDateTime to get the date
m_Ectrl.GetWindowText(str);
if (dt.ParseDateTime(str, VAR_DATEVALUEONLY))
{
//some code
}
The problem is a client in Korea is using my application and it is
failing to parse the date that he enters.
He enters the date like
17 [korean character for December] 2003
In english we would enter
17 December 2003.
Note: Clients in France, Spain etc have had no problems with this.
Is there any issues I should be aware of when dealing with languages
like Korean?
I have searched on Google and MSDN and come up with nothing so far so
I am hoping someone on here can help.
Many thanks for your time.