Page 1 of 1

Integration sourcecode to VS

Posted: Mon Sep 20, 2010 4:56 am
by prandstaetter@grz.at
Hello to all,
is it possible to integrate all the c# sourcecode witch is generated in Designer
to Visual Studio to debug this?

Integration sourcecode to VS

Posted: Mon Sep 20, 2010 5:31 am
by Alex K.
Hello,

You may save the the report as CSharp file (*.cs). Then add it to your project and run the report using the following code:

Code: Select all

Reports.Report myReport = new Reports.Report()
myReport.Show();
Thank you.