Jul 5, 2002 #1 zipur Programmer Joined Jul 5, 2002 Messages 13 Location CA How do you format a Time for 24hrs with VB? The following uses 12hr without Am/PM: StartTime = Time Thanks Again
How do you format a Time for 24hrs with VB? The following uses 12hr without Am/PM: StartTime = Time Thanks Again
Jul 5, 2002 #2 jitter Technical User Joined Sep 2, 2001 Messages 351 Location US txtTime.value = format(time,"HH:MM" Upvote 0 Downvote
Jul 5, 2002 #3 TrojanRabbit Programmer Joined Apr 4, 2002 Messages 190 Location US str = Format(time, "H:MM" Upvote 0 Downvote
Jul 5, 2002 Thread starter #4 zipur Programmer Joined Jul 5, 2002 Messages 13 Location CA I love this forum!!! You guys are great, thanks! Upvote 0 Downvote