﻿<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<StiSerializer version="1.02" type="Net" application="StiReport">
  <Dictionary Ref="1" type="Dictionary" isKey="true">
    <BusinessObjects isList="true" count="0" />
    <Databases isList="true" count="0" />
    <DataSources isList="true" count="0" />
    <Relations isList="true" count="0" />
    <Report isRef="0" />
    <Variables isList="true" count="0" />
  </Dictionary>
  <EngineVersion>EngineV2</EngineVersion>
  <GlobalizationStrings isList="true" count="0" />
  <MetaTags isList="true" count="0" />
  <Pages isList="true" count="1">
    <Page1 Ref="2" type="Page" isKey="true">
      <Border>None;Black;2;Solid;False;4;Black</Border>
      <Brush>Transparent</Brush>
      <Components isList="true" count="0" />
      <Conditions isList="true" count="0" />
      <Guid>cf411670168c450792360f32407a86a9</Guid>
      <Margins>1,1,1,1</Margins>
      <Name>Page1</Name>
      <PageHeight>29.7</PageHeight>
      <PageWidth>21</PageWidth>
      <Report isRef="0" />
      <Watermark Ref="3" type="Stimulsoft.Report.Components.StiWatermark" isKey="true">
        <Font>Arial,100</Font>
        <TextBrush>[50:0:0:0]</TextBrush>
      </Watermark>
    </Page1>
  </Pages>
  <PrinterSettings Ref="4" type="Stimulsoft.Report.Print.StiPrinterSettings" isKey="true" />
  <ReferencedAssemblies isList="true" count="8">
    <value>System.Dll</value>
    <value>System.Drawing.Dll</value>
    <value>System.Windows.Forms.Dll</value>
    <value>System.Data.Dll</value>
    <value>System.Xml.Dll</value>
    <value>Stimulsoft.Controls.Dll</value>
    <value>Stimulsoft.Base.Dll</value>
    <value>Stimulsoft.Report.Dll</value>
  </ReferencedAssemblies>
  <ReportAlias>Report</ReportAlias>
  <ReportChanged>4/11/2012 11:11:33 AM</ReportChanged>
  <ReportCreated>4/11/2012 10:54:40 AM</ReportCreated>
  <ReportFile>C:\Users\marco.correa\Desktop\Report.mrt</ReportFile>
  <ReportGuid>ea1920d5630a4d0cade97a11da6bf978</ReportGuid>
  <ReportName>Report</ReportName>
  <ReportUnit>Centimeters</ReportUnit>
  <ReportVersion>2012.1.1300</ReportVersion>
  <Script>using System;
using System.Drawing;
using System.Windows.Forms;
using System.Data;
using Stimulsoft.Controls;
using Stimulsoft.Base.Drawing;
using Stimulsoft.Report;
using Stimulsoft.Report.Dialogs;
using Stimulsoft.Report.Components;

namespace Reports
{
    public class Report : Stimulsoft.Report.StiReport
    {
        public Report()        {
            this.InitializeComponent();
        }

        #region StiReport Designer generated code - do not modify
        public string Variable1;
        public string Variable2;
        public Stimulsoft.Report.Components.StiPage Page1;
        public Stimulsoft.Report.Components.StiHeaderBand HeaderCategories;
        public Stimulsoft.Report.Components.StiText HeaderCategories_CategoryID;
        public Stimulsoft.Report.Components.StiText HeaderCategories_CategoryName;
        public Stimulsoft.Report.Components.StiText HeaderCategories_Description;
        public Stimulsoft.Report.Components.StiText HeaderCategories_Picture;
        public Stimulsoft.Report.Components.StiDataBand DataCategories;
        public Stimulsoft.Report.Components.StiText DataCategories_CategoryID;
        public Stimulsoft.Report.Components.StiText DataCategories_CategoryName;
        public Stimulsoft.Report.Components.StiText DataCategories_Description;
        public Stimulsoft.Report.Components.StiImage DataCategories_Picture;
        public Stimulsoft.Report.Components.StiWatermark Page1_Watermark;
        public Stimulsoft.Report.Print.StiPrinterSettings Report_PrinterSettings;
        public CategoriesDataSource Categories;
        
        public void HeaderCategories_CategoryID__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
        {
            e.Value = "CategoryID";
        }
        
        public void HeaderCategories_CategoryName__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
        {
            e.Value = "CategoryName";
        }
        
        public void HeaderCategories_Description__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
        {
            e.Value = "Description";
        }
        
        public void HeaderCategories_Picture__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
        {
            e.Value = "Picture";
        }
        
        public void DataCategories_CategoryID__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
        {
            e.Value = ToString(sender, Categories.CategoryID, true);
        }
        
        public void DataCategories_CategoryName__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
        {
            e.Value = ToString(sender, Categories.CategoryName, true);
        }
        
        public void DataCategories_Description__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
        {
            e.Value = ToString(sender, Categories.Description, true);
        }
        
        public void DataCategories_Picture_Click(object sender, System.EventArgs e)
        {
            // code that will be not removed;
        }
        
        private void InitializeComponent()
        {
            this.Categories = new CategoriesDataSource();
            this.Dictionary.Variables.Add(new Stimulsoft.Report.Dictionary.StiVariable("", "Variable1", "Variable1", "", typeof(string), "", false, Stimulsoft.Report.Dictionary.StiVariableInitBy.Value, false));
            this.Dictionary.Variables.Add(new Stimulsoft.Report.Dictionary.StiVariable("", "Variable2", "Variable2", "", typeof(string), "", false, Stimulsoft.Report.Dictionary.StiVariableInitBy.Value, false));
            this.NeedsCompiling = false;
            // 
            // Variables init
            // 
            this.Variable1 = "";
            this.Variable2 = "";
            this.EngineVersion = Stimulsoft.Report.Engine.StiEngineVersion.EngineV2;
            this.ReferencedAssemblies = new System.String[] {
                    "System.Dll",
                    "System.Drawing.Dll",
                    "System.Windows.Forms.Dll",
                    "System.Data.Dll",
                    "System.Xml.Dll",
                    "Stimulsoft.Controls.Dll",
                    "Stimulsoft.Base.Dll",
                    "Stimulsoft.Report.Dll"};
            this.ReportAlias = "Report";
            // 
            // ReportChanged
            // 
            this.ReportChanged = new DateTime(2012, 4, 11, 11, 9, 35, 776);
            // 
            // ReportCreated
            // 
            this.ReportCreated = new DateTime(2012, 4, 11, 10, 54, 40, 440);
            this.ReportFile = "C:\\Users\\marco.correa\\Desktop\\Report.mrt";
            this.ReportGuid = "5971990100914db2863da66a445b04ef";
            this.ReportName = "Report";
            this.ReportUnit = Stimulsoft.Report.StiReportUnitType.Centimeters;
            this.ReportVersion = "2012.1.1300";
            this.ScriptLanguage = Stimulsoft.Report.StiReportLanguageType.CSharp;
            // 
            // Page1
            // 
            this.Page1 = new Stimulsoft.Report.Components.StiPage();
            this.Page1.Guid = "cf411670168c450792360f32407a86a9";
            this.Page1.Name = "Page1";
            this.Page1.PageHeight = 29.7;
            this.Page1.PageWidth = 21;
            this.Page1.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.None, System.Drawing.Color.Black, 2, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black), false);
            this.Page1.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
            // 
            // HeaderCategories
            // 
            this.HeaderCategories = new Stimulsoft.Report.Components.StiHeaderBand();
            this.HeaderCategories.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(0, 0.4, 19, 0.8);
            this.HeaderCategories.Name = "HeaderCategories";
            this.HeaderCategories.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.None, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black), false);
            this.HeaderCategories.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
            // 
            // HeaderCategories_CategoryID
            // 
            this.HeaderCategories_CategoryID = new Stimulsoft.Report.Components.StiText();
            this.HeaderCategories_CategoryID.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(0, 0, 4.8, 0.8);
            this.HeaderCategories_CategoryID.Name = "HeaderCategories_CategoryID";
            this.HeaderCategories_CategoryID.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.HeaderCategories_CategoryID__GetValue);
            this.HeaderCategories_CategoryID.VertAlignment = Stimulsoft.Base.Drawing.StiVertAlignment.Center;
            this.HeaderCategories_CategoryID.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.None, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black), false);
            this.HeaderCategories_CategoryID.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
            this.HeaderCategories_CategoryID.Font = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Bold);
            this.HeaderCategories_CategoryID.Guid = null;
            this.HeaderCategories_CategoryID.Indicator = null;
            this.HeaderCategories_CategoryID.Interaction = null;
            this.HeaderCategories_CategoryID.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
            this.HeaderCategories_CategoryID.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black);
            this.HeaderCategories_CategoryID.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, true, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
            // 
            // HeaderCategories_CategoryName
            // 
            this.HeaderCategories_CategoryName = new Stimulsoft.Report.Components.StiText();
            this.HeaderCategories_CategoryName.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(4.8, 0, 4.8, 0.8);
            this.HeaderCategories_CategoryName.Name = "HeaderCategories_CategoryName";
            this.HeaderCategories_CategoryName.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.HeaderCategories_CategoryName__GetValue);
            this.HeaderCategories_CategoryName.VertAlignment = Stimulsoft.Base.Drawing.StiVertAlignment.Center;
            this.HeaderCategories_CategoryName.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.None, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black), false);
            this.HeaderCategories_CategoryName.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
            this.HeaderCategories_CategoryName.Font = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Bold);
            this.HeaderCategories_CategoryName.Guid = null;
            this.HeaderCategories_CategoryName.Indicator = null;
            this.HeaderCategories_CategoryName.Interaction = null;
            this.HeaderCategories_CategoryName.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
            this.HeaderCategories_CategoryName.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black);
            this.HeaderCategories_CategoryName.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, true, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
            // 
            // HeaderCategories_Description
            // 
            this.HeaderCategories_Description = new Stimulsoft.Report.Components.StiText();
            this.HeaderCategories_Description.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(9.6, 0, 4.8, 0.8);
            this.HeaderCategories_Description.Name = "HeaderCategories_Description";
            this.HeaderCategories_Description.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.HeaderCategories_Description__GetValue);
            this.HeaderCategories_Description.VertAlignment = Stimulsoft.Base.Drawing.StiVertAlignment.Center;
            this.HeaderCategories_Description.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.None, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black), false);
            this.HeaderCategories_Description.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
            this.HeaderCategories_Description.Font = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Bold);
            this.HeaderCategories_Description.Guid = null;
            this.HeaderCategories_Description.Indicator = null;
            this.HeaderCategories_Description.Interaction = null;
            this.HeaderCategories_Description.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
            this.HeaderCategories_Description.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black);
            this.HeaderCategories_Description.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, true, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
            // 
            // HeaderCategories_Picture
            // 
            this.HeaderCategories_Picture = new Stimulsoft.Report.Components.StiText();
            this.HeaderCategories_Picture.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(14.4, 0, 4.6, 0.8);
            this.HeaderCategories_Picture.Name = "HeaderCategories_Picture";
            this.HeaderCategories_Picture.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.HeaderCategories_Picture__GetValue);
            this.HeaderCategories_Picture.VertAlignment = Stimulsoft.Base.Drawing.StiVertAlignment.Center;
            this.HeaderCategories_Picture.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.None, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black), false);
            this.HeaderCategories_Picture.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
            this.HeaderCategories_Picture.Font = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Bold);
            this.HeaderCategories_Picture.Guid = null;
            this.HeaderCategories_Picture.Indicator = null;
            this.HeaderCategories_Picture.Interaction = null;
            this.HeaderCategories_Picture.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
            this.HeaderCategories_Picture.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black);
            this.HeaderCategories_Picture.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, true, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
            this.HeaderCategories.Guid = null;
            this.HeaderCategories.Interaction = null;
            // 
            // DataCategories
            // 
            this.DataCategories = new Stimulsoft.Report.Components.StiDataBand();
            this.DataCategories.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(0, 2, 19, 0.8);
            this.DataCategories.DataSourceName = "Categories";
            this.DataCategories.Name = "DataCategories";
            this.DataCategories.Sort = new System.String[0];
            this.DataCategories.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.None, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black), false);
            this.DataCategories.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
            this.DataCategories.BusinessObjectGuid = null;
            // 
            // DataCategories_CategoryID
            // 
            this.DataCategories_CategoryID = new Stimulsoft.Report.Components.StiText();
            this.DataCategories_CategoryID.CanGrow = true;
            this.DataCategories_CategoryID.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(0, 0, 4.8, 0.8);
            this.DataCategories_CategoryID.Name = "DataCategories_CategoryID";
            this.DataCategories_CategoryID.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.DataCategories_CategoryID__GetValue);
            this.DataCategories_CategoryID.VertAlignment = Stimulsoft.Base.Drawing.StiVertAlignment.Center;
            this.DataCategories_CategoryID.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.None, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black), false);
            this.DataCategories_CategoryID.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
            this.DataCategories_CategoryID.Font = new System.Drawing.Font("Arial", 8F);
            this.DataCategories_CategoryID.Guid = null;
            this.DataCategories_CategoryID.Indicator = null;
            this.DataCategories_CategoryID.Interaction = null;
            this.DataCategories_CategoryID.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
            this.DataCategories_CategoryID.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black);
            this.DataCategories_CategoryID.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, true, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
            // 
            // DataCategories_CategoryName
            // 
            this.DataCategories_CategoryName = new Stimulsoft.Report.Components.StiText();
            this.DataCategories_CategoryName.CanGrow = true;
            this.DataCategories_CategoryName.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(4.8, 0, 4.8, 0.8);
            this.DataCategories_CategoryName.Name = "DataCategories_CategoryName";
            this.DataCategories_CategoryName.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.DataCategories_CategoryName__GetValue);
            this.DataCategories_CategoryName.VertAlignment = Stimulsoft.Base.Drawing.StiVertAlignment.Center;
            this.DataCategories_CategoryName.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.None, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black), false);
            this.DataCategories_CategoryName.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
            this.DataCategories_CategoryName.Font = new System.Drawing.Font("Arial", 8F);
            this.DataCategories_CategoryName.Guid = null;
            this.DataCategories_CategoryName.Indicator = null;
            this.DataCategories_CategoryName.Interaction = null;
            this.DataCategories_CategoryName.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
            this.DataCategories_CategoryName.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black);
            this.DataCategories_CategoryName.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, true, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
            // 
            // DataCategories_Description
            // 
            this.DataCategories_Description = new Stimulsoft.Report.Components.StiText();
            this.DataCategories_Description.CanGrow = true;
            this.DataCategories_Description.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(9.6, 0, 4.8, 0.8);
            this.DataCategories_Description.Name = "DataCategories_Description";
            this.DataCategories_Description.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.DataCategories_Description__GetValue);
            this.DataCategories_Description.VertAlignment = Stimulsoft.Base.Drawing.StiVertAlignment.Center;
            this.DataCategories_Description.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.None, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black), false);
            this.DataCategories_Description.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
            this.DataCategories_Description.Font = new System.Drawing.Font("Arial", 8F);
            this.DataCategories_Description.Guid = null;
            this.DataCategories_Description.Indicator = null;
            this.DataCategories_Description.Interaction = null;
            this.DataCategories_Description.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
            this.DataCategories_Description.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black);
            this.DataCategories_Description.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, true, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
            // 
            // DataCategories_Picture
            // 
            this.DataCategories_Picture = new Stimulsoft.Report.Components.StiImage();
            this.DataCategories_Picture.CanGrow = true;
            this.DataCategories_Picture.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(14.4, 0, 4.6, 0.8);
            this.DataCategories_Picture.DataColumn = "Categories.Picture";
            this.DataCategories_Picture.Name = "DataCategories_Picture";
            this.DataCategories_Picture.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.None, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black), false);
            this.DataCategories_Picture.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
            this.DataCategories_Picture.Guid = null;
            this.DataCategories_Picture.Image = null;
            this.DataCategories_Picture.Interaction = null;
            this.DataCategories_Picture.Click += new System.EventHandler(this.DataCategories_Picture_Click);
            this.DataCategories.Guid = null;
            this.DataCategories.Interaction = null;
            this.DataCategories.MasterComponent = null;
            this.Page1.ExcelSheetValue = null;
            this.Page1.Interaction = null;
            this.Page1.Margins = new Stimulsoft.Report.Components.StiMargins(1, 1, 1, 1);
            this.Page1_Watermark = new Stimulsoft.Report.Components.StiWatermark();
            this.Page1_Watermark.Font = new System.Drawing.Font("Arial", 100F);
            this.Page1_Watermark.Image = null;
            this.Page1_Watermark.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.FromArgb(50, 0, 0, 0));
            this.Report_PrinterSettings = new Stimulsoft.Report.Print.StiPrinterSettings();
            this.PrinterSettings = this.Report_PrinterSettings;
            this.Page1.Report = this;
            this.Page1.Watermark = this.Page1_Watermark;
            this.HeaderCategories.Page = this.Page1;
            this.HeaderCategories.Parent = this.Page1;
            this.HeaderCategories_CategoryID.Page = this.Page1;
            this.HeaderCategories_CategoryID.Parent = this.HeaderCategories;
            this.HeaderCategories_CategoryName.Page = this.Page1;
            this.HeaderCategories_CategoryName.Parent = this.HeaderCategories;
            this.HeaderCategories_Description.Page = this.Page1;
            this.HeaderCategories_Description.Parent = this.HeaderCategories;
            this.HeaderCategories_Picture.Page = this.Page1;
            this.HeaderCategories_Picture.Parent = this.HeaderCategories;
            this.DataCategories.Page = this.Page1;
            this.DataCategories.Parent = this.Page1;
            this.DataCategories_CategoryID.Page = this.Page1;
            this.DataCategories_CategoryID.Parent = this.DataCategories;
            this.DataCategories_CategoryName.Page = this.Page1;
            this.DataCategories_CategoryName.Parent = this.DataCategories;
            this.DataCategories_Description.Page = this.Page1;
            this.DataCategories_Description.Parent = this.DataCategories;
            this.DataCategories_Picture.Page = this.Page1;
            this.DataCategories_Picture.Parent = this.DataCategories;
            // 
            // Add to HeaderCategories.Components
            // 
            this.HeaderCategories.Components.Clear();
            this.HeaderCategories.Components.AddRange(new Stimulsoft.Report.Components.StiComponent[] {
                        this.HeaderCategories_CategoryID,
                        this.HeaderCategories_CategoryName,
                        this.HeaderCategories_Description,
                        this.HeaderCategories_Picture});
            // 
            // Add to DataCategories.Components
            // 
            this.DataCategories.Components.Clear();
            this.DataCategories.Components.AddRange(new Stimulsoft.Report.Components.StiComponent[] {
                        this.DataCategories_CategoryID,
                        this.DataCategories_CategoryName,
                        this.DataCategories_Description,
                        this.DataCategories_Picture});
            // 
            // Add to Page1.Components
            // 
            this.Page1.Components.Clear();
            this.Page1.Components.AddRange(new Stimulsoft.Report.Components.StiComponent[] {
                        this.HeaderCategories,
                        this.DataCategories});
            // 
            // Add to Pages
            // 
            this.Pages.Clear();
            this.Pages.AddRange(new Stimulsoft.Report.Components.StiPage[] {
                        this.Page1});
            this.Categories.Columns.AddRange(new Stimulsoft.Report.Dictionary.StiDataColumn[] {
                        new Stimulsoft.Report.Dictionary.StiDataColumn("CategoryID", "CategoryID", "CategoryID", typeof(int)),
                        new Stimulsoft.Report.Dictionary.StiDataColumn("CategoryName", "CategoryName", "CategoryName", typeof(string)),
                        new Stimulsoft.Report.Dictionary.StiDataColumn("Description", "Description", "Description", typeof(string)),
                        new Stimulsoft.Report.Dictionary.StiDataColumn("Picture", "Picture", "Picture", typeof(byte[]))});
            this.DataSources.Add(this.Categories);
            this.Dictionary.Databases.Add(new Stimulsoft.Report.Dictionary.StiXmlDatabase("Demo", "C:\\Program Files (x86)\\Stimulsoft Reports.Ultimate 2011.3\\Bin\\Data\\Demo.xsd", "C:\\Program Files (x86)\\Stimulsoft Reports.Ultimate 2011.3\\Bin\\Data\\Demo.xml"));
        }
        
        #region DataSource Categories
        public class CategoriesDataSource : Stimulsoft.Report.Dictionary.StiDataTableSource
        {
            
            public CategoriesDataSource() : 
                    base("Demo.Categories", "Categories")
            {
            }
            
            public virtual int CategoryID
            {
                get
                {
                    return ((int)(StiReport.ChangeType(this["CategoryID"], typeof(int), true)));
                }
            }
            
            public virtual string CategoryName
            {
                get
                {
                    return ((string)(StiReport.ChangeType(this["CategoryName"], typeof(string), true)));
                }
            }
            
            public virtual string Description
            {
                get
                {
                    return ((string)(StiReport.ChangeType(this["Description"], typeof(string), true)));
                }
            }
            
            public virtual byte[] Picture
            {
                get
                {
                    return ((byte[])(StiReport.ChangeType(this["Picture"], typeof(byte[]), true)));
                }
            }
        }
        #endregion DataSource Categories
        #endregion StiReport Designer generated code - do not modify
    }
}
</Script>
  <ScriptLanguage>CSharp</ScriptLanguage>
  <Styles isList="true" count="0" />
</StiSerializer>