
March 11th, 2003, 07:34 AM
|
 |
Contributing User
|
|
Join Date: Jul 2002
Posts: 123
Time spent in forums: 2 h 51 m 51 sec
Reputation Power: 11
|
|
|
wrong number of arguments or invalid property assignment
Hi,
I'm trying to go through a UDT array (code below) but get a "wrong number of arguments or invalid property assignment" error at the bolded bit (Course.Participents is a Get Property that returns an array):
Dim l As Long
For l = 0 To UBound(Course.Participents)
lsParticipents.AddItem Course.Participents(l).ipFullName
Next l
help would be appreciated
|