This is a migrated thread and some comments may be shown as answers.

Dynamic Report

1 Answer 90 Views
General Discussions
This is a migrated thread and some comments may be shown as answers.
Naunihal
Top achievements
Rank 1
Naunihal asked on 10 Nov 2010, 04:06 PM
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

1 Answer, 1 is accepted

Sort by
0
Steve
Telerik team
answered on 12 Nov 2010, 04:51 PM
Hi Naunihal,

Did you add Report Items with proper Expressions containing the data source fields? If not, please add them as the report would not auto populate i.e. it does not mimic DataGrid controls.

Greetings,
Steve
the Telerik team
Do you want to have your say when we set our development plans? Do you want to know when a feature you care about is added or when a bug fixed? Explore the Telerik Public Issue Tracking system and vote to affect the priority of the items
Tags
General Discussions
Asked by
Naunihal
Top achievements
Rank 1
Answers by
Steve
Telerik team
Share this question
or