Sub mySub(parm1 as String, parm2=invalid)
if parm2 <> invalid then
'do something
end if
'do more stuff
End Sub
mySub("hello")
mySub("hello","world")
"renojim" wrote:
I assume you really mean "optional", not just a parameter with a default value, although I can't really see the difference.