DateAndTime.Second Method
Assembly: Microsoft.VisualBasic (in microsoft.visualbasic.dll)
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.Reference
DateAndTime ClassDateAndTime Members
Microsoft.VisualBasic Namespace
System
DateTime
ArgumentException
ArgumentOutOfRangeException
Other Resources
Second Function (Visual Basic)Day Function (Visual Basic)
Hour Function (Visual Basic)
Minute Function
Now Property
TimeOfDay Property
DatePart Function (Visual Basic)