COleDateTime, ParseDateTime problems in Korea

  • Thread starter Thread starter A Taylor
  • Start date Start date
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.
 
The problem is a client in Korea is using my application and it is
failing to parse the date that he enters.

I suggest that you re-post your question in the
microsoft.public.win32.programmer.international newsgroup. You're more
likely to get an answer there.

Dave
 
Back
Top