Hi everyone,

I have implemented a subroutine. Here is the signature :
Code:
Public Sub MySubroutine(ByRef arrMyArray() As Integer, ByRef lngMyLong As Long)
I want to call my subroutine without passing in any variables.
I passed in 0 as lngMyLong but I have had to create an array to pass in the subroutine as arrMyArray.

Is there a way to call my subroutine without passing in an array variable ?

Thanks in advance for your future help