Hello all
I am new with Report and I would binding a field of my Report (not a field of DataSource)
MyReport.cs
And in my TextBox, I tried to bind with this expression "=Report.MyString" but it's dosen't work.
It's possible ?
I wouldn't use static method because this field could depending parameters of my report or others ...
thanks for help
I am new with Report and I would binding a field of my Report (not a field of DataSource)
MyReport.cs
public
partial
class
MyReport : Telerik.Reporting.Report
{
public
string
MyString
{
get
{
return
"Demo Telerik Report"
; }
}
public
EntiteDatabase()
{
//
// Required for telerik Reporting designer support
//
InitializeComponent();
//
// TODO: Add any constructor code after InitializeComponent call
//
}
}It's possible ?
I wouldn't use static method because this field could depending parameters of my report or others ...
thanks for help