View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.programming
Barb Barb is offline
external usenet poster
 
Posts: 70
Default ?? Create a Public SUB with an array as parameter. ??


I created a class

public sub FindInIt(myArray() as double)
...
€¦
End sub

When Im creating an object to call that sub ,
Obj.FindInIt(ThisismyArray) then

I receive an error message that says €¦. Compile error expected =

like if it was a function. My question is can I pass an array by reference?

Thanks.