DateTime datuMDokumenta = Convert.ToDateTime(txtDatumDokum.Text);
txtDatumDokum.Text is like "09.09.2011".
but i get FormatException error. Must i parse date?
txtDatumDokum.Text is like "09.09.2011". but i get FormatException error. Must i parse date?
| |||||||
feedback
|
|
Try DateTime.ParseExact with the dd.MM.yyyy format string
| |||||||||
feedback
|
|
It's not good to see, anyway try this:
| |||
|
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 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 But it all depends on why the input has that format, and why your application's current culture does not match it. | |||||||
feedback
|
|
You could try this, TryParse avoids parsing exceptions.. Then you just need check result to be sure that it parsed.
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:
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. | ||||
|
feedback
|
|
Yes you have to parse input date in current culture.
| |||
|
feedback
|
|
DateTime dt = Convert.ToDateTime(txtDatumDokum.Text) It is right...there is no isssue | |||
|
feedback
|
|
your code:
try changing this to:
and when u print the print datuMDokumenta.Text | |||||
|
feedback
|