How to get content out of textbox when it isn't text?
Posted: Tue Feb 18, 2014 11:57 pm
When we insert a Text box into the report, and it looks like this:

we can select its text right? This worked for me.
But what about when the Text box doesn't quite have just text but rather something like this:

How can we get not the value of that but rather just the text, what is inside the { }, "myTable.myField" in that case. All it returns to me is "Text1".

we can select its text right? This worked for me.
Code: Select all
For Each comp As StiComponent In Report.GetComponents
MsgBox(comp.Name)
Next

How can we get not the value of that but rather just the text, what is inside the { }, "myTable.myField" in that case. All it returns to me is "Text1".