Then > message box " Are equal"
Else > message box " Are NOT equal"
But when is executing is always coming back as “Are Not equal” even when they are.
Thank you in advance for your help!
underlined you can find in the Upper part the in transaction item and in the lower part text from the variable activity
Also the result of the the write line activity
I have tried the syntax that you provided but it keeps showing that they are not equal
Thanks
If String.Equals(CustomerinAppS, in_TransactionItem.SpecificContent("Cliente").ToString, StringComparison.OrdinalIgnoreCase) Then
MessageBox.Show("Are equal")
Else
MessageBox.Show("Are NOT equal")
End If
If
(in_TransactionItem.SpecificContent("Cliente").ToString.Trim()).Equals(CustomerinAppS.ToString.Trim())
Then
MessageBox.Show("Are equal")
Else
MessageBox.Show("Are NOT equal")
End If