I need to pass all the name that are in the name field "invites" to another name field called "CopyTo", but I'm not very familliar with LS so I don't know how to do.. I tried
UIDoc2.FieldSetText("SendTo",uidoc.document.invites)
and
UIDoc2.FieldSetText("SendTo",Cstr(uidoc.document.invites))
but is says Type mismatch...
I tried also waht I use to do in VB, a For loop
For i = 0 To uidoc.document.invites
var = var + Cstr(uidoc.document.invites(i)) + ","
Next
but again it didn't work.
How can I do that transfer between my 2 Name field ??
UIDoc2.FieldSetText("SendTo",uidoc.document.invites)
and
UIDoc2.FieldSetText("SendTo",Cstr(uidoc.document.invites))
but is says Type mismatch...
I tried also waht I use to do in VB, a For loop
For i = 0 To uidoc.document.invites
var = var + Cstr(uidoc.document.invites(i)) + ","
Next
but again it didn't work.
How can I do that transfer between my 2 Name field ??