I was just trying to write a function like this:
Public Function myGetAttribute(ByVal xmlFileName As String, _
ByVal ParamArray elementV() As String, _
ByVal ParamArray attributesV() As String) As Collection
This is not working
"End of parameter list expected. Cannot define parameters after a paramarray parameter."
Why is it not possible to put two paramarrays as parameters and what is a workaround?