Вставка изображения в отчет crystal
Привет Я создал небольшое приложение winform с помощью VB.net, в форме я создал Griddatacontrol, chartControl и некоторые текстовые поля.
Я создал функцию, которая заменяет chartControl на picture.
My problem is to import this picture in a report "Crystal Reports", so I inserted an picture (any picture) and after that I try to replace it like a textbox, but it does not work . Please is there a way I can insert this picture in Crytal Report.
Что я уже пробовал:
Private Function GetChartImage(ByVal Chart As ChartControl, ByVal Format As ImageFormat) As Image ' Create an image. Dim Image As Image = Nothing ' Create an image of the chart. Dim s As New MemoryStream() Try Chart.ExportToImage(s, Format) Image = Image.FromStream(s) Finally s.Dispose() End Try ' Return the image. Return Image End Function
cryRpt.SetParameterValue("Picture2", GetChartImage(ChartControl1, Imaging.ImageFormat.Jpeg))