Le paramètre '<NomParamètre>' a déjà un argument omis correspondant
Mise à jour : novembre 2007
Parameter '<parametername>' already has a matching omitted argument
Un appel de procédure fournit un argument par nom après omission du même argument par position. Voici un exemple :
Public Sub ABC(ByVal X As Byte, Optional ByVal Y As Byte = 0, _
Optional ByVal Z As Byte = 0)
' ...
' Argument Y is omitted by position, but supplied by name.
Call ABC(6, , Y:=3)
ID d'erreur : BC36566
Pour corriger cette erreur
- Fournissez l'argument par position ou supprimez la virgule qui provoque son omission.