Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 313819
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 12, 20262026-05-12T08:08:35+00:00 2026-05-12T08:08:35+00:00

I need to serialize a report design. This is the scenario: The app has

  • 0

I need to serialize a report design. This is the scenario:

The app has base reports, let’s say “Sales Report” with a set of pre-defined columns and design, like the corp. logo in the header. The users needs to have the ability to change that layout adding, for example, a footer with the office address, or page numbers. For doing that they need to edit the report, enter the designer and add/change what they need. This changed report layout needs to be serialized to be stored in the database for that user, so the next time, the user opens that report, using that design.

Makes sense?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-12T08:08:36+00:00Added an answer on May 12, 2026 at 8:08 am

    Here’s a simplified version of how I do this:

    XtraReport customReport;
    customReport = new MyXtraReport();
    byte[] layout = LoadCustomLayoutFromDB();
    if (layout != null) {
        using (System.IO.MemoryStream memoryStream = new System.IO.MemoryStream(layout)) {
            customReport.LoadLayout(memoryStream);
        }
    }
    
    using (XRDesignFormEx designer = new XRDesignFormEx()) {
        MySaveCommandHandler customCommands = new MySaveCommandHandler(designer.DesignPanel);
        designer.DesignPanel.AddCommandHandler(customCommands);
        designer.OpenReport(customReport);
        designer.ShowDialog(this);
        if (customCommands.ChangesSaved)
            SaveCustomLayoutToDB(customCommands.Layout);
    }
    

    Inside MySaveCommandHandler class:

    public virtual void HandleCommand(ReportCommand command, object[] args, ref bool handled) {
        if (command != ReportCommand.SaveFileAs && command != ReportCommand.SaveFileAs)
            return;
    
        using (System.IO.MemoryStream memoryStream = new System.IO.MemoryStream()) {
            panel.Report.SaveLayout(memoryStream);
            this.layout = memoryStream.ToArray();
            changesSaved = true;
        }
    
        panel.ReportState = ReportState.Saved;
        handled = true;
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I need to serialize ArrayList<String> arr=new ArrayList<String>(); on server and then send this array
I have a business class which I need to serialize to xml. It has
i need to serialize directory tree. i have no trouble with this type: std::map<
I need to serialize an object like this: class A { int a =
I need to serialize to an array which has multiple non-nested values i.e. <MyArray>
I need to serialize an object like this: public class Book { public string
I need serialize a string to a standard URL-encoded notation my string has some
I need to serialize a .NET DateTime value in a protocol buffers message. My
I need to serialize a Lucene.net Document instance. When I try the following public
I have a simple Java class that I need to serialize to be stored

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.