VBA/Excel/Access/Word/Date Functions/Second

Материал из VB Эксперт
Перейти к: навигация, поиск

Second(time) returns A Variant/Integer between 0 and 59, inclusive, representing the second for time

   <source lang="vb">

Sub dateDemo11()

  Debug.Print Second(Date)

End Sub

</source>