4
Answers

which is better plzzz

hmoghazi

hmoghazi

20y
3.1k
1
i am a new programm. i am trying to use C# i am a little confused don't know use VB.net or C# i found C# more intresting but a little complex where VB. is soo easy but not that int. which one is better ? and why is it better .? does vb or C# can do anything the other can not ? or did microsoft say anything about which is better and that application is more realiable on any of them ? alsoo i have a prob. with functions and oop i got the logic but the synt. ............... could any 1 tell me an easy book in oop for C#?
Answers (4)
0
Jiteendra Sampathirao

Jiteendra Sampathirao

NA 6.9k 1.5m 13y


Hi,
Go through these links:

http://www.sql-server-helper.com/tips/date-formats.aspx
http://msdn.microsoft.com/en-us/library/az4se3k1.aspx

0
Jiteendra Sampathirao

Jiteendra Sampathirao

NA 6.9k 1.5m 13y

Hi,

Do like this::

string @DOB = DateTime.ParseExact(txtDOB.Text, "dd/MM/yyyy",  System.Globalization.CultureInfo.CurrentUICulture. DateTimeFormat).ToString("MM/dd/yyyy");



Otherwise post the code here...
0
Abhimanyu K Vatsa

Abhimanyu K Vatsa

NA 50.9k 12.4m 13y
if you still find problem then provide us the code you are using, will try to find out the mistake. 

thanks
0
Prasad Godbole

Prasad Godbole

NA 153 141.7k 13y
Hi all,


Thanks for giving solutions.

I used 24 hours date format and now hour is appearing 00.


Thanks again

Kind Regards
Prasad
0
Abhimanyu K Vatsa

Abhimanyu K Vatsa

NA 50.9k 12.4m 13y
read this msdn post, it probably will help you.

http://msdn.microsoft.com/en-us/library/8kb3ddd4.aspx
0
Vulpes

Vulpes

NA 98.3k 1.5m 13y
It's just struck me that the problem here is that you're using the 12 hour clock ("hh" format). If you change to the 24 hour format ("HH"), then it should get rid of the 12:00:00  i.e. dateobject.ToString("yyyy-MM-dd HH:mm:ss").
0
Vulpes

Vulpes

NA 98.3k 1.5m 13y
See if using dateobject.Date.ToString("yyyy-MM-dd hh:mm:ss") gets rid of the hour.