Section courante

A propos

Section administrative du site

SECOND

Seconde
Visual Basic

Syntaxe

Function SECOND(n As DateTime) As Integer

Paramètres

Nom Description
n Ce paramètre permet d'indiquer la date contenant l'expression à traiter

Description

Cette fonction retourne les secondes d'une heure.

Exemples

Voici un exemple d'une utilisation typique de cette fonction :

  1. Sub Main()
  2.  MsgBox "8:13:14 AM =" & Second("8:13:14 AM") & vbCrLf & _
  3.         "12:34 =" & Second("12:34") & vbCrLf & _
  4.         "23:12:59 =" & Second("23:12:59") & vbCrLf & _
  5.         "11:34am =" & Second("11:34am") & vbCrLf & _
  6.         "11:34:43pm =" & Second("11:34:43pm") 
  7. End Sub

on obtiendra le résultat suivant :

8:13:14 AM =14
12:34 =0
23:12:59 =59
11:34am =0
11:34:43pm =43

Voici un exemple montrant comment exploiter la fonction avec le temps courant :

  1. Sub Main()
  2.  MsgBox "Seconde courante = " & Second(Time) & vbCrLf & _
  3.         "Temps courant = " & Second(Now)
  4. End Sub


Dernière mise à jour : Lundi, le 19 novembre 2012