Iam using this to get attachment name from gmail
a = CType(item.Attachments.FirstOrDefault, Attachment).Name
But Im getting an error.
Pls help me out
Iam using this to get attachment name from gmail
a = CType(item.Attachments.FirstOrDefault, Attachment).Name
But Im getting an error.
Pls help me out
Are you still having this issue?
The issue normally occurs when a variable has not been initialised (given a value). Try putting an Assign before the activity throwing an exception like so:
MyVar = ""
Thanks! I’ll try it