Are reports designed with the FR online designer interchangeable with the .Net Winforms/Asp.net repo

Hello

The title says it all: can I design templates with the online designer and use them in my fastreport.desktop or .Net Winforms application? And vice versa.

Or are the incompatbile?

thx
stefan

Comments

  • edited November 2017
    yes, from fr demo, mvc online designer, it will save frx file to your web folder, download the frx file and call with desktop application.
            [HttpPost]
            // call-back for save the designed report 
            public ActionResult SaveDesignedReport(string reportID, string reportUUID)
            {
                ViewBag.Message = String.Format("Confirmed {0} {1}", reportID, reportUUID);
                if (reportID == "DesignReport")
                {
                    // do something with designed report, for example
                    Stream reportForSave = Request.InputStream;
                    string pathToSave = Server.MapPath("~/App_Data/DesignedReports/test.frx");
                    using (FileStream file = new FileStream(pathToSave, FileMode.Create))
                    {
                        reportForSave.CopyTo(file);
                    }
                }
                return View();
            }
    

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.