Hi! I was trying to make time conversion to words ex. 01:20:00 = 1 hour and 20 minutes
Please help.
Hi! I was trying to make time conversion to words ex. 01:20:00 = 1 hour and 20 minutes
Please help.
try this:
vb.net Code:
Dim ts As TimeSpan = TimeSpan.Parse("01:20:00") MsgBox(String.Format("{0} hours, {1} minutes, {2} seconds", ts.Hours, ts.Minutes, ts.Seconds))
![]()
![]()
if this helps, rate me
![]()
![]()
irregular regions | numericTextbox | keycodes | removing control properties | hotkeys | rtf printing | Extended RichTextBox | iconWorks | readonly listbox | sort listview | screen capture | relational listForms | countDown timer | animated notifyIcon form | dynamic crystal report | move / resize runtime controls | reOrderable DnD listview / listbox | self closing message box | searchable list(of class) | cursor from bitmap | (VB2008+) Textbox - GetFirstVisibleLineIndex / GetLastVisibleLineIndex | vb2008 extensions | Paint lite.Net | calculator | inline calculator | export listview to word table | imperial~metric converter | export DGV to word ~ excel | globalInputHook | dropDown Calendar control | International Time + Currency | GDI+ gauge | quizControl | extended dgv
My Web Site....
Maths Revision V1.0
Play Connect4 against your PC (java Applet)
Thanks paul... working fine I made some modification base on my code functionality. thank you.