M
McManCSU
I get this error:
Compile error
Argument not optional
when i try to return a collection like this:
For i = 1 To assyNums.count
For j = 1 To assyNums.Item(i).getBOM.count
partnum = assyNums.Item(i).getBOM.Item(j)
occur = numOccurances(partnum)
numOccur.Add (occur)
Next j
.......
(BOMParts is an obj variable and is already initialized)
Public Function getBOM() As Collection
getBOM = BOMparts
End Function
I have tried the simple way where I make a temporary collection an
assign it to what ".getBOM()" returns but same error. Any help
Compile error
Argument not optional
when i try to return a collection like this:
For i = 1 To assyNums.count
For j = 1 To assyNums.Item(i).getBOM.count
partnum = assyNums.Item(i).getBOM.Item(j)
occur = numOccurances(partnum)
numOccur.Add (occur)
Next j
.......
(BOMParts is an obj variable and is already initialized)
Public Function getBOM() As Collection
getBOM = BOMparts
End Function
I have tried the simple way where I make a temporary collection an
assign it to what ".getBOM()" returns but same error. Any help