Hi, all. I have a problem here
I wrote a procedure with parameters, using ParamArray to pass variative number of parameters, and it is exactly same as the sample in MSDN.
Sub AddLists(ByVal TheKey As String, ByVal ParamArray NamaFields() As String)
...
...
End Sub
But as I leave the Sub sentence, VB tell me with the error:
Compile error:
Expected: identifier
and the word ParamArray blocked.
Help me please, I need to do so. What's wrong with it ?
I wrote a procedure with parameters, using ParamArray to pass variative number of parameters, and it is exactly same as the sample in MSDN.
Sub AddLists(ByVal TheKey As String, ByVal ParamArray NamaFields() As String)
...
...
End Sub
But as I leave the Sub sentence, VB tell me with the error:
Compile error:
Expected: identifier
and the word ParamArray blocked.
Help me please, I need to do so. What's wrong with it ?
