Opttypedparam
Public Sub SubX(Optional b As Boolean) If IsMissing(b) Then MsgBox "b is missing" Else MsgBox "b is not missing" End If End Sub ... 'Call SubX with no parameters SubX Public Sub SubX(Optional i As Integer = 1) ... ... End Sub
Public Sub SubX(Optional b As Boolean)
If IsMissing(b) Then
MsgBox "b is missing"
Else
MsgBox "b is not missing"
End If
End Sub
...
'Call SubX with no parameters
SubX
Public Sub SubX(Optional i As Integer = 1)
...
...
End Sub
(opttypedparam.html)- by Paolo Puglisi - Modifica del 25/3/2019