Hello everybody...
I have created a report and i need to display images. This images are in db. On the design of my report I put this code:
this.pictureBox3.Value = "=Fields.Front";
When I run my report from a Windows Form , I get the "Parameter is not valid" exception.
Please, if someone has an idea, tell me what must I do...
Thanks...
chart1.ChartTitle.TextBlock.Text =
"My Test Chart";
chart1.Report.DataSource = aDs;
chart1.Series.Clear();
ChartSeries s = new ChartSeries();
s.Type =
ChartSeriesType.Pie;
s.DataYColumn =
"Value";
s.DataLabelsColumn =
"Desc";
chart1.Series.Add(s);
Partial
Public Class Report1
Inherits Telerik.Reporting.Report
Public Sub New()
InitializeComponent()
Dim Orders As MyObj.OrdersCollection = MyObj.OrdersFacade.GetAll
' me.datasource = Orders
End Sub
Public Sub main()
End Sub
End Class