c# - Designing a RDLC report using Visual Studio and in-memory data source -
i have following code in client application.
public class invoice { int invoiceid {get;set}// key string description {get;set} datetime invoicedate {get;set} } public class invoicelines { int invoiceid {get;set} //parent key int invoiceline{get;set}//key string item{get;set} string description{get;set} int quantity{get;set} decimal price{get;set} } public class invoiceutil { list<invoice> customerinvoices = getallinvoices(); invoice invoice = getinvoice(1005); public list<invoice> getallinvoices() { //logic } public invoice getinvoice(int invoiceid) { //logic } } i create invoice report this.
i need create rdlc report. datasource report should invoiceutil object. invoiceid should passed report report parameter.
i have gone through tutorials, couldn't find one.
can please provide me step step instruction develop report in visual studio report designer?
the following link develop dynamic report using rdlc.

Comments
Post a Comment