RDLC C# Report shows only record...but datasource containts more then 100 records [modified]
-
i have create rdlc report in c# --------- For example my report contains textbox like and it's value is =First(Fields!FirstName.Value) data source have more then 100 student's(First Name) records.......but reportviewer display only one student's "FirstName"
modified on Sunday, September 6, 2009 12:38 PM
-
i have create rdlc report in c# --------- For example my report contains textbox like and it's value is =First(Fields!FirstName.Value) data source have more then 100 student's(First Name) records.......but reportviewer display only one student's "FirstName"
modified on Sunday, September 6, 2009 12:38 PM
:laugh: :laugh: You paste the control into RDLC and hope it will replicate automatically. ;P ;P Place the textbox inside a
List
orTable
. And also make its value as Field!FirstName.Value(just leavethe First() out of the value) You are done.,. . :cool::cool:Abhishek Sur
My Latest Articles **Create CLR objects in SQL Server 2005 C# Uncommon Keywords Read/Write Excel using OleDB
**Don't forget to click "Good Answer" if you like to.
-
:laugh: :laugh: You paste the control into RDLC and hope it will replicate automatically. ;P ;P Place the textbox inside a
List
orTable
. And also make its value as Field!FirstName.Value(just leavethe First() out of the value) You are done.,. . :cool::cool:Abhishek Sur
My Latest Articles **Create CLR objects in SQL Server 2005 C# Uncommon Keywords Read/Write Excel using OleDB
**Don't forget to click "Good Answer" if you like to.