Forum Discussion
1 Reply
- joffreRegular ContributorCheck with the "Display Object Spy" tool one attribute of the UI that has the value you are looking for.
An example in my application here, the attributes that I use are:
.contentText
.innetText
.Text
I do something like this:if (RecSet.Fields("BD_COLUMN").Value == UIComponent.contentText) {
Log.Message("Values are the same!");
} else {
Log.Error("Values aren't the same!");
}