Posted 7 May 2018, 12:25 pm EST
I would like to create a report and then run it using a Data Table I create programmatically as follows:
Dim dsVisits As New DataSet
Dim dtVisits As DataTable = New DataTable("Visits")
dtVisits.Columns.Add("WeekNumber", Type.GetType("System.Int32"))
.
.
.
dtVisits.Rows.Add(drVisits)
In your report designer, how do I tell it about this dataset that doesn’t yet exist?
Then, to run it, how do I point your report writer to this dataset to run the report?
Thanks.
HBH