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

launch report builder from C# app
ejay
Ayzan
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.