D
Darkwing
I am using MS Managed code DateTimePicker and it works
fine, well except for all the Culture incompatability
issues. Anyways.. The following seems more like a
Framework issue.
DateTime newDate = DateTime.ParseExact(
"<a russian MMMM formated
month>/12/2003", "MMMM/dd/yyyy", null);
This gives a format exception even though if you do the
following
DateTime newDate = DateTime.ParseExact(
"<a russian MMMM formated month>", "MMMM", null);
It works fine displaying the correct month.
Problem is that the date separator for Russian is "."
not "/" and this is where this DateTime class is having
problems. Given I specified the format, the separator
should not matter.
Just wanted to put this out there.
James.
fine, well except for all the Culture incompatability
issues. Anyways.. The following seems more like a
Framework issue.
DateTime newDate = DateTime.ParseExact(
"<a russian MMMM formated
month>/12/2003", "MMMM/dd/yyyy", null);
This gives a format exception even though if you do the
following
DateTime newDate = DateTime.ParseExact(
"<a russian MMMM formated month>", "MMMM", null);
It works fine displaying the correct month.
Problem is that the date separator for Russian is "."
not "/" and this is where this DateTime class is having
problems. Given I specified the format, the separator
should not matter.
Just wanted to put this out there.
James.