|
-
Jul 24th, 2008, 11:35 AM
#1
Thread Starter
Junior Member
Virtual table in Crystal Report
Hello friends, I am in serious trouble to show data from a virtual table in crystal report. Here is my code : (I used VB 2008, SQL Server, ADO .NET)
Dim Tbl As New DataTable
Dim clSl As New DataColumn("Srl", Type.GetType("System.Int32"))
Dim clDt As New DataColumn("Dt", Type.GetType("System.DateTime"))
Dim clQt As New DataColumn("Qt", Type.GetType("System.Int32"))
Dim clRt As New DataColumn("Rt", Type.GetType("System.Single"))
Tbl.Columns.Add(clSl)
Tbl.Columns.Add(clDt)
Tbl.Columns.Add(clQt)
Tbl.Columns.Add(clRt)
Later I populate this Datatable with 50 rows.
Now How can I link these data fields to Crystal Report and show them in report?
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|