Posted 26 March 2018, 9:55 am EST
I’m using Visual Studio 2017, ActiveReports 12, VB.NET
I have a report called arMenu. This report contains an unbound label field called lblTicketTitle.
I would like to set the text for this label field when I create the report as follows:
Dim TheTicket As New arMenu
TheTicket.lblTicketTitle.text = “This is the report title”
arMenu.run
How do I set the text for a control in a report, and then run the report.
HBH