COleDateTime, ParseDateTime problems in Korea

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.
 
D

David Lowndes

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
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top