Shared WinForm and ASP.net

edited July 2012 in FastReport .NET
Hello,
our Project has a winform and web version, we need the same reports on both environments, so we'd like to know what is the best way to share all possible code and resources on both projects.
Our idea is
- make .frx files and put them on win and web projects.
- make a procedure that return a dataset to the caller: Win or web.
- register the dataset and use

is that possible? what is the best way to do it?

Comments

  • edited 11:05PM
    Hello,

    Yes, it is possible. Store reports in .frx files. Register data before running a report. In winforms, use the code -
    Report report = new Report();
    report.Load("frxfile");
    report.RegisterData(your_data);
    report.Show();

    In webforms, use WebReport component. Create WebReport.StartReport event handler and write the following code -
    WebReport1.Report.RegisterData(your_data);

Leave a Comment

Rich Text Editor. To edit a paragraph's style, hit tab to get to the paragraph menu. From there you will be able to pick one style. Nothing defaults to paragraph. An inline formatting menu will show up when you select text. Hit tab to get into that menu. Some elements, such as rich link embeds, images, loading indicators, and error messages may get inserted into the editor. You may navigate to these using the arrow keys inside of the editor and delete them with the delete or backspace key.