Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Crystal Reports VS Beta 2 Problem Web form
Message
General information
Forum:
ASP.NET
Category:
Reporting
Title:
Crystal Reports VS Beta 2 Problem Web form
Environment versions
Environment:
VB.NET 1.1
OS:
Windows XP SP2
Network:
Windows 2003 Server
Miscellaneous
Thread ID:
01016713
Message ID:
01016713
Views:
47
Crystal Reports VS Beta 2 Problem Web form

Where have I lost it? I’m just trying to do a real simple report. Dropped a CR Report viewer on a panel on the form.

mytable = New DataTable("MyTable")
With Mytable
.Columns.Add("Field1", GetType(String))
.Columns.Add("Field2", GetType(String))
.Columns.Add("Field3", GetType(Int32))
.Columns.Add("Field4", GetType(Int32))
.Columns.Add("Field5", GetType(Int32))
.Columns.Add("Field6", GetType(Int32))
.Columns.Add("Field7", GetType(Int32))
.Columns.Add("Field8", GetType(String))
.Columns.Add("Field9", GetType(String))
End With
MyTable.PrimaryKey = New DataColumn() {MyTable.Columns("Field1")}


Put some stuff into the table

Dim oRpt as New CrystalDecisions.CrystalReports.Engine.ReportDocument()
oRpt.Load("My.rpt")
oRpt.SetDataSource(MyTable)
CrystalReportViewer1.DataSource = oRpt *Error here
CrystalReportViewer1.DataBind()


Error returned:
HierarchicalDataBoundControl only accepts data sources that implement IHierarchicalDataSource or IHierarchicalEnumerable

Can you not use a datatable that you build in code at run time?
Or have I totally missed how to do this?

TIA

It's Time to get a gun.

That's what I've been thinkin.

I think I can afford one, If I do a little less Drinkin.

www.TrueGeeks.com
Reply
Map
View

Click here to load this message in the networking platform