launch report builder from C# app

Hi friends
how can i launcg report builder from a C# app
i know i can use following url but need to know how to execute that url to bring up the report builder
http://<localhost>/reportserver/reportbuilder/reportbuilder.application

Thanks for your help



Answer this question

launch report builder from C# app

  • ejay

    Thank you very much Bob.
    I've been searching for a solution for this one. Thanks again.


  • Ayzan

    finally i found how to do that

    WebBrowser wb = new WebBrowser();
    wb.Navigate("http://<localhost>/reportserver/reportbuilder/reportbuilder.application");

    that works nicely.
    one more question on this one ,does anybody know how to select report model also by default instead of user choosing after launching report builder


  • Tsprao

    Please see this blog post:

    http://blogs.msdn.com/bobmeyers/archive/2006/01/24/517083.aspx

    Note the issue mentioned in the comments.



  • launch report builder from C# app