DateTime datuMDokumenta = Convert.ToDateTime(txtDatumDokum.Text);

txtDatumDokum.Text is like "09.09.2011".

but i get FormatException error. Must i parse date?

link|improve this question

I get no exception in dotNet4.0 . – ARZ Sep 8 '11 at 6:48
try to check if you are not passing NULL or empty string there; – alexanderb Sep 8 '11 at 6:49
Which culture are you using? – Rune FS Sep 8 '11 at 6:56
feedback

7 Answers

up vote 1 down vote accepted

Try DateTime.ParseExact with the dd.MM.yyyy format string

 DateTime.ParseExact(txtDatumDokum.Text, "yyyyMMdd", CultureInfo.InvariantCulture, DateTimeStyles.None);
link|improve this answer
In my PC it doesn't work :( – Marco Sep 8 '11 at 6:47
thx it works for me. So i must always use DateTime.ParseExact even if date is valid like dd.MM.yyyy – senzacionale Sep 8 '11 at 6:51
@senzacionale you don't have to use parseexact but it's recommendable if you are only ever going to received the dates in one specific format – Rune FS Sep 8 '11 at 6:57
Try using the correct culture for your area or de-DE if you aren't sure, that should work well without having to use ParseExact, see my answer. – crlanglois Sep 8 '11 at 7:15
feedback

It's not good to see, anyway try this:

string s = "09.09.2011";
DateTime dt = Convert.ToDateTime(
    s.Replace(".",
    new System.Globalization.DateTimeFormatInfo().DateSeparator));
link|improve this answer
feedback

You need to tell us why the text input is using this format. If it is because the user enters it this way, then you need to make sure that the format matches that given by Thread.CurrentCulture.DateTimeFormat.ShortDatePattern. Changing the culture (by setting Thread.CurrentCulture) to an appropriate value will then solve your problem.

If you are supposed to parse the input no matter what format it is in, then you will need to do some manual processing first (perhaps remove spaces and other delimiter characters from the input with string.Replace) and then try to parse the date using DateTime.ParseExact and a known format string.

But it all depends on why the input has that format, and why your application's current culture does not match it.

link|improve this answer
becouse i use date.ToString("dd.MM.yyyy"). If i use ToShortDateString then i get 09/08/2011 which is not correct. Our date must be like 08.09.2011 – senzacionale Sep 8 '11 at 7:06
Thread.CurrentCulture is not valid in compact framework 3.5 – senzacionale Sep 8 '11 at 7:09
@senzacionale: If the question is about CF 3.5, please tag it as such. – Jon Sep 8 '11 at 7:11
feedback

You could try this, TryParse avoids parsing exceptions.. Then you just need check result to be sure that it parsed.

DateTime datuMDokumenta;
bool result = DateTime.TryParse(txtDatumDokum.Text, out datuMDokumenta);

You will have to determine if this is a good solution for your application.

See this example: http://msdn.microsoft.com/en-us/library/ch92fbc1.aspx

Judging by the date you gave you need to include a culture, de-DE accepts 01.01.11 type of dates but I'm not sure which one you actually want to use, you'll need to decide that.. the Code would look like this:

using System.Globalization;

DateTime datuMDokumenta;
bool result = DateTime.TryParse(txtDatumDokum.Text, CultureInfo.CreateSpecificCulture("de-DE"), DateTimeStyles.None, out datuMDokumenta);

A list of cultures can be found here, select the appropriate one for you: http://msdn.microsoft.com/en-us/library/system.globalization.cultureinfo%28v=vs.71%29.aspx

The plus here is that this code is a bit more work but it is very difficult to break. Assuming you are using a free text entry on a TextBox you don't want to be throwing exceptions.

link|improve this answer
feedback

Yes you have to parse input date in current culture.

string[] format = new string[] { "dd.MM.yyyy" };
string value = "09.09.2011";
DateTime datetime;

if (DateTime.TryParseExact(value, format, System.Globalization.CultureInfo.InvariantCulture, System.Globalization.DateTimeStyles.NoCurrentDateDefault, out datetime))
      //Valid
else
     //Invalid
link|improve this answer
feedback

DateTime dt = Convert.ToDateTime(txtDatumDokum.Text)

It is right...there is no isssue

link|improve this answer
feedback

your code:

DateTime datuMDokumenta = Convert.ToDateTime(txtDatumDokum.Text);

try changing this to:

DateTime datuMDokumenta = Convert.ToDateTime(txtDatumDokum);

and when u print the date/time

print datuMDokumenta.Text

link|improve this answer
Are you sure that ConvertToDateTime() accepts a TextBox as parameter? – Marco Sep 8 '11 at 6:56
it'll throw a error. you can't use textbox without extension. – ankush Sep 8 '11 at 12:12
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.