Without specifying the SpecificContent for a QueueItem is it possible to retrieve the first element of it?
Like I don’t care about it’s structure, which element it is, only I want to see something fast from the TransactionItem.
Without specifying the SpecificContent for a QueueItem is it possible to retrieve the first element of it?
Like I don’t care about it’s structure, which element it is, only I want to see something fast from the TransactionItem.
Hi @obeliksz
I do not think you can do that, the reason is that when you add items to a queue you pass specific arguments that can be retrieved by the same specific argument names.
Thanks,
Prankur
If tra.SpecificContent.Any Then
MsgBox(tra.SpecificContent.First().Key & “:” & tra.SpecificContent.First().Value.ToString)
End If
Would’nt this work?
Cheers
That is the one, I think I mis read the question there.
This is the perfect solution.
Thanks,
Prankur
Happens ![]()