Instruction End

Indique la fin d'une procédure ou d'un bloc.

Syntaxe :


End, End Enum, End Function, End If, End Property, End Select, End Sub, End With

Paramètres :

Utilisez l'instruction End comme suit :

Instruction

End : non obligatoire, mais peut être saisie n'importe où dans une procédure afin de mettre fin à l'exécution du programme.

End Enum: termine une instruction VBA

End Function : marque la fin d'une instruction Function.

End If : marque la fin d'un bloc If...Then...Else.

End Property: Marque la fin d'une instruction Property.

End Select : marque la fin d'un bloc Select Case.

End Sub : marque la fin d'une instruction Sub.

End With: termine une instruction With

Exemple :


Sub ExampleRandomSelect
Dim iVar As Integer
    iVar = Int((15 * Rnd) -2)
    Select Case iVar
        Case 1 To 5
            Print "Nombre entre 1 et 5"
        Case 6, 7, 8
            Print "Nombre entre 6 et 8"
        Case Is > 8 And iVar < 11
            Print "Supérieur à 8"
        Case Else
            Print "En dehors de la plage 1 à 10"
    End Select
End Sub

Aidez-nous !