This topic has not yet been rated - Rate this topic

DateAndTime.Second Method

Returns an Integer value from 0 through 59 representing the second of the minute.

Namespace: Microsoft.VisualBasic
Assembly: Microsoft.VisualBasic (in microsoft.visualbasic.dll)

public static int Second (
	DateTime TimeValue
)
public static int Second (
	DateTime TimeValue
)
public static function Second (
	TimeValue : DateTime
) : int
Not applicable.

Parameters

TimeValue

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

Return Value

Returns an Integer value from 0 through 59 representing the second of the minute.

For more detailed information, see the Visual Basic topic Second Function (Visual Basic).

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

The following example uses the Second function to obtain the second of the minute 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 thisSecond As Integer
thisTime = #4:35:17 PM#
thisSecond = Second(thisTime)
' thisSecond now contains 17.

Windows 98, Windows Server 2000 SP4, Windows CE, Windows Millennium Edition, Windows Mobile for Pocket PC, Windows Mobile for Smartphone, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition

The Microsoft .NET Framework 3.0 is supported on Windows Vista, Microsoft Windows XP SP2, and Windows Server 2003 SP1.

.NET Framework

Supported in: 3.0, 2.0, 1.1, 1.0

.NET Compact Framework

Supported in: 2.0, 1.0
Did you find this helpful?
(1500 characters remaining)

Community Additions

ADD
© 2013 Microsoft. All rights reserved.