is it possible to open a report from c# program in edit/run mode

≯℡__Kan透↙ 提交于 2020-01-05 09:02:27

问题


I wanna show my reports in reportviewer control in visual studio and open them in edit/run mode in report builder by clicking a button

I dont know how to open report builder from my program

I have a report server

thanks any help


回答1:


WebBrowser wb = new WebBrowser();
wb.Navigate("http://localhost/ReportServer/ReportBuilder/ReportBuilder_3_0_0_0.application?/Reports/ProductsReport");

where Reports/ProductsReport is the path to my report

see this




回答2:


If I'm understanding your question correctly, then this is the answer:

http://social.msdn.microsoft.com/Forums/en-US/sqlreportingservices/thread/8e0d8b0f-b1c2-44cc-9c52-9f9c1b82281e/

The best way to embed an SSRS 2008 R2 report into a form is to deploy the report to the report server and then use the Remote execution mode in the Report Viewer control. The RDLC format used with local execution mode doesn't yet support the newer RDL specifcation that is created with Report Builder 3.0.



来源:https://stackoverflow.com/questions/8102841/is-it-possible-to-open-a-report-from-c-sharp-program-in-edit-run-mode

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!