Bonjour
dans un formulaire, j'ai 20 Labels et un TextBox qui sert pour résultat.
je voudrais savoir comment calculer le nombre des labels Non Vide de format texte.
Merci
Public Function compter() As Long
Dim ctr As Control
For Each ctr In Me.Controls
If TypeName(ctr) = "Label" Then
If ctr.Caption <> "" Then compter = compter + 1
End If
Next ctr
End Function
Public Function compter() As Long
Dim ctr As Control
For Each ctr In Me.Controls
If TypeName(ctr) = "Label" Then
If ctr.Caption <> "" Then compter = compter + 1
End If
Next ctr
End Function