Can someone tell me what the default is for a variable that is declared as optional? For example:


Function Fun1(optional byval an_int as Integer)
Fun2(an_int)
End Function


Function Fun2(byval an_int as Integer)
' do something here with an_int
End Function





What will this pseudocode do?


I will rate all useful suggestions

In reply to:

A man who asks a question is a fool for 15 minutes. A man who doesn't ask a question is a fool for a lifetime. -Chinese Proverb




Karok