vote up 0 vote down star

hi guys....

   objfile.dateFileDate=convert.ToDatetime(Format(txtdate.text,"MM/dd/yyyy hh:mm"))

following error is coming

The string was not recognized as a valid datetime .There is an unknown word starting at 0.

What should i do to save this datetime, please help

flag

33% accept rate
4  
What does your "txtDate.Text" look like? – marc_s Apr 24 at 5:34

3 Answers

vote up 4 vote down

You can't format normal text using datetime formats.

Try

C#

objfile.dateFileDate=DateTime.ParseExact(txtdate.text, "MM/dd/yyyy hh:mm", null);

VB.NET

objfile.dateFileDate=DateTime.ParseExact(txtdate.text, "MM/dd/yyyy hh:mm", Nothing)

This is assuming dateFileDate is a DateTime type and that the txtdate.text is in the above format.

link|flag
I believe he is using VB.Net - and Format is a legacy (backwards compatible) VB6 method that would format his string as he is requesting. – Jeff Olson Apr 24 at 5:44
Even in VB6 you can't use Format to format an arbitary string. You would need to supply a date type to be able to format using that format string. – Mladen Mihajlovic Apr 24 at 5:51
Just to mention, Convert.ToDateTime is not wrong and can also be used, but DateTime.ParseExact allow you to specify a format explicitly. – Mladen Mihajlovic Apr 24 at 6:02
@Mladen: Good solution just a typo, above "Nothing" is for vb.net and "null" is for c# – Raghav Khunger Nov 15 at 11:36
Thanks @Raghav Khunger - fixed. – Mladen Mihajlovic Nov 26 at 8:21
vote up -2 vote down

Try hh:nn instead of hh:mm

I believe mm is Months in two digit format and nn is minutes in two digit format.

link|flag
2  
mm is minutes, MM is months – Mladen Mihajlovic Apr 24 at 5:46
See here for reference: msdn.microsoft.com/en-us/library/… – Mladen Mihajlovic Apr 24 at 5:46
vote up 1 vote down

If your program is used by a international crowd, read on :)

ppl from different cultures will write dates in diffrent formats, so if your always going to parse the string that could be get sticky. Consider using the calander control? Im saying this based on personal experience. Also finding out why your current one is failing, i would do a DateTime.Now.ToString() and compare that to whats in the textbox so you can see whats curently being typed in wrong ( While debugging off course, to help track down the problem)

link|flag

Your Answer

Get an OpenID
or

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