I am using following code:
Dim
DynRpt As New DynamicReport
Dim SQL = "Select * from TABLE1 where rownum<=50"
Dim Constr = "Data Source=XXXX;User Id=XXX;Password=XXXX;"
Dim adp As New Devart.Data.Oracle.OracleDataAdapter(SQL, Constr)
Dim dataSet As New DataSet()
adp.Fill(dataSet)
DynRpt.DataSource = dataSet
ReportViewer1.Report = DynRpt
Report is loaded with 25 pages, but all blank. does not show any Data.
Is there anything else that needs to be done, i was following Sample from documentation