Forum Discussion
FrankDK
2 years agoContributor
A guess would be that "List(Of Items)" does not match "DataAttachment". Try below
For Each item As DataAttachment In CommentaryVar.Items
Brapi.ErrorLog.LogMessage(si, item.Text)
Next
'' or just
For Each item in api.Data.GetDataAttachments(.....
Brapi.ErrorLog.LogMessage(si, item.Text)
Next
For future questions, including something like compiler output/error messages makes it easier to troubleshoot 🙂
Related Content
- 3 years ago
- 10 months ago
- 11 months ago