Hi folk“s
How can i set RptTextBox value in HeaderSection at Runtime?
I want to set it based on a global variable.
Thanks
Printable View
Hi folk“s
How can i set RptTextBox value in HeaderSection at Runtime?
I want to set it based on a global variable.
Thanks
You can access the report controls through the Sections and Controls collections of the DataReport object.
DataReport1.Sections("Section2").Controls("Label1").Caption = "Hello World"
Section2 is the default name of the PageHeader section.
Thank you, brucevde. Problem solved. :thumb: