Click to Rate and Give Feedback
MSDN
MSDN Library
Visual Studio 2005
Visual Studio
Visual Basic
Functions
S-Z Functions
 Second Function

  Switch on low bandwidth view
This page is specific to
Microsoft Visual Studio 2005/.NET Framework 2.0

Other versions are also available for the following:
Visual Basic Language Reference 
Second Function (Visual Basic) 

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

Public Function Second(ByVal TimeValue As DateTime) As Integer

Parameters

TimeValue

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

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.

Visual Basic
Dim thisTime As Date
Dim thisSecond As Integer
thisTime = #4:35:17 PM#
thisSecond = Second(thisTime)
' thisSecond now contains 17.

Namespace:  Microsoft.VisualBasic

Module:  DateAndTime

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

Tags What's this?: Add a tag
Community Content   What is Community Content?
Add new content RSS  Annotations
Processing
© 2009 Microsoft Corporation. All rights reserved. Terms of Use  |  Trademarks  |  Privacy Statement
Page view tracker