Time Format
-
Hi ALL, I need only Time format in Textbox..So please..How to do.. Regards Somasundaram G
-
Hi ALL, I need only Time format in Textbox..So please..How to do.. Regards Somasundaram G
Hello Give me the complete detail? If u wnat to put time in a text box then simply change the format using DateTime class and then assigned to text box. Simple. ;)
Syed Shahid Hussain
-
Hello Give me the complete detail? If u wnat to put time in a text box then simply change the format using DateTime class and then assigned to text box. Simple. ;)
Syed Shahid Hussain
I need Time Format like this 06:30:40 in TextBox.So pls.. I want to join in the website
-
I need Time Format like this 06:30:40 in TextBox.So pls.. I want to join in the website
-
Hi ALL, I need only Time format in Textbox..So please..How to do.. Regards Somasundaram G
System.DateTime dTime = new System.DateTime(2001, 5, 16, 3, 2, 15); // If the current culture is "en-US", // longDateString gets "Wednesday, May 16, 2001" string longDateString = dTime.ToLongDateString(); // If the current culture is "en-US", // longTimeString gets "3:02:15 AM" string longTimeString = dTime.ToLongTimeString(); or u can use DateTime.ToShortTimeString() method
-
Hi ALL, I need only Time format in Textbox..So please..How to do.. Regards Somasundaram G
Use a DateTimePicker.