4 Answers, 1 is accepted
0
Hello,
Check out the following code snippet that illustrates how to start the Report Designer with report for argument:
All the best,
Steve
the Telerik team
Check out the following code snippet that illustrates how to start the Report Designer with report for argument:
Copy Code
void
OpenWithArguments()
{
var startInfo =
new
ProcessStartInfo(
"C:\\Program Files\\Telerik\\Reporting Q1 2012\\Report Designer\\Telerik.ReportDesigner.exe"
);
startInfo.WindowStyle = ProcessWindowStyle.Maximized;
startInfo.Arguments = @
""
"d:\Report1.trdx"
""
;
var t = Process.Start(startInfo);
t.WaitForExit();
}
All the best,
Steve
the Telerik team
BLOGGERS WANTED! Write a review about Telerik Reporting or the new Report Designer, post it on your blog and get a complimentary license for Telerik Reporting. We’ll even promote your blog and help bring you a few fresh readers. Yes, it’s that simple. And it’s free. Get started today >
0
gezim
Top achievements
Rank 1
answered on 22 Aug 2012, 02:06 PM
Thanks Steve for your fast reply,
But it isn't working that way even by passing the File path as an Argument
thanks again
But it isn't working that way even by passing the File path as an Argument
thanks again
0
Hi,
Make sure you're using at least Q2 2012 version of Telerik Reporting, it would not work in Q1 2012.
All the best,
Steve
the Telerik team
Make sure you're using at least Q2 2012 version of Telerik Reporting, it would not work in Q1 2012.
All the best,
Steve
the Telerik team
BLOGGERS WANTED! Write a review about Telerik Reporting or the new Report Designer, post it on your blog and get a complimentary license for Telerik Reporting. We’ll even promote your blog and help bring you a few fresh readers. Yes, it’s that simple. And it’s free. Get started today >
0
gezim
Top achievements
Rank 1
answered on 22 Aug 2012, 02:51 PM
Thanks Steve, I'll try it :)