I have a simple vb.net app.
Module Module1
Sub Main()
' Two DataTables.
Dim table1 As DataTable = New DataTable("patients")
table1.Columns.Add("name")
table1.Columns.Add("id")
table1.Rows.Add("sam", 1)
table1.Rows.Add("mark", 2)
Dim table2 As DataTable = New DataTable("medications")
table2.Columns.Add("id")
table2.Columns.Add("medication")
table2.Rows.Add(1, "atenolol")
table2.Rows.Add(2, "amoxicillin")
' Create a DataSet. Put both tables in it.
Dim set1 As DataSet = New DataSet("office")
set1.Tables.Add(table1)
set1.Tables.Add(table2)
End Sub
End Module
I would like use RDL or RDLC to display one of the table in my dataset (set1). Can I do that? if yes, how can I do it??
I want (or I am hoping) to run RDL or RDLC without the need of having a SQL connection or Access MDB Database, nor intermediary XML or CSV file in file system..
thank you for reading my question.