B
baobob
For any newish-bies out there:
I just discovered that, at least in this context, the inline test to
determine whether the user passed any arguments or not is:
function MyFunc(ParamArray MyArgs)
if UBound(MyArgs) > -1 then
<...>
else
MyFunc = "Eh, paisan, you wanna passa me an argument?"
endif
I just discovered that, at least in this context, the inline test to
determine whether the user passed any arguments or not is:
function MyFunc(ParamArray MyArgs)
if UBound(MyArgs) > -1 then
<...>
else
MyFunc = "Eh, paisan, you wanna passa me an argument?"
endif