Hello,
I have two questions, (both related)
The first one is about excel layout that is different from HTML, in particular the border thickness, the html is correclty set to 1px but when I export my report in excel the border with is greater, i tried to setting border with into rdlc with no luck.
The other question is How I can populate a GridView control with ReportViewer control?
This because I have already implemented an export function for a GridView and I'm trying to reuse it for ReportViewer.
GridView gv = new GridView();
gv.DataSource = this.RptViewer.LocalReport.DataSources;
BassManAlex
Member
3 Points
6 Posts
2 questions: Export to excel and Customizing Excel layout and Populate a GridView with ReportView...
Apr 14, 2010 08:54 AM|LINK
Hello,
I have two questions, (both related)
The first one is about excel layout that is different from HTML, in particular the border thickness, the html is correclty set to 1px but when I export my report in excel the border with is greater, i tried to setting border with into rdlc with no luck.
The other question is How I can populate a GridView control with ReportViewer control?
This because I have already implemented an export function for a GridView and I'm trying to reuse it for ReportViewer.
GridView gv = new GridView(); gv.DataSource = this.RptViewer.LocalReport.DataSources;I use this, but my GridView is still empty.
Thanks a lot