To use a databound image, just make sure the image field or column is of type byte []. Using filenames to access images is not supported. But you can walk around by loading the images from files to the data table column as byte array.
If you have issues when creating a report design, please ask a question
If you have issues when creating a report design, please ask a question
That will be fine
I can understand the error if i see the code section causing the error
The Code should just a direct translation from java
DESIGN REPORT Dim D As New ReportDesigner5.Designer 'Instatiate a designer object d.Filename = <filename> 'Set the design file location d.Rpt.Open(d.Filename) 'open the design file d.Rpt.DataSource = <Datatable> 'Set the datasource used in the report d.ShowDialog 'Display the design wondows form d.Dispose 'dispose designer object PRINT REPORT Dim RP as New ReportDesigner5.Report 'Instantiate a report object RP.Open(<filename>) 'Open design rp.DataSource = <Datatable> 'Recieve data rp.PrintPreview...
Imports ReportBuilder2 Imports System.Data ......... Sub Button1Click(ByVal sender...