Dataset
Posted: Wed Nov 18, 2009 5:01 am
hi,
I need help with Stimulsoft Reports Designer.Web. I want to bind a Dataset to report.
this is the code :
but when I execute the report the information is not shown.
I need help with Stimulsoft Reports Designer.Web. I want to bind a Dataset to report.
this is the code :
Code: Select all
dim sensql as string="select * from estudio where rownum < 11"
dim ds as new dataset
dim da as new sqldataAdapter(sensql,connection)
da.fill(ds, "table")
report.Load("D:\InformeLimpio.mrt")
report.RegData("table" ds)
Me.StiWebDesigner1.Design(report)