Time format in control numeric up/down in c#
-
hi, i am using a control like numericup/down for my appl'n. now i want use in time formay like 00:00:00(HH:MM:ss) i shouldbe in the position to increment/decrement the sec,min and hours. can u anyone help me pls with Regards :)prasad
-
hi, i am using a control like numericup/down for my appl'n. now i want use in time formay like 00:00:00(HH:MM:ss) i shouldbe in the position to increment/decrement the sec,min and hours. can u anyone help me pls with Regards :)prasad
Use a DateTimePicker control instead. Set the following properties: ShowUpDown = true Format = Custom CustomFormat = HH:mm:ss
----------------------------- In just two days, tomorrow will be yesterday.
-
Use a DateTimePicker control instead. Set the following properties: ShowUpDown = true Format = Custom CustomFormat = HH:mm:ss
----------------------------- In just two days, tomorrow will be yesterday.
hi, Thank you ys it is working Thank you :)
-
hi, Thank you ys it is working Thank you :)
No problem. Glad to help.
----------------------------- In just two days, tomorrow will be yesterday.