The first time I opened VS, I was able to see my custom business objects in the Configure Object Data Source dialog. However, now I'm not able to see any of the classes in the project in the Available data source types tab. I've re-installed several times and have made sure to build the project when changes are made and before running any of the wizards. I've added the following simple class which also does not show up in the list:
[System.ComponentModel.
DataObject(true)]
public class Car
{
public string Make { get; set; }
public string Model { get; set; }
public List<Car> GetCars()
{
return new List<Car>();
}
}
public static ReportSource GetReportSource(object dataObject){ var report = new TextReport(); report.DataSource = dataObject; return new InstanceReportSource { ReportDocument = report };}Me.ColorNameTextBox.Value = My.Resources.MyProjectResources.ColorNameMe.ColorValueTextBox.Value = "=IIf(Fields.Color =0, ""Blue"", IIf(Fields.Color=1,""Red"", ""Black""))"I’m using Telerik Standalone Report Designer and wonder how to add a watermark, e.g. “Draft”, on each page of a report.
In the documentation there is only shown how to do it programatically but not how to do it with the standalone designer.
Hope you will help me.