This topic has not yet been rated - Rate this topic

Minute Function

Returns an Integer value from 0 through 59 that represents the minute of the hour.

Public Function Minute(ByVal TimeValue As DateTime) As Integer
TimeValue

Required. Date value from which you want to extract the minute.

You can also obtain the minute of the hour by calling DatePart and specifying DateInterval.Minute for the Interval argument.

This example uses the Minute function to obtain the minute of the hour from a specified time. In the development environment, the time literal is displayed in short time format using the locale settings of your code.

Dim thisTime As Date
Dim thisMinute As Integer
thisTime = #4:35:17 PM#
thisMinute = Minute(thisTime)
' thisMinute now contains 35.


Namespace: Microsoft.VisualBasic

Module: DateAndTime

Assembly: Visual Basic Runtime Library (in Microsoft.VisualBasic.dll)

Did you find this helpful?
(1500 characters remaining)
Community Content Add
Annotations FAQ