Hi,
This is my Add To Collection details
I want to read the list that is inside the Add To Collection activity, thus I use a MessageBox for testing
However when I run the workflow, it shows this
Does anyone know why is it like this ?
Thank you
Hi,
This is my Add To Collection details
I want to read the list that is inside the Add To Collection activity, thus I use a MessageBox for testing
However when I run the workflow, it shows this
Does anyone know why is it like this ?
Thank you
Please use for each activity to loop thru the collection and to print the values.
For Each item in yourList
MessageBox item.ToString
ā With out loop, to print the values in a list
string.Join(ā,ā, yourList.ToArray)
Hi KarthikByggari,
Thank you!!
This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.