コード例 #1
0
        public XRBarCode CreateMatrix2of5BarCode(string BarCodeText)
        {
            // Create a bar code control.
            XRBarCode barCode = new XRBarCode();

            // Set the bar code's type to Matrix 2 of 5.
            barCode.Symbology = new Matrix2of5Generator();

            // Adjust the bar code's main properties.
            barCode.Text   = BarCodeText;
            barCode.Width  = 400;
            barCode.Height = 100;

            // Adjust the properties specific to the bar code type.
            ((Matrix2of5Generator)barCode.Symbology).CalcCheckSum    = false;
            ((Matrix2of5Generator)barCode.Symbology).WideNarrowRatio = 3;

            return(barCode);
        }
コード例 #2
0
        public XRBarCode CreateIntelligentMailBarCode(string BarCodeText)
        {
            // Create a bar code control.
            XRBarCode barCode = new XRBarCode();

            // Set the bar code's type to Intelligent Mail.
            barCode.Symbology = new IntelligentMailGenerator();

            // Adjust the bar code's main properties.
            barCode.Text     = BarCodeText;
            barCode.ShowText = true;
            barCode.WidthF   = 300f;
            barCode.HeightF  = 50f;

            // If the AutoModule property is set to false, uncomment the next line.
            barCode.AutoModule = true;
            //barcode.Module = 3;

            return(barCode);
        }
コード例 #3
0
        public XRBarCode CreateDataBarGS1BarCode(string BarCodeText)
        {
            // Create a bar code control.
            XRBarCode barCode = new XRBarCode();

            // Set the bar code's type to GS1 DataBar.
            barCode.Symbology = new DataBarGenerator();

            // Adjust the bar code's main properties.
            barCode.Text   = BarCodeText;
            barCode.Width  = 250;
            barCode.Height = 160;

            // Adjust the properties specific to the bar code type.
            ((DataBarGenerator)barCode.Symbology).FNC1Substitute = "#";
            ((DataBarGenerator)barCode.Symbology).SegmentsInRow  = 4;
            ((DataBarGenerator)barCode.Symbology).Type           = DataBarType.ExpandedStacked;

            return(barCode);
        }
コード例 #4
0
        public XRBarCode CreateCodabarBarCode(string BarCodeText)
        {
            // Create a bar code control.
            XRBarCode barCode = new XRBarCode();

            // Set the bar code's type to Codabar
            barCode.Symbology = new CodabarGenerator();

            // Adjust the bar code's main properties.
            barCode.Text   = BarCodeText;
            barCode.Width  = 300;
            barCode.Height = 100;

            // Adjust the properties specific to the bar code type.
            ((CodabarGenerator)barCode.Symbology).StartSymbol     = CodabarStartStopSymbol.C;
            ((CodabarGenerator)barCode.Symbology).StopSymbol      = CodabarStartStopSymbol.D;
            ((CodabarGenerator)barCode.Symbology).WideNarrowRatio = 2.5F;

            return(barCode);
        }
コード例 #5
0
        public XRBarCode CreateDataMatrixGS1BarCode(string BarCodeText)
        {
            // Create a bar code control.
            XRBarCode barCode = new XRBarCode();

            // Set the bar code's type to Data Matrix GS1.
            barCode.Symbology = new DataMatrixGS1Generator();

            // Adjust the bar code's main properties.
            barCode.AutoModule = true;
            barCode.Text       = BarCodeText;
            barCode.ShowText   = true;
            barCode.Width      = 200;
            barCode.Height     = 200;

            // Adjust the properties specific to the bar code type.
            // (Assigned below are the default values.)
            ((DataMatrixGS1Generator)barCode.Symbology).FNC1Substitute    = "#";
            ((DataMatrixGS1Generator)barCode.Symbology).HumanReadableText = true;
            ((DataMatrixGS1Generator)barCode.Symbology).MatrixSize        = DataMatrixSize.MatrixAuto;

            return(barCode);
        }
コード例 #6
0
        public XRBarCode CreateDataMatrixBarCode(string BarCodeText)
        {
            // Create a bar code control.
            XRBarCode barCode = new XRBarCode();

            // Set the bar code's type to DataMatrix.
            barCode.Symbology = new DataMatrixGenerator();

            // Adjust the bar code's main properties.
            barCode.Text   = BarCodeText;
            barCode.Width  = 400;
            barCode.Height = 150;

            // If the AutoModule property is set to false, uncomment the next line.
            barCode.AutoModule = true;
            //barcode.Module = 3;

            // Adjust the properties specific to the bar code type.
            ((DataMatrixGenerator)barCode.Symbology).CompactionMode = DataMatrixCompactionMode.Text;
            ((DataMatrixGenerator)barCode.Symbology).MatrixSize     = DataMatrixSize.MatrixAuto;

            return(barCode);
        }
コード例 #7
0
        public XRBarCode CreateIntelligentMailPackageBarCode(string BarCodeText)
        {
            // Create a bar code control.
            XRBarCode barCode = new XRBarCode();

            // Set the bar code's type to Intelligent Mail Package.
            barCode.Symbology = new IntelligentMailPackageGenerator();

            // Adjust the bar code's main properties.
            barCode.Text     = BarCodeText;
            barCode.ShowText = false;
            barCode.WidthF   = 300;
            barCode.HeightF  = 150f;

            // If the AutoModule property is set to false, uncomment the next line.
            barCode.AutoModule = true;
            //barcode.Module = 3;

            // Adjust the property specific to the bar code type.
            // (Assigned below is the default value.)
            ((IntelligentMailPackageGenerator)barCode.Symbology).FNC1Substitute = "#";

            return(barCode);
        }
コード例 #8
0
        public XRBarCode CreateQRCodeBarCode(string BarCodeText)
        {
            // Create a bar code control.
            XRBarCode barCode = new XRBarCode();

            // Set the bar code's type to QRCode.
            barCode.Symbology = new QRCodeGenerator();

            // Adjust the bar code's main properties.
            barCode.Text   = BarCodeText;
            barCode.Width  = 400;
            barCode.Height = 150;

            // If the AutoModule property is set to false, uncomment the next line.
            barCode.AutoModule = true;
            // barcode.Module = 3;

            // Adjust the properties specific to the bar code type.
            ((QRCodeGenerator)barCode.Symbology).CompactionMode       = QRCodeCompactionMode.AlphaNumeric;
            ((QRCodeGenerator)barCode.Symbology).ErrorCorrectionLevel = QRCodeErrorCorrectionLevel.H;
            ((QRCodeGenerator)barCode.Symbology).Version = QRCodeVersion.AutoVersion;

            return(barCode);
        }
コード例 #9
0
ファイル: library_card.cs プロジェクト: khanhnguyen18/tvqlLib
        private void method_0()
        {
            Code39ExtendedGenerator generator = new Code39ExtendedGenerator();

            this.detailBand_0       = new DetailBand();
            this.xrpanel_0          = new XRPanel();
            this.xrline_0           = new XRLine();
            this.xrlabel_6          = new XRLabel();
            this.xrlabel_0          = new XRLabel();
            this.xrpictureBox_0     = new XRPictureBox();
            this.xrlabel_2          = new XRLabel();
            this.xrlabel_1          = new XRLabel();
            this.xrbarCode_0        = new XRBarCode();
            this.xrlabel_3          = new XRLabel();
            this.xrlabel_4          = new XRLabel();
            this.xrlabel_5          = new XRLabel();
            this.topMarginBand_0    = new TopMarginBand();
            this.bottomMarginBand_0 = new BottomMarginBand();
            this.dataSet1           = new DataSet();
            this.dataTable_0        = new DataTable();
            this.dataColumn_0       = new DataColumn();
            this.dataColumn_1       = new DataColumn();
            this.dataColumn_2       = new DataColumn();
            this.dataColumn_3       = new DataColumn();
            this.dataColumn_4       = new DataColumn();
            this.dataColumn_5       = new DataColumn();
            this.dataSet1.BeginInit();
            this.dataTable_0.BeginInit();
            this.BeginInit();
            this.detailBand_0.Controls.AddRange(new XRControl[] { this.xrpanel_0 });
            this.detailBand_0.HeightF = 215f;
            this.detailBand_0.MultiColumn.ColumnCount = 2;
            //this.detailBand_0.MultiColumn.Layout = ColumnLayout.AcrossThenDown;
            this.detailBand_0.MultiColumn.Mode = MultiColumnMode.UseColumnCount;
            this.detailBand_0.Name             = "Detail";
            this.detailBand_0.Padding          = new PaddingInfo(0, 0, 0, 0, 100f);
            this.detailBand_0.TextAlignment    = TextAlignment.TopLeft;
            this.xrpanel_0.BorderColor         = SystemColors.ControlDarkDark;
            this.xrpanel_0.Borders             = BorderSide.All;
            this.xrpanel_0.Controls.AddRange(new XRControl[] { this.xrline_0, this.xrlabel_6, this.xrlabel_0, this.xrpictureBox_0, this.xrlabel_2, this.xrlabel_1, this.xrbarCode_0, this.xrlabel_3, this.xrlabel_4, this.xrlabel_5 });
            this.xrpanel_0.LocationFloat = new PointFloat(5.999994f, 5f);
            this.xrpanel_0.Name          = "xrPanel1";
            this.xrpanel_0.SizeF         = new SizeF(388.0417f, 203.125f);
            this.xrpanel_0.StylePriority.UseBorderColor = false;
            this.xrpanel_0.StylePriority.UseBorders     = false;
            this.xrline_0.Borders                         = BorderSide.None;
            this.xrline_0.ForeColor                       = SystemColors.Desktop;
            this.xrline_0.LocationFloat                   = new PointFloat(2.000006f, 42.20833f);
            this.xrline_0.Name                            = "xrLine1";
            this.xrline_0.SizeF                           = new SizeF(384.0417f, 5f);
            this.xrline_0.StylePriority.UseBorders        = false;
            this.xrline_0.StylePriority.UseForeColor      = false;
            this.xrlabel_6.Borders                        = BorderSide.None;
            this.xrlabel_6.Font                           = new Font("Tahoma", 8.25f, FontStyle.Bold, GraphicsUnit.Point, 0);
            this.xrlabel_6.LocationFloat                  = new PointFloat(5.000014f, 25.125f);
            this.xrlabel_6.Name                           = "xrLabel7";
            this.xrlabel_6.Padding                        = new PaddingInfo(2, 2, 0, 0, 100f);
            this.xrlabel_6.SizeF                          = new SizeF(376.9166f, 19f);
            this.xrlabel_6.StylePriority.UseBorders       = false;
            this.xrlabel_6.StylePriority.UseFont          = false;
            this.xrlabel_6.StylePriority.UseTextAlignment = false;
            this.xrlabel_6.Text                           = "Điện thoại : 0904843991";
            this.xrlabel_6.TextAlignment                  = TextAlignment.MiddleCenter;
            this.xrlabel_0.Borders                        = BorderSide.None;
            this.xrlabel_0.Font                           = new Font("Times New Roman", 11.25f, FontStyle.Bold, GraphicsUnit.Point, 0);
            this.xrlabel_0.ForeColor                      = SystemColors.Desktop;
            this.xrlabel_0.LocationFloat                  = new PointFloat(2.000004f, 5f);
            this.xrlabel_0.Name                           = "xrLabel1";
            this.xrlabel_0.Padding                        = new PaddingInfo(2, 2, 0, 0, 100f);
            this.xrlabel_0.SizeF                          = new SizeF(384.0417f, 20.125f);
            this.xrlabel_0.StylePriority.UseBorders       = false;
            this.xrlabel_0.StylePriority.UseFont          = false;
            this.xrlabel_0.StylePriority.UseForeColor     = false;
            this.xrlabel_0.StylePriority.UseTextAlignment = false;
            this.xrlabel_0.Text                           = "Phần mềm quản l\x00fd thư viện";
            this.xrlabel_0.TextAlignment                  = TextAlignment.MiddleCenter;
            this.xrpictureBox_0.Borders                   = BorderSide.None;
            this.xrpictureBox_0.DataBindings.AddRange(new XRBinding[] { new XRBinding("Image", null, "CardPrint.image") });
            this.xrpictureBox_0.LocationFloat            = new PointFloat(276.9167f, 54.125f);
            this.xrpictureBox_0.Name                     = "xrPictureBox1";
            this.xrpictureBox_0.SizeF                    = new SizeF(100f, 115.875f);
            this.xrpictureBox_0.Sizing                   = ImageSizeMode.ZoomImage;
            this.xrpictureBox_0.StylePriority.UseBorders = false;
            this.xrlabel_2.Borders = BorderSide.None;
            this.xrlabel_2.DataBindings.AddRange(new XRBinding[] { new XRBinding("Text", null, "CardPrint.fullname") });
            this.xrlabel_2.Font                           = new Font("Arial", 12f, FontStyle.Bold, GraphicsUnit.Point, 0);
            this.xrlabel_2.LocationFloat                  = new PointFloat(24.00001f, 48.125f);
            this.xrlabel_2.Name                           = "xrLabel2";
            this.xrlabel_2.Padding                        = new PaddingInfo(2, 2, 0, 0, 100f);
            this.xrlabel_2.SizeF                          = new SizeF(252.9166f, 26.125f);
            this.xrlabel_2.StylePriority.UseBorders       = false;
            this.xrlabel_2.StylePriority.UseFont          = false;
            this.xrlabel_2.StylePriority.UseTextAlignment = false;
            this.xrlabel_2.Text                           = "xrLabel2";
            this.xrlabel_2.TextAlignment                  = TextAlignment.MiddleLeft;
            this.xrlabel_2.WordWrap                       = false;
            this.xrlabel_2.BeforePrint                   += new PrintEventHandler(this.xrlabel_2_BeforePrint);
            this.xrlabel_1.Borders                        = BorderSide.None;
            this.xrlabel_1.DataBindings.AddRange(new XRBinding[] { new XRBinding("Text", null, "CardPrint.open_date", "{0:dd/MM/yyyy}") });
            this.xrlabel_1.Font                           = new Font("Times New Roman", 9.75f, FontStyle.Regular, GraphicsUnit.Point, 0);
            this.xrlabel_1.LocationFloat                  = new PointFloat(157.0833f, 85.37502f);
            this.xrlabel_1.Name                           = "xrLabel3";
            this.xrlabel_1.Padding                        = new PaddingInfo(2, 2, 0, 0, 100f);
            this.xrlabel_1.SizeF                          = new SizeF(102.375f, 23f);
            this.xrlabel_1.StylePriority.UseBorders       = false;
            this.xrlabel_1.StylePriority.UseFont          = false;
            this.xrlabel_1.StylePriority.UseTextAlignment = false;
            this.xrlabel_1.Text                           = "xrLabel3";
            this.xrlabel_1.TextAlignment                  = TextAlignment.MiddleLeft;
            this.xrlabel_1.WordWrap                       = false;
            this.xrbarCode_0.AutoModule                   = true;
            this.xrbarCode_0.Borders                      = BorderSide.None;
            this.xrbarCode_0.DataBindings.AddRange(new XRBinding[] { new XRBinding("Text", null, "CardPrint.card_id") });
            this.xrbarCode_0.Font                           = new Font("Arial", 9.75f, FontStyle.Bold, GraphicsUnit.Point, 0);
            this.xrbarCode_0.LocationFloat                  = new PointFloat(24.00001f, 149.25f);
            this.xrbarCode_0.Name                           = "xrBarCode1";
            this.xrbarCode_0.Padding                        = new PaddingInfo(10, 10, 0, 0, 100f);
            this.xrbarCode_0.SizeF                          = new SizeF(239.4583f, 42.74999f);
            this.xrbarCode_0.StylePriority.UseBorders       = false;
            this.xrbarCode_0.StylePriority.UseFont          = false;
            this.xrbarCode_0.StylePriority.UseTextAlignment = false;
            generator.WideNarrowRatio                       = 3f;
            this.xrbarCode_0.Symbology                      = generator;
            this.xrbarCode_0.Text                           = "xrBarCode1";
            this.xrbarCode_0.TextAlignment                  = TextAlignment.MiddleCenter;
            this.xrlabel_3.Borders                          = BorderSide.None;
            this.xrlabel_3.Font                           = new Font("Times New Roman", 9.75f, FontStyle.Regular, GraphicsUnit.Point, 0);
            this.xrlabel_3.LocationFloat                  = new PointFloat(157.0833f, 111.5f);
            this.xrlabel_3.Name                           = "xrLabel4";
            this.xrlabel_3.Padding                        = new PaddingInfo(2, 2, 0, 0, 100f);
            this.xrlabel_3.SizeF                          = new SizeF(102.375f, 23f);
            this.xrlabel_3.StylePriority.UseBorders       = false;
            this.xrlabel_3.StylePriority.UseFont          = false;
            this.xrlabel_3.StylePriority.UseTextAlignment = false;
            this.xrlabel_3.Text                           = "[due_date!dd/MM/yyyy]";
            this.xrlabel_3.TextAlignment                  = TextAlignment.MiddleLeft;
            this.xrlabel_3.WordWrap                       = false;
            this.xrlabel_4.Borders                        = BorderSide.None;
            this.xrlabel_4.Font                           = new Font("Arial", 9.75f, FontStyle.Regular, GraphicsUnit.Point, 0);
            this.xrlabel_4.LocationFloat                  = new PointFloat(56.00002f, 85.37502f);
            this.xrlabel_4.Name                           = "xrLabel5";
            this.xrlabel_4.Padding                        = new PaddingInfo(2, 2, 0, 0, 100f);
            this.xrlabel_4.SizeF                          = new SizeF(100f, 23f);
            this.xrlabel_4.StylePriority.UseBorders       = false;
            this.xrlabel_4.StylePriority.UseFont          = false;
            this.xrlabel_4.StylePriority.UseTextAlignment = false;
            this.xrlabel_4.Text                           = "Ng\x00e0y cấp";
            this.xrlabel_4.TextAlignment                  = TextAlignment.MiddleLeft;
            this.xrlabel_5.Borders                        = BorderSide.None;
            this.xrlabel_5.Font                           = new Font("Arial", 9.75f, FontStyle.Regular, GraphicsUnit.Point, 0);
            this.xrlabel_5.LocationFloat                  = new PointFloat(56.00002f, 111.5f);
            this.xrlabel_5.Name                           = "xrLabel6";
            this.xrlabel_5.Padding                        = new PaddingInfo(2, 2, 0, 0, 100f);
            this.xrlabel_5.SizeF                          = new SizeF(100f, 23f);
            this.xrlabel_5.StylePriority.UseBorders       = false;
            this.xrlabel_5.StylePriority.UseFont          = false;
            this.xrlabel_5.StylePriority.UseTextAlignment = false;
            this.xrlabel_5.Text                           = "Ng\x00e0y hết hạn";
            this.xrlabel_5.TextAlignment                  = TextAlignment.MiddleLeft;
            this.topMarginBand_0.HeightF                  = 18f;
            this.topMarginBand_0.Name                     = "TopMargin";
            this.topMarginBand_0.Padding                  = new PaddingInfo(0, 0, 0, 0, 100f);
            this.topMarginBand_0.TextAlignment            = TextAlignment.TopLeft;
            this.bottomMarginBand_0.HeightF               = 21f;
            this.bottomMarginBand_0.Name                  = "BottomMargin";
            this.bottomMarginBand_0.Padding               = new PaddingInfo(0, 0, 0, 0, 100f);
            this.bottomMarginBand_0.TextAlignment         = TextAlignment.TopLeft;
            this.dataSet1.DataSetName                     = "NewDataSet";
            this.dataSet1.Tables.AddRange(new DataTable[] { this.dataTable_0 });
            this.dataTable_0.Columns.AddRange(new DataColumn[] { this.dataColumn_0, this.dataColumn_1, this.dataColumn_2, this.dataColumn_3, this.dataColumn_4, this.dataColumn_5 });
            this.dataTable_0.Constraints.AddRange(new Constraint[] { new UniqueConstraint("Constraint1", new string[] { "card_id" }, false) });
            this.dataTable_0.TableName   = "CardPrint";
            this.dataColumn_0.ColumnName = "idx";
            this.dataColumn_0.DataType   = typeof(short);
            this.dataColumn_1.ColumnName = "card_id";
            this.dataColumn_2.ColumnName = "fullname";
            this.dataColumn_3.ColumnName = "image";
            this.dataColumn_3.DataType   = typeof(byte[]);
            this.dataColumn_4.ColumnName = "open_date";
            this.dataColumn_4.DataType   = typeof(DateTime);
            this.dataColumn_5.ColumnName = "due_date";
            this.dataColumn_5.DataType   = typeof(DateTime);
            base.Bands.AddRange(new Band[] { this.detailBand_0, this.topMarginBand_0, this.bottomMarginBand_0 });
            base.DataMember = "CardPrint";
            base.DataSource = this.dataSet1;
            base.Margins    = new Margins(0x13, 0x19, 0x12, 0x15);
            base.SnapToGrid = false;
            base.Version    = "10.2";
            this.dataSet1.EndInit();
            this.dataTable_0.EndInit();
            this.EndInit();
        }
コード例 #10
0
ファイル: Rotulo POS.cs プロジェクト: sebastianvz/Meka
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     DevExpress.XtraPrinting.BarCode.Code128Generator code128Generator1 = new DevExpress.XtraPrinting.BarCode.Code128Generator();
     System.ComponentModel.ComponentResourceManager   resources         = new System.ComponentModel.ComponentResourceManager(typeof(Rotulo_POS));
     this.Detail           = new DevExpress.XtraReports.UI.DetailBand();
     this.xrLabel9         = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel53        = new DevExpress.XtraReports.UI.XRLabel();
     this.TopMargin        = new DevExpress.XtraReports.UI.TopMarginBand();
     this.xrBarCode1       = new DevExpress.XtraReports.UI.XRBarCode();
     this.xrPictureBox1    = new DevExpress.XtraReports.UI.XRPictureBox();
     this.BottomMargin     = new DevExpress.XtraReports.UI.BottomMarginBand();
     this.bindingSource1   = new System.Windows.Forms.BindingSource(this.components);
     this.xrLabel1         = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel2         = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel55        = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel56        = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel57        = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel58        = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel11        = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel3         = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel4         = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel5         = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel6         = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel7         = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel8         = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel10        = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel12        = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel13        = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel14        = new DevExpress.XtraReports.UI.XRLabel();
     this.calculatedField1 = new DevExpress.XtraReports.UI.CalculatedField();
     ((System.ComponentModel.ISupportInitialize)(this.bindingSource1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
     //
     // Detail
     //
     this.Detail.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrLabel14,
         this.xrLabel13,
         this.xrLabel12,
         this.xrLabel10,
         this.xrLabel8,
         this.xrLabel7,
         this.xrLabel6,
         this.xrLabel5,
         this.xrLabel4,
         this.xrLabel3,
         this.xrLabel55,
         this.xrLabel56,
         this.xrLabel57,
         this.xrLabel58,
         this.xrLabel11,
         this.xrLabel2,
         this.xrLabel1,
         this.xrLabel9,
         this.xrLabel53
     });
     this.Detail.Dpi           = 254F;
     this.Detail.HeightF       = 821.0901F;
     this.Detail.Name          = "Detail";
     this.Detail.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 254F);
     this.Detail.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // xrLabel9
     //
     this.xrLabel9.Dpi                   = 254F;
     this.xrLabel9.Font                  = new System.Drawing.Font("Tahoma", 8F);
     this.xrLabel9.LocationFloat         = new DevExpress.Utils.PointFloat(14.41667F, 67.52826F);
     this.xrLabel9.Name                  = "xrLabel9";
     this.xrLabel9.Padding               = new DevExpress.XtraPrinting.PaddingInfo(5, 5, 0, 0, 254F);
     this.xrLabel9.SizeF                 = new System.Drawing.SizeF(164.3724F, 36.92267F);
     this.xrLabel9.StylePriority.UseFont = false;
     this.xrLabel9.Text                  = "REMESA: ";
     //
     // xrLabel53
     //
     this.xrLabel53.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "Remesa")
     });
     this.xrLabel53.Dpi                   = 254F;
     this.xrLabel53.Font                  = new System.Drawing.Font("Tahoma", 8F, System.Drawing.FontStyle.Bold);
     this.xrLabel53.LocationFloat         = new DevExpress.Utils.PointFloat(282.7733F, 67.52826F);
     this.xrLabel53.Name                  = "xrLabel53";
     this.xrLabel53.Padding               = new DevExpress.XtraPrinting.PaddingInfo(5, 5, 0, 0, 254F);
     this.xrLabel53.SizeF                 = new System.Drawing.SizeF(301.9557F, 36.92267F);
     this.xrLabel53.StylePriority.UseFont = false;
     this.xrLabel53.Text                  = "REMESA";
     //
     // TopMargin
     //
     this.TopMargin.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrBarCode1,
         this.xrPictureBox1
     });
     this.TopMargin.Dpi           = 254F;
     this.TopMargin.HeightF       = 254F;
     this.TopMargin.Name          = "TopMargin";
     this.TopMargin.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 254F);
     this.TopMargin.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // xrBarCode1
     //
     this.xrBarCode1.Dpi           = 254F;
     this.xrBarCode1.LocationFloat = new DevExpress.Utils.PointFloat(0F, 54.78041F);
     this.xrBarCode1.Module        = 5.08F;
     this.xrBarCode1.Name          = "xrBarCode1";
     this.xrBarCode1.Padding       = new DevExpress.XtraPrinting.PaddingInfo(25, 25, 0, 0, 254F);
     this.xrBarCode1.SizeF         = new System.Drawing.SizeF(521.2291F, 111.3366F);
     this.xrBarCode1.Symbology     = code128Generator1;
     //
     // xrPictureBox1
     //
     this.xrPictureBox1.Dpi           = 254F;
     this.xrPictureBox1.Image         = ((System.Drawing.Image)(resources.GetObject("xrPictureBox1.Image")));
     this.xrPictureBox1.LocationFloat = new DevExpress.Utils.PointFloat(524.3333F, 38.90541F);
     this.xrPictureBox1.Name          = "xrPictureBox1";
     this.xrPictureBox1.SizeF         = new System.Drawing.SizeF(338.6666F, 165.6058F);
     //
     // BottomMargin
     //
     this.BottomMargin.Dpi           = 254F;
     this.BottomMargin.HeightF       = 32.85957F;
     this.BottomMargin.Name          = "BottomMargin";
     this.BottomMargin.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 254F);
     this.BottomMargin.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // bindingSource1
     //
     this.bindingSource1.DataSource = typeof(TCCService.Models.FacturaModel);
     //
     // xrLabel1
     //
     this.xrLabel1.Dpi                   = 254F;
     this.xrLabel1.Font                  = new System.Drawing.Font("Tahoma", 8F);
     this.xrLabel1.LocationFloat         = new DevExpress.Utils.PointFloat(14.41667F, 120.7292F);
     this.xrLabel1.Name                  = "xrLabel1";
     this.xrLabel1.Padding               = new DevExpress.XtraPrinting.PaddingInfo(5, 5, 0, 0, 254F);
     this.xrLabel1.SizeF                 = new System.Drawing.SizeF(238.4557F, 36.92266F);
     this.xrLabel1.StylePriority.UseFont = false;
     this.xrLabel1.Text                  = "TIPO UNIDAD: ";
     //
     // xrLabel2
     //
     this.xrLabel2.Dpi                   = 254F;
     this.xrLabel2.Font                  = new System.Drawing.Font("Tahoma", 8F);
     this.xrLabel2.LocationFloat         = new DevExpress.Utils.PointFloat(282.7733F, 120.7292F);
     this.xrLabel2.Name                  = "xrLabel2";
     this.xrLabel2.Padding               = new DevExpress.XtraPrinting.PaddingInfo(5, 5, 0, 0, 254F);
     this.xrLabel2.SizeF                 = new System.Drawing.SizeF(238.4557F, 36.92266F);
     this.xrLabel2.StylePriority.UseFont = false;
     this.xrLabel2.Text                  = "PAQUETE";
     //
     // xrLabel55
     //
     this.xrLabel55.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "Model.origin.name")
     });
     this.xrLabel55.Dpi                   = 254F;
     this.xrLabel55.Font                  = new System.Drawing.Font("Tahoma", 8F);
     this.xrLabel55.LocationFloat         = new DevExpress.Utils.PointFloat(327.4219F, 243.1692F);
     this.xrLabel55.Name                  = "xrLabel55";
     this.xrLabel55.Padding               = new DevExpress.XtraPrinting.PaddingInfo(5, 5, 0, 0, 254F);
     this.xrLabel55.SizeF                 = new System.Drawing.SizeF(474.6824F, 38.47903F);
     this.xrLabel55.StylePriority.UseFont = false;
     this.xrLabel55.Text                  = "REMITENTE";
     //
     // xrLabel56
     //
     this.xrLabel56.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "Model.origin.Identification")
     });
     this.xrLabel56.Dpi                   = 254F;
     this.xrLabel56.Font                  = new System.Drawing.Font("Tahoma", 8F);
     this.xrLabel56.LocationFloat         = new DevExpress.Utils.PointFloat(14.41667F, 243.1692F);
     this.xrLabel56.Name                  = "xrLabel56";
     this.xrLabel56.Padding               = new DevExpress.XtraPrinting.PaddingInfo(5, 5, 0, 0, 254F);
     this.xrLabel56.SizeF                 = new System.Drawing.SizeF(274.8951F, 36.14447F);
     this.xrLabel56.StylePriority.UseFont = false;
     this.xrLabel56.Text                  = "CC O NIT:";
     //
     // xrLabel57
     //
     this.xrLabel57.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "Model.origin.address")
     });
     this.xrLabel57.Dpi                   = 254F;
     this.xrLabel57.Font                  = new System.Drawing.Font("Tahoma", 8F);
     this.xrLabel57.LocationFloat         = new DevExpress.Utils.PointFloat(14.41667F, 317.7927F);
     this.xrLabel57.Name                  = "xrLabel57";
     this.xrLabel57.Padding               = new DevExpress.XtraPrinting.PaddingInfo(5, 5, 0, 0, 254F);
     this.xrLabel57.SizeF                 = new System.Drawing.SizeF(517.7274F, 36.14447F);
     this.xrLabel57.StylePriority.UseFont = false;
     this.xrLabel57.Text                  = "DIRECCION";
     //
     // xrLabel58
     //
     this.xrLabel58.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "Model.origin.Location.City")
     });
     this.xrLabel58.Dpi                   = 254F;
     this.xrLabel58.Font                  = new System.Drawing.Font("Tahoma", 8F);
     this.xrLabel58.LocationFloat         = new DevExpress.Utils.PointFloat(14.41667F, 281.6482F);
     this.xrLabel58.Name                  = "xrLabel58";
     this.xrLabel58.Padding               = new DevExpress.XtraPrinting.PaddingInfo(5, 5, 0, 0, 254F);
     this.xrLabel58.SizeF                 = new System.Drawing.SizeF(413.8282F, 36.14447F);
     this.xrLabel58.StylePriority.UseFont = false;
     this.xrLabel58.Text                  = "ORIGEN";
     //
     // xrLabel11
     //
     this.xrLabel11.Dpi                   = 254F;
     this.xrLabel11.Font                  = new System.Drawing.Font("Tahoma", 8F, System.Drawing.FontStyle.Bold);
     this.xrLabel11.LocationFloat         = new DevExpress.Utils.PointFloat(18.52159F, 185.9661F);
     this.xrLabel11.Name                  = "xrLabel11";
     this.xrLabel11.Padding               = new DevExpress.XtraPrinting.PaddingInfo(5, 5, 0, 0, 254F);
     this.xrLabel11.SizeF                 = new System.Drawing.SizeF(249.8951F, 38.47906F);
     this.xrLabel11.StylePriority.UseFont = false;
     this.xrLabel11.Text                  = "DATOS ORIGEN";
     //
     // xrLabel3
     //
     this.xrLabel3.Dpi                   = 254F;
     this.xrLabel3.Font                  = new System.Drawing.Font("Tahoma", 8F);
     this.xrLabel3.LocationFloat         = new DevExpress.Utils.PointFloat(14.41667F, 387.9584F);
     this.xrLabel3.Name                  = "xrLabel3";
     this.xrLabel3.Padding               = new DevExpress.XtraPrinting.PaddingInfo(5, 5, 0, 0, 254F);
     this.xrLabel3.SizeF                 = new System.Drawing.SizeF(249.8951F, 38.47906F);
     this.xrLabel3.StylePriority.UseFont = false;
     this.xrLabel3.Text                  = "OBSERVACIONES";
     //
     // xrLabel4
     //
     this.xrLabel4.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "Model.content.Description")
     });
     this.xrLabel4.Dpi           = 254F;
     this.xrLabel4.LocationFloat = new DevExpress.Utils.PointFloat(282.7733F, 387.9584F);
     this.xrLabel4.Name          = "xrLabel4";
     this.xrLabel4.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 96F);
     this.xrLabel4.SizeF         = new System.Drawing.SizeF(487.2502F, 58.41998F);
     this.xrLabel4.Text          = "xrLabel4";
     //
     // xrLabel5
     //
     this.xrLabel5.Dpi                   = 254F;
     this.xrLabel5.Font                  = new System.Drawing.Font("Tahoma", 8F, System.Drawing.FontStyle.Bold);
     this.xrLabel5.LocationFloat         = new DevExpress.Utils.PointFloat(18.52158F, 507.0209F);
     this.xrLabel5.Name                  = "xrLabel5";
     this.xrLabel5.Padding               = new DevExpress.XtraPrinting.PaddingInfo(5, 5, 0, 0, 254F);
     this.xrLabel5.SizeF                 = new System.Drawing.SizeF(249.8951F, 38.47906F);
     this.xrLabel5.StylePriority.UseFont = false;
     this.xrLabel5.Text                  = "DATOS DESTINO";
     //
     // xrLabel6
     //
     this.xrLabel6.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "Model.receiver.Identification")
     });
     this.xrLabel6.Dpi           = 254F;
     this.xrLabel6.LocationFloat = new DevExpress.Utils.PointFloat(14.41669F, 555.5192F);
     this.xrLabel6.Name          = "xrLabel6";
     this.xrLabel6.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 96F);
     this.xrLabel6.SizeF         = new System.Drawing.SizeF(306.9167F, 49.60059F);
     this.xrLabel6.Text          = "xrLabel6";
     //
     // xrLabel7
     //
     this.xrLabel7.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "Model.receiver.Name")
     });
     this.xrLabel7.Dpi           = 254F;
     this.xrLabel7.LocationFloat = new DevExpress.Utils.PointFloat(357.1875F, 555.5192F);
     this.xrLabel7.Name          = "xrLabel7";
     this.xrLabel7.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 96F);
     this.xrLabel7.SizeF         = new System.Drawing.SizeF(480.8123F, 49.60065F);
     this.xrLabel7.Text          = "xrLabel7";
     //
     // xrLabel8
     //
     this.xrLabel8.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "Model.receiver.Location.City")
     });
     this.xrLabel8.Dpi           = 254F;
     this.xrLabel8.LocationFloat = new DevExpress.Utils.PointFloat(14.41669F, 616.3734F);
     this.xrLabel8.Name          = "xrLabel8";
     this.xrLabel8.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 96F);
     this.xrLabel8.SizeF         = new System.Drawing.SizeF(254F, 58.42F);
     this.xrLabel8.Text          = "xrLabel8";
     //
     // xrLabel10
     //
     this.xrLabel10.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "Model.receiver.Location.Department")
     });
     this.xrLabel10.Dpi           = 254F;
     this.xrLabel10.LocationFloat = new DevExpress.Utils.PointFloat(282.7734F, 616.3734F);
     this.xrLabel10.Name          = "xrLabel10";
     this.xrLabel10.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 96F);
     this.xrLabel10.SizeF         = new System.Drawing.SizeF(254F, 58.42F);
     this.xrLabel10.Text          = "xrLabel10";
     //
     // xrLabel12
     //
     this.xrLabel12.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "Model.receiver.Location.Address")
     });
     this.xrLabel12.Dpi                   = 254F;
     this.xrLabel12.Font                  = new System.Drawing.Font("Times New Roman", 9.75F, System.Drawing.FontStyle.Bold);
     this.xrLabel12.LocationFloat         = new DevExpress.Utils.PointFloat(14.41669F, 674.7933F);
     this.xrLabel12.Name                  = "xrLabel12";
     this.xrLabel12.Padding               = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 96F);
     this.xrLabel12.SizeF                 = new System.Drawing.SizeF(522.3567F, 58.41998F);
     this.xrLabel12.StylePriority.UseFont = false;
     this.xrLabel12.Text                  = "xrLabel12";
     //
     // xrLabel13
     //
     this.xrLabel13.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "Model.receiver.Phone")
     });
     this.xrLabel13.Dpi           = 254F;
     this.xrLabel13.LocationFloat = new DevExpress.Utils.PointFloat(101.7552F, 733.2132F);
     this.xrLabel13.Name          = "xrLabel13";
     this.xrLabel13.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 96F);
     this.xrLabel13.SizeF         = new System.Drawing.SizeF(254F, 58.42F);
     this.xrLabel13.Text          = "xrLabel13";
     //
     // xrLabel14
     //
     this.xrLabel14.Dpi                   = 254F;
     this.xrLabel14.Font                  = new System.Drawing.Font("Tahoma", 8F);
     this.xrLabel14.LocationFloat         = new DevExpress.Utils.PointFloat(14.41669F, 733.2131F);
     this.xrLabel14.Name                  = "xrLabel14";
     this.xrLabel14.Padding               = new DevExpress.XtraPrinting.PaddingInfo(5, 5, 0, 0, 254F);
     this.xrLabel14.SizeF                 = new System.Drawing.SizeF(74.97614F, 58.41992F);
     this.xrLabel14.StylePriority.UseFont = false;
     this.xrLabel14.Text                  = "TEL:";
     //
     // calculatedField1
     //
     this.calculatedField1.Name = "calculatedField1";
     //
     // Rotulo_POS
     //
     this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
         this.Detail,
         this.TopMargin,
         this.BottomMargin
     });
     this.CalculatedFields.AddRange(new DevExpress.XtraReports.UI.CalculatedField[] {
         this.calculatedField1
     });
     this.DataSource = this.bindingSource1;
     this.Dpi        = 254F;
     this.Margins    = new System.Drawing.Printing.Margins(0, 0, 254, 33);
     this.PageHeight = 2794;
     this.PageWidth  = 863;
     this.PaperKind  = System.Drawing.Printing.PaperKind.Custom;
     this.ReportUnit = DevExpress.XtraReports.UI.ReportUnit.TenthsOfAMillimeter;
     this.Version    = "15.1";
     ((System.ComponentModel.ISupportInitialize)(this.bindingSource1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this)).EndInit();
 }
コード例 #11
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     DevExpress.XtraPrinting.BarCode.QRCodeGenerator qrCodeGenerator1 = new DevExpress.XtraPrinting.BarCode.QRCodeGenerator();
     this.Detail            = new DevExpress.XtraReports.UI.DetailBand();
     this.xrLabel19         = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel18         = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel16         = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel15         = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel24         = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel10         = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel9          = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel46         = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel45         = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel44         = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel22         = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel21         = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel20         = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLine3           = new DevExpress.XtraReports.UI.XRLine();
     this.xrLabel23         = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel47         = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel13         = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel37         = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel14         = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel38         = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel1          = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel2          = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel11         = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel12         = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel17         = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel25         = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel26         = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel35         = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel36         = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel42         = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel43         = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLine1           = new DevExpress.XtraReports.UI.XRLine();
     this.xrSubreport1      = new DevExpress.XtraReports.UI.XRSubreport();
     this.xrBarCode1        = new DevExpress.XtraReports.UI.XRBarCode();
     this.TopMargin         = new DevExpress.XtraReports.UI.TopMarginBand();
     this.xrLabel29         = new DevExpress.XtraReports.UI.XRLabel();
     this.BottomMargin      = new DevExpress.XtraReports.UI.BottomMarginBand();
     this.xrPageInfo1       = new DevExpress.XtraReports.UI.XRPageInfo();
     this.objectDataSource1 = new DevExpress.DataAccess.ObjectBinding.ObjectDataSource(this.components);
     this.reportHeaderBand1 = new DevExpress.XtraReports.UI.ReportHeaderBand();
     this.xrLine2           = new DevExpress.XtraReports.UI.XRLine();
     this.xrLabel3          = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel28         = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel8          = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel7          = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel5          = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel4          = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel6          = new DevExpress.XtraReports.UI.XRLabel();
     this.Title             = new DevExpress.XtraReports.UI.XRControlStyle();
     this.FieldCaption      = new DevExpress.XtraReports.UI.XRControlStyle();
     this.PageInfo          = new DevExpress.XtraReports.UI.XRControlStyle();
     this.DataField         = new DevExpress.XtraReports.UI.XRControlStyle();
     this.cSimboloMoneda    = new DevExpress.XtraReports.UI.CalculatedField();
     ((System.ComponentModel.ISupportInitialize)(this.objectDataSource1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
     //
     // Detail
     //
     this.Detail.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrLabel19,
         this.xrLabel18,
         this.xrLabel16,
         this.xrLabel15,
         this.xrLabel24,
         this.xrLabel10,
         this.xrLabel9,
         this.xrLabel46,
         this.xrLabel45,
         this.xrLabel44,
         this.xrLabel22,
         this.xrLabel21,
         this.xrLabel20,
         this.xrLine3,
         this.xrLabel23,
         this.xrLabel47,
         this.xrLabel13,
         this.xrLabel37,
         this.xrLabel14,
         this.xrLabel38,
         this.xrLabel1,
         this.xrLabel2,
         this.xrLabel11,
         this.xrLabel12,
         this.xrLabel17,
         this.xrLabel25,
         this.xrLabel26,
         this.xrLabel35,
         this.xrLabel36,
         this.xrLabel42,
         this.xrLabel43,
         this.xrLine1,
         this.xrSubreport1,
         this.xrBarCode1
     });
     this.Detail.HeightF = 616.5417F;
     this.Detail.Name    = "Detail";
     this.Detail.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     //
     // xrLabel19
     //
     this.xrLabel19.Font                  = new System.Drawing.Font("Arial", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrLabel19.LocationFloat         = new DevExpress.Utils.PointFloat(3.000164F, 147.0365F);
     this.xrLabel19.Name                  = "xrLabel19";
     this.xrLabel19.Padding               = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel19.SizeF                 = new System.Drawing.SizeF(285.0001F, 17.70833F);
     this.xrLabel19.StyleName             = "FieldCaption";
     this.xrLabel19.StylePriority.UseFont = false;
     this.xrLabel19.Text                  = "Cliente";
     //
     // xrLabel18
     //
     this.xrLabel18.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "montoImpuestoVenta", "{0:N2}")
     });
     this.xrLabel18.LocationFloat = new DevExpress.Utils.PointFloat(160.5F, 354.4947F);
     this.xrLabel18.Name          = "xrLabel18";
     this.xrLabel18.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel18.SizeF         = new System.Drawing.SizeF(124.5F, 18F);
     this.xrLabel18.StyleName     = "DataField";
     this.xrLabel18.StylePriority.UseTextAlignment = false;
     this.xrLabel18.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
     //
     // xrLabel16
     //
     this.xrLabel16.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "montoDescuento", "{0:N2}")
     });
     this.xrLabel16.LocationFloat = new DevExpress.Utils.PointFloat(160.5F, 336.4947F);
     this.xrLabel16.Name          = "xrLabel16";
     this.xrLabel16.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel16.SizeF         = new System.Drawing.SizeF(124.5F, 18F);
     this.xrLabel16.StyleName     = "DataField";
     this.xrLabel16.StylePriority.UseTextAlignment = false;
     this.xrLabel16.Text          = "xrLabel16";
     this.xrLabel16.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
     //
     // xrLabel15
     //
     this.xrLabel15.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "montoSubTotal", "{0:N2}")
     });
     this.xrLabel15.LocationFloat = new DevExpress.Utils.PointFloat(160.5F, 318.4946F);
     this.xrLabel15.Name          = "xrLabel15";
     this.xrLabel15.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel15.SizeF         = new System.Drawing.SizeF(124.5F, 18F);
     this.xrLabel15.StyleName     = "DataField";
     this.xrLabel15.StylePriority.UseTextAlignment = false;
     this.xrLabel15.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
     //
     // xrLabel24
     //
     this.xrLabel24.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "cSimboloMoneda", "Total a pagar :{0}")
     });
     this.xrLabel24.Font                           = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Bold);
     this.xrLabel24.LocationFloat                  = new DevExpress.Utils.PointFloat(31.08333F, 372.4948F);
     this.xrLabel24.Name                           = "xrLabel24";
     this.xrLabel24.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel24.SizeF                          = new System.Drawing.SizeF(129.4167F, 18F);
     this.xrLabel24.StyleName                      = "FieldCaption";
     this.xrLabel24.StylePriority.UseFont          = false;
     this.xrLabel24.StylePriority.UseTextAlignment = false;
     this.xrLabel24.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.TopRight;
     //
     // xrLabel10
     //
     this.xrLabel10.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "cSimboloMoneda", "I.V. : {0}")
     });
     this.xrLabel10.Font                           = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Bold);
     this.xrLabel10.LocationFloat                  = new DevExpress.Utils.PointFloat(31.0833F, 354.4947F);
     this.xrLabel10.Name                           = "xrLabel10";
     this.xrLabel10.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel10.SizeF                          = new System.Drawing.SizeF(129.4167F, 18F);
     this.xrLabel10.StyleName                      = "FieldCaption";
     this.xrLabel10.StylePriority.UseFont          = false;
     this.xrLabel10.StylePriority.UseTextAlignment = false;
     this.xrLabel10.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.TopRight;
     //
     // xrLabel9
     //
     this.xrLabel9.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "cSimboloMoneda", "Descuento :{0}")
     });
     this.xrLabel9.Font                           = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Bold);
     this.xrLabel9.LocationFloat                  = new DevExpress.Utils.PointFloat(31.08333F, 336.4947F);
     this.xrLabel9.Name                           = "xrLabel9";
     this.xrLabel9.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel9.SizeF                          = new System.Drawing.SizeF(129.4167F, 18F);
     this.xrLabel9.StyleName                      = "FieldCaption";
     this.xrLabel9.StylePriority.UseFont          = false;
     this.xrLabel9.StylePriority.UseTextAlignment = false;
     this.xrLabel9.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.TopRight;
     //
     // xrLabel46
     //
     this.xrLabel46.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "receptorNombre")
     });
     this.xrLabel46.LocationFloat = new DevExpress.Utils.PointFloat(78.08355F, 182.7447F);
     this.xrLabel46.Name          = "xrLabel46";
     this.xrLabel46.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel46.SizeF         = new System.Drawing.SizeF(209.9166F, 17.99998F);
     this.xrLabel46.StyleName     = "DataField";
     this.xrLabel46.Text          = "xrLabel46";
     //
     // xrLabel45
     //
     this.xrLabel45.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "receptorIdentificacionCorreo")
     });
     this.xrLabel45.LocationFloat = new DevExpress.Utils.PointFloat(3.000259F, 218.7447F);
     this.xrLabel45.Name          = "xrLabel45";
     this.xrLabel45.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel45.SizeF         = new System.Drawing.SizeF(284.9999F, 18F);
     this.xrLabel45.StyleName     = "DataField";
     this.xrLabel45.Text          = "xrLabel45";
     //
     // xrLabel44
     //
     this.xrLabel44.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "receptorIdentificacion")
     });
     this.xrLabel44.LocationFloat = new DevExpress.Utils.PointFloat(109.3336F, 164.7447F);
     this.xrLabel44.Name          = "xrLabel44";
     this.xrLabel44.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel44.SizeF         = new System.Drawing.SizeF(178.6665F, 18F);
     this.xrLabel44.StyleName     = "DataField";
     this.xrLabel44.Text          = "xrLabel44";
     //
     // xrLabel22
     //
     this.xrLabel22.Font                  = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Bold);
     this.xrLabel22.LocationFloat         = new DevExpress.Utils.PointFloat(3.000196F, 182.7447F);
     this.xrLabel22.Name                  = "xrLabel22";
     this.xrLabel22.Padding               = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel22.SizeF                 = new System.Drawing.SizeF(75.08335F, 18F);
     this.xrLabel22.StyleName             = "FieldCaption";
     this.xrLabel22.StylePriority.UseFont = false;
     this.xrLabel22.Text                  = "Nombre : ";
     //
     // xrLabel21
     //
     this.xrLabel21.Font                  = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Bold);
     this.xrLabel21.LocationFloat         = new DevExpress.Utils.PointFloat(3.000196F, 200.7447F);
     this.xrLabel21.Name                  = "xrLabel21";
     this.xrLabel21.Padding               = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel21.SizeF                 = new System.Drawing.SizeF(138.6251F, 17.99997F);
     this.xrLabel21.StyleName             = "FieldCaption";
     this.xrLabel21.StylePriority.UseFont = false;
     this.xrLabel21.Text                  = "Correo electrónico: ";
     //
     // xrLabel20
     //
     this.xrLabel20.Font                  = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Bold);
     this.xrLabel20.LocationFloat         = new DevExpress.Utils.PointFloat(3.000259F, 164.7447F);
     this.xrLabel20.Name                  = "xrLabel20";
     this.xrLabel20.Padding               = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel20.SizeF                 = new System.Drawing.SizeF(106.3334F, 18F);
     this.xrLabel20.StyleName             = "FieldCaption";
     this.xrLabel20.StylePriority.UseFont = false;
     this.xrLabel20.Text                  = "Identificación:";
     //
     // xrLine3
     //
     this.xrLine3.LocationFloat = new DevExpress.Utils.PointFloat(3.000069F, 135.8281F);
     this.xrLine3.Name          = "xrLine3";
     this.xrLine3.SizeF         = new System.Drawing.SizeF(285F, 6.00001F);
     //
     // xrLabel23
     //
     this.xrLabel23.Font                  = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Bold);
     this.xrLabel23.LocationFloat         = new DevExpress.Utils.PointFloat(183.8336F, 117.828F);
     this.xrLabel23.Name                  = "xrLabel23";
     this.xrLabel23.Padding               = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel23.SizeF                 = new System.Drawing.SizeF(33.41668F, 18F);
     this.xrLabel23.StyleName             = "FieldCaption";
     this.xrLabel23.StylePriority.UseFont = false;
     this.xrLabel23.Text                  = "TC: ";
     //
     // xrLabel47
     //
     this.xrLabel47.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "tipoCambio")
     });
     this.xrLabel47.LocationFloat = new DevExpress.Utils.PointFloat(217.2503F, 117.828F);
     this.xrLabel47.Name          = "xrLabel47";
     this.xrLabel47.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel47.SizeF         = new System.Drawing.SizeF(70.74985F, 18.00002F);
     this.xrLabel47.StyleName     = "DataField";
     this.xrLabel47.Text          = "xrLabel47";
     //
     // xrLabel13
     //
     this.xrLabel13.Font                  = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Bold);
     this.xrLabel13.LocationFloat         = new DevExpress.Utils.PointFloat(3.000164F, 99.82809F);
     this.xrLabel13.Name                  = "xrLabel13";
     this.xrLabel13.Padding               = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel13.SizeF                 = new System.Drawing.SizeF(93.83328F, 17.99998F);
     this.xrLabel13.StyleName             = "FieldCaption";
     this.xrLabel13.StylePriority.UseFont = false;
     this.xrLabel13.Text                  = "Medio pago:";
     //
     // xrLabel37
     //
     this.xrLabel37.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "MedioPago")
     });
     this.xrLabel37.LocationFloat = new DevExpress.Utils.PointFloat(96.83345F, 99.82809F);
     this.xrLabel37.Name          = "xrLabel37";
     this.xrLabel37.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel37.SizeF         = new System.Drawing.SizeF(191.1667F, 17.99998F);
     this.xrLabel37.StyleName     = "DataField";
     this.xrLabel37.Text          = "xrLabel37";
     //
     // xrLabel14
     //
     this.xrLabel14.Font                  = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Bold);
     this.xrLabel14.LocationFloat         = new DevExpress.Utils.PointFloat(3.000228F, 117.828F);
     this.xrLabel14.Name                  = "xrLabel14";
     this.xrLabel14.Padding               = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel14.SizeF                 = new System.Drawing.SizeF(64.66665F, 17.99999F);
     this.xrLabel14.StyleName             = "FieldCaption";
     this.xrLabel14.StylePriority.UseFont = false;
     this.xrLabel14.Text                  = "Moneda:";
     //
     // xrLabel38
     //
     this.xrLabel38.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "moneda")
     });
     this.xrLabel38.LocationFloat = new DevExpress.Utils.PointFloat(67.66688F, 117.828F);
     this.xrLabel38.Name          = "xrLabel38";
     this.xrLabel38.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel38.SizeF         = new System.Drawing.SizeF(116.1667F, 18.00002F);
     this.xrLabel38.StyleName     = "DataField";
     this.xrLabel38.Text          = "xrLabel38";
     //
     // xrLabel1
     //
     this.xrLabel1.Font                  = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Bold);
     this.xrLabel1.LocationFloat         = new DevExpress.Utils.PointFloat(2.999799F, 29.04167F);
     this.xrLabel1.Name                  = "xrLabel1";
     this.xrLabel1.Padding               = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel1.SizeF                 = new System.Drawing.SizeF(54.25F, 18F);
     this.xrLabel1.StyleName             = "FieldCaption";
     this.xrLabel1.StylePriority.UseFont = false;
     this.xrLabel1.Text                  = "Clave:";
     //
     // xrLabel2
     //
     this.xrLabel2.Font                  = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Bold);
     this.xrLabel2.LocationFloat         = new DevExpress.Utils.PointFloat(3.00018F, 81.82799F);
     this.xrLabel2.Name                  = "xrLabel2";
     this.xrLabel2.Padding               = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel2.SizeF                 = new System.Drawing.SizeF(126.1252F, 18F);
     this.xrLabel2.StyleName             = "FieldCaption";
     this.xrLabel2.StylePriority.UseFont = false;
     this.xrLabel2.Text                  = "Condición Venta: ";
     //
     // xrLabel11
     //
     this.xrLabel11.Font                  = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Bold);
     this.xrLabel11.LocationFloat         = new DevExpress.Utils.PointFloat(2.999814F, 10.00001F);
     this.xrLabel11.Name                  = "xrLabel11";
     this.xrLabel11.Padding               = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel11.SizeF                 = new System.Drawing.SizeF(54.25F, 18F);
     this.xrLabel11.StyleName             = "FieldCaption";
     this.xrLabel11.StylePriority.UseFont = false;
     this.xrLabel11.Text                  = "Fecha :";
     //
     // xrLabel12
     //
     this.xrLabel12.Font                  = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Bold);
     this.xrLabel12.LocationFloat         = new DevExpress.Utils.PointFloat(2.99991F, 404.7448F);
     this.xrLabel12.Name                  = "xrLabel12";
     this.xrLabel12.Padding               = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel12.SizeF                 = new System.Drawing.SizeF(114.6667F, 18F);
     this.xrLabel12.StyleName             = "FieldCaption";
     this.xrLabel12.StylePriority.UseFont = false;
     this.xrLabel12.Text                  = "Mensaje:";
     //
     // xrLabel17
     //
     this.xrLabel17.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "cSimboloMoneda", "Sub Total : {0}")
     });
     this.xrLabel17.Font                           = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Bold);
     this.xrLabel17.LocationFloat                  = new DevExpress.Utils.PointFloat(31.08333F, 318.4946F);
     this.xrLabel17.Name                           = "xrLabel17";
     this.xrLabel17.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel17.SizeF                          = new System.Drawing.SizeF(129.4167F, 18F);
     this.xrLabel17.StyleName                      = "FieldCaption";
     this.xrLabel17.StylePriority.UseFont          = false;
     this.xrLabel17.StylePriority.UseTextAlignment = false;
     this.xrLabel17.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.TopRight;
     //
     // xrLabel25
     //
     this.xrLabel25.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "clave")
     });
     this.xrLabel25.Font                  = new System.Drawing.Font("Arial", 8F);
     this.xrLabel25.LocationFloat         = new DevExpress.Utils.PointFloat(2.999799F, 47.04167F);
     this.xrLabel25.Multiline             = true;
     this.xrLabel25.Name                  = "xrLabel25";
     this.xrLabel25.Padding               = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel25.SizeF                 = new System.Drawing.SizeF(285.0001F, 32.58333F);
     this.xrLabel25.StyleName             = "DataField";
     this.xrLabel25.StylePriority.UseFont = false;
     this.xrLabel25.Text                  = "xrLabel25";
     //
     // xrLabel26
     //
     this.xrLabel26.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "CondicionVenta")
     });
     this.xrLabel26.LocationFloat = new DevExpress.Utils.PointFloat(129.1253F, 81.82799F);
     this.xrLabel26.Name          = "xrLabel26";
     this.xrLabel26.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel26.SizeF         = new System.Drawing.SizeF(158.8751F, 18F);
     this.xrLabel26.StyleName     = "DataField";
     this.xrLabel26.Text          = "xrLabel26";
     //
     // xrLabel35
     //
     this.xrLabel35.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "fecha")
     });
     this.xrLabel35.LocationFloat = new DevExpress.Utils.PointFloat(57.2498F, 10.00001F);
     this.xrLabel35.Name          = "xrLabel35";
     this.xrLabel35.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel35.SizeF         = new System.Drawing.SizeF(233.7502F, 18.00002F);
     this.xrLabel35.StyleName     = "DataField";
     this.xrLabel35.Text          = "xrLabel35";
     //
     // xrLabel36
     //
     this.xrLabel36.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "leyenda")
     });
     this.xrLabel36.LocationFloat = new DevExpress.Utils.PointFloat(2.99991F, 422.7448F);
     this.xrLabel36.Multiline     = true;
     this.xrLabel36.Name          = "xrLabel36";
     this.xrLabel36.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel36.SizeF         = new System.Drawing.SizeF(285F, 45.08334F);
     this.xrLabel36.StyleName     = "DataField";
     this.xrLabel36.StylePriority.UseTextAlignment = false;
     this.xrLabel36.Text          = "xrLabel36";
     this.xrLabel36.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // xrLabel42
     //
     this.xrLabel42.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "montoTotal", "{0:N2}")
     });
     this.xrLabel42.LocationFloat = new DevExpress.Utils.PointFloat(160.5F, 372.4948F);
     this.xrLabel42.Name          = "xrLabel42";
     this.xrLabel42.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel42.SizeF         = new System.Drawing.SizeF(124.5F, 18F);
     this.xrLabel42.StyleName     = "DataField";
     this.xrLabel42.StylePriority.UseTextAlignment = false;
     this.xrLabel42.Text          = "xrLabel42";
     this.xrLabel42.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
     //
     // xrLabel43
     //
     this.xrLabel43.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "Normativa")
     });
     this.xrLabel43.LocationFloat = new DevExpress.Utils.PointFloat(3.00014F, 588.5417F);
     this.xrLabel43.Name          = "xrLabel43";
     this.xrLabel43.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel43.SizeF         = new System.Drawing.SizeF(285F, 18.00003F);
     this.xrLabel43.StyleName     = "DataField";
     this.xrLabel43.StylePriority.UseTextAlignment = false;
     this.xrLabel43.Text          = "xrLabel43";
     this.xrLabel43.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     //
     // xrLine1
     //
     this.xrLine1.LocationFloat = new DevExpress.Utils.PointFloat(6.00001F, 3.000005F);
     this.xrLine1.Name          = "xrLine1";
     this.xrLine1.SizeF         = new System.Drawing.SizeF(285F, 6.00001F);
     //
     // xrSubreport1
     //
     this.xrSubreport1.LocationFloat = new DevExpress.Utils.PointFloat(3.000037F, 245.3698F);
     this.xrSubreport1.Name          = "xrSubreport1";
     this.xrSubreport1.ReportSource  = new RptFactDetRollPaper();
     this.xrSubreport1.SizeF         = new System.Drawing.SizeF(285F, 61.9165F);
     this.xrSubreport1.BeforePrint  += new System.Drawing.Printing.PrintEventHandler(this.xrSubreport1_BeforePrint_1);
     //
     // xrBarCode1
     //
     this.xrBarCode1.AutoModule    = true;
     this.xrBarCode1.LocationFloat = new DevExpress.Utils.PointFloat(96.83331F, 478.2448F);
     this.xrBarCode1.Name          = "xrBarCode1";
     this.xrBarCode1.Padding       = new DevExpress.XtraPrinting.PaddingInfo(10, 10, 0, 0, 100F);
     this.xrBarCode1.ShowText      = false;
     this.xrBarCode1.SizeF         = new System.Drawing.SizeF(115.6251F, 99.91653F);
     this.xrBarCode1.Symbology     = qrCodeGenerator1;
     this.xrBarCode1.Text          = "?";
     //
     // TopMargin
     //
     this.TopMargin.HeightF       = 77.62502F;
     this.TopMargin.Name          = "TopMargin";
     this.TopMargin.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.TopMargin.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // xrLabel29
     //
     this.xrLabel29.Font                           = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Bold);
     this.xrLabel29.LocationFloat                  = new DevExpress.Utils.PointFloat(6.499839F, 33.95831F);
     this.xrLabel29.Name                           = "xrLabel29";
     this.xrLabel29.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel29.SizeF                          = new System.Drawing.SizeF(287.0001F, 22.45833F);
     this.xrLabel29.StyleName                      = "FieldCaption";
     this.xrLabel29.StylePriority.UseFont          = false;
     this.xrLabel29.StylePriority.UseTextAlignment = false;
     this.xrLabel29.Text                           = "Documento N°: ";
     this.xrLabel29.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     //
     // BottomMargin
     //
     this.BottomMargin.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrPageInfo1
     });
     this.BottomMargin.HeightF       = 41.41668F;
     this.BottomMargin.Name          = "BottomMargin";
     this.BottomMargin.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.BottomMargin.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // xrPageInfo1
     //
     this.xrPageInfo1.Format        = "Fecha de impresión : {0}";
     this.xrPageInfo1.LocationFloat = new DevExpress.Utils.PointFloat(6.000105F, 10.00001F);
     this.xrPageInfo1.Name          = "xrPageInfo1";
     this.xrPageInfo1.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrPageInfo1.PageInfo      = DevExpress.XtraPrinting.PageInfo.DateTime;
     this.xrPageInfo1.SizeF         = new System.Drawing.SizeF(285F, 23F);
     this.xrPageInfo1.StyleName     = "PageInfo";
     this.xrPageInfo1.StylePriority.UseTextAlignment = false;
     this.xrPageInfo1.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     //
     // objectDataSource1
     //
     this.objectDataSource1.DataSource = typeof(XMLDomain.Impresion);
     this.objectDataSource1.Name       = "objectDataSource1";
     //
     // reportHeaderBand1
     //
     this.reportHeaderBand1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrLine2,
         this.xrLabel3,
         this.xrLabel29,
         this.xrLabel28,
         this.xrLabel8,
         this.xrLabel7,
         this.xrLabel5,
         this.xrLabel4,
         this.xrLabel6
     });
     this.reportHeaderBand1.HeightF = 200.4583F;
     this.reportHeaderBand1.Name    = "reportHeaderBand1";
     //
     // xrLine2
     //
     this.xrLine2.LocationFloat = new DevExpress.Utils.PointFloat(7.999984F, 79.33337F);
     this.xrLine2.Name          = "xrLine2";
     this.xrLine2.SizeF         = new System.Drawing.SizeF(285F, 6F);
     //
     // xrLabel3
     //
     this.xrLabel3.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "consecutivo")
     });
     this.xrLabel3.Font                           = new System.Drawing.Font("Arial", 9.75F, System.Drawing.FontStyle.Bold);
     this.xrLabel3.LocationFloat                  = new DevExpress.Utils.PointFloat(6.500069F, 56.41664F);
     this.xrLabel3.Name                           = "xrLabel3";
     this.xrLabel3.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel3.SizeF                          = new System.Drawing.SizeF(286.9999F, 20.83334F);
     this.xrLabel3.StylePriority.UseFont          = false;
     this.xrLabel3.StylePriority.UseTextAlignment = false;
     this.xrLabel3.Text                           = "xrLabel3";
     this.xrLabel3.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     //
     // xrLabel28
     //
     this.xrLabel28.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "tipoDocumento")
     });
     this.xrLabel28.Font                           = new System.Drawing.Font("Arial", 20F);
     this.xrLabel28.LocationFloat                  = new DevExpress.Utils.PointFloat(6.499958F, 0F);
     this.xrLabel28.Name                           = "xrLabel28";
     this.xrLabel28.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel28.SizeF                          = new System.Drawing.SizeF(287F, 33.95834F);
     this.xrLabel28.StyleName                      = "Title";
     this.xrLabel28.StylePriority.UseFont          = false;
     this.xrLabel28.StylePriority.UseTextAlignment = false;
     this.xrLabel28.Text                           = "Fact";
     this.xrLabel28.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     //
     // xrLabel8
     //
     this.xrLabel8.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "emisorIdentificacionCorreo", "Correo electrónico: {0}")
     });
     this.xrLabel8.Font                           = new System.Drawing.Font("Arial", 9.75F, System.Drawing.FontStyle.Bold);
     this.xrLabel8.LocationFloat                  = new DevExpress.Utils.PointFloat(7.999984F, 172.3334F);
     this.xrLabel8.Name                           = "xrLabel8";
     this.xrLabel8.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel8.SizeF                          = new System.Drawing.SizeF(285F, 23F);
     this.xrLabel8.StylePriority.UseFont          = false;
     this.xrLabel8.StylePriority.UseTextAlignment = false;
     this.xrLabel8.Text                           = "xrLabel20";
     this.xrLabel8.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     //
     // xrLabel7
     //
     this.xrLabel7.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "emisorDireccion", "Dirección: {0}")
     });
     this.xrLabel7.Font                           = new System.Drawing.Font("Arial", 9.75F, System.Drawing.FontStyle.Bold);
     this.xrLabel7.LocationFloat                  = new DevExpress.Utils.PointFloat(7.999984F, 149.3334F);
     this.xrLabel7.Name                           = "xrLabel7";
     this.xrLabel7.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel7.SizeF                          = new System.Drawing.SizeF(285F, 23F);
     this.xrLabel7.StylePriority.UseFont          = false;
     this.xrLabel7.StylePriority.UseTextAlignment = false;
     this.xrLabel7.Text                           = "xrLabel16";
     this.xrLabel7.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     //
     // xrLabel5
     //
     this.xrLabel5.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "emisorTelefonos", "Teléfonos: {0}")
     });
     this.xrLabel5.Font                           = new System.Drawing.Font("Arial", 9.75F, System.Drawing.FontStyle.Bold);
     this.xrLabel5.LocationFloat                  = new DevExpress.Utils.PointFloat(7.999984F, 126.3334F);
     this.xrLabel5.Name                           = "xrLabel5";
     this.xrLabel5.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel5.SizeF                          = new System.Drawing.SizeF(285F, 23F);
     this.xrLabel5.StylePriority.UseFont          = false;
     this.xrLabel5.StylePriority.UseTextAlignment = false;
     this.xrLabel5.Text                           = "xrLabel3";
     this.xrLabel5.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     //
     // xrLabel4
     //
     this.xrLabel4.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "emisorIdentificacion", "Id: {0}")
     });
     this.xrLabel4.Font                           = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Bold);
     this.xrLabel4.LocationFloat                  = new DevExpress.Utils.PointFloat(7.999984F, 108.3334F);
     this.xrLabel4.Name                           = "xrLabel4";
     this.xrLabel4.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel4.SizeF                          = new System.Drawing.SizeF(285F, 18F);
     this.xrLabel4.StyleName                      = "DataField";
     this.xrLabel4.StylePriority.UseFont          = false;
     this.xrLabel4.StylePriority.UseTextAlignment = false;
     this.xrLabel4.Text                           = "xrLabel19";
     this.xrLabel4.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     //
     // xrLabel6
     //
     this.xrLabel6.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "emisorNombreComercial")
     });
     this.xrLabel6.Font                           = new System.Drawing.Font("Arial", 9.75F, System.Drawing.FontStyle.Bold);
     this.xrLabel6.LocationFloat                  = new DevExpress.Utils.PointFloat(7.999984F, 85.33337F);
     this.xrLabel6.Name                           = "xrLabel6";
     this.xrLabel6.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel6.SizeF                          = new System.Drawing.SizeF(285F, 23F);
     this.xrLabel6.StylePriority.UseFont          = false;
     this.xrLabel6.StylePriority.UseTextAlignment = false;
     this.xrLabel6.Text                           = "xrLabel4";
     this.xrLabel6.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     //
     // Title
     //
     this.Title.BackColor   = System.Drawing.Color.Transparent;
     this.Title.BorderColor = System.Drawing.Color.Black;
     this.Title.Borders     = DevExpress.XtraPrinting.BorderSide.None;
     this.Title.BorderWidth = 1F;
     this.Title.Font        = new System.Drawing.Font("Arial", 21F);
     this.Title.ForeColor   = System.Drawing.Color.Black;
     this.Title.Name        = "Title";
     //
     // FieldCaption
     //
     this.FieldCaption.BackColor   = System.Drawing.Color.Transparent;
     this.FieldCaption.BorderColor = System.Drawing.Color.Black;
     this.FieldCaption.Borders     = DevExpress.XtraPrinting.BorderSide.None;
     this.FieldCaption.BorderWidth = 1F;
     this.FieldCaption.Font        = new System.Drawing.Font("Arial", 10F);
     this.FieldCaption.ForeColor   = System.Drawing.Color.Black;
     this.FieldCaption.Name        = "FieldCaption";
     //
     // PageInfo
     //
     this.PageInfo.BackColor   = System.Drawing.Color.Transparent;
     this.PageInfo.BorderColor = System.Drawing.Color.Black;
     this.PageInfo.Borders     = DevExpress.XtraPrinting.BorderSide.None;
     this.PageInfo.BorderWidth = 1F;
     this.PageInfo.Font        = new System.Drawing.Font("Arial", 8F);
     this.PageInfo.ForeColor   = System.Drawing.Color.Black;
     this.PageInfo.Name        = "PageInfo";
     //
     // DataField
     //
     this.DataField.BackColor   = System.Drawing.Color.Transparent;
     this.DataField.BorderColor = System.Drawing.Color.Black;
     this.DataField.Borders     = DevExpress.XtraPrinting.BorderSide.None;
     this.DataField.BorderWidth = 1F;
     this.DataField.Font        = new System.Drawing.Font("Arial", 10F);
     this.DataField.ForeColor   = System.Drawing.Color.Black;
     this.DataField.Name        = "DataField";
     this.DataField.Padding     = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     //
     // cSimboloMoneda
     //
     this.cSimboloMoneda.Expression = "Iif([moneda]==\'CRC\', \'₡\' ,Iif([moneda]==\'USD\',\'$\' ,\'€\' ) )";
     this.cSimboloMoneda.Name       = "cSimboloMoneda";
     //
     // RptFacturacionElectronicaRollPaper
     //
     this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
         this.Detail,
         this.TopMargin,
         this.BottomMargin,
         this.reportHeaderBand1
     });
     this.CalculatedFields.AddRange(new DevExpress.XtraReports.UI.CalculatedField[] {
         this.cSimboloMoneda
     });
     this.ComponentStorage.AddRange(new System.ComponentModel.IComponent[] {
         this.objectDataSource1
     });
     this.DataSource = this.objectDataSource1;
     this.Margins    = new System.Drawing.Printing.Margins(0, 2, 78, 41);
     this.PageHeight = 1169;
     this.PageWidth  = 300;
     this.PaperKind  = System.Drawing.Printing.PaperKind.Custom;
     this.RollPaper  = true;
     this.StyleSheet.AddRange(new DevExpress.XtraReports.UI.XRControlStyle[] {
         this.Title,
         this.FieldCaption,
         this.PageInfo,
         this.DataField
     });
     this.Version = "17.1";
     ((System.ComponentModel.ISupportInitialize)(this.objectDataSource1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this)).EndInit();
 }
コード例 #12
0
ファイル: rptBanHang.cs プロジェクト: trantrung2608/ilinkbay
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     string resourceFileName = "rptBanHang.resx";
         DevExpress.XtraReports.UI.XRSummary xrSummary1 = new DevExpress.XtraReports.UI.XRSummary();
         DevExpress.XtraReports.UI.XRSummary xrSummary2 = new DevExpress.XtraReports.UI.XRSummary();
         DevExpress.XtraReports.UI.XRSummary xrSummary3 = new DevExpress.XtraReports.UI.XRSummary();
         DevExpress.XtraPrinting.BarCode.QRCodeGenerator qrCodeGenerator1 = new DevExpress.XtraPrinting.BarCode.QRCodeGenerator();
         this.Detail = new DevExpress.XtraReports.UI.DetailBand();
         this.xrTable2 = new DevExpress.XtraReports.UI.XRTable();
         this.xrTableRow2 = new DevExpress.XtraReports.UI.XRTableRow();
         this.xrTableCell7 = new DevExpress.XtraReports.UI.XRTableCell();
         this.colHangHoa = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell11 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell30 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell31 = new DevExpress.XtraReports.UI.XRTableCell();
         this.TopMargin = new DevExpress.XtraReports.UI.TopMarginBand();
         this.BottomMargin = new DevExpress.XtraReports.UI.BottomMarginBand();
         this.PageHeader = new DevExpress.XtraReports.UI.PageHeaderBand();
         this.xrTable4 = new DevExpress.XtraReports.UI.XRTable();
         this.xrTableRow4 = new DevExpress.XtraReports.UI.XRTableRow();
         this.xrTableCell3 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell13 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell14 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell16 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell19 = new DevExpress.XtraReports.UI.XRTableCell();
         this.header = new DevExpress.XtraReports.UI.XRSubreport();
         this.xrLabel10 = new DevExpress.XtraReports.UI.XRLabel();
         this.xrLabel13 = new DevExpress.XtraReports.UI.XRLabel();
         this.xrLabel17 = new DevExpress.XtraReports.UI.XRLabel();
         this.GroupHeader2 = new DevExpress.XtraReports.UI.GroupHeaderBand();
         this.xrTable7 = new DevExpress.XtraReports.UI.XRTable();
         this.xrTableRow8 = new DevExpress.XtraReports.UI.XRTableRow();
         this.xrTableCell6 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell23 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell20 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell18 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell25 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell24 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableRow9 = new DevExpress.XtraReports.UI.XRTableRow();
         this.xrTableCell26 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell27 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTable1 = new DevExpress.XtraReports.UI.XRTable();
         this.xrTableRow1 = new DevExpress.XtraReports.UI.XRTableRow();
         this.xrTableCell1 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell2 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell4 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell21 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell5 = new DevExpress.XtraReports.UI.XRTableCell();
         this.formattingRule1 = new DevExpress.XtraReports.UI.FormattingRule();
         this.dsBaoCaoBanHang1 = new dsBaoCaoBanHang();
         this.GroupFooter1 = new DevExpress.XtraReports.UI.GroupFooterBand();
         this.xrLabel4 = new DevExpress.XtraReports.UI.XRLabel();
         this.xrTable3 = new DevExpress.XtraReports.UI.XRTable();
         this.xrTableRow3 = new DevExpress.XtraReports.UI.XRTableRow();
         this.xrTableCell12 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell10 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrSum = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableRow5 = new DevExpress.XtraReports.UI.XRTableRow();
         this.xrTableCell22 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell28 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell29 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableRow7 = new DevExpress.XtraReports.UI.XRTableRow();
         this.xrTableCell32 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell33 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableRow10 = new DevExpress.XtraReports.UI.XRTableRow();
         this.xrTableCell15 = new DevExpress.XtraReports.UI.XRTableCell();
         this.sdfsdfsdf = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrDiscount01 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableRow11 = new DevExpress.XtraReports.UI.XRTableRow();
         this.xrTableCell17 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell48 = new DevExpress.XtraReports.UI.XRTableCell();
         this.thanhtienafterdis01 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTable6 = new DevExpress.XtraReports.UI.XRTable();
         this.xrTableRow6 = new DevExpress.XtraReports.UI.XRTableRow();
         this.xrTableCell8 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell9 = new DevExpress.XtraReports.UI.XRTableCell();
         this.lbchu = new DevExpress.XtraReports.UI.XRLabel();
         this.xrLine1 = new DevExpress.XtraReports.UI.XRLine();
         this.xrPictureBox1 = new DevExpress.XtraReports.UI.XRPictureBox();
         this.xrLabel5 = new DevExpress.XtraReports.UI.XRLabel();
         this.xrLabel3 = new DevExpress.XtraReports.UI.XRLabel();
         this.xrLabel1 = new DevExpress.XtraReports.UI.XRLabel();
         this.xrBarCode1 = new DevExpress.XtraReports.UI.XRBarCode();
         this.pTongTien = new DevExpress.XtraReports.UI.CalculatedField();
         this.ReportHeader = new DevExpress.XtraReports.UI.ReportHeaderBand();
         this.sale_InvoiceToPrintTableAdapter1 = new dsBaoCaoBanHangTableAdapters.sale_InvoiceToPrintTableAdapter();
         this.Thanhtien = new DevExpress.XtraReports.UI.CalculatedField();
         this.percentDiscount1 = new DevExpress.XtraReports.UI.CalculatedField();
         this.PageFooter = new DevExpress.XtraReports.UI.PageFooterBand();
         this.xrLabel11 = new DevExpress.XtraReports.UI.XRLabel();
         this.xrPictureBox4 = new DevExpress.XtraReports.UI.XRPictureBox();
         this.xrLabel2 = new DevExpress.XtraReports.UI.XRLabel();
         this.xrPictureBox5 = new DevExpress.XtraReports.UI.XRPictureBox();
         this.xrTableCell34 = new DevExpress.XtraReports.UI.XRTableCell();
         ((System.ComponentModel.ISupportInitialize)(this.xrTable2)).BeginInit();
         ((System.ComponentModel.ISupportInitialize)(this.xrTable4)).BeginInit();
         ((System.ComponentModel.ISupportInitialize)(this.xrTable7)).BeginInit();
         ((System.ComponentModel.ISupportInitialize)(this.xrTable1)).BeginInit();
         ((System.ComponentModel.ISupportInitialize)(this.dsBaoCaoBanHang1)).BeginInit();
         ((System.ComponentModel.ISupportInitialize)(this.xrTable3)).BeginInit();
         ((System.ComponentModel.ISupportInitialize)(this.xrTable6)).BeginInit();
         ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
         //
         // Detail
         //
         this.Detail.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrTable2});
         this.Detail.Font = new System.Drawing.Font("Times New Roman", 9F);
         this.Detail.HeightF = 30F;
         this.Detail.Name = "Detail";
         this.Detail.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
         this.Detail.StylePriority.UseFont = false;
         this.Detail.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
         //
         // xrTable2
         //
         this.xrTable2.BorderDashStyle = DevExpress.XtraPrinting.BorderDashStyle.Solid;
         this.xrTable2.Borders = DevExpress.XtraPrinting.BorderSide.Bottom;
         this.xrTable2.BorderWidth = 1F;
         this.xrTable2.Font = new System.Drawing.Font("MS Reference Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
         this.xrTable2.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
         this.xrTable2.Name = "xrTable2";
         this.xrTable2.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 5, 5, 100F);
         this.xrTable2.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
         this.xrTableRow2});
         this.xrTable2.SizeF = new System.Drawing.SizeF(748.96F, 30F);
         this.xrTable2.StylePriority.UseBorderDashStyle = false;
         this.xrTable2.StylePriority.UseBorders = false;
         this.xrTable2.StylePriority.UseBorderWidth = false;
         this.xrTable2.StylePriority.UseFont = false;
         this.xrTable2.StylePriority.UsePadding = false;
         this.xrTable2.StylePriority.UseTextAlignment = false;
         this.xrTable2.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
         //
         // xrTableRow2
         //
         this.xrTableRow2.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
         this.xrTableCell7,
         this.colHangHoa,
         this.xrTableCell11,
         this.xrTableCell30,
         this.xrTableCell31});
         this.xrTableRow2.Name = "xrTableRow2";
         this.xrTableRow2.Weight = 1D;
         //
         // xrTableCell7
         //
         this.xrTableCell7.Borders = DevExpress.XtraPrinting.BorderSide.Bottom;
         this.xrTableCell7.Name = "xrTableCell7";
         this.xrTableCell7.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 5, 0, 0, 100F);
         this.xrTableCell7.StylePriority.UseBorders = false;
         this.xrTableCell7.StylePriority.UsePadding = false;
         this.xrTableCell7.StylePriority.UseTextAlignment = false;
         this.xrTableCell7.Text = "STT";
         this.xrTableCell7.Weight = 0.36458328247070315D;
         this.xrTableCell7.BeforePrint += new System.Drawing.Printing.PrintEventHandler(this.xrTableCell7_BeforePrint);
         //
         // colHangHoa
         //
         this.colHangHoa.Borders = DevExpress.XtraPrinting.BorderSide.Bottom;
         this.colHangHoa.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "sale_InvoiceToPrint.productname")});
         this.colHangHoa.Name = "colHangHoa";
         this.colHangHoa.Padding = new DevExpress.XtraPrinting.PaddingInfo(5, 5, 0, 0, 100F);
         this.colHangHoa.StylePriority.UseBorders = false;
         this.colHangHoa.StylePriority.UsePadding = false;
         this.colHangHoa.StylePriority.UseTextAlignment = false;
         this.colHangHoa.Text = "colHangHoa";
         this.colHangHoa.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
         this.colHangHoa.Weight = 4.052847185033353D;
         //
         // xrTableCell11
         //
         this.xrTableCell11.Borders = DevExpress.XtraPrinting.BorderSide.Bottom;
         this.xrTableCell11.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "sale_InvoiceToPrint.CurrentPrice", "{0:n0}")});
         this.xrTableCell11.Name = "xrTableCell11";
         this.xrTableCell11.Padding = new DevExpress.XtraPrinting.PaddingInfo(5, 5, 0, 0, 100F);
         this.xrTableCell11.StylePriority.UseBorders = false;
         this.xrTableCell11.StylePriority.UsePadding = false;
         this.xrTableCell11.StylePriority.UseTextAlignment = false;
         xrSummary1.FormatString = "{0:0.00 VND}";
         this.xrTableCell11.Summary = xrSummary1;
         this.xrTableCell11.Text = "xrTableCell11";
         this.xrTableCell11.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
         this.xrTableCell11.Weight = 0.99829627768477114D;
         //
         // xrTableCell30
         //
         this.xrTableCell30.Borders = DevExpress.XtraPrinting.BorderSide.Bottom;
         this.xrTableCell30.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "sale_InvoiceToPrint.Quantity", "{0:n0}")});
         this.xrTableCell30.Name = "xrTableCell30";
         this.xrTableCell30.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 5, 0, 0, 100F);
         this.xrTableCell30.StylePriority.UseBorders = false;
         this.xrTableCell30.StylePriority.UsePadding = false;
         this.xrTableCell30.StylePriority.UseTextAlignment = false;
         this.xrTableCell30.Text = "xrTableCell30";
         this.xrTableCell30.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
         this.xrTableCell30.Weight = 0.782191345631486D;
         //
         // xrTableCell31
         //
         this.xrTableCell31.Borders = DevExpress.XtraPrinting.BorderSide.Bottom;
         this.xrTableCell31.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "sale_InvoiceToPrint.Total", "{0:n0}")});
         this.xrTableCell31.Name = "xrTableCell31";
         this.xrTableCell31.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 5, 0, 0, 100F);
         this.xrTableCell31.StylePriority.UseBorders = false;
         this.xrTableCell31.StylePriority.UsePadding = false;
         this.xrTableCell31.StylePriority.UseTextAlignment = false;
         this.xrTableCell31.Text = "xrTableCell31";
         this.xrTableCell31.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
         this.xrTableCell31.Weight = 0.97617918250893376D;
         //
         // TopMargin
         //
         this.TopMargin.HeightF = 0F;
         this.TopMargin.Name = "TopMargin";
         this.TopMargin.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
         this.TopMargin.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
         //
         // BottomMargin
         //
         this.BottomMargin.HeightF = 14F;
         this.BottomMargin.Name = "BottomMargin";
         this.BottomMargin.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
         this.BottomMargin.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
         //
         // PageHeader
         //
         this.PageHeader.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrTable4});
         this.PageHeader.HeightF = 25F;
         this.PageHeader.Name = "PageHeader";
         this.PageHeader.PrintOn = DevExpress.XtraReports.UI.PrintOnPages.NotWithReportHeader;
         //
         // xrTable4
         //
         this.xrTable4.BackColor = System.Drawing.Color.Snow;
         this.xrTable4.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Top | DevExpress.XtraPrinting.BorderSide.Bottom)));
         this.xrTable4.BorderWidth = 1F;
         this.xrTable4.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
         this.xrTable4.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
         this.xrTable4.Name = "xrTable4";
         this.xrTable4.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
         this.xrTableRow4});
         this.xrTable4.SizeF = new System.Drawing.SizeF(748.96F, 25F);
         this.xrTable4.StylePriority.UseBackColor = false;
         this.xrTable4.StylePriority.UseBorders = false;
         this.xrTable4.StylePriority.UseBorderWidth = false;
         this.xrTable4.StylePriority.UseFont = false;
         this.xrTable4.StylePriority.UseTextAlignment = false;
         this.xrTable4.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
         //
         // xrTableRow4
         //
         this.xrTableRow4.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
         this.xrTableCell3,
         this.xrTableCell13,
         this.xrTableCell14,
         this.xrTableCell16,
         this.xrTableCell19});
         this.xrTableRow4.Name = "xrTableRow4";
         this.xrTableRow4.Weight = 1D;
         //
         // xrTableCell3
         //
         this.xrTableCell3.Borders = DevExpress.XtraPrinting.BorderSide.Bottom;
         this.xrTableCell3.Name = "xrTableCell3";
         this.xrTableCell3.StylePriority.UseBorders = false;
         this.xrTableCell3.StylePriority.UseTextAlignment = false;
         this.xrTableCell3.Text = "STT";
         this.xrTableCell3.Weight = 0.36560020791428305D;
         //
         // xrTableCell13
         //
         this.xrTableCell13.Borders = DevExpress.XtraPrinting.BorderSide.Bottom;
         this.xrTableCell13.Name = "xrTableCell13";
         this.xrTableCell13.StylePriority.UseBorders = false;
         this.xrTableCell13.Text = "Tên Hàng Hoá";
         this.xrTableCell13.Weight = 4.0641524463652621D;
         //
         // xrTableCell14
         //
         this.xrTableCell14.Borders = DevExpress.XtraPrinting.BorderSide.Bottom;
         this.xrTableCell14.Name = "xrTableCell14";
         this.xrTableCell14.StylePriority.UseBorders = false;
         this.xrTableCell14.Text = "Đơn giá";
         this.xrTableCell14.Weight = 1.0010809425008556D;
         //
         // xrTableCell16
         //
         this.xrTableCell16.Borders = DevExpress.XtraPrinting.BorderSide.Bottom;
         this.xrTableCell16.Multiline = true;
         this.xrTableCell16.Name = "xrTableCell16";
         this.xrTableCell16.StylePriority.UseBorders = false;
         this.xrTableCell16.StylePriority.UseTextAlignment = false;
         this.xrTableCell16.Text = "Số lượng\r\n";
         this.xrTableCell16.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
         this.xrTableCell16.Weight = 0.78437319053638133D;
         //
         // xrTableCell19
         //
         this.xrTableCell19.Borders = DevExpress.XtraPrinting.BorderSide.Bottom;
         this.xrTableCell19.Name = "xrTableCell19";
         this.xrTableCell19.StylePriority.UseBorders = false;
         this.xrTableCell19.Text = "Thành tiền";
         this.xrTableCell19.Weight = 0.97890222513473879D;
         //
         // header
         //
         this.header.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
         this.header.Name = "header";
         this.header.SizeF = new System.Drawing.SizeF(750F, 29.625F);
         //
         // xrLabel10
         //
         this.xrLabel10.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "sale_InvoiceToPrint.InvoiceNo", "Mã đơn : {0}")});
         this.xrLabel10.Font = new System.Drawing.Font("Tahoma", 12F, System.Drawing.FontStyle.Italic);
         this.xrLabel10.LocationFloat = new DevExpress.Utils.PointFloat(1.04173F, 75.54163F);
         this.xrLabel10.Name = "xrLabel10";
         this.xrLabel10.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
         this.xrLabel10.SizeF = new System.Drawing.SizeF(738.9999F, 26.41667F);
         this.xrLabel10.StylePriority.UseFont = false;
         this.xrLabel10.StylePriority.UseTextAlignment = false;
         this.xrLabel10.Text = "xrLabel10";
         this.xrLabel10.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter;
         //
         // xrLabel13
         //
         this.xrLabel13.Font = new System.Drawing.Font("Verdana", 18F, System.Drawing.FontStyle.Bold);
         this.xrLabel13.LocationFloat = new DevExpress.Utils.PointFloat(1.04173F, 32.74995F);
         this.xrLabel13.Name = "xrLabel13";
         this.xrLabel13.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
         this.xrLabel13.SizeF = new System.Drawing.SizeF(748.9583F, 42.79168F);
         this.xrLabel13.StylePriority.UseFont = false;
         this.xrLabel13.StylePriority.UseTextAlignment = false;
         this.xrLabel13.Text = "HOÁ ĐƠN BÁN HÀNG";
         this.xrLabel13.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
         //
         // xrLabel17
         //
         this.xrLabel17.Font = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Bold);
         this.xrLabel17.LocationFloat = new DevExpress.Utils.PointFloat(1.04173F, 173.75F);
         this.xrLabel17.Name = "xrLabel17";
         this.xrLabel17.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
         this.xrLabel17.SizeF = new System.Drawing.SizeF(69.79163F, 16F);
         this.xrLabel17.StylePriority.UseFont = false;
         this.xrLabel17.Text = "Ghi chú: ";
         //
         // GroupHeader2
         //
         this.GroupHeader2.GroupFields.AddRange(new DevExpress.XtraReports.UI.GroupField[] {
         new DevExpress.XtraReports.UI.GroupField("TenKhachHang", DevExpress.XtraReports.UI.XRColumnSortOrder.Ascending)});
         this.GroupHeader2.HeightF = 0F;
         this.GroupHeader2.Name = "GroupHeader2";
         //
         // xrTable7
         //
         this.xrTable7.Font = new System.Drawing.Font("Verdana", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
         this.xrTable7.LocationFloat = new DevExpress.Utils.PointFloat(7.249959F, 101.9583F);
         this.xrTable7.Name = "xrTable7";
         this.xrTable7.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 4, 4, 100F);
         this.xrTable7.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
         this.xrTableRow8,
         this.xrTableRow9});
         this.xrTable7.SizeF = new System.Drawing.SizeF(741.7084F, 54.75F);
         this.xrTable7.StylePriority.UseFont = false;
         this.xrTable7.StylePriority.UsePadding = false;
         this.xrTable7.StylePriority.UseTextAlignment = false;
         this.xrTable7.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
         //
         // xrTableRow8
         //
         this.xrTableRow8.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
         this.xrTableCell6,
         this.xrTableCell23,
         this.xrTableCell20,
         this.xrTableCell18,
         this.xrTableCell25,
         this.xrTableCell24});
         this.xrTableRow8.Name = "xrTableRow8";
         this.xrTableRow8.Weight = 1D;
         //
         // xrTableCell6
         //
         this.xrTableCell6.Font = new System.Drawing.Font("Verdana", 10F, System.Drawing.FontStyle.Bold);
         this.xrTableCell6.Name = "xrTableCell6";
         this.xrTableCell6.StylePriority.UseFont = false;
         this.xrTableCell6.StylePriority.UseTextAlignment = false;
         this.xrTableCell6.Text = "Khách hàng: ";
         this.xrTableCell6.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
         this.xrTableCell6.Weight = 1.0520836686849815D;
         //
         // xrTableCell23
         //
         this.xrTableCell23.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "sale_InvoiceToPrint.Customer")});
         this.xrTableCell23.Font = new System.Drawing.Font("Verdana", 10F);
         this.xrTableCell23.Name = "xrTableCell23";
         this.xrTableCell23.StylePriority.UseFont = false;
         this.xrTableCell23.Text = "xrTableCell23";
         this.xrTableCell23.Weight = 2.5880258821406894D;
         //
         // xrTableCell20
         //
         this.xrTableCell20.Font = new System.Drawing.Font("Verdana", 10F, System.Drawing.FontStyle.Bold);
         this.xrTableCell20.Name = "xrTableCell20";
         this.xrTableCell20.StylePriority.UseFont = false;
         this.xrTableCell20.Text = "Ngày :";
         this.xrTableCell20.Weight = 0.5894757719221223D;
         //
         // xrTableCell18
         //
         this.xrTableCell18.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "sale_InvoiceToPrint.CurrentDate", "{0:dd/MM/yyyy}")});
         this.xrTableCell18.Font = new System.Drawing.Font("Verdana", 10F);
         this.xrTableCell18.Name = "xrTableCell18";
         this.xrTableCell18.StylePriority.UseFont = false;
         this.xrTableCell18.Weight = 1.0417734816221154D;
         //
         // xrTableCell25
         //
         this.xrTableCell25.Font = new System.Drawing.Font("Verdana", 10F, System.Drawing.FontStyle.Bold);
         this.xrTableCell25.Name = "xrTableCell25";
         this.xrTableCell25.StylePriority.UseFont = false;
         this.xrTableCell25.StylePriority.UseTextAlignment = false;
         this.xrTableCell25.Text = "Điện thoại:";
         this.xrTableCell25.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
         this.xrTableCell25.Weight = 0.90503245148400147D;
         //
         // xrTableCell24
         //
         this.xrTableCell24.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "sale_InvoiceToPrint.Phone")});
         this.xrTableCell24.Font = new System.Drawing.Font("Verdana", 10F);
         this.xrTableCell24.Name = "xrTableCell24";
         this.xrTableCell24.StylePriority.UseFont = false;
         this.xrTableCell24.Text = "xrTableCell24";
         this.xrTableCell24.Weight = 1.2406931607105067D;
         //
         // xrTableRow9
         //
         this.xrTableRow9.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
         this.xrTableCell26,
         this.xrTableCell27});
         this.xrTableRow9.Name = "xrTableRow9";
         this.xrTableRow9.Weight = 1D;
         //
         // xrTableCell26
         //
         this.xrTableCell26.Font = new System.Drawing.Font("Verdana", 10F, System.Drawing.FontStyle.Bold);
         this.xrTableCell26.Name = "xrTableCell26";
         this.xrTableCell26.StylePriority.UseFont = false;
         this.xrTableCell26.Text = "Địa chỉ : ";
         this.xrTableCell26.Weight = 0.73958367866282337D;
         //
         // xrTableCell27
         //
         this.xrTableCell27.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "sale_InvoiceToPrint.CustomerAddress")});
         this.xrTableCell27.Font = new System.Drawing.Font("Verdana", 10F);
         this.xrTableCell27.Multiline = true;
         this.xrTableCell27.Name = "xrTableCell27";
         this.xrTableCell27.StylePriority.UseFont = false;
         this.xrTableCell27.Weight = 6.6775007379015943D;
         //
         // xrTable1
         //
         this.xrTable1.BackColor = System.Drawing.Color.Snow;
         this.xrTable1.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Top | DevExpress.XtraPrinting.BorderSide.Bottom)));
         this.xrTable1.BorderWidth = 1F;
         this.xrTable1.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
         this.xrTable1.LocationFloat = new DevExpress.Utils.PointFloat(0F, 183.4722F);
         this.xrTable1.Name = "xrTable1";
         this.xrTable1.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
         this.xrTableRow1});
         this.xrTable1.SizeF = new System.Drawing.SizeF(748.9583F, 25F);
         this.xrTable1.StylePriority.UseBackColor = false;
         this.xrTable1.StylePriority.UseBorders = false;
         this.xrTable1.StylePriority.UseBorderWidth = false;
         this.xrTable1.StylePriority.UseFont = false;
         this.xrTable1.StylePriority.UseTextAlignment = false;
         this.xrTable1.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
         //
         // xrTableRow1
         //
         this.xrTableRow1.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
         this.xrTableCell1,
         this.xrTableCell2,
         this.xrTableCell4,
         this.xrTableCell21,
         this.xrTableCell5});
         this.xrTableRow1.Name = "xrTableRow1";
         this.xrTableRow1.Weight = 1D;
         //
         // xrTableCell1
         //
         this.xrTableCell1.Borders = DevExpress.XtraPrinting.BorderSide.Bottom;
         this.xrTableCell1.Name = "xrTableCell1";
         this.xrTableCell1.StylePriority.UseBorders = false;
         this.xrTableCell1.StylePriority.UseTextAlignment = false;
         this.xrTableCell1.Text = "STT";
         this.xrTableCell1.Weight = 0.36560020791428305D;
         //
         // xrTableCell2
         //
         this.xrTableCell2.Borders = DevExpress.XtraPrinting.BorderSide.Bottom;
         this.xrTableCell2.Name = "xrTableCell2";
         this.xrTableCell2.StylePriority.UseBorders = false;
         this.xrTableCell2.Text = "Tên Hàng Hoá";
         this.xrTableCell2.Weight = 4.0641554790407382D;
         //
         // xrTableCell4
         //
         this.xrTableCell4.Borders = DevExpress.XtraPrinting.BorderSide.Bottom;
         this.xrTableCell4.Name = "xrTableCell4";
         this.xrTableCell4.StylePriority.UseBorders = false;
         this.xrTableCell4.Text = "Đơn giá";
         this.xrTableCell4.Weight = 1.0011300565736081D;
         //
         // xrTableCell21
         //
         this.xrTableCell21.Borders = DevExpress.XtraPrinting.BorderSide.Bottom;
         this.xrTableCell21.Multiline = true;
         this.xrTableCell21.Name = "xrTableCell21";
         this.xrTableCell21.StylePriority.UseBorders = false;
         this.xrTableCell21.StylePriority.UseTextAlignment = false;
         this.xrTableCell21.Text = "Số lượng\r\n";
         this.xrTableCell21.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
         this.xrTableCell21.Weight = 0.78432104378815293D;
         //
         // xrTableCell5
         //
         this.xrTableCell5.Borders = DevExpress.XtraPrinting.BorderSide.Bottom;
         this.xrTableCell5.Name = "xrTableCell5";
         this.xrTableCell5.StylePriority.UseBorders = false;
         this.xrTableCell5.Text = "Thành tiền";
         this.xrTableCell5.Weight = 0.97895618222477876D;
         //
         // formattingRule1
         //
         this.formattingRule1.DataMember = null;
         //
         //
         //
         this.formattingRule1.Formatting.BackColor = System.Drawing.Color.Gray;
         this.formattingRule1.Formatting.Padding = new DevExpress.XtraPrinting.PaddingInfo(50, 50, 50, 50, 100F);
         this.formattingRule1.Name = "formattingRule1";
         //
         // dsBaoCaoBanHang1
         //
         this.dsBaoCaoBanHang1.DataSetName = "dsBaoCaoBanHang";
         this.dsBaoCaoBanHang1.SchemaSerializationMode = System.Data.SchemaSerializationMode.IncludeSchema;
         //
         // GroupFooter1
         //
         this.GroupFooter1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrLabel4,
         this.xrTable3,
         this.xrTable6,
         this.xrLabel17});
         this.GroupFooter1.HeightF = 192.4583F;
         this.GroupFooter1.Name = "GroupFooter1";
         //
         // xrLabel4
         //
         this.xrLabel4.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "sale_InvoiceToPrint.Notes")});
         this.xrLabel4.Font = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Italic);
         this.xrLabel4.LocationFloat = new DevExpress.Utils.PointFloat(70.83334F, 173.75F);
         this.xrLabel4.Name = "xrLabel4";
         this.xrLabel4.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
         this.xrLabel4.SizeF = new System.Drawing.SizeF(329.0094F, 16F);
         this.xrLabel4.StylePriority.UseFont = false;
         //
         // xrTable3
         //
         this.xrTable3.BorderDashStyle = DevExpress.XtraPrinting.BorderDashStyle.Solid;
         this.xrTable3.Borders = DevExpress.XtraPrinting.BorderSide.Bottom;
         this.xrTable3.BorderWidth = 1F;
         this.xrTable3.Font = new System.Drawing.Font("Verdana", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
         this.xrTable3.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
         this.xrTable3.Name = "xrTable3";
         this.xrTable3.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
         this.xrTableRow3,
         this.xrTableRow5,
         this.xrTableRow7,
         this.xrTableRow10,
         this.xrTableRow11});
         this.xrTable3.SizeF = new System.Drawing.SizeF(749F, 124.1666F);
         this.xrTable3.StylePriority.UseBorderDashStyle = false;
         this.xrTable3.StylePriority.UseBorders = false;
         this.xrTable3.StylePriority.UseBorderWidth = false;
         this.xrTable3.StylePriority.UseFont = false;
         this.xrTable3.StylePriority.UseTextAlignment = false;
         this.xrTable3.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
         //
         // xrTableRow3
         //
         this.xrTableRow3.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
         this.xrTableCell12,
         this.xrTableCell10,
         this.xrSum});
         this.xrTableRow3.Name = "xrTableRow3";
         this.xrTableRow3.Weight = 1D;
         //
         // xrTableCell12
         //
         this.xrTableCell12.Borders = DevExpress.XtraPrinting.BorderSide.None;
         this.xrTableCell12.Name = "xrTableCell12";
         this.xrTableCell12.StylePriority.UseBorders = false;
         this.xrTableCell12.Weight = 4.6116583633422845D;
         //
         // xrTableCell10
         //
         this.xrTableCell10.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Bottom)));
         this.xrTableCell10.Font = new System.Drawing.Font("Arial", 10F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Italic))));
         this.xrTableCell10.Name = "xrTableCell10";
         this.xrTableCell10.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 5, 0, 0, 100F);
         this.xrTableCell10.StylePriority.UseBorders = false;
         this.xrTableCell10.StylePriority.UseFont = false;
         this.xrTableCell10.StylePriority.UsePadding = false;
         this.xrTableCell10.StylePriority.UseTextAlignment = false;
         this.xrTableCell10.Text = "Tổng cộng";
         this.xrTableCell10.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
         this.xrTableCell10.Weight = 1.4052649307250975D;
         //
         // xrSum
         //
         this.xrSum.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Right | DevExpress.XtraPrinting.BorderSide.Bottom)));
         this.xrSum.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "sale_InvoiceToPrint.FinalTotal", "{0:n0}")});
         this.xrSum.Font = new System.Drawing.Font("Verdana", 10F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Italic))));
         this.xrSum.Name = "xrSum";
         this.xrSum.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 8, 0, 0, 100F);
         this.xrSum.StylePriority.UseBorders = false;
         this.xrSum.StylePriority.UseFont = false;
         this.xrSum.StylePriority.UsePadding = false;
         this.xrSum.StylePriority.UseTextAlignment = false;
         xrSummary2.FormatString = "{0:n0}";
         this.xrSum.Summary = xrSummary2;
         this.xrSum.Text = "xrSum";
         this.xrSum.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
         this.xrSum.Weight = 1.4730767059326171D;
         //
         // xrTableRow5
         //
         this.xrTableRow5.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
         this.xrTableCell22,
         this.xrTableCell28,
         this.xrTableCell29});
         this.xrTableRow5.Name = "xrTableRow5";
         this.xrTableRow5.Weight = 1D;
         //
         // xrTableCell22
         //
         this.xrTableCell22.Borders = DevExpress.XtraPrinting.BorderSide.None;
         this.xrTableCell22.Name = "xrTableCell22";
         this.xrTableCell22.StylePriority.UseBorders = false;
         this.xrTableCell22.Weight = 4.6116583633422845D;
         //
         // xrTableCell28
         //
         this.xrTableCell28.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Bottom)));
         this.xrTableCell28.Font = new System.Drawing.Font("Arial", 10F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Italic))));
         this.xrTableCell28.Name = "xrTableCell28";
         this.xrTableCell28.StylePriority.UseBorders = false;
         this.xrTableCell28.StylePriority.UseFont = false;
         this.xrTableCell28.StylePriority.UseTextAlignment = false;
         this.xrTableCell28.Text = "Chiết khấu 1";
         this.xrTableCell28.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
         this.xrTableCell28.Weight = 1.4052649307250975D;
         //
         // xrTableCell29
         //
         this.xrTableCell29.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Right | DevExpress.XtraPrinting.BorderSide.Bottom)));
         this.xrTableCell29.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "sale_InvoiceToPrint.Discount", "{0:n0}")});
         this.xrTableCell29.Font = new System.Drawing.Font("Verdana", 10F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Italic))));
         this.xrTableCell29.Name = "xrTableCell29";
         this.xrTableCell29.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 8, 0, 0, 100F);
         this.xrTableCell29.StylePriority.UseBorders = false;
         this.xrTableCell29.StylePriority.UseFont = false;
         this.xrTableCell29.StylePriority.UsePadding = false;
         this.xrTableCell29.StylePriority.UseTextAlignment = false;
         this.xrTableCell29.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
         this.xrTableCell29.Weight = 1.4730767059326171D;
         //
         // xrTableRow7
         //
         this.xrTableRow7.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
         this.xrTableCell32,
         this.xrTableCell33,
         this.xrTableCell34});
         this.xrTableRow7.Name = "xrTableRow7";
         this.xrTableRow7.Weight = 1D;
         //
         // xrTableCell32
         //
         this.xrTableCell32.Borders = DevExpress.XtraPrinting.BorderSide.None;
         this.xrTableCell32.Name = "xrTableCell32";
         this.xrTableCell32.StylePriority.UseBorders = false;
         this.xrTableCell32.Weight = 4.6116583633422845D;
         //
         // xrTableCell33
         //
         this.xrTableCell33.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Bottom)));
         this.xrTableCell33.Font = new System.Drawing.Font("Arial", 10F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Italic))));
         this.xrTableCell33.Name = "xrTableCell33";
         this.xrTableCell33.StylePriority.UseBorders = false;
         this.xrTableCell33.StylePriority.UseFont = false;
         this.xrTableCell33.StylePriority.UseTextAlignment = false;
         this.xrTableCell33.Text = "Chiết khấu 2";
         this.xrTableCell33.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
         this.xrTableCell33.Weight = 1.4052649307250975D;
         //
         // xrTableRow10
         //
         this.xrTableRow10.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
         this.xrTableCell15,
         this.sdfsdfsdf,
         this.xrDiscount01});
         this.xrTableRow10.Name = "xrTableRow10";
         this.xrTableRow10.Weight = 1D;
         //
         // xrTableCell15
         //
         this.xrTableCell15.Borders = DevExpress.XtraPrinting.BorderSide.None;
         this.xrTableCell15.Name = "xrTableCell15";
         this.xrTableCell15.StylePriority.UseBorders = false;
         this.xrTableCell15.Weight = 4.6116586875915528D;
         //
         // sdfsdfsdf
         //
         this.sdfsdfsdf.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Bottom)));
         this.sdfsdfsdf.Font = new System.Drawing.Font("Arial", 10F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Italic))));
         this.sdfsdfsdf.Multiline = true;
         this.sdfsdfsdf.Name = "sdfsdfsdf";
         this.sdfsdfsdf.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 5, 0, 0, 100F);
         this.sdfsdfsdf.StylePriority.UseBorders = false;
         this.sdfsdfsdf.StylePriority.UseFont = false;
         this.sdfsdfsdf.StylePriority.UsePadding = false;
         this.sdfsdfsdf.StylePriority.UseTextAlignment = false;
         this.sdfsdfsdf.Text = "Phí giao hàng\r\n";
         this.sdfsdfsdf.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
         this.sdfsdfsdf.Weight = 1.4052652549743652D;
         //
         // xrDiscount01
         //
         this.xrDiscount01.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Right | DevExpress.XtraPrinting.BorderSide.Bottom)));
         this.xrDiscount01.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "sale_InvoiceToPrint.ShipFees", "{0:n0}")});
         this.xrDiscount01.Font = new System.Drawing.Font("Verdana", 10F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Italic))));
         this.xrDiscount01.Name = "xrDiscount01";
         this.xrDiscount01.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 8, 0, 0, 100F);
         this.xrDiscount01.StylePriority.UseBorders = false;
         this.xrDiscount01.StylePriority.UseFont = false;
         this.xrDiscount01.StylePriority.UsePadding = false;
         this.xrDiscount01.StylePriority.UseTextAlignment = false;
         this.xrDiscount01.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
         this.xrDiscount01.Weight = 1.473076057434082D;
         //
         // xrTableRow11
         //
         this.xrTableRow11.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
         this.xrTableCell17,
         this.xrTableCell48,
         this.thanhtienafterdis01});
         this.xrTableRow11.Name = "xrTableRow11";
         this.xrTableRow11.Weight = 1D;
         //
         // xrTableCell17
         //
         this.xrTableCell17.Borders = DevExpress.XtraPrinting.BorderSide.None;
         this.xrTableCell17.Name = "xrTableCell17";
         this.xrTableCell17.StylePriority.UseBorders = false;
         this.xrTableCell17.Weight = 4.6116583824157713D;
         //
         // xrTableCell48
         //
         this.xrTableCell48.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Bottom)));
         this.xrTableCell48.Font = new System.Drawing.Font("Arial", 10F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Italic))));
         this.xrTableCell48.Name = "xrTableCell48";
         this.xrTableCell48.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 5, 0, 0, 100F);
         this.xrTableCell48.StylePriority.UseBorders = false;
         this.xrTableCell48.StylePriority.UseFont = false;
         this.xrTableCell48.StylePriority.UsePadding = false;
         this.xrTableCell48.StylePriority.UseTextAlignment = false;
         this.xrTableCell48.Text = "Thành tiền";
         this.xrTableCell48.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
         this.xrTableCell48.Weight = 1.4052649497985839D;
         //
         // thanhtienafterdis01
         //
         this.thanhtienafterdis01.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Right | DevExpress.XtraPrinting.BorderSide.Bottom)));
         this.thanhtienafterdis01.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "sale_InvoiceToPrint.Payment", "{0:n0}")});
         this.thanhtienafterdis01.Font = new System.Drawing.Font("Verdana", 10F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Italic))));
         this.thanhtienafterdis01.Name = "thanhtienafterdis01";
         this.thanhtienafterdis01.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 8, 0, 0, 100F);
         this.thanhtienafterdis01.StylePriority.UseBorders = false;
         this.thanhtienafterdis01.StylePriority.UseFont = false;
         this.thanhtienafterdis01.StylePriority.UsePadding = false;
         this.thanhtienafterdis01.StylePriority.UseTextAlignment = false;
         this.thanhtienafterdis01.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
         this.thanhtienafterdis01.Weight = 1.4730766677856444D;
         this.thanhtienafterdis01.BeforePrint += new System.Drawing.Printing.PrintEventHandler(this.thanhtienafterdis01_BeforePrint);
         //
         // xrTable6
         //
         this.xrTable6.Borders = DevExpress.XtraPrinting.BorderSide.None;
         this.xrTable6.Font = new System.Drawing.Font("Times New Roman", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
         this.xrTable6.LocationFloat = new DevExpress.Utils.PointFloat(0F, 137.6666F);
         this.xrTable6.Name = "xrTable6";
         this.xrTable6.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
         this.xrTableRow6});
         this.xrTable6.SizeF = new System.Drawing.SizeF(750F, 20F);
         this.xrTable6.StylePriority.UseBorders = false;
         this.xrTable6.StylePriority.UseFont = false;
         this.xrTable6.StylePriority.UseTextAlignment = false;
         this.xrTable6.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
         //
         // xrTableRow6
         //
         this.xrTableRow6.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
         this.xrTableCell8,
         this.xrTableCell9});
         this.xrTableRow6.Name = "xrTableRow6";
         this.xrTableRow6.Weight = 1D;
         //
         // xrTableCell8
         //
         this.xrTableCell8.Font = new System.Drawing.Font("Arial", 12F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Italic))));
         this.xrTableCell8.Name = "xrTableCell8";
         this.xrTableCell8.StylePriority.UseFont = false;
         this.xrTableCell8.StylePriority.UseTextAlignment = false;
         this.xrTableCell8.Text = "Tổng tiền (bằng chữ):";
         this.xrTableCell8.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
         this.xrTableCell8.Weight = 1.4999997049967446D;
         //
         // xrTableCell9
         //
         this.xrTableCell9.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.lbchu});
         this.xrTableCell9.Font = new System.Drawing.Font("Times New Roman", 9F);
         this.xrTableCell9.Name = "xrTableCell9";
         this.xrTableCell9.StylePriority.UseFont = false;
         this.xrTableCell9.StylePriority.UseTextAlignment = false;
         xrSummary3.FormatString = "{0:0.00 VND}";
         this.xrTableCell9.Summary = xrSummary3;
         this.xrTableCell9.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
         this.xrTableCell9.Weight = 5.0000002950032547D;
         //
         // lbchu
         //
         this.lbchu.Font = new System.Drawing.Font("Arial", 12F);
         this.lbchu.LocationFloat = new DevExpress.Utils.PointFloat(2.499835F, 0F);
         this.lbchu.Name = "lbchu";
         this.lbchu.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
         this.lbchu.SizeF = new System.Drawing.SizeF(573.4233F, 20F);
         this.lbchu.StylePriority.UseFont = false;
         this.lbchu.BeforePrint += new System.Drawing.Printing.PrintEventHandler(this.lbchu_BeforePrint);
         //
         // xrLine1
         //
         this.xrLine1.BorderWidth = 5F;
         this.xrLine1.LineStyle = System.Drawing.Drawing2D.DashStyle.Dash;
         this.xrLine1.LineWidth = 2;
         this.xrLine1.LocationFloat = new DevExpress.Utils.PointFloat(0F, 3.000005F);
         this.xrLine1.Name = "xrLine1";
         this.xrLine1.SizeF = new System.Drawing.SizeF(750.0001F, 11.54169F);
         this.xrLine1.StylePriority.UseBorderWidth = false;
         //
         // xrPictureBox1
         //
         this.xrPictureBox1.ImageUrl = "~\\img\\logohdk.png";
         this.xrPictureBox1.LocationFloat = new DevExpress.Utils.PointFloat(239.5835F, 24.54169F);
         this.xrPictureBox1.Name = "xrPictureBox1";
         this.xrPictureBox1.SizeF = new System.Drawing.SizeF(171.875F, 61.49998F);
         this.xrPictureBox1.Sizing = DevExpress.XtraPrinting.ImageSizeMode.Squeeze;
         //
         // xrLabel5
         //
         this.xrLabel5.Font = new System.Drawing.Font("Verdana", 10F, System.Drawing.FontStyle.Italic);
         this.xrLabel5.LocationFloat = new DevExpress.Utils.PointFloat(239.5835F, 115.2917F);
         this.xrLabel5.Name = "xrLabel5";
         this.xrLabel5.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
         this.xrLabel5.SizeF = new System.Drawing.SizeF(480.514F, 31.33333F);
         this.xrLabel5.StylePriority.UseFont = false;
         this.xrLabel5.StylePriority.UseTextAlignment = false;
         this.xrLabel5.Text = "Mã giảm giá bên có thời hạn từ 01-05-2015 đến ngày 30-05-2015.";
         this.xrLabel5.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
         //
         // xrLabel3
         //
         this.xrLabel3.Font = new System.Drawing.Font("Verdana", 10F);
         this.xrLabel3.LocationFloat = new DevExpress.Utils.PointFloat(239.5835F, 86.04166F);
         this.xrLabel3.Name = "xrLabel3";
         this.xrLabel3.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
         this.xrLabel3.SizeF = new System.Drawing.SizeF(480.514F, 18.83333F);
         this.xrLabel3.StylePriority.UseFont = false;
         this.xrLabel3.StylePriority.UseTextAlignment = false;
         this.xrLabel3.Text = "TẶNG BẠN MÃ GIẢM GIÁ 10% CHO LẦN MUA HÀNG TIẾP THEO";
         this.xrLabel3.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
         //
         // xrLabel1
         //
         this.xrLabel1.Font = new System.Drawing.Font("Times New Roman", 22F, System.Drawing.FontStyle.Bold);
         this.xrLabel1.LocationFloat = new DevExpress.Utils.PointFloat(419.7918F, 36.20841F);
         this.xrLabel1.Name = "xrLabel1";
         this.xrLabel1.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
         this.xrLabel1.SizeF = new System.Drawing.SizeF(240.6251F, 36.37494F);
         this.xrLabel1.StylePriority.UseFont = false;
         this.xrLabel1.StylePriority.UseTextAlignment = false;
         this.xrLabel1.Text = "CẢM ƠN BẠN !";
         this.xrLabel1.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
         //
         // xrBarCode1
         //
         this.xrBarCode1.AutoModule = true;
         this.xrBarCode1.BorderDashStyle = DevExpress.XtraPrinting.BorderDashStyle.DashDotDot;
         this.xrBarCode1.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
         | DevExpress.XtraPrinting.BorderSide.Right)
         | DevExpress.XtraPrinting.BorderSide.Bottom)));
         this.xrBarCode1.Font = new System.Drawing.Font("Microsoft YaHei", 16F, System.Drawing.FontStyle.Bold);
         this.xrBarCode1.ForeColor = System.Drawing.SystemColors.ActiveCaptionText;
         this.xrBarCode1.FormattingRules.Add(this.formattingRule1);
         this.xrBarCode1.LocationFloat = new DevExpress.Utils.PointFloat(23.95846F, 24.54169F);
         this.xrBarCode1.Module = 8F;
         this.xrBarCode1.Name = "xrBarCode1";
         this.xrBarCode1.Padding = new DevExpress.XtraPrinting.PaddingInfo(20, 10, 20, 10, 100F);
         this.xrBarCode1.SizeF = new System.Drawing.SizeF(196.8751F, 215.7501F);
         this.xrBarCode1.StylePriority.UseBorderDashStyle = false;
         this.xrBarCode1.StylePriority.UseBorders = false;
         this.xrBarCode1.StylePriority.UseFont = false;
         this.xrBarCode1.StylePriority.UseForeColor = false;
         this.xrBarCode1.StylePriority.UsePadding = false;
         this.xrBarCode1.StylePriority.UseTextAlignment = false;
         qrCodeGenerator1.ErrorCorrectionLevel = DevExpress.XtraPrinting.BarCode.QRCodeErrorCorrectionLevel.M;
         qrCodeGenerator1.Version = DevExpress.XtraPrinting.BarCode.QRCodeVersion.Version1;
         this.xrBarCode1.Symbology = qrCodeGenerator1;
         this.xrBarCode1.Text = "GGHKBD";
         this.xrBarCode1.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
         //
         // pTongTien
         //
         this.pTongTien.Expression = "[TongTien]+[Thue]+[ShipFees]-[GiamGia]";
         this.pTongTien.Name = "pTongTien";
         //
         // ReportHeader
         //
         this.ReportHeader.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.header,
         this.xrLabel10,
         this.xrLabel13,
         this.xrTable7,
         this.xrTable1});
         this.ReportHeader.HeightF = 208.4722F;
         this.ReportHeader.Name = "ReportHeader";
         //
         // sale_InvoiceToPrintTableAdapter1
         //
         this.sale_InvoiceToPrintTableAdapter1.ClearBeforeFill = true;
         //
         // Thanhtien
         //
         this.Thanhtien.Expression = "[sale_InvoiceToPrint.FinalTotal] - [sale_InvoiceToPrint.ShipFees]";
         this.Thanhtien.Name = "Thanhtien";
         //
         // percentDiscount1
         //
         this.percentDiscount1.Expression = "[sale_InvoiceToPrint.ShipFees]/[sale_InvoiceToPrint.FinalTotal]*100";
         this.percentDiscount1.Name = "percentDiscount1";
         //
         // PageFooter
         //
         this.PageFooter.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrLabel11,
         this.xrPictureBox4,
         this.xrLabel2,
         this.xrPictureBox5,
         this.xrLine1,
         this.xrBarCode1,
         this.xrPictureBox1,
         this.xrLabel1,
         this.xrLabel3,
         this.xrLabel5});
         this.PageFooter.HeightF = 245.8333F;
         this.PageFooter.Name = "PageFooter";
         //
         // xrLabel11
         //
         this.xrLabel11.Font = new System.Drawing.Font("Tahoma", 11F, System.Drawing.FontStyle.Underline);
         this.xrLabel11.LocationFloat = new DevExpress.Utils.PointFloat(279.4574F, 182.3125F);
         this.xrLabel11.Name = "xrLabel11";
         this.xrLabel11.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
         this.xrLabel11.SizeF = new System.Drawing.SizeF(181.7084F, 23F);
         this.xrLabel11.StylePriority.UseFont = false;
         this.xrLabel11.StylePriority.UseTextAlignment = false;
         this.xrLabel11.Text = "www.hongdiepkhang.com";
         this.xrLabel11.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter;
         //
         // xrPictureBox4
         //
         this.xrPictureBox4.ImageUrl = "~\\images\\icon-webapp.png";
         this.xrPictureBox4.LocationFloat = new DevExpress.Utils.PointFloat(254.4574F, 181.3125F);
         this.xrPictureBox4.Name = "xrPictureBox4";
         this.xrPictureBox4.SizeF = new System.Drawing.SizeF(24F, 24F);
         this.xrPictureBox4.Sizing = DevExpress.XtraPrinting.ImageSizeMode.Squeeze;
         //
         // xrLabel2
         //
         this.xrLabel2.Font = new System.Drawing.Font("Arial", 11F, System.Drawing.FontStyle.Underline);
         this.xrLabel2.LocationFloat = new DevExpress.Utils.PointFloat(495.0408F, 182.3125F);
         this.xrLabel2.Name = "xrLabel2";
         this.xrLabel2.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
         this.xrLabel2.SizeF = new System.Drawing.SizeF(211.515F, 23F);
         this.xrLabel2.StylePriority.UseFont = false;
         this.xrLabel2.StylePriority.UseTextAlignment = false;
         this.xrLabel2.Text = "facebook.com/hongdiepkhang";
         this.xrLabel2.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter;
         //
         // xrPictureBox5
         //
         this.xrPictureBox5.ImageUrl = "~\\images\\circle-social_facebook_outline_stroke-128.png";
         this.xrPictureBox5.LocationFloat = new DevExpress.Utils.PointFloat(468.0409F, 180.3125F);
         this.xrPictureBox5.Name = "xrPictureBox5";
         this.xrPictureBox5.SizeF = new System.Drawing.SizeF(24F, 24F);
         this.xrPictureBox5.Sizing = DevExpress.XtraPrinting.ImageSizeMode.Squeeze;
         //
         // xrTableCell34
         //
         this.xrTableCell34.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Right | DevExpress.XtraPrinting.BorderSide.Bottom)));
         this.xrTableCell34.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "sale_InvoiceToPrint.Discount2", "{0:n0}")});
         this.xrTableCell34.Font = new System.Drawing.Font("Verdana", 10F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Italic))));
         this.xrTableCell34.Name = "xrTableCell34";
         this.xrTableCell34.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 8, 0, 0, 100F);
         this.xrTableCell34.StylePriority.UseBorders = false;
         this.xrTableCell34.StylePriority.UseFont = false;
         this.xrTableCell34.StylePriority.UsePadding = false;
         this.xrTableCell34.StylePriority.UseTextAlignment = false;
         this.xrTableCell34.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
         this.xrTableCell34.Weight = 1.4730767059326171D;
         //
         // rptBanHang
         //
         this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
         this.Detail,
         this.TopMargin,
         this.BottomMargin,
         this.PageHeader,
         this.GroupHeader2,
         this.GroupFooter1,
         this.ReportHeader,
         this.PageFooter});
         this.CalculatedFields.AddRange(new DevExpress.XtraReports.UI.CalculatedField[] {
         this.pTongTien,
         this.Thanhtien,
         this.percentDiscount1});
         this.DataAdapter = this.sale_InvoiceToPrintTableAdapter1;
         this.DataMember = "sale_InvoiceToPrint";
         this.DataSource = this.dsBaoCaoBanHang1;
         this.FormattingRuleSheet.AddRange(new DevExpress.XtraReports.UI.FormattingRule[] {
         this.formattingRule1});
         this.Margins = new System.Drawing.Printing.Margins(49, 51, 0, 14);
         this.Version = "14.1";
         ((System.ComponentModel.ISupportInitialize)(this.xrTable2)).EndInit();
         ((System.ComponentModel.ISupportInitialize)(this.xrTable4)).EndInit();
         ((System.ComponentModel.ISupportInitialize)(this.xrTable7)).EndInit();
         ((System.ComponentModel.ISupportInitialize)(this.xrTable1)).EndInit();
         ((System.ComponentModel.ISupportInitialize)(this.dsBaoCaoBanHang1)).EndInit();
         ((System.ComponentModel.ISupportInitialize)(this.xrTable3)).EndInit();
         ((System.ComponentModel.ISupportInitialize)(this.xrTable6)).EndInit();
         ((System.ComponentModel.ISupportInitialize)(this)).EndInit();
 }
コード例 #13
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     DevExpress.XtraPrinting.BarCode.QRCodeGenerator qrCodeGenerator1 = new DevExpress.XtraPrinting.BarCode.QRCodeGenerator();
     this.TopMargin         = new DevExpress.XtraReports.UI.TopMarginBand();
     this.BottomMargin      = new DevExpress.XtraReports.UI.BottomMarginBand();
     this.Detail            = new DevExpress.XtraReports.UI.DetailBand();
     this.xrLabel1          = new DevExpress.XtraReports.UI.XRLabel();
     this.txtMachineInfo    = new DevExpress.XtraReports.UI.XRLabel();
     this.txtColorName      = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel3          = new DevExpress.XtraReports.UI.XRLabel();
     this.txtColorCode      = new DevExpress.XtraReports.UI.XRLabel();
     this.txtLabelName      = new DevExpress.XtraReports.UI.XRLabel();
     this.txtItemName       = new DevExpress.XtraReports.UI.XRLabel();
     this.panel1            = new DevExpress.XtraReports.UI.XRPanel();
     this.txtBatchNo        = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel4          = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLine10          = new DevExpress.XtraReports.UI.XRLine();
     this.xrLine2           = new DevExpress.XtraReports.UI.XRLine();
     this.xrLabel6          = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel5          = new DevExpress.XtraReports.UI.XRLabel();
     this.txtScaleWeight    = new DevExpress.XtraReports.UI.XRLabel();
     this.txtMaterialName   = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLine6           = new DevExpress.XtraReports.UI.XRLine();
     this.txtBarcodeDisplay = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLine16          = new DevExpress.XtraReports.UI.XRLine();
     this.xrLabel8          = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLine11          = new DevExpress.XtraReports.UI.XRLine();
     this.xrLine9           = new DevExpress.XtraReports.UI.XRLine();
     this.xrLine5           = new DevExpress.XtraReports.UI.XRLine();
     this.xrLine4           = new DevExpress.XtraReports.UI.XRLine();
     this.xrLine3           = new DevExpress.XtraReports.UI.XRLine();
     this.xrLine1           = new DevExpress.XtraReports.UI.XRLine();
     this.xrBarCode1        = new DevExpress.XtraReports.UI.XRBarCode();
     this.xrPageInfo1       = new DevExpress.XtraReports.UI.XRPageInfo();
     this.xrLine8           = new DevExpress.XtraReports.UI.XRLine();
     ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
     //
     // TopMargin
     //
     this.TopMargin.HeightF = 0F;
     this.TopMargin.Name    = "TopMargin";
     //
     // BottomMargin
     //
     this.BottomMargin.HeightF = 0F;
     this.BottomMargin.Name    = "BottomMargin";
     //
     // Detail
     //
     this.Detail.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.panel1
     });
     this.Detail.HeightF = 442.7046F;
     this.Detail.Name    = "Detail";
     this.Detail.Visible = false;
     //
     // xrLabel1
     //
     this.xrLabel1.BorderColor = System.Drawing.Color.Silver;
     this.xrLabel1.Borders     = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                         | DevExpress.XtraPrinting.BorderSide.Right)
                                                                        | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrLabel1.Font          = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrLabel1.LocationFloat = new DevExpress.Utils.PointFloat(16.62503F, 16.00002F);
     this.xrLabel1.Multiline     = true;
     this.xrLabel1.Name          = "xrLabel1";
     this.xrLabel1.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel1.SizeF         = new System.Drawing.SizeF(52.62496F, 29.08333F);
     this.xrLabel1.StylePriority.UseBorderColor   = false;
     this.xrLabel1.StylePriority.UseBorders       = false;
     this.xrLabel1.StylePriority.UseFont          = false;
     this.xrLabel1.StylePriority.UseTextAlignment = false;
     this.xrLabel1.Text          = "Số Máy";
     this.xrLabel1.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     //
     // txtMachineInfo
     //
     this.txtMachineInfo.BorderColor = System.Drawing.Color.Silver;
     this.txtMachineInfo.Borders     = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                               | DevExpress.XtraPrinting.BorderSide.Right)
                                                                              | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.txtMachineInfo.Font          = new System.Drawing.Font("Arial", 16F, System.Drawing.FontStyle.Bold);
     this.txtMachineInfo.LocationFloat = new DevExpress.Utils.PointFloat(82.79164F, 16.00002F);
     this.txtMachineInfo.Multiline     = true;
     this.txtMachineInfo.Name          = "txtMachineInfo";
     this.txtMachineInfo.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.txtMachineInfo.SizeF         = new System.Drawing.SizeF(282.9584F, 27F);
     this.txtMachineInfo.StylePriority.UseBorderColor   = false;
     this.txtMachineInfo.StylePriority.UseBorders       = false;
     this.txtMachineInfo.StylePriority.UseFont          = false;
     this.txtMachineInfo.StylePriority.UseTextAlignment = false;
     this.txtMachineInfo.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight;
     //
     // txtColorName
     //
     this.txtColorName.BorderColor = System.Drawing.Color.Silver;
     this.txtColorName.Borders     = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                             | DevExpress.XtraPrinting.BorderSide.Right)
                                                                            | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.txtColorName.Font          = new System.Drawing.Font("Arial", 16F, System.Drawing.FontStyle.Bold);
     this.txtColorName.LocationFloat = new DevExpress.Utils.PointFloat(136.9583F, 50.08336F);
     this.txtColorName.Multiline     = true;
     this.txtColorName.Name          = "txtColorName";
     this.txtColorName.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.txtColorName.SizeF         = new System.Drawing.SizeF(225.8752F, 59.33332F);
     this.txtColorName.StylePriority.UseBorderColor   = false;
     this.txtColorName.StylePriority.UseBorders       = false;
     this.txtColorName.StylePriority.UseFont          = false;
     this.txtColorName.StylePriority.UseTextAlignment = false;
     this.txtColorName.Text          = "Color";
     this.txtColorName.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter;
     //
     // xrLabel3
     //
     this.xrLabel3.Borders                        = DevExpress.XtraPrinting.BorderSide.None;
     this.xrLabel3.Font                           = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Bold);
     this.xrLabel3.LocationFloat                  = new DevExpress.Utils.PointFloat(82.79163F, 62.54168F);
     this.xrLabel3.Multiline                      = true;
     this.xrLabel3.Name                           = "xrLabel3";
     this.xrLabel3.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel3.SizeF                          = new System.Drawing.SizeF(48.58334F, 15.44275F);
     this.xrLabel3.StylePriority.UseBorders       = false;
     this.xrLabel3.StylePriority.UseFont          = false;
     this.xrLabel3.StylePriority.UseTextAlignment = false;
     this.xrLabel3.Text                           = "Color";
     this.xrLabel3.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.TopCenter;
     //
     // txtColorCode
     //
     this.txtColorCode.BorderColor = System.Drawing.Color.Silver;
     this.txtColorCode.Borders     = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                             | DevExpress.XtraPrinting.BorderSide.Right)
                                                                            | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.txtColorCode.Font          = new System.Drawing.Font("Arial", 12F, System.Drawing.FontStyle.Bold);
     this.txtColorCode.LocationFloat = new DevExpress.Utils.PointFloat(82.79161F, 86.54169F);
     this.txtColorCode.Multiline     = true;
     this.txtColorCode.Name          = "txtColorCode";
     this.txtColorCode.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.txtColorCode.SizeF         = new System.Drawing.SizeF(48.58334F, 22.87499F);
     this.txtColorCode.StylePriority.UseBorderColor   = false;
     this.txtColorCode.StylePriority.UseBorders       = false;
     this.txtColorCode.StylePriority.UseFont          = false;
     this.txtColorCode.StylePriority.UseTextAlignment = false;
     this.txtColorCode.Text          = "2000";
     this.txtColorCode.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter;
     //
     // txtLabelName
     //
     this.txtLabelName.Angle                          = 90F;
     this.txtLabelName.Borders                        = DevExpress.XtraPrinting.BorderSide.None;
     this.txtLabelName.Font                           = new System.Drawing.Font("Arial", 12F, System.Drawing.FontStyle.Bold);
     this.txtLabelName.LocationFloat                  = new DevExpress.Utils.PointFloat(16.62503F, 50.08336F);
     this.txtLabelName.Multiline                      = true;
     this.txtLabelName.Name                           = "txtLabelName";
     this.txtLabelName.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.txtLabelName.SizeF                          = new System.Drawing.SizeF(48.70832F, 257.9999F);
     this.txtLabelName.StylePriority.UseBorders       = false;
     this.txtLabelName.StylePriority.UseFont          = false;
     this.txtLabelName.StylePriority.UseTextAlignment = false;
     this.txtLabelName.Text                           = "RUNNER (CUỐN NHỰA)";
     this.txtLabelName.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     //
     // txtItemName
     //
     this.txtItemName.Borders                  = DevExpress.XtraPrinting.BorderSide.None;
     this.txtItemName.Font                     = new System.Drawing.Font("Arial", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtItemName.LocationFloat            = new DevExpress.Utils.PointFloat(77.8333F, 120.8333F);
     this.txtItemName.Multiline                = true;
     this.txtItemName.Name                     = "txtItemName";
     this.txtItemName.Padding                  = new DevExpress.XtraPrinting.PaddingInfo(5, 5, 5, 2, 100F);
     this.txtItemName.SizeF                    = new System.Drawing.SizeF(285.0001F, 47.08331F);
     this.txtItemName.StylePriority.UseBorders = false;
     this.txtItemName.StylePriority.UseFont    = false;
     this.txtItemName.StylePriority.UsePadding = false;
     this.txtItemName.Text                     = "Zoom Victory 3/Zoom Victory Elite 2  Plate (72R53)";
     //
     // panel1
     //
     this.panel1.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                   | DevExpress.XtraPrinting.BorderSide.Right)
                                                                  | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.panel1.CanGrow = false;
     this.panel1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrLine8,
         this.xrPageInfo1,
         this.xrBarCode1,
         this.txtItemName,
         this.xrLabel1,
         this.txtMachineInfo,
         this.txtBatchNo,
         this.xrLabel4,
         this.xrLine10,
         this.xrLine2,
         this.xrLabel6,
         this.xrLabel5,
         this.txtScaleWeight,
         this.txtMaterialName,
         this.txtColorCode,
         this.xrLine6,
         this.txtBarcodeDisplay,
         this.xrLine16,
         this.txtLabelName,
         this.xrLabel8,
         this.xrLine11,
         this.txtColorName,
         this.xrLabel3,
         this.xrLine9,
         this.xrLine5,
         this.xrLine4,
         this.xrLine3,
         this.xrLine1
     });
     this.panel1.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
     this.panel1.Name          = "panel1";
     this.panel1.SizeF         = new System.Drawing.SizeF(400F, 432.7046F);
     //
     // txtBatchNo
     //
     this.txtBatchNo.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                       | DevExpress.XtraPrinting.BorderSide.Right)
                                                                      | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.txtBatchNo.Font                           = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Bold);
     this.txtBatchNo.LocationFloat                  = new DevExpress.Utils.PointFloat(272.125F, 283.0833F);
     this.txtBatchNo.Multiline                      = true;
     this.txtBatchNo.Name                           = "txtBatchNo";
     this.txtBatchNo.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.txtBatchNo.SizeF                          = new System.Drawing.SizeF(73.37497F, 20F);
     this.txtBatchNo.StylePriority.UseBorders       = false;
     this.txtBatchNo.StylePriority.UseFont          = false;
     this.txtBatchNo.StylePriority.UseTextAlignment = false;
     this.txtBatchNo.Text                           = "0";
     this.txtBatchNo.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.TopCenter;
     //
     // xrLabel4
     //
     this.xrLabel4.Borders                        = DevExpress.XtraPrinting.BorderSide.None;
     this.xrLabel4.Font                           = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Bold);
     this.xrLabel4.LocationFloat                  = new DevExpress.Utils.PointFloat(272.125F, 257.2083F);
     this.xrLabel4.Multiline                      = true;
     this.xrLabel4.Name                           = "xrLabel4";
     this.xrLabel4.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel4.SizeF                          = new System.Drawing.SizeF(73.37497F, 20.00002F);
     this.xrLabel4.StylePriority.UseBorders       = false;
     this.xrLabel4.StylePriority.UseFont          = false;
     this.xrLabel4.StylePriority.UseTextAlignment = false;
     this.xrLabel4.Text                           = "Batch No";
     this.xrLabel4.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.TopCenter;
     //
     // xrLine10
     //
     this.xrLine10.Borders                  = DevExpress.XtraPrinting.BorderSide.None;
     this.xrLine10.LineDirection            = DevExpress.XtraReports.UI.LineDirection.Vertical;
     this.xrLine10.LocationFloat            = new DevExpress.Utils.PointFloat(70.25008F, 14.16667F);
     this.xrLine10.Name                     = "xrLine10";
     this.xrLine10.SizeF                    = new System.Drawing.SizeF(2.083328F, 35.91668F);
     this.xrLine10.StylePriority.UseBorders = false;
     //
     // xrLine2
     //
     this.xrLine2.Borders                  = DevExpress.XtraPrinting.BorderSide.None;
     this.xrLine2.LocationFloat            = new DevExpress.Utils.PointFloat(71.75F, 169.9166F);
     this.xrLine2.Name                     = "xrLine2";
     this.xrLine2.SizeF                    = new System.Drawing.SizeF(301.3334F, 2.083328F);
     this.xrLine2.StylePriority.UseBorders = false;
     //
     // xrLabel6
     //
     this.xrLabel6.Borders                        = DevExpress.XtraPrinting.BorderSide.None;
     this.xrLabel6.Font                           = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Bold);
     this.xrLabel6.LocationFloat                  = new DevExpress.Utils.PointFloat(76.75F, 283.0833F);
     this.xrLabel6.Multiline                      = true;
     this.xrLabel6.Name                           = "xrLabel6";
     this.xrLabel6.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel6.SizeF                          = new System.Drawing.SizeF(54.62497F, 20F);
     this.xrLabel6.StylePriority.UseBorders       = false;
     this.xrLabel6.StylePriority.UseFont          = false;
     this.xrLabel6.StylePriority.UseTextAlignment = false;
     this.xrLabel6.Text                           = "(Kg)";
     this.xrLabel6.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // xrLabel5
     //
     this.xrLabel5.Borders                        = DevExpress.XtraPrinting.BorderSide.None;
     this.xrLabel5.Font                           = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Bold);
     this.xrLabel5.LocationFloat                  = new DevExpress.Utils.PointFloat(76.75F, 257.2083F);
     this.xrLabel5.Multiline                      = true;
     this.xrLabel5.Name                           = "xrLabel5";
     this.xrLabel5.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel5.SizeF                          = new System.Drawing.SizeF(54.62497F, 20F);
     this.xrLabel5.StylePriority.UseBorders       = false;
     this.xrLabel5.StylePriority.UseFont          = false;
     this.xrLabel5.StylePriority.UseTextAlignment = false;
     this.xrLabel5.Text                           = "Q\'ty";
     this.xrLabel5.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // txtScaleWeight
     //
     this.txtScaleWeight.BorderColor = System.Drawing.Color.Silver;
     this.txtScaleWeight.Borders     = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                               | DevExpress.XtraPrinting.BorderSide.Right)
                                                                              | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.txtScaleWeight.Font          = new System.Drawing.Font("Arial", 26F, System.Drawing.FontStyle.Bold);
     this.txtScaleWeight.LocationFloat = new DevExpress.Utils.PointFloat(136.9583F, 255.2083F);
     this.txtScaleWeight.Multiline     = true;
     this.txtScaleWeight.Name          = "txtScaleWeight";
     this.txtScaleWeight.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.txtScaleWeight.SizeF         = new System.Drawing.SizeF(104.1667F, 47.875F);
     this.txtScaleWeight.StylePriority.UseBorderColor   = false;
     this.txtScaleWeight.StylePriority.UseBorders       = false;
     this.txtScaleWeight.StylePriority.UseFont          = false;
     this.txtScaleWeight.StylePriority.UseTextAlignment = false;
     this.txtScaleWeight.Text          = "15";
     this.txtScaleWeight.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter;
     //
     // txtMaterialName
     //
     this.txtMaterialName.BorderColor = System.Drawing.Color.Silver;
     this.txtMaterialName.Borders     = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                                | DevExpress.XtraPrinting.BorderSide.Right)
                                                                               | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.txtMaterialName.Font          = new System.Drawing.Font("Arial", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtMaterialName.LocationFloat = new DevExpress.Utils.PointFloat(131.375F, 171.9999F);
     this.txtMaterialName.Multiline     = true;
     this.txtMaterialName.Name          = "txtMaterialName";
     this.txtMaterialName.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.txtMaterialName.SizeF         = new System.Drawing.SizeF(234.3751F, 79.12505F);
     this.txtMaterialName.StylePriority.UseBorderColor   = false;
     this.txtMaterialName.StylePriority.UseBorders       = false;
     this.txtMaterialName.StylePriority.UseFont          = false;
     this.txtMaterialName.StylePriority.UseTextAlignment = false;
     this.txtMaterialName.Text          = "Zoom Victory 3/Zoom Victory Elite 2  Plate (72R53)";
     this.txtMaterialName.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter;
     //
     // xrLine6
     //
     this.xrLine6.Borders                  = DevExpress.XtraPrinting.BorderSide.None;
     this.xrLine6.LocationFloat            = new DevExpress.Utils.PointFloat(10.625F, 308.0833F);
     this.xrLine6.Name                     = "xrLine6";
     this.xrLine6.SizeF                    = new System.Drawing.SizeF(359.375F, 2.083332F);
     this.xrLine6.StylePriority.UseBorders = false;
     //
     // txtBarcodeDisplay
     //
     this.txtBarcodeDisplay.Borders                  = DevExpress.XtraPrinting.BorderSide.None;
     this.txtBarcodeDisplay.Font                     = new System.Drawing.Font("Segoe UI Historic", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtBarcodeDisplay.LocationFloat            = new DevExpress.Utils.PointFloat(16.62502F, 398.4999F);
     this.txtBarcodeDisplay.Multiline                = true;
     this.txtBarcodeDisplay.Name                     = "txtBarcodeDisplay";
     this.txtBarcodeDisplay.Padding                  = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.txtBarcodeDisplay.SizeF                    = new System.Drawing.SizeF(169.7915F, 20F);
     this.txtBarcodeDisplay.StylePriority.UseBorders = false;
     this.txtBarcodeDisplay.StylePriority.UseFont    = false;
     this.txtBarcodeDisplay.Text                     = "*11111111-888*";
     //
     // xrLine16
     //
     this.xrLine16.LocationFloat = new DevExpress.Utils.PointFloat(10.62501F, 423.8333F);
     this.xrLine16.Name          = "xrLine16";
     this.xrLine16.SizeF         = new System.Drawing.SizeF(359.375F, 2.083344F);
     //
     // xrLabel8
     //
     this.xrLabel8.Borders                        = DevExpress.XtraPrinting.BorderSide.None;
     this.xrLabel8.Font                           = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Bold);
     this.xrLabel8.LocationFloat                  = new DevExpress.Utils.PointFloat(73.83329F, 205.5F);
     this.xrLabel8.Multiline                      = true;
     this.xrLabel8.Name                           = "xrLabel8";
     this.xrLabel8.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel8.SizeF                          = new System.Drawing.SizeF(57.54163F, 20F);
     this.xrLabel8.StylePriority.UseBorders       = false;
     this.xrLabel8.StylePriority.UseFont          = false;
     this.xrLabel8.StylePriority.UseTextAlignment = false;
     this.xrLabel8.Text                           = "Polymer";
     this.xrLabel8.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // xrLine11
     //
     this.xrLine11.Borders                  = DevExpress.XtraPrinting.BorderSide.None;
     this.xrLine11.LocationFloat            = new DevExpress.Utils.PointFloat(73.8333F, 251.125F);
     this.xrLine11.Name                     = "xrLine11";
     this.xrLine11.SizeF                    = new System.Drawing.SizeF(298.1667F, 2.083328F);
     this.xrLine11.StylePriority.UseBorders = false;
     //
     // xrLine9
     //
     this.xrLine9.Borders                  = DevExpress.XtraPrinting.BorderSide.None;
     this.xrLine9.LocationFloat            = new DevExpress.Utils.PointFloat(73.8333F, 114.4167F);
     this.xrLine9.Name                     = "xrLine9";
     this.xrLine9.SizeF                    = new System.Drawing.SizeF(299.2501F, 2.083336F);
     this.xrLine9.StylePriority.UseBorders = false;
     //
     // xrLine5
     //
     this.xrLine5.LocationFloat = new DevExpress.Utils.PointFloat(12.625F, 48.00002F);
     this.xrLine5.Name          = "xrLine5";
     this.xrLine5.SizeF         = new System.Drawing.SizeF(359.375F, 2.083332F);
     //
     // xrLine4
     //
     this.xrLine4.LineDirection = DevExpress.XtraReports.UI.LineDirection.Vertical;
     this.xrLine4.LocationFloat = new DevExpress.Utils.PointFloat(369.9999F, 10.00001F);
     this.xrLine4.Name          = "xrLine4";
     this.xrLine4.SizeF         = new System.Drawing.SizeF(2.083344F, 413.8333F);
     //
     // xrLine3
     //
     this.xrLine3.LineDirection = DevExpress.XtraReports.UI.LineDirection.Vertical;
     this.xrLine3.LocationFloat = new DevExpress.Utils.PointFloat(10.62501F, 12.08334F);
     this.xrLine3.Name          = "xrLine3";
     this.xrLine3.SizeF         = new System.Drawing.SizeF(2.083334F, 413.8333F);
     //
     // xrLine1
     //
     this.xrLine1.LocationFloat = new DevExpress.Utils.PointFloat(9.999998F, 10.00001F);
     this.xrLine1.Name          = "xrLine1";
     this.xrLine1.SizeF         = new System.Drawing.SizeF(359.375F, 2.083333F);
     //
     // xrBarCode1
     //
     this.xrBarCode1.Alignment   = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     this.xrBarCode1.AutoModule  = true;
     this.xrBarCode1.Borders     = DevExpress.XtraPrinting.BorderSide.None;
     this.xrBarCode1.BorderWidth = 1F;
     this.xrBarCode1.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[BarCode]")
     });
     this.xrBarCode1.Font                           = new System.Drawing.Font("Arial", 16F);
     this.xrBarCode1.LocationFloat                  = new DevExpress.Utils.PointFloat(275.0417F, 310.1667F);
     this.xrBarCode1.Name                           = "xrBarCode1";
     this.xrBarCode1.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.xrBarCode1.ShowText                       = false;
     this.xrBarCode1.SizeF                          = new System.Drawing.SizeF(90.7084F, 88.33325F);
     this.xrBarCode1.StylePriority.UseBorders       = false;
     this.xrBarCode1.StylePriority.UseBorderWidth   = false;
     this.xrBarCode1.StylePriority.UseFont          = false;
     this.xrBarCode1.StylePriority.UseTextAlignment = false;
     this.xrBarCode1.Symbology                      = qrCodeGenerator1;
     this.xrBarCode1.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleJustify;
     //
     // xrPageInfo1
     //
     this.xrPageInfo1.BorderDashStyle = DevExpress.XtraPrinting.BorderDashStyle.Double;
     this.xrPageInfo1.Borders         = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                                | DevExpress.XtraPrinting.BorderSide.Right)
                                                                               | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrPageInfo1.Font          = new System.Drawing.Font("Times New Roman", 8F, System.Drawing.FontStyle.Italic);
     this.xrPageInfo1.LocationFloat = new DevExpress.Utils.PointFloat(233.9581F, 398.4999F);
     this.xrPageInfo1.Name          = "xrPageInfo1";
     this.xrPageInfo1.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrPageInfo1.PageInfo      = DevExpress.XtraPrinting.PageInfo.DateTime;
     this.xrPageInfo1.SizeF         = new System.Drawing.SizeF(128.8754F, 20.00003F);
     this.xrPageInfo1.StylePriority.UseBorderDashStyle = false;
     this.xrPageInfo1.StylePriority.UseBorders         = false;
     this.xrPageInfo1.StylePriority.UseFont            = false;
     this.xrPageInfo1.StylePriority.UseTextAlignment   = false;
     this.xrPageInfo1.TextAlignment    = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     this.xrPageInfo1.TextFormatString = " {0:h:mm tt; dd MMMM yyyy}";
     //
     // xrLine8
     //
     this.xrLine8.Borders                      = DevExpress.XtraPrinting.BorderSide.None;
     this.xrLine8.BorderWidth                  = 1.5F;
     this.xrLine8.LineDirection                = DevExpress.XtraReports.UI.LineDirection.Vertical;
     this.xrLine8.LocationFloat                = new DevExpress.Utils.PointFloat(70.33342F, 48.00002F);
     this.xrLine8.Name                         = "xrLine8";
     this.xrLine8.SizeF                        = new System.Drawing.SizeF(2F, 260.0833F);
     this.xrLine8.StylePriority.UseBorders     = false;
     this.xrLine8.StylePriority.UseBorderWidth = false;
     //
     // rptMixing
     //
     this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
         this.TopMargin,
         this.BottomMargin,
         this.Detail
     });
     this.Font       = new System.Drawing.Font("Arial", 9.75F);
     this.Margins    = new System.Drawing.Printing.Margins(0, 1, 0, 0);
     this.PageHeight = 693;
     this.PageWidth  = 402;
     this.PaperKind  = System.Drawing.Printing.PaperKind.PrcEnvelopeNumber2;
     this.Version    = "19.2";
     ((System.ComponentModel.ISupportInitialize)(this)).EndInit();
 }
コード例 #14
0
        private void method_0()
        {
            Code128Generator generator = new Code128Generator();

            this.detailBand_0       = new DetailBand();
            this.xrbarCode_0        = new XRBarCode();
            this.xrlabel_0          = new XRLabel();
            this.bottomMarginBand_0 = new BottomMarginBand();
            this.topMarginBand_0    = new TopMarginBand();
            this.BeginInit();
            this.detailBand_0.Controls.AddRange(new XRControl[] { this.xrlabel_0, this.xrbarCode_0 });
            this.detailBand_0.Dpi    = 254f;
            this.detailBand_0.Font   = new Font("Times New Roman", 9f, FontStyle.Bold, GraphicsUnit.Point, 0);
            this.detailBand_0.Height = 0x8a;
            this.detailBand_0.MultiColumn.ColumnCount   = 5;
            this.detailBand_0.MultiColumn.ColumnSpacing = 20f;
            this.detailBand_0.MultiColumn.ColumnWidth   = 370f;
            this.detailBand_0.MultiColumn.Direction     = ColumnDirection.AcrossThenDown;
            this.detailBand_0.MultiColumn.Mode          = MultiColumnMode.UseColumnWidth;
            this.detailBand_0.Name    = "Detail";
            this.detailBand_0.Padding = new PaddingInfo(0, 0, 0, 0, 254f);
            this.detailBand_0.RepeatCountOnEmptyDataSource = 0x37;
            this.detailBand_0.StylePriority.UseBorderWidth = false;
            this.detailBand_0.StylePriority.UseFont        = false;
            this.detailBand_0.TextAlignment = TextAlignment.TopLeft;
            this.xrbarCode_0.Alignment      = TextAlignment.MiddleCenter;
            this.xrbarCode_0.AutoModule     = true;
            this.xrbarCode_0.Dpi            = 254f;
            this.xrbarCode_0.Font           = new Font("Tahoma", 8.25f, FontStyle.Regular, GraphicsUnit.Point, 0);
            this.xrbarCode_0.Location       = new Point(3, 0x18);
            this.xrbarCode_0.Module         = 208f;
            this.xrbarCode_0.Name           = "xrBarCode1";
            this.xrbarCode_0.Padding        = new PaddingInfo(5, 0, 0, 0, 254f);
            this.xrbarCode_0.Size           = new Size(0x151, 0x56);
            this.xrbarCode_0.StylePriority.UseBorderColor   = false;
            this.xrbarCode_0.StylePriority.UseFont          = false;
            this.xrbarCode_0.StylePriority.UsePadding       = false;
            this.xrbarCode_0.StylePriority.UseTextAlignment = false;
            this.xrbarCode_0.Symbology                    = generator;
            this.xrbarCode_0.Text                         = "000003";
            this.xrbarCode_0.TextAlignment                = TextAlignment.MiddleLeft;
            this.xrlabel_0.Dpi                            = 254f;
            this.xrlabel_0.Font                           = new Font("Tahoma", 8.25f, FontStyle.Bold, GraphicsUnit.Point, 0);
            this.xrlabel_0.Location                       = new Point(0x95, 0x47);
            this.xrlabel_0.Name                           = "Txt_Price";
            this.xrlabel_0.Padding                        = new PaddingInfo(5, 5, 0, 0, 254f);
            this.xrlabel_0.Size                           = new Size(0xbc, 0x22);
            this.xrlabel_0.StylePriority.UseFont          = false;
            this.xrlabel_0.StylePriority.UseTextAlignment = false;
            this.xrlabel_0.Text                           = "Txt_Price";
            this.xrlabel_0.TextAlignment                  = TextAlignment.MiddleRight;
            this.xrlabel_0.WordWrap                       = false;
            this.bottomMarginBand_0.Dpi                   = 254f;
            this.bottomMarginBand_0.Height                = 0x530;
            this.bottomMarginBand_0.Name                  = "BottomMargin";
            this.topMarginBand_0.Dpi                      = 254f;
            this.topMarginBand_0.Height                   = 30;
            this.topMarginBand_0.Name                     = "TopMargin";
            base.Bands.AddRange(new Band[] { this.detailBand_0, this.bottomMarginBand_0, this.topMarginBand_0 });
            base.DataMember   = "tblLabelPrn";
            this.Dpi          = 254f;
            base.GridSize     = new Size(7, 7);
            base.Margins      = new Margins(0x54, 0x4f, 30, 0x530);
            base.PageHeight   = 0xb99;
            base.PageWidth    = 0x835;
            base.PaperKind    = PaperKind.A4;
            base.PaperName    = "Tom109";
            base.ReportUnit   = ReportUnit.TenthsOfAMillimeter;
            base.SnapToGrid   = false;
            base.Version      = "9.1";
            this.BeforePrint += new PrintEventHandler(this.Labels109_BeforePrint);
            this.EndInit();
        }
コード例 #15
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     DevExpress.XtraPrinting.BarCode.Code128Generator code128Generator1 = new DevExpress.XtraPrinting.BarCode.Code128Generator();
     DevExpress.XtraPrinting.BarCode.Code128Generator code128Generator2 = new DevExpress.XtraPrinting.BarCode.Code128Generator();
     this.Detail                  = new DevExpress.XtraReports.UI.DetailBand();
     this.xrTable2                = new DevExpress.XtraReports.UI.XRTable();
     this.xrTableRow3             = new DevExpress.XtraReports.UI.XRTableRow();
     this.xrTableCell19           = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell20           = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell21           = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell22           = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell23           = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell24           = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell5            = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell2            = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell25           = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell26           = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell27           = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableRow2             = new DevExpress.XtraReports.UI.XRTableRow();
     this.xrTableCell6            = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell11           = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell12           = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell13           = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell14           = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell15           = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell7            = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell3            = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell16           = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell17           = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell18           = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrBarCode1              = new DevExpress.XtraReports.UI.XRBarCode();
     this.dsReport1               = new Warehouse.OMBack.DSReport();
     this.xrBarCode2              = new DevExpress.XtraReports.UI.XRBarCode();
     this.xrLabel1                = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel11               = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel14               = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel15               = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel3                = new DevExpress.XtraReports.UI.XRLabel();
     this.dataTable1TableAdapter1 = new Warehouse.OMBack.DSReportTableAdapters.DataTable1TableAdapter();
     this.ReportHeader            = new DevExpress.XtraReports.UI.ReportHeaderBand();
     this.ReportFooter            = new DevExpress.XtraReports.UI.ReportFooterBand();
     this.xrLabel9                = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel8                = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel7                = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel6                = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel5                = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel2                = new DevExpress.XtraReports.UI.XRLabel();
     this.PageFooter              = new DevExpress.XtraReports.UI.PageFooterBand();
     this.xrPageInfo1             = new DevExpress.XtraReports.UI.XRPageInfo();
     this.PageHeader              = new DevExpress.XtraReports.UI.PageHeaderBand();
     this.xrLabel10               = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel4                = new DevExpress.XtraReports.UI.XRLabel();
     this.topMarginBand1          = new DevExpress.XtraReports.UI.TopMarginBand();
     this.bottomMarginBand1       = new DevExpress.XtraReports.UI.BottomMarginBand();
     ((System.ComponentModel.ISupportInitialize)(this.xrTable2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dsReport1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
     //
     // Detail
     //
     this.Detail.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrTable2,
         this.xrBarCode1
     });
     this.Detail.Dpi           = 254F;
     this.Detail.HeightF       = 275F;
     this.Detail.Name          = "Detail";
     this.Detail.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 254F);
     this.Detail.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // xrTable2
     //
     this.xrTable2.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                     | DevExpress.XtraPrinting.BorderSide.Right)
                                                                    | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrTable2.Dpi           = 254F;
     this.xrTable2.LocationFloat = new DevExpress.Utils.PointFloat(42F, 0F);
     this.xrTable2.Name          = "xrTable2";
     this.xrTable2.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 96F);
     this.xrTable2.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
         this.xrTableRow3,
         this.xrTableRow2
     });
     this.xrTable2.SizeF         = new System.Drawing.SizeF(2837F, 127F);
     this.xrTable2.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // xrTableRow3
     //
     this.xrTableRow3.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
         this.xrTableCell19,
         this.xrTableCell20,
         this.xrTableCell21,
         this.xrTableCell22,
         this.xrTableCell23,
         this.xrTableCell24,
         this.xrTableCell5,
         this.xrTableCell2,
         this.xrTableCell25,
         this.xrTableCell26,
         this.xrTableCell27
     });
     this.xrTableRow3.Dpi           = 254F;
     this.xrTableRow3.Name          = "xrTableRow3";
     this.xrTableRow3.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 96F);
     this.xrTableRow3.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     this.xrTableRow3.Weight        = 0.50393700787401574;
     //
     // xrTableCell19
     //
     this.xrTableCell19.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                          | DevExpress.XtraPrinting.BorderSide.Right)
                                                                         | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrTableCell19.Dpi           = 254F;
     this.xrTableCell19.Font          = new System.Drawing.Font("Times New Roman", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrTableCell19.Name          = "xrTableCell19";
     this.xrTableCell19.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 96F);
     this.xrTableCell19.Text          = "委外单号";
     this.xrTableCell19.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     this.xrTableCell19.Weight        = 0.088121254846669023;
     //
     // xrTableCell20
     //
     this.xrTableCell20.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                          | DevExpress.XtraPrinting.BorderSide.Right)
                                                                         | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrTableCell20.Dpi           = 254F;
     this.xrTableCell20.Font          = new System.Drawing.Font("Times New Roman", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrTableCell20.Name          = "xrTableCell20";
     this.xrTableCell20.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 96F);
     this.xrTableCell20.Text          = "委外单日期";
     this.xrTableCell20.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     this.xrTableCell20.Weight        = 0.081071554458935491;
     //
     // xrTableCell21
     //
     this.xrTableCell21.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                          | DevExpress.XtraPrinting.BorderSide.Right)
                                                                         | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrTableCell21.Dpi           = 254F;
     this.xrTableCell21.Font          = new System.Drawing.Font("Times New Roman", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrTableCell21.Name          = "xrTableCell21";
     this.xrTableCell21.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 96F);
     this.xrTableCell21.Text          = "存货编码";
     this.xrTableCell21.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     this.xrTableCell21.Weight        = 0.081071554458935491;
     //
     // xrTableCell22
     //
     this.xrTableCell22.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                          | DevExpress.XtraPrinting.BorderSide.Right)
                                                                         | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrTableCell22.Dpi           = 254F;
     this.xrTableCell22.Font          = new System.Drawing.Font("Times New Roman", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrTableCell22.Name          = "xrTableCell22";
     this.xrTableCell22.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 96F);
     this.xrTableCell22.Text          = "存货名称";
     this.xrTableCell22.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     this.xrTableCell22.Weight        = 0.13218188227000352;
     //
     // xrTableCell23
     //
     this.xrTableCell23.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                          | DevExpress.XtraPrinting.BorderSide.Right)
                                                                         | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrTableCell23.Dpi           = 254F;
     this.xrTableCell23.Font          = new System.Drawing.Font("Times New Roman", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrTableCell23.Name          = "xrTableCell23";
     this.xrTableCell23.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 96F);
     this.xrTableCell23.Text          = "存货代码";
     this.xrTableCell23.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     this.xrTableCell23.Weight        = 0.095523440253789213;
     //
     // xrTableCell24
     //
     this.xrTableCell24.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                          | DevExpress.XtraPrinting.BorderSide.Right)
                                                                         | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrTableCell24.Dpi           = 254F;
     this.xrTableCell24.Font          = new System.Drawing.Font("Times New Roman", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrTableCell24.Name          = "xrTableCell24";
     this.xrTableCell24.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 96F);
     this.xrTableCell24.Text          = "规格型号";
     this.xrTableCell24.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     this.xrTableCell24.Weight        = 0.0736693690518153;
     //
     // xrTableCell5
     //
     this.xrTableCell5.Dpi           = 254F;
     this.xrTableCell5.Font          = new System.Drawing.Font("Times New Roman", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrTableCell5.Name          = "xrTableCell5";
     this.xrTableCell5.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 96F);
     this.xrTableCell5.Text          = "外销单号";
     this.xrTableCell5.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     this.xrTableCell5.Weight        = 0.065914698625308424;
     //
     // xrTableCell2
     //
     this.xrTableCell2.Dpi           = 254F;
     this.xrTableCell2.Font          = new System.Drawing.Font("Times New Roman", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrTableCell2.Name          = "xrTableCell2";
     this.xrTableCell2.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 96F);
     this.xrTableCell2.Text          = "订单数量";
     this.xrTableCell2.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     this.xrTableCell2.Weight        = 0.10151568558336271;
     //
     // xrTableCell25
     //
     this.xrTableCell25.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                          | DevExpress.XtraPrinting.BorderSide.Right)
                                                                         | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrTableCell25.Dpi           = 254F;
     this.xrTableCell25.Font          = new System.Drawing.Font("Times New Roman", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrTableCell25.Name          = "xrTableCell25";
     this.xrTableCell25.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 96F);
     this.xrTableCell25.Text          = "委外余量";
     this.xrTableCell25.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     this.xrTableCell25.Weight        = 0.10433556573845612;
     //
     // xrTableCell26
     //
     this.xrTableCell26.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                          | DevExpress.XtraPrinting.BorderSide.Right)
                                                                         | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrTableCell26.Dpi           = 254F;
     this.xrTableCell26.Font          = new System.Drawing.Font("Times New Roman", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrTableCell26.Name          = "xrTableCell26";
     this.xrTableCell26.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 96F);
     this.xrTableCell26.Text          = "退货数量";
     this.xrTableCell26.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     this.xrTableCell26.Weight        = 0.094465985195629182;
     //
     // xrTableCell27
     //
     this.xrTableCell27.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                          | DevExpress.XtraPrinting.BorderSide.Right)
                                                                         | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrTableCell27.Dpi           = 254F;
     this.xrTableCell27.Font          = new System.Drawing.Font("Times New Roman", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrTableCell27.Name          = "xrTableCell27";
     this.xrTableCell27.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 96F);
     this.xrTableCell27.Text          = "退货套数";
     this.xrTableCell27.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     this.xrTableCell27.Weight        = 0.082129009517095522;
     //
     // xrTableRow2
     //
     this.xrTableRow2.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
         this.xrTableCell6,
         this.xrTableCell11,
         this.xrTableCell12,
         this.xrTableCell13,
         this.xrTableCell14,
         this.xrTableCell15,
         this.xrTableCell7,
         this.xrTableCell3,
         this.xrTableCell16,
         this.xrTableCell17,
         this.xrTableCell18
     });
     this.xrTableRow2.Dpi           = 254F;
     this.xrTableRow2.Name          = "xrTableRow2";
     this.xrTableRow2.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 96F);
     this.xrTableRow2.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     this.xrTableRow2.Weight        = 0.49606299212598426;
     //
     // xrTableCell6
     //
     this.xrTableCell6.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "DataTable1.cCode")
     });
     this.xrTableCell6.Dpi           = 254F;
     this.xrTableCell6.Font          = new System.Drawing.Font("Times New Roman", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrTableCell6.Name          = "xrTableCell6";
     this.xrTableCell6.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 96F);
     this.xrTableCell6.Text          = "委外单号";
     this.xrTableCell6.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     this.xrTableCell6.Weight        = 0.088121254846669023;
     //
     // xrTableCell11
     //
     this.xrTableCell11.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "DataTable1.dDate")
     });
     this.xrTableCell11.Dpi           = 254F;
     this.xrTableCell11.Font          = new System.Drawing.Font("Times New Roman", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrTableCell11.Name          = "xrTableCell11";
     this.xrTableCell11.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 96F);
     this.xrTableCell11.Text          = "委外单日期";
     this.xrTableCell11.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     this.xrTableCell11.Weight        = 0.081071554458935491;
     //
     // xrTableCell12
     //
     this.xrTableCell12.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "DataTable1.cInvCode")
     });
     this.xrTableCell12.Dpi           = 254F;
     this.xrTableCell12.Font          = new System.Drawing.Font("Times New Roman", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrTableCell12.Name          = "xrTableCell12";
     this.xrTableCell12.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 96F);
     this.xrTableCell12.Text          = "存货编码";
     this.xrTableCell12.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     this.xrTableCell12.Weight        = 0.081071554458935491;
     //
     // xrTableCell13
     //
     this.xrTableCell13.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "DataTable1.cInvName")
     });
     this.xrTableCell13.Dpi           = 254F;
     this.xrTableCell13.Font          = new System.Drawing.Font("Times New Roman", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrTableCell13.Name          = "xrTableCell13";
     this.xrTableCell13.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 96F);
     this.xrTableCell13.Text          = "存货名称";
     this.xrTableCell13.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     this.xrTableCell13.Weight        = 0.13218188227000352;
     //
     // xrTableCell14
     //
     this.xrTableCell14.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "DataTable1.cInvAddCode")
     });
     this.xrTableCell14.Dpi           = 254F;
     this.xrTableCell14.Font          = new System.Drawing.Font("Times New Roman", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrTableCell14.Name          = "xrTableCell14";
     this.xrTableCell14.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 96F);
     this.xrTableCell14.Text          = "存货代码";
     this.xrTableCell14.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     this.xrTableCell14.Weight        = 0.095523440253789213;
     //
     // xrTableCell15
     //
     this.xrTableCell15.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "DataTable1.cInvStd")
     });
     this.xrTableCell15.Dpi           = 254F;
     this.xrTableCell15.Font          = new System.Drawing.Font("Times New Roman", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrTableCell15.Name          = "xrTableCell15";
     this.xrTableCell15.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 96F);
     this.xrTableCell15.Text          = "规格型号";
     this.xrTableCell15.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     this.xrTableCell15.Weight        = 0.0736693690518153;
     //
     // xrTableCell7
     //
     this.xrTableCell7.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                         | DevExpress.XtraPrinting.BorderSide.Right)
                                                                        | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrTableCell7.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "DataTable1.MOMaterialsID")
     });
     this.xrTableCell7.Dpi           = 254F;
     this.xrTableCell7.Font          = new System.Drawing.Font("Times New Roman", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrTableCell7.Name          = "xrTableCell7";
     this.xrTableCell7.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 96F);
     this.xrTableCell7.Text          = "外销单号";
     this.xrTableCell7.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
     this.xrTableCell7.Weight        = 0.066972153683468455;
     //
     // xrTableCell3
     //
     this.xrTableCell3.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                         | DevExpress.XtraPrinting.BorderSide.Right)
                                                                        | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrTableCell3.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "DataTable1.UnitQty")
     });
     this.xrTableCell3.Dpi           = 254F;
     this.xrTableCell3.Font          = new System.Drawing.Font("Times New Roman", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrTableCell3.Name          = "xrTableCell3";
     this.xrTableCell3.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 96F);
     this.xrTableCell3.Text          = "订单数量";
     this.xrTableCell3.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
     this.xrTableCell3.Weight        = 0.10116320056397603;
     //
     // xrTableCell16
     //
     this.xrTableCell16.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "DataTable1.RemainQty")
     });
     this.xrTableCell16.Dpi           = 254F;
     this.xrTableCell16.Font          = new System.Drawing.Font("Times New Roman", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrTableCell16.Name          = "xrTableCell16";
     this.xrTableCell16.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 96F);
     this.xrTableCell16.Text          = "委外数量";
     this.xrTableCell16.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
     this.xrTableCell16.Weight        = 0.10292562566090942;
     //
     // xrTableCell17
     //
     this.xrTableCell17.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "DataTable1.BackQty")
     });
     this.xrTableCell17.Dpi           = 254F;
     this.xrTableCell17.Font          = new System.Drawing.Font("Times New Roman", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrTableCell17.Name          = "xrTableCell17";
     this.xrTableCell17.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 96F);
     this.xrTableCell17.Text          = "退货数量";
     this.xrTableCell17.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
     this.xrTableCell17.Weight        = 0.096933380331335917;
     //
     // xrTableCell18
     //
     this.xrTableCell18.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "DataTable1.BackUnitQty")
     });
     this.xrTableCell18.Dpi           = 254F;
     this.xrTableCell18.Font          = new System.Drawing.Font("Times New Roman", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrTableCell18.Name          = "xrTableCell18";
     this.xrTableCell18.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 96F);
     this.xrTableCell18.Text          = "退货套数";
     this.xrTableCell18.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
     this.xrTableCell18.Weight        = 0.080366584420162146;
     //
     // xrBarCode1
     //
     this.xrBarCode1.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "DataTable1.BarCode")
     });
     this.xrBarCode1.Dpi           = 254F;
     this.xrBarCode1.Font          = new System.Drawing.Font("Times New Roman", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrBarCode1.LocationFloat = new DevExpress.Utils.PointFloat(85F, 127F);
     this.xrBarCode1.Module        = 3.5F;
     this.xrBarCode1.Name          = "xrBarCode1";
     this.xrBarCode1.Padding       = new DevExpress.XtraPrinting.PaddingInfo(66, 66, 0, 0, 254F);
     this.xrBarCode1.SizeF         = new System.Drawing.SizeF(2772F, 148F);
     this.xrBarCode1.Symbology     = code128Generator1;
     //
     // dsReport1
     //
     this.dsReport1.DataSetName             = "DSReport";
     this.dsReport1.SchemaSerializationMode = System.Data.SchemaSerializationMode.IncludeSchema;
     //
     // xrBarCode2
     //
     this.xrBarCode2.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "DataTable1.Row_Count")
     });
     this.xrBarCode2.Dpi           = 254F;
     this.xrBarCode2.LocationFloat = new DevExpress.Utils.PointFloat(2059.458F, 74.00001F);
     this.xrBarCode2.Module        = 5.08F;
     this.xrBarCode2.Name          = "xrBarCode2";
     this.xrBarCode2.Padding       = new DevExpress.XtraPrinting.PaddingInfo(66, 66, 0, 0, 254F);
     this.xrBarCode2.SizeF         = new System.Drawing.SizeF(529F, 148F);
     this.xrBarCode2.Symbology     = code128Generator2;
     //
     // xrLabel1
     //
     this.xrLabel1.Dpi           = 254F;
     this.xrLabel1.Font          = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.xrLabel1.LocationFloat = new DevExpress.Utils.PointFloat(1931.458F, 134F);
     this.xrLabel1.Name          = "xrLabel1";
     this.xrLabel1.Padding       = new DevExpress.XtraPrinting.PaddingInfo(5, 5, 0, 0, 254F);
     this.xrLabel1.SizeF         = new System.Drawing.SizeF(128F, 63F);
     this.xrLabel1.Text          = "总行数";
     this.xrLabel1.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // xrLabel11
     //
     this.xrLabel11.Dpi           = 254F;
     this.xrLabel11.Font          = new System.Drawing.Font("宋体", 18F, System.Drawing.FontStyle.Bold);
     this.xrLabel11.LocationFloat = new DevExpress.Utils.PointFloat(1101F, 42F);
     this.xrLabel11.Name          = "xrLabel11";
     this.xrLabel11.Padding       = new DevExpress.XtraPrinting.PaddingInfo(5, 5, 0, 0, 254F);
     this.xrLabel11.SizeF         = new System.Drawing.SizeF(655F, 84F);
     this.xrLabel11.Text          = "委外材料退回";
     this.xrLabel11.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     //
     // xrLabel14
     //
     this.xrLabel14.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "DataTable1.cVenCode")
     });
     this.xrLabel14.Dpi           = 254F;
     this.xrLabel14.Font          = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.xrLabel14.LocationFloat = new DevExpress.Utils.PointFloat(190F, 148F);
     this.xrLabel14.Name          = "xrLabel14";
     this.xrLabel14.Padding       = new DevExpress.XtraPrinting.PaddingInfo(5, 5, 0, 0, 254F);
     this.xrLabel14.SizeF         = new System.Drawing.SizeF(233F, 64F);
     this.xrLabel14.Text          = "xrLabel13";
     this.xrLabel14.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // xrLabel15
     //
     this.xrLabel15.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "DataTable1.cVenName")
     });
     this.xrLabel15.Dpi           = 254F;
     this.xrLabel15.Font          = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.xrLabel15.LocationFloat = new DevExpress.Utils.PointFloat(423F, 148F);
     this.xrLabel15.Name          = "xrLabel15";
     this.xrLabel15.Padding       = new DevExpress.XtraPrinting.PaddingInfo(5, 5, 0, 0, 254F);
     this.xrLabel15.SizeF         = new System.Drawing.SizeF(508F, 64F);
     this.xrLabel15.Text          = "xrLabel13";
     this.xrLabel15.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // xrLabel3
     //
     this.xrLabel3.Dpi           = 254F;
     this.xrLabel3.Font          = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.xrLabel3.LocationFloat = new DevExpress.Utils.PointFloat(42F, 148F);
     this.xrLabel3.Name          = "xrLabel3";
     this.xrLabel3.Padding       = new DevExpress.XtraPrinting.PaddingInfo(5, 5, 0, 0, 254F);
     this.xrLabel3.SizeF         = new System.Drawing.SizeF(149F, 64F);
     this.xrLabel3.Text          = "供应商:";
     this.xrLabel3.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // dataTable1TableAdapter1
     //
     this.dataTable1TableAdapter1.ClearBeforeFill = true;
     //
     // ReportHeader
     //
     this.ReportHeader.Dpi           = 254F;
     this.ReportHeader.HeightF       = 0F;
     this.ReportHeader.Name          = "ReportHeader";
     this.ReportHeader.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 254F);
     this.ReportHeader.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // ReportFooter
     //
     this.ReportFooter.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrLabel9,
         this.xrLabel8,
         this.xrLabel7,
         this.xrLabel6,
         this.xrLabel5,
         this.xrLabel2
     });
     this.ReportFooter.Dpi           = 254F;
     this.ReportFooter.HeightF       = 87F;
     this.ReportFooter.Name          = "ReportFooter";
     this.ReportFooter.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 254F);
     this.ReportFooter.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // xrLabel9
     //
     this.xrLabel9.Dpi           = 254F;
     this.xrLabel9.Font          = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.xrLabel9.LocationFloat = new DevExpress.Utils.PointFloat(1714F, 21F);
     this.xrLabel9.Name          = "xrLabel9";
     this.xrLabel9.Padding       = new DevExpress.XtraPrinting.PaddingInfo(5, 5, 0, 0, 254F);
     this.xrLabel9.SizeF         = new System.Drawing.SizeF(234F, 64F);
     this.xrLabel9.Text          = "收货人:";
     this.xrLabel9.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // xrLabel8
     //
     this.xrLabel8.Dpi           = 254F;
     this.xrLabel8.Font          = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.xrLabel8.LocationFloat = new DevExpress.Utils.PointFloat(1398F, 19.99999F);
     this.xrLabel8.Name          = "xrLabel8";
     this.xrLabel8.Padding       = new DevExpress.XtraPrinting.PaddingInfo(5, 5, 0, 0, 254F);
     this.xrLabel8.SizeF         = new System.Drawing.SizeF(234F, 64F);
     this.xrLabel8.Text          = "送货人:";
     this.xrLabel8.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // xrLabel7
     //
     this.xrLabel7.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "DataTable1.MakeDate")
     });
     this.xrLabel7.Dpi           = 254F;
     this.xrLabel7.Font          = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.xrLabel7.LocationFloat = new DevExpress.Utils.PointFloat(1026.25F, 21.00001F);
     this.xrLabel7.Name          = "xrLabel7";
     this.xrLabel7.Padding       = new DevExpress.XtraPrinting.PaddingInfo(5, 5, 0, 0, 254F);
     this.xrLabel7.SizeF         = new System.Drawing.SizeF(329.7501F, 64F);
     this.xrLabel7.Text          = "xrLabel13";
     this.xrLabel7.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // xrLabel6
     //
     this.xrLabel6.Dpi           = 254F;
     this.xrLabel6.Font          = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.xrLabel6.LocationFloat = new DevExpress.Utils.PointFloat(783F, 21.00001F);
     this.xrLabel6.Name          = "xrLabel6";
     this.xrLabel6.Padding       = new DevExpress.XtraPrinting.PaddingInfo(5, 5, 0, 0, 254F);
     this.xrLabel6.SizeF         = new System.Drawing.SizeF(164.2083F, 64F);
     this.xrLabel6.Text          = "制单日期:";
     this.xrLabel6.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // xrLabel5
     //
     this.xrLabel5.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "DataTable1.MakerName")
     });
     this.xrLabel5.Dpi           = 254F;
     this.xrLabel5.Font          = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.xrLabel5.LocationFloat = new DevExpress.Utils.PointFloat(338F, 20F);
     this.xrLabel5.Name          = "xrLabel5";
     this.xrLabel5.Padding       = new DevExpress.XtraPrinting.PaddingInfo(5, 5, 0, 0, 254F);
     this.xrLabel5.SizeF         = new System.Drawing.SizeF(424F, 64F);
     this.xrLabel5.Text          = "xrLabel13";
     this.xrLabel5.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // xrLabel2
     //
     this.xrLabel2.Dpi           = 254F;
     this.xrLabel2.Font          = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.xrLabel2.LocationFloat = new DevExpress.Utils.PointFloat(107F, 19.99999F);
     this.xrLabel2.Name          = "xrLabel2";
     this.xrLabel2.Padding       = new DevExpress.XtraPrinting.PaddingInfo(5, 5, 0, 0, 254F);
     this.xrLabel2.SizeF         = new System.Drawing.SizeF(211.8333F, 64F);
     this.xrLabel2.Text          = "制单人:";
     this.xrLabel2.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // PageFooter
     //
     this.PageFooter.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrPageInfo1
     });
     this.PageFooter.Dpi           = 254F;
     this.PageFooter.HeightF       = 69F;
     this.PageFooter.Name          = "PageFooter";
     this.PageFooter.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 254F);
     this.PageFooter.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // xrPageInfo1
     //
     this.xrPageInfo1.Dpi           = 254F;
     this.xrPageInfo1.LocationFloat = new DevExpress.Utils.PointFloat(1672F, 0F);
     this.xrPageInfo1.Name          = "xrPageInfo1";
     this.xrPageInfo1.Padding       = new DevExpress.XtraPrinting.PaddingInfo(5, 5, 0, 0, 254F);
     this.xrPageInfo1.SizeF         = new System.Drawing.SizeF(254F, 64F);
     this.xrPageInfo1.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // PageHeader
     //
     this.PageHeader.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrLabel10,
         this.xrLabel4,
         this.xrLabel1,
         this.xrBarCode2,
         this.xrLabel15,
         this.xrLabel3,
         this.xrLabel14,
         this.xrLabel11
     });
     this.PageHeader.Dpi           = 254F;
     this.PageHeader.HeightF       = 222F;
     this.PageHeader.Name          = "PageHeader";
     this.PageHeader.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 254F);
     this.PageHeader.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // xrLabel10
     //
     this.xrLabel10.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "DataTable1.dBackSum")
     });
     this.xrLabel10.Dpi           = 254F;
     this.xrLabel10.Font          = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.xrLabel10.LocationFloat = new DevExpress.Utils.PointFloat(2780.396F, 134F);
     this.xrLabel10.Name          = "xrLabel10";
     this.xrLabel10.Padding       = new DevExpress.XtraPrinting.PaddingInfo(5, 5, 0, 0, 254F);
     this.xrLabel10.SizeF         = new System.Drawing.SizeF(146.521F, 63F);
     this.xrLabel10.Text          = "xrLabel10";
     this.xrLabel10.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // xrLabel4
     //
     this.xrLabel4.Dpi           = 254F;
     this.xrLabel4.Font          = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.xrLabel4.LocationFloat = new DevExpress.Utils.PointFloat(2588.458F, 134F);
     this.xrLabel4.Name          = "xrLabel4";
     this.xrLabel4.Padding       = new DevExpress.XtraPrinting.PaddingInfo(5, 5, 0, 0, 254F);
     this.xrLabel4.SizeF         = new System.Drawing.SizeF(167.6875F, 63F);
     this.xrLabel4.Text          = "退货总数";
     this.xrLabel4.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // topMarginBand1
     //
     this.topMarginBand1.Dpi     = 254F;
     this.topMarginBand1.HeightF = 0F;
     this.topMarginBand1.Name    = "topMarginBand1";
     //
     // bottomMarginBand1
     //
     this.bottomMarginBand1.Dpi     = 254F;
     this.bottomMarginBand1.HeightF = 0F;
     this.bottomMarginBand1.Name    = "bottomMarginBand1";
     //
     // SubReport
     //
     this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
         this.Detail,
         this.ReportHeader,
         this.ReportFooter,
         this.PageFooter,
         this.PageHeader,
         this.topMarginBand1,
         this.bottomMarginBand1
     });
     this.DataAdapter = this.dataTable1TableAdapter1;
     this.DataMember  = "DataTable1";
     this.DataSource  = this.dsReport1;
     this.Dpi         = 254F;
     this.Landscape   = true;
     this.Margins     = new System.Drawing.Printing.Margins(3, 3, 0, 0);
     this.PageHeight  = 2101;
     this.PageWidth   = 2969;
     this.PaperKind   = System.Drawing.Printing.PaperKind.A4;
     this.ReportUnit  = DevExpress.XtraReports.UI.ReportUnit.TenthsOfAMillimeter;
     this.Version     = "11.2";
     ((System.ComponentModel.ISupportInitialize)(this.xrTable2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dsReport1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this)).EndInit();
 }
コード例 #16
0
        private void method_0()
        {
            Code128Generator generator = new Code128Generator();

            this.detailBand_0       = new DetailBand();
            this.xrlabel_0          = new XRLabel();
            this.xrbarCode_0        = new XRBarCode();
            this.xrtable_0          = new XRTable();
            this.xrtableRow_0       = new XRTableRow();
            this.xrtableCell_0      = new XRTableCell();
            this.xrtableRow_1       = new XRTableRow();
            this.xrtableCell_1      = new XRTableCell();
            this.bottomMarginBand_0 = new BottomMarginBand();
            this.topMarginBand_0    = new TopMarginBand();
            this.xrtable_0.BeginInit();
            this.BeginInit();
            this.detailBand_0.Controls.AddRange(new XRControl[] { this.xrlabel_0, this.xrbarCode_0, this.xrtable_0 });
            this.detailBand_0.Dpi    = 254f;
            this.detailBand_0.Height = 160;
            this.detailBand_0.MultiColumn.ColumnCount   = 6;
            this.detailBand_0.MultiColumn.ColumnSpacing = 16f;
            this.detailBand_0.MultiColumn.ColumnWidth   = 360f;
            this.detailBand_0.MultiColumn.Direction     = ColumnDirection.AcrossThenDown;
            this.detailBand_0.MultiColumn.Mode          = MultiColumnMode.UseColumnCount;
            this.detailBand_0.Name    = "Detail";
            this.detailBand_0.Padding = new PaddingInfo(0, 0, 0, 0, 254f);
            this.detailBand_0.RepeatCountOnEmptyDataSource = 90;
            this.detailBand_0.StylePriority.UseBorderWidth = false;
            this.detailBand_0.StylePriority.UseFont        = false;
            this.detailBand_0.TextAlignment = TextAlignment.TopLeft;
            this.xrlabel_0.Dpi      = 254f;
            this.xrlabel_0.Font     = new Font("Times New Roman", 9f, FontStyle.Bold, GraphicsUnit.Point, 0);
            this.xrlabel_0.Location = new Point(2, 0);
            this.xrlabel_0.Name     = "Lbl_Name";
            this.xrlabel_0.Padding  = new PaddingInfo(0, 0, 0, 0, 254f);
            this.xrlabel_0.Size     = new Size(0x145, 0x1c);
            this.xrlabel_0.StylePriority.UseFont          = false;
            this.xrlabel_0.StylePriority.UsePadding       = false;
            this.xrlabel_0.StylePriority.UseTextAlignment = false;
            this.xrlabel_0.Text          = "Bella";
            this.xrlabel_0.TextAlignment = TextAlignment.MiddleCenter;
            this.xrbarCode_0.Alignment   = TextAlignment.MiddleCenter;
            this.xrbarCode_0.AutoModule  = true;
            this.xrbarCode_0.Dpi         = 254f;
            this.xrbarCode_0.Font        = new Font("Tahoma", 8.25f, FontStyle.Bold, GraphicsUnit.Point, 0);
            this.xrbarCode_0.Location    = new Point(0x29, 0x21);
            this.xrbarCode_0.Module      = 208f;
            this.xrbarCode_0.Name        = "xrBarCode1";
            this.xrbarCode_0.Padding     = new PaddingInfo(0, 0, 0, 0, 254f);
            this.xrbarCode_0.Size        = new Size(0xfd, 0x4f);
            this.xrbarCode_0.StylePriority.UseBorderColor   = false;
            this.xrbarCode_0.StylePriority.UseFont          = false;
            this.xrbarCode_0.StylePriority.UsePadding       = false;
            this.xrbarCode_0.StylePriority.UseTextAlignment = false;
            this.xrbarCode_0.Symbology     = generator;
            this.xrbarCode_0.Text          = "000002";
            this.xrbarCode_0.TextAlignment = TextAlignment.MiddleCenter;
            this.xrtable_0.Dpi             = 254f;
            this.xrtable_0.Location        = new Point(3, 0x66);
            this.xrtable_0.Name            = "xrTable1";
            this.xrtable_0.Rows.AddRange(new XRTableRow[] { this.xrtableRow_0, this.xrtableRow_1 });
            this.xrtable_0.Size = new Size(0x144, 0x34);
            this.xrtableRow_0.Cells.AddRange(new XRTableCell[] { this.xrtableCell_0 });
            this.xrtableRow_0.Dpi    = 254f;
            this.xrtableRow_0.Name   = "xrTableRow1";
            this.xrtableRow_0.Weight = 1.0;
            this.xrtableCell_0.Dpi   = 254f;
            this.xrtableCell_0.Font  = new Font("Times New Roman", 8.25f, FontStyle.Regular, GraphicsUnit.Point, 0);
            this.xrtableCell_0.Name  = "Txt_MercName";
            this.xrtableCell_0.StylePriority.UseFont          = false;
            this.xrtableCell_0.StylePriority.UseTextAlignment = false;
            this.xrtableCell_0.Text          = "Txt_MercName";
            this.xrtableCell_0.TextAlignment = TextAlignment.BottomCenter;
            this.xrtableCell_0.Weight        = 1.8070866141732305;
            this.xrtableCell_0.WordWrap      = false;
            this.xrtableRow_1.Cells.AddRange(new XRTableCell[] { this.xrtableCell_1 });
            this.xrtableRow_1.Dpi      = 254f;
            this.xrtableRow_1.Name     = "xrTableRow2";
            this.xrtableRow_1.Weight   = 1.0;
            this.xrtableCell_1.Dpi     = 254f;
            this.xrtableCell_1.Font    = new Font("Tahoma", 6.75f, FontStyle.Bold, GraphicsUnit.Point, 0);
            this.xrtableCell_1.Name    = "Txt_Price";
            this.xrtableCell_1.Padding = new PaddingInfo(0, 7, 0, 0, 254f);
            this.xrtableCell_1.StylePriority.UseFont          = false;
            this.xrtableCell_1.StylePriority.UsePadding       = false;
            this.xrtableCell_1.StylePriority.UseTextAlignment = false;
            this.xrtableCell_1.Text          = "Txt_Price";
            this.xrtableCell_1.TextAlignment = TextAlignment.TopRight;
            this.xrtableCell_1.Weight        = 1.8070866141732305;
            this.xrtableCell_1.WordWrap      = false;
            this.bottomMarginBand_0.Dpi      = 254f;
            this.bottomMarginBand_0.Height   = 20;
            this.bottomMarginBand_0.Name     = "BottomMargin";
            this.topMarginBand_0.Dpi         = 254f;
            this.topMarginBand_0.Height      = 20;
            this.topMarginBand_0.Name        = "TopMargin";
            base.Bands.AddRange(new Band[] { this.detailBand_0, this.bottomMarginBand_0, this.topMarginBand_0 });
            this.Dpi                  = 254f;
            base.GridSize             = new Size(7, 7);
            base.Margins              = new Margins(20, 20, 20, 20);
            base.Name                 = "KitLabelsA4";
            base.PageHeight           = 0xb99;
            base.PageWidth            = 0x835;
            base.PaperKind            = PaperKind.A4;
            base.PaperName            = "TJ108";
            base.ReportUnit           = ReportUnit.TenthsOfAMillimeter;
            base.ShowPrintingWarnings = false;
            base.SnapToGrid           = false;
            base.Version              = "9.1";
            this.BeforePrint         += new PrintEventHandler(this.KitLabelsA4_BeforePrint);
            this.xrtable_0.EndInit();
            this.EndInit();
        }
コード例 #17
0
        private void Print(DataTable dt, bool preview)
        {
            if (dt == null)
            {
                return;
            }

            XOrderCard r = null;

            try
            {
                if (dt.Rows.Count > 0)
                {
                    //using (new Impersonator("myUsername", "myDomainname", "myPassword"))
                    //{
                    r = new XOrderCard();

                    r.RequestParameters = false;
                    r.DataSource        = dt;

                    XRLabel   lblOrderNo01    = (XRLabel)Find(r, "lblOrderNo01");
                    XRLabel   lblOrderNo02    = (XRLabel)Find(r, "lblOrderNo02");
                    XRBarCode bcOrderNo01     = (XRBarCode)Find(r, "bcOrderNo01");
                    XRBarCode bcOrderNo02     = (XRBarCode)Find(r, "bcOrderNo02");
                    XRLabel   lblShippingName = (XRLabel)Find(r, "lblShippingName");
                    XRLabel   lblPoOrderNo01  = (XRLabel)Find(r, "lblPoOrderNo01");

                    XRLabel   lblArtNo           = (XRLabel)Find(r, "lblArtNo");
                    XRLabel   lblProdDate01      = (XRLabel)Find(r, "lblProdDate01");
                    XRLabel   lblProdDate02      = (XRLabel)Find(r, "lblProdDate02");
                    XRLabel   lblOrder           = (XRLabel)Find(r, "lblOrder");
                    XRLabel   lblSize            = (XRLabel)Find(r, "lblSize");
                    XRLabel   lblColor           = (XRLabel)Find(r, "lblColor");
                    XRLabel   lblProductionOrder = (XRLabel)Find(r, "lblProductionOrder");
                    XRLabel   lblCountryOfSale   = (XRLabel)Find(r, "lblCountryOfSale");
                    XRLabel   lblMatLen          = (XRLabel)Find(r, "lblMatLen");
                    XRLabel   lblSystemCode      = (XRLabel)Find(r, "lblSystemCode");
                    XRLabel   lblMatBatchNo      = (XRLabel)Find(r, "lblMatBatchNo");
                    XRBarCode bcMatBatchNo       = (XRBarCode)Find(r, "bcMatBatchNo");
                    XRBarCode bcMatBatchNoBar128 = (XRBarCode)Find(r, "bcMatBatchNoBar128");
                    XRLabel   lblMatSeuren       = (XRLabel)Find(r, "lblMatSeuren");
                    XRLabel   lblRate            = (XRLabel)Find(r, "lblRate");
                    XRLabel   lblMcNo            = (XRLabel)Find(r, "lblMcNo");
                    XRLabel   lblDay             = (XRLabel)Find(r, "lblDay");
                    XRLabel   lblMonth           = (XRLabel)Find(r, "lblMonth");
                    XRLabel   lblYear            = (XRLabel)Find(r, "lblYear");
                    XRLabel   xrLabel45          = (XRLabel)Find(r, "xrLabel45");
                    XRLabel   lblTestPoint       = (XRLabel)Find(r, "lblTestPoint");
                    XRLabel   lblPattern         = (XRLabel)Find(r, "lblPattern");

                    XRLabel textFabTemp = (XRLabel)Find(r, "TextFab");



                    BindReportControl(lblOrderNo01, dt, "UNIK01");
                    BindReportControl(lblOrderNo02, dt, "UNIK01");
                    BindReportControl(bcOrderNo01, dt, "UNIK01");
                    BindReportControl(bcOrderNo02, dt, "UNIK01");
                    BindReportControl(lblPoOrderNo01, dt, "UNIK28");
                    BindReportControl(lblArtNo, dt, "UNIK05");
                    BindReportControl(lblProdDate01, dt, "UNIK02");
                    BindReportControl(lblProdDate02, dt, "UNIK02");
                    BindReportControl(lblOrder, dt, "UNIK04");
                    BindReportControl(lblSize, dt, "UNIK07");
                    BindReportControl(lblColor, dt, "UNIK06");
                    BindReportControl(lblProductionOrder, dt, "UNIK04");
                    BindReportControl(lblCountryOfSale, dt, "UNIK29");
                    BindReportControl(lblMatLen, dt, "UNIK22");
                    BindReportControl(lblSystemCode, dt, "UNIK08");
                    BindReportControl(lblMatBatchNo, dt, "UNIK20");
                    BindReportControl(bcMatBatchNo, dt, "UNIK20");
                    BindReportControl(bcMatBatchNoBar128, dt, "UNIK20");
                    BindReportControl(lblMatSeuren, dt, "UNIK23");
                    BindReportControl(lblRate, dt, "UNIK21");
                    BindReportControl(lblMcNo, dt, "UNIK03");
                    BindReportControl(xrLabel45, dt, "UNNAME01");
                    BindReportControl(lblTestPoint, dt, "TEST_POINTS");
                    BindReportControl(lblPattern, dt, "PATTERN");
                    BindReportControl(textFabTemp, dt, "UNIK20");
                    //BindReportControl(lblShippingName, dt, "LAST_ORDER");

                    if (lblDay != null)
                    {
                        lblDay.Text = DateTime.Now.ToString("dd");
                    }
                    if (lblMonth != null)
                    {
                        lblMonth.Text = DateTime.Now.ToString("MM");
                    }
                    if (lblYear != null)
                    {
                        lblYear.Text = DateTime.Now.ToString("yy");
                    }

                    int          use_water_mask = ini.ReadInteger("Settings", "UseWaterMask", 1);
                    XRPictureBox water_mask     = (XRPictureBox)Find(r, "xrPictureBox1") as XRPictureBox;
                    if (use_water_mask == 0)
                    {
                        if (water_mask != null)
                        {
                            water_mask.Visible = false;
                        }
                    }
                    else
                    {
                        if (water_mask != null)
                        {
                            water_mask.Visible = true;
                        }
                    }

                    if (preview)
                    {
                        PrintingSystemCommand[] command =
                        {
                            PrintingSystemCommand.Print,
                            PrintingSystemCommand.PrintDirect
                        };
                        r.PrintingSystem.SetCommandVisibility(command, CommandVisibility.None);
                        r.DefaultPrinterSettingsUsing.UsePaperKind = false;
                        r.PaperKind = PaperKind.Custom;
                        r.PaperName = CUSTOM_PAPER_NAME;
                        r.PageSize  = new Size(CUSTOM_PAPER_HIGH, CUSTOM_PAPER_WIDTH);
                        r.ShowPreview();
                    }
                    else
                    {
                        if (string.IsNullOrEmpty(PRINTER))
                        {
                            r.DefaultPrinterSettingsUsing.UsePaperKind = true;
                            r.Print();
                        }
                        else
                        {
                            r.DefaultPrinterSettingsUsing.UsePaperKind = false;
                            r.PaperKind = PaperKind.Custom;
                            r.PaperName = CUSTOM_PAPER_NAME;
                            r.PageSize  = new Size(CUSTOM_PAPER_HIGH, CUSTOM_PAPER_WIDTH);
                            r.PrintingSystem.StartPrint += new DevExpress.XtraPrinting.PrintDocumentEventHandler(PrintingSystem_StartPrint);
                            r.Print(PRINTER);
                        }
                    }
                }
                else
                {
                    MessageBox.Show("No result from DB!");
                }
            }
            catch (Exception x)
            {
                MessageBox.Show(x.Message);
            }
        }
コード例 #18
0
        private XRBarCode CreateBarCode(BarCodeTypes Type)
        {
            XRBarCode barCode = null;

            switch (Type)
            {
            case BarCodeTypes.Codabar:
                barCode = CreateCodabarBarCode("0123-456789");
                break;

            case BarCodeTypes.Code11:
                barCode = CreateCode11BarCode("0123-456789");
                break;

            case BarCodeTypes.Code39:
                barCode = CreateCode39BarCode("01234-ABCD");
                break;

            case BarCodeTypes.Code39Extended:
                barCode = CreateCode39ExBarCode("012-Abc");
                break;

            case BarCodeTypes.Code93:
                barCode = CreateCode93BarCode("01234-ABCD");
                break;

            case BarCodeTypes.Code93Extended:
                barCode = CreateCode93ExBarCode("012-Abc");
                break;

            case BarCodeTypes.Code128:
                barCode = CreateCode128BarCode("01234-ABcd");
                break;

            case BarCodeTypes.EAN8:
                barCode = CreateEAN8BarCode("01234567");
                break;

            case BarCodeTypes.EAN13:
                barCode = CreateEAN13BarCode("0123456789");
                break;

            case BarCodeTypes.GS1128:
                barCode = CreateGS1128BarCode("01234-Abcd");
                break;

            case BarCodeTypes.GS1DataBar:
                barCode = CreateDataBarGS1BarCode("01906141410000153202000150");
                break;

            case BarCodeTypes.DataMatrix:
                barCode = CreateDataMatrixBarCode("01234-ABCD");
                break;

            case BarCodeTypes.DataMatrixGS1:
                barCode = CreateDataMatrixGS1BarCode("01234-ABCD");
                break;

            case BarCodeTypes.Industrial2of5:
                barCode = CreateIndustrial2of5BarCode("0123456789");
                break;

            case BarCodeTypes.IntelligentMail:
                barCode = CreateIntelligentMailBarCode("4408200000012345678991203");
                break;

            case BarCodeTypes.IntelligentMailPackage:
                barCode = CreateIntelligentMailPackageBarCode("9212391234567812345671");
                break;

            case BarCodeTypes.Interleaved2of5:
                barCode = CreateInterleaved2of5BarCode("0123456789");
                break;

            case BarCodeTypes.Matrix2of5:
                barCode = CreateMatrix2of5BarCode("0123456789");
                break;

            case BarCodeTypes.CodeMSI:
                barCode = CreateCodeMSIBarCode("0123456789");
                break;

            case BarCodeTypes.PDF417:
                barCode = CreatePDF417BarCode("01234-ABCD");
                break;

            case BarCodeTypes.PostNet:
                barCode = CreatePostNetBarCode("0123456789");
                break;

            case BarCodeTypes.QRCode:
                barCode = CreateQRCodeBarCode("01234-ABCD");
                break;

            case BarCodeTypes.UPCA:
                barCode = CreateUPCABarCode("00123456789");
                break;

            case BarCodeTypes.UPCE0:
                barCode = CreateUPCE0BarCode("123");
                break;

            case BarCodeTypes.UPCE1:
                barCode = CreateUPCE1BarCode("123");
                break;

            case BarCodeTypes.UPCSupplemental2:
                barCode = CreateUPCSupplemental2BarCode("01");
                break;

            case BarCodeTypes.UPCSupplemental5:
                barCode = CreateUPCSupplemental5BarCode("01234");
                break;

            case BarCodeTypes.UPCShippingContainer:
                barCode = CreateITF14BarCode("1234567890123");
                break;
            }

            return(barCode);
        }
コード例 #19
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     DevExpress.XtraPrinting.BarCode.QRCodeGenerator qrCodeGenerator1 = new DevExpress.XtraPrinting.BarCode.QRCodeGenerator();
     this.Detail            = new DevExpress.XtraReports.UI.DetailBand();
     this.xrLabel19         = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel18         = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel16         = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel15         = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel24         = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel10         = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel9          = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel46         = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel45         = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel44         = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel22         = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel21         = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel20         = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLine3           = new DevExpress.XtraReports.UI.XRLine();
     this.xrLabel23         = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel47         = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel13         = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel37         = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel14         = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel38         = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel1          = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel2          = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel11         = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel12         = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel17         = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel25         = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel26         = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel35         = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel36         = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel42         = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel43         = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLine1           = new DevExpress.XtraReports.UI.XRLine();
     this.xrSubreport1      = new DevExpress.XtraReports.UI.XRSubreport();
     this.xrBarCode1        = new DevExpress.XtraReports.UI.XRBarCode();
     this.TopMargin         = new DevExpress.XtraReports.UI.TopMarginBand();
     this.xrLine2           = new DevExpress.XtraReports.UI.XRLine();
     this.BottomMargin      = new DevExpress.XtraReports.UI.BottomMarginBand();
     this.xrPageInfo1       = new DevExpress.XtraReports.UI.XRPageInfo();
     this.objectDataSource1 = new DevExpress.DataAccess.ObjectBinding.ObjectDataSource(this.components);
     this.reportHeaderBand1 = new DevExpress.XtraReports.UI.ReportHeaderBand();
     this.xrLabel29         = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel3          = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel28         = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel8          = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel7          = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel5          = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel4          = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel6          = new DevExpress.XtraReports.UI.XRLabel();
     this.Title             = new DevExpress.XtraReports.UI.XRControlStyle();
     this.FieldCaption      = new DevExpress.XtraReports.UI.XRControlStyle();
     this.PageInfo          = new DevExpress.XtraReports.UI.XRControlStyle();
     this.DataField         = new DevExpress.XtraReports.UI.XRControlStyle();
     this.cSimboloMonedaEN  = new DevExpress.XtraReports.UI.CalculatedField();
     ((System.ComponentModel.ISupportInitialize)(this.objectDataSource1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
     //
     // Detail
     //
     this.Detail.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrLabel19,
         this.xrLabel18,
         this.xrLabel16,
         this.xrLabel15,
         this.xrLabel24,
         this.xrLabel10,
         this.xrLabel9,
         this.xrLabel46,
         this.xrLabel45,
         this.xrLabel44,
         this.xrLabel22,
         this.xrLabel21,
         this.xrLabel20,
         this.xrLine3,
         this.xrLabel23,
         this.xrLabel47,
         this.xrLabel13,
         this.xrLabel37,
         this.xrLabel14,
         this.xrLabel38,
         this.xrLabel1,
         this.xrLabel2,
         this.xrLabel11,
         this.xrLabel12,
         this.xrLabel17,
         this.xrLabel25,
         this.xrLabel26,
         this.xrLabel35,
         this.xrLabel36,
         this.xrLabel42,
         this.xrLabel43,
         this.xrLine1,
         this.xrSubreport1,
         this.xrBarCode1
     });
     this.Detail.HeightF = 603.119F;
     this.Detail.Name    = "Detail";
     this.Detail.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     //
     // xrLabel19
     //
     this.xrLabel19.Font                  = new System.Drawing.Font("Arial", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrLabel19.LocationFloat         = new DevExpress.Utils.PointFloat(5.999837F, 154.6191F);
     this.xrLabel19.Name                  = "xrLabel19";
     this.xrLabel19.Padding               = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel19.SizeF                 = new System.Drawing.SizeF(285.0001F, 17.70833F);
     this.xrLabel19.StyleName             = "FieldCaption";
     this.xrLabel19.StylePriority.UseFont = false;
     this.xrLabel19.Text                  = "Customer";
     //
     // xrLabel18
     //
     this.xrLabel18.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "montoImpuestoVenta", "{0:N2}")
     });
     this.xrLabel18.LocationFloat = new DevExpress.Utils.PointFloat(166.4999F, 342.2858F);
     this.xrLabel18.Name          = "xrLabel18";
     this.xrLabel18.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel18.SizeF         = new System.Drawing.SizeF(124.5F, 18F);
     this.xrLabel18.StyleName     = "DataField";
     this.xrLabel18.StylePriority.UseTextAlignment = false;
     this.xrLabel18.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
     //
     // xrLabel16
     //
     this.xrLabel16.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "montoDescuento", "{0:N2}")
     });
     this.xrLabel16.LocationFloat = new DevExpress.Utils.PointFloat(166.4999F, 324.2858F);
     this.xrLabel16.Name          = "xrLabel16";
     this.xrLabel16.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel16.SizeF         = new System.Drawing.SizeF(124.5F, 18F);
     this.xrLabel16.StyleName     = "DataField";
     this.xrLabel16.StylePriority.UseTextAlignment = false;
     this.xrLabel16.Text          = "xrLabel16";
     this.xrLabel16.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
     //
     // xrLabel15
     //
     this.xrLabel15.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "montoSubTotal", "{0:N2}")
     });
     this.xrLabel15.LocationFloat = new DevExpress.Utils.PointFloat(166.4999F, 306.2857F);
     this.xrLabel15.Name          = "xrLabel15";
     this.xrLabel15.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel15.SizeF         = new System.Drawing.SizeF(124.5F, 18F);
     this.xrLabel15.StyleName     = "DataField";
     this.xrLabel15.StylePriority.UseTextAlignment = false;
     this.xrLabel15.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
     //
     // xrLabel24
     //
     this.xrLabel24.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "cSimboloMonedaEN", "Total:{0}")
     });
     this.xrLabel24.Font                           = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Bold);
     this.xrLabel24.LocationFloat                  = new DevExpress.Utils.PointFloat(47.37492F, 360.2858F);
     this.xrLabel24.Name                           = "xrLabel24";
     this.xrLabel24.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel24.SizeF                          = new System.Drawing.SizeF(119.1249F, 18F);
     this.xrLabel24.StyleName                      = "FieldCaption";
     this.xrLabel24.StylePriority.UseFont          = false;
     this.xrLabel24.StylePriority.UseTextAlignment = false;
     this.xrLabel24.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.TopRight;
     //
     // xrLabel10
     //
     this.xrLabel10.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "cSimboloMonedaEN", "TAX : {0}")
     });
     this.xrLabel10.Font                           = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Bold);
     this.xrLabel10.LocationFloat                  = new DevExpress.Utils.PointFloat(47.37489F, 342.2858F);
     this.xrLabel10.Name                           = "xrLabel10";
     this.xrLabel10.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel10.SizeF                          = new System.Drawing.SizeF(119.1249F, 18F);
     this.xrLabel10.StyleName                      = "FieldCaption";
     this.xrLabel10.StylePriority.UseFont          = false;
     this.xrLabel10.StylePriority.UseTextAlignment = false;
     this.xrLabel10.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.TopRight;
     //
     // xrLabel9
     //
     this.xrLabel9.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "cSimboloMonedaEN", "Discount : {0}")
     });
     this.xrLabel9.Font                           = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Bold);
     this.xrLabel9.LocationFloat                  = new DevExpress.Utils.PointFloat(47.37492F, 324.2858F);
     this.xrLabel9.Name                           = "xrLabel9";
     this.xrLabel9.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel9.SizeF                          = new System.Drawing.SizeF(119.1249F, 18F);
     this.xrLabel9.StyleName                      = "FieldCaption";
     this.xrLabel9.StylePriority.UseFont          = false;
     this.xrLabel9.StylePriority.UseTextAlignment = false;
     this.xrLabel9.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.TopRight;
     //
     // xrLabel46
     //
     this.xrLabel46.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "receptorNombre")
     });
     this.xrLabel46.LocationFloat = new DevExpress.Utils.PointFloat(78.62489F, 190.3274F);
     this.xrLabel46.Name          = "xrLabel46";
     this.xrLabel46.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel46.SizeF         = new System.Drawing.SizeF(212.3752F, 17.99998F);
     this.xrLabel46.StyleName     = "DataField";
     this.xrLabel46.Text          = "xrLabel46";
     //
     // xrLabel45
     //
     this.xrLabel45.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "receptorIdentificacionCorreo")
     });
     this.xrLabel45.LocationFloat = new DevExpress.Utils.PointFloat(78.62489F, 208.3274F);
     this.xrLabel45.Name          = "xrLabel45";
     this.xrLabel45.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel45.SizeF         = new System.Drawing.SizeF(212.3749F, 18F);
     this.xrLabel45.StyleName     = "DataField";
     this.xrLabel45.Text          = "xrLabel45";
     //
     // xrLabel44
     //
     this.xrLabel44.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "receptorIdentificacion")
     });
     this.xrLabel44.LocationFloat = new DevExpress.Utils.PointFloat(78.62489F, 172.3274F);
     this.xrLabel44.Name          = "xrLabel44";
     this.xrLabel44.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel44.SizeF         = new System.Drawing.SizeF(212.375F, 18F);
     this.xrLabel44.StyleName     = "DataField";
     this.xrLabel44.Text          = "xrLabel44";
     //
     // xrLabel22
     //
     this.xrLabel22.Font                  = new System.Drawing.Font("Arial", 9.4F, System.Drawing.FontStyle.Bold);
     this.xrLabel22.LocationFloat         = new DevExpress.Utils.PointFloat(5.999894F, 190.3274F);
     this.xrLabel22.Name                  = "xrLabel22";
     this.xrLabel22.Padding               = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel22.SizeF                 = new System.Drawing.SizeF(72.62499F, 18F);
     this.xrLabel22.StyleName             = "FieldCaption";
     this.xrLabel22.StylePriority.UseFont = false;
     this.xrLabel22.Text                  = "Full Name:";
     //
     // xrLabel21
     //
     this.xrLabel21.Font                  = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Bold);
     this.xrLabel21.LocationFloat         = new DevExpress.Utils.PointFloat(5.999894F, 208.3274F);
     this.xrLabel21.Name                  = "xrLabel21";
     this.xrLabel21.Padding               = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel21.SizeF                 = new System.Drawing.SizeF(64.66664F, 18F);
     this.xrLabel21.StyleName             = "FieldCaption";
     this.xrLabel21.StylePriority.UseFont = false;
     this.xrLabel21.Text                  = "E-Mail: ";
     //
     // xrLabel20
     //
     this.xrLabel20.Font                  = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Bold);
     this.xrLabel20.LocationFloat         = new DevExpress.Utils.PointFloat(5.999942F, 172.3274F);
     this.xrLabel20.Name                  = "xrLabel20";
     this.xrLabel20.Padding               = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel20.SizeF                 = new System.Drawing.SizeF(64.6666F, 18F);
     this.xrLabel20.StyleName             = "FieldCaption";
     this.xrLabel20.StylePriority.UseFont = false;
     this.xrLabel20.Text                  = "ID:";
     //
     // xrLine3
     //
     this.xrLine3.LocationFloat = new DevExpress.Utils.PointFloat(5.999851F, 148.6191F);
     this.xrLine3.Name          = "xrLine3";
     this.xrLine3.SizeF         = new System.Drawing.SizeF(285F, 6.00001F);
     //
     // xrLabel23
     //
     this.xrLabel23.Font                  = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Bold);
     this.xrLabel23.LocationFloat         = new DevExpress.Utils.PointFloat(166.4999F, 130.619F);
     this.xrLabel23.Name                  = "xrLabel23";
     this.xrLabel23.Padding               = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel23.SizeF                 = new System.Drawing.SizeF(57.9192F, 18F);
     this.xrLabel23.StyleName             = "FieldCaption";
     this.xrLabel23.StylePriority.UseFont = false;
     this.xrLabel23.Text                  = "E. Rate:";
     //
     // xrLabel47
     //
     this.xrLabel47.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "tipoCambio")
     });
     this.xrLabel47.LocationFloat = new DevExpress.Utils.PointFloat(224.4191F, 130.619F);
     this.xrLabel47.Name          = "xrLabel47";
     this.xrLabel47.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel47.SizeF         = new System.Drawing.SizeF(66.58102F, 18.00002F);
     this.xrLabel47.StyleName     = "DataField";
     this.xrLabel47.Text          = "xrLabel47";
     //
     // xrLabel13
     //
     this.xrLabel13.Font                  = new System.Drawing.Font("Arial", 9.5F, System.Drawing.FontStyle.Bold);
     this.xrLabel13.LocationFloat         = new DevExpress.Utils.PointFloat(5.999854F, 112.619F);
     this.xrLabel13.Name                  = "xrLabel13";
     this.xrLabel13.Padding               = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel13.SizeF                 = new System.Drawing.SizeF(117.888F, 18F);
     this.xrLabel13.StyleName             = "FieldCaption";
     this.xrLabel13.StylePriority.UseFont = false;
     this.xrLabel13.Text                  = "Payment Method:";
     //
     // xrLabel37
     //
     this.xrLabel37.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "MedioPago")
     });
     this.xrLabel37.LocationFloat = new DevExpress.Utils.PointFloat(123.8878F, 112.619F);
     this.xrLabel37.Name          = "xrLabel37";
     this.xrLabel37.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel37.SizeF         = new System.Drawing.SizeF(167.112F, 18F);
     this.xrLabel37.StyleName     = "DataField";
     this.xrLabel37.Text          = "xrLabel37";
     //
     // xrLabel14
     //
     this.xrLabel14.Font                  = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Bold);
     this.xrLabel14.LocationFloat         = new DevExpress.Utils.PointFloat(5.999918F, 130.619F);
     this.xrLabel14.Name                  = "xrLabel14";
     this.xrLabel14.Padding               = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel14.SizeF                 = new System.Drawing.SizeF(72.62497F, 18F);
     this.xrLabel14.StyleName             = "FieldCaption";
     this.xrLabel14.StylePriority.UseFont = false;
     this.xrLabel14.Text                  = "Currency:";
     //
     // xrLabel38
     //
     this.xrLabel38.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "moneda")
     });
     this.xrLabel38.LocationFloat = new DevExpress.Utils.PointFloat(78.62489F, 130.619F);
     this.xrLabel38.Name          = "xrLabel38";
     this.xrLabel38.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel38.SizeF         = new System.Drawing.SizeF(87.87495F, 18.00002F);
     this.xrLabel38.StyleName     = "DataField";
     this.xrLabel38.Text          = "xrLabel38";
     //
     // xrLabel1
     //
     this.xrLabel1.Font                  = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Bold);
     this.xrLabel1.LocationFloat         = new DevExpress.Utils.PointFloat(5.99999F, 38.41666F);
     this.xrLabel1.Name                  = "xrLabel1";
     this.xrLabel1.Padding               = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel1.SizeF                 = new System.Drawing.SizeF(76.12495F, 18F);
     this.xrLabel1.StyleName             = "FieldCaption";
     this.xrLabel1.StylePriority.UseFont = false;
     this.xrLabel1.Text                  = "Document: ";
     //
     // xrLabel2
     //
     this.xrLabel2.Font                  = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Bold);
     this.xrLabel2.LocationFloat         = new DevExpress.Utils.PointFloat(5.999851F, 94.61899F);
     this.xrLabel2.Multiline             = true;
     this.xrLabel2.Name                  = "xrLabel2";
     this.xrLabel2.Padding               = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel2.SizeF                 = new System.Drawing.SizeF(94.87515F, 18F);
     this.xrLabel2.StyleName             = "FieldCaption";
     this.xrLabel2.StylePriority.UseFont = false;
     this.xrLabel2.Text                  = "Sales Term:";
     //
     // xrLabel11
     //
     this.xrLabel11.Font                  = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Bold);
     this.xrLabel11.LocationFloat         = new DevExpress.Utils.PointFloat(5.99999F, 20.41665F);
     this.xrLabel11.Name                  = "xrLabel11";
     this.xrLabel11.Padding               = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel11.SizeF                 = new System.Drawing.SizeF(54.25F, 18F);
     this.xrLabel11.StyleName             = "FieldCaption";
     this.xrLabel11.StylePriority.UseFont = false;
     this.xrLabel11.Text                  = "Date:";
     //
     // xrLabel12
     //
     this.xrLabel12.Font                  = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Bold);
     this.xrLabel12.LocationFloat         = new DevExpress.Utils.PointFloat(5.999892F, 383.5774F);
     this.xrLabel12.Name                  = "xrLabel12";
     this.xrLabel12.Padding               = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel12.SizeF                 = new System.Drawing.SizeF(114.6667F, 18F);
     this.xrLabel12.StyleName             = "FieldCaption";
     this.xrLabel12.StylePriority.UseFont = false;
     this.xrLabel12.Text                  = "Message:";
     //
     // xrLabel17
     //
     this.xrLabel17.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "cSimboloMonedaEN", "Sub Total : {0}")
     });
     this.xrLabel17.Font                           = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Bold);
     this.xrLabel17.LocationFloat                  = new DevExpress.Utils.PointFloat(47.37492F, 306.2857F);
     this.xrLabel17.Name                           = "xrLabel17";
     this.xrLabel17.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel17.SizeF                          = new System.Drawing.SizeF(119.1249F, 18F);
     this.xrLabel17.StyleName                      = "FieldCaption";
     this.xrLabel17.StylePriority.UseFont          = false;
     this.xrLabel17.StylePriority.UseTextAlignment = false;
     this.xrLabel17.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.TopRight;
     //
     // xrLabel25
     //
     this.xrLabel25.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "clave")
     });
     this.xrLabel25.Font                  = new System.Drawing.Font("Arial", 8F);
     this.xrLabel25.LocationFloat         = new DevExpress.Utils.PointFloat(6.00011F, 56.41668F);
     this.xrLabel25.Multiline             = true;
     this.xrLabel25.Name                  = "xrLabel25";
     this.xrLabel25.Padding               = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel25.SizeF                 = new System.Drawing.SizeF(284.9998F, 32.58332F);
     this.xrLabel25.StyleName             = "DataField";
     this.xrLabel25.StylePriority.UseFont = false;
     this.xrLabel25.Text                  = "xrLabel25";
     //
     // xrLabel26
     //
     this.xrLabel26.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "CondicionVenta")
     });
     this.xrLabel26.LocationFloat = new DevExpress.Utils.PointFloat(100.875F, 94.61899F);
     this.xrLabel26.Name          = "xrLabel26";
     this.xrLabel26.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel26.SizeF         = new System.Drawing.SizeF(190.125F, 18F);
     this.xrLabel26.StyleName     = "DataField";
     this.xrLabel26.Text          = "xrLabel26";
     //
     // xrLabel35
     //
     this.xrLabel35.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "fecha")
     });
     this.xrLabel35.LocationFloat = new DevExpress.Utils.PointFloat(60.25F, 20.41665F);
     this.xrLabel35.Name          = "xrLabel35";
     this.xrLabel35.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel35.SizeF         = new System.Drawing.SizeF(230.75F, 18.00002F);
     this.xrLabel35.StyleName     = "DataField";
     this.xrLabel35.Text          = "xrLabel35";
     //
     // xrLabel36
     //
     this.xrLabel36.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "leyenda")
     });
     this.xrLabel36.LocationFloat = new DevExpress.Utils.PointFloat(5.999892F, 401.5774F);
     this.xrLabel36.Multiline     = true;
     this.xrLabel36.Name          = "xrLabel36";
     this.xrLabel36.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel36.SizeF         = new System.Drawing.SizeF(285F, 45.08334F);
     this.xrLabel36.StyleName     = "DataField";
     this.xrLabel36.StylePriority.UseTextAlignment = false;
     this.xrLabel36.Text          = "xrLabel36";
     this.xrLabel36.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // xrLabel42
     //
     this.xrLabel42.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "montoTotal", "{0:N2}")
     });
     this.xrLabel42.LocationFloat = new DevExpress.Utils.PointFloat(166.4999F, 360.2858F);
     this.xrLabel42.Name          = "xrLabel42";
     this.xrLabel42.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel42.SizeF         = new System.Drawing.SizeF(124.5F, 18F);
     this.xrLabel42.StyleName     = "DataField";
     this.xrLabel42.StylePriority.UseTextAlignment = false;
     this.xrLabel42.Text          = "xrLabel42";
     this.xrLabel42.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
     //
     // xrLabel43
     //
     this.xrLabel43.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "Normativa")
     });
     this.xrLabel43.LocationFloat = new DevExpress.Utils.PointFloat(2.999987F, 578.6904F);
     this.xrLabel43.Name          = "xrLabel43";
     this.xrLabel43.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel43.SizeF         = new System.Drawing.SizeF(285F, 18.00003F);
     this.xrLabel43.StyleName     = "DataField";
     this.xrLabel43.StylePriority.UseTextAlignment = false;
     this.xrLabel43.Text          = "xrLabel43";
     this.xrLabel43.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     //
     // xrLine1
     //
     this.xrLine1.LocationFloat = new DevExpress.Utils.PointFloat(6.00001F, 3.000005F);
     this.xrLine1.Name          = "xrLine1";
     this.xrLine1.SizeF         = new System.Drawing.SizeF(285F, 6.00001F);
     //
     // xrSubreport1
     //
     this.xrSubreport1.LocationFloat = new DevExpress.Utils.PointFloat(5.999883F, 237.7857F);
     this.xrSubreport1.Name          = "xrSubreport1";
     this.xrSubreport1.ReportSource  = new RptFactDetRollPaperEN();
     this.xrSubreport1.SizeF         = new System.Drawing.SizeF(285F, 58.4167F);
     this.xrSubreport1.BeforePrint  += new System.Drawing.Printing.PrintEventHandler(this.xrSubreport1_BeforePrint_1);
     //
     // xrBarCode1
     //
     this.xrBarCode1.AutoModule    = true;
     this.xrBarCode1.LocationFloat = new DevExpress.Utils.PointFloat(100.875F, 458.7144F);
     this.xrBarCode1.Name          = "xrBarCode1";
     this.xrBarCode1.Padding       = new DevExpress.XtraPrinting.PaddingInfo(10, 10, 0, 0, 100F);
     this.xrBarCode1.ShowText      = false;
     this.xrBarCode1.SizeF         = new System.Drawing.SizeF(115.6251F, 110.3332F);
     this.xrBarCode1.Symbology     = qrCodeGenerator1;
     this.xrBarCode1.Text          = "?";
     //
     // TopMargin
     //
     this.TopMargin.HeightF       = 109.6975F;
     this.TopMargin.Name          = "TopMargin";
     this.TopMargin.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.TopMargin.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // xrLine2
     //
     this.xrLine2.LocationFloat = new DevExpress.Utils.PointFloat(5.999718F, 87.66668F);
     this.xrLine2.Name          = "xrLine2";
     this.xrLine2.SizeF         = new System.Drawing.SizeF(287.0001F, 6.000008F);
     //
     // BottomMargin
     //
     this.BottomMargin.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrPageInfo1
     });
     this.BottomMargin.HeightF       = 41F;
     this.BottomMargin.Name          = "BottomMargin";
     this.BottomMargin.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.BottomMargin.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // xrPageInfo1
     //
     this.xrPageInfo1.Format        = "Printing date : {0}";
     this.xrPageInfo1.LocationFloat = new DevExpress.Utils.PointFloat(6.00001F, 18F);
     this.xrPageInfo1.Name          = "xrPageInfo1";
     this.xrPageInfo1.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrPageInfo1.PageInfo      = DevExpress.XtraPrinting.PageInfo.DateTime;
     this.xrPageInfo1.SizeF         = new System.Drawing.SizeF(285F, 23F);
     this.xrPageInfo1.StyleName     = "PageInfo";
     this.xrPageInfo1.StylePriority.UseTextAlignment = false;
     this.xrPageInfo1.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     //
     // objectDataSource1
     //
     this.objectDataSource1.DataSource = typeof(XMLDomain.Impresion);
     this.objectDataSource1.Name       = "objectDataSource1";
     //
     // reportHeaderBand1
     //
     this.reportHeaderBand1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrLine2,
         this.xrLabel29,
         this.xrLabel3,
         this.xrLabel28,
         this.xrLabel8,
         this.xrLabel7,
         this.xrLabel5,
         this.xrLabel4,
         this.xrLabel6
     });
     this.reportHeaderBand1.HeightF = 209.0588F;
     this.reportHeaderBand1.Name    = "reportHeaderBand1";
     //
     // xrLabel29
     //
     this.xrLabel29.Font                           = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Bold);
     this.xrLabel29.LocationFloat                  = new DevExpress.Utils.PointFloat(5.999718F, 33.95834F);
     this.xrLabel29.Name                           = "xrLabel29";
     this.xrLabel29.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel29.SizeF                          = new System.Drawing.SizeF(287.0001F, 22.45833F);
     this.xrLabel29.StyleName                      = "FieldCaption";
     this.xrLabel29.StylePriority.UseFont          = false;
     this.xrLabel29.StylePriority.UseTextAlignment = false;
     this.xrLabel29.Text                           = "Document N°: ";
     this.xrLabel29.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     //
     // xrLabel3
     //
     this.xrLabel3.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "consecutivo")
     });
     this.xrLabel3.Font                           = new System.Drawing.Font("Arial", 9.75F, System.Drawing.FontStyle.Bold);
     this.xrLabel3.LocationFloat                  = new DevExpress.Utils.PointFloat(5.99995F, 56.41668F);
     this.xrLabel3.Name                           = "xrLabel3";
     this.xrLabel3.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel3.SizeF                          = new System.Drawing.SizeF(286.9999F, 31.25F);
     this.xrLabel3.StylePriority.UseFont          = false;
     this.xrLabel3.StylePriority.UseTextAlignment = false;
     this.xrLabel3.Text                           = "xrLabel3";
     this.xrLabel3.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     //
     // xrLabel28
     //
     this.xrLabel28.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "tipoDocumento")
     });
     this.xrLabel28.Font                           = new System.Drawing.Font("Arial", 20F);
     this.xrLabel28.LocationFloat                  = new DevExpress.Utils.PointFloat(5.999838F, 0F);
     this.xrLabel28.Name                           = "xrLabel28";
     this.xrLabel28.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel28.SizeF                          = new System.Drawing.SizeF(287F, 33.95834F);
     this.xrLabel28.StyleName                      = "Title";
     this.xrLabel28.StylePriority.UseFont          = false;
     this.xrLabel28.StylePriority.UseTextAlignment = false;
     this.xrLabel28.Text                           = "Fact";
     this.xrLabel28.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     //
     // xrLabel8
     //
     this.xrLabel8.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "emisorIdentificacionCorreo", "E-Mail: {0}")
     });
     this.xrLabel8.Font                           = new System.Drawing.Font("Arial", 9.75F, System.Drawing.FontStyle.Bold);
     this.xrLabel8.LocationFloat                  = new DevExpress.Utils.PointFloat(5.999718F, 180.6666F);
     this.xrLabel8.Name                           = "xrLabel8";
     this.xrLabel8.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel8.SizeF                          = new System.Drawing.SizeF(285F, 23F);
     this.xrLabel8.StylePriority.UseFont          = false;
     this.xrLabel8.StylePriority.UseTextAlignment = false;
     this.xrLabel8.Text                           = "xrLabel20";
     this.xrLabel8.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     //
     // xrLabel7
     //
     this.xrLabel7.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "emisorDireccion", "Address: {0}")
     });
     this.xrLabel7.Font                           = new System.Drawing.Font("Arial", 9.75F, System.Drawing.FontStyle.Bold);
     this.xrLabel7.LocationFloat                  = new DevExpress.Utils.PointFloat(5.999718F, 157.6667F);
     this.xrLabel7.Name                           = "xrLabel7";
     this.xrLabel7.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel7.SizeF                          = new System.Drawing.SizeF(285F, 23F);
     this.xrLabel7.StylePriority.UseFont          = false;
     this.xrLabel7.StylePriority.UseTextAlignment = false;
     this.xrLabel7.Text                           = "xrLabel16";
     this.xrLabel7.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     //
     // xrLabel5
     //
     this.xrLabel5.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "emisorTelefonos", "Phone: {0}")
     });
     this.xrLabel5.Font                           = new System.Drawing.Font("Arial", 9.75F, System.Drawing.FontStyle.Bold);
     this.xrLabel5.LocationFloat                  = new DevExpress.Utils.PointFloat(5.999718F, 134.6667F);
     this.xrLabel5.Name                           = "xrLabel5";
     this.xrLabel5.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel5.SizeF                          = new System.Drawing.SizeF(285F, 23F);
     this.xrLabel5.StylePriority.UseFont          = false;
     this.xrLabel5.StylePriority.UseTextAlignment = false;
     this.xrLabel5.Text                           = "xrLabel3";
     this.xrLabel5.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     //
     // xrLabel4
     //
     this.xrLabel4.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "emisorIdentificacion", "ID: {0}")
     });
     this.xrLabel4.Font                           = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Bold);
     this.xrLabel4.LocationFloat                  = new DevExpress.Utils.PointFloat(5.999718F, 116.6667F);
     this.xrLabel4.Name                           = "xrLabel4";
     this.xrLabel4.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel4.SizeF                          = new System.Drawing.SizeF(285F, 18F);
     this.xrLabel4.StyleName                      = "DataField";
     this.xrLabel4.StylePriority.UseFont          = false;
     this.xrLabel4.StylePriority.UseTextAlignment = false;
     this.xrLabel4.Text                           = "xrLabel19";
     this.xrLabel4.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     //
     // xrLabel6
     //
     this.xrLabel6.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "emisorNombreComercial")
     });
     this.xrLabel6.Font                           = new System.Drawing.Font("Arial", 9.75F, System.Drawing.FontStyle.Bold);
     this.xrLabel6.LocationFloat                  = new DevExpress.Utils.PointFloat(5.999718F, 93.66669F);
     this.xrLabel6.Name                           = "xrLabel6";
     this.xrLabel6.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel6.SizeF                          = new System.Drawing.SizeF(285F, 23F);
     this.xrLabel6.StylePriority.UseFont          = false;
     this.xrLabel6.StylePriority.UseTextAlignment = false;
     this.xrLabel6.Text                           = "xrLabel4";
     this.xrLabel6.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     //
     // Title
     //
     this.Title.BackColor   = System.Drawing.Color.Transparent;
     this.Title.BorderColor = System.Drawing.Color.Black;
     this.Title.Borders     = DevExpress.XtraPrinting.BorderSide.None;
     this.Title.BorderWidth = 1F;
     this.Title.Font        = new System.Drawing.Font("Arial", 21F);
     this.Title.ForeColor   = System.Drawing.Color.Black;
     this.Title.Name        = "Title";
     //
     // FieldCaption
     //
     this.FieldCaption.BackColor   = System.Drawing.Color.Transparent;
     this.FieldCaption.BorderColor = System.Drawing.Color.Black;
     this.FieldCaption.Borders     = DevExpress.XtraPrinting.BorderSide.None;
     this.FieldCaption.BorderWidth = 1F;
     this.FieldCaption.Font        = new System.Drawing.Font("Arial", 10F);
     this.FieldCaption.ForeColor   = System.Drawing.Color.Black;
     this.FieldCaption.Name        = "FieldCaption";
     //
     // PageInfo
     //
     this.PageInfo.BackColor   = System.Drawing.Color.Transparent;
     this.PageInfo.BorderColor = System.Drawing.Color.Black;
     this.PageInfo.Borders     = DevExpress.XtraPrinting.BorderSide.None;
     this.PageInfo.BorderWidth = 1F;
     this.PageInfo.Font        = new System.Drawing.Font("Arial", 8F);
     this.PageInfo.ForeColor   = System.Drawing.Color.Black;
     this.PageInfo.Name        = "PageInfo";
     //
     // DataField
     //
     this.DataField.BackColor   = System.Drawing.Color.Transparent;
     this.DataField.BorderColor = System.Drawing.Color.Black;
     this.DataField.Borders     = DevExpress.XtraPrinting.BorderSide.None;
     this.DataField.BorderWidth = 1F;
     this.DataField.Font        = new System.Drawing.Font("Arial", 10F);
     this.DataField.ForeColor   = System.Drawing.Color.Black;
     this.DataField.Name        = "DataField";
     this.DataField.Padding     = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     //
     // cSimboloMonedaEN
     //
     this.cSimboloMonedaEN.Expression = "Iif([moneda]==\'CRC\', \'₡\' ,Iif([moneda]==\'USD\',\'$\' ,\'€\' ) )";
     this.cSimboloMonedaEN.Name       = "cSimboloMonedaEN";
     //
     // RptFacturacionElectronicaRollPaperEN
     //
     this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
         this.Detail,
         this.TopMargin,
         this.BottomMargin,
         this.reportHeaderBand1
     });
     this.CalculatedFields.AddRange(new DevExpress.XtraReports.UI.CalculatedField[] {
         this.cSimboloMonedaEN
     });
     this.ComponentStorage.AddRange(new System.ComponentModel.IComponent[] {
         this.objectDataSource1
     });
     this.DataSource = this.objectDataSource1;
     this.Margins    = new System.Drawing.Printing.Margins(0, 2, 110, 41);
     this.PageHeight = 1169;
     this.PageWidth  = 300;
     this.PaperKind  = System.Drawing.Printing.PaperKind.Custom;
     this.RollPaper  = true;
     this.StyleSheet.AddRange(new DevExpress.XtraReports.UI.XRControlStyle[] {
         this.Title,
         this.FieldCaption,
         this.PageInfo,
         this.DataField
     });
     this.Version = "17.1";
     ((System.ComponentModel.ISupportInitialize)(this.objectDataSource1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this)).EndInit();
 }
コード例 #20
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     DevExpress.XtraPrinting.BarCode.QRCodeGenerator qrCodeGenerator1 = new DevExpress.XtraPrinting.BarCode.QRCodeGenerator();
     this.Detail            = new DevExpress.XtraReports.UI.DetailBand();
     this.TopMargin         = new DevExpress.XtraReports.UI.TopMarginBand();
     this.BottomMargin      = new DevExpress.XtraReports.UI.BottomMarginBand();
     this.objectDataSource1 = new DevExpress.DataAccess.ObjectBinding.ObjectDataSource(this.components);
     this.xrLabel1          = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel2          = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel3          = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel4          = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel5          = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel6          = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel7          = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel8          = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel9          = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel10         = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel11         = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel12         = new DevExpress.XtraReports.UI.XRLabel();
     this.xrBarCode1        = new DevExpress.XtraReports.UI.XRBarCode();
     this.xrLabel13         = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel14         = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel15         = new DevExpress.XtraReports.UI.XRLabel();
     ((System.ComponentModel.ISupportInitialize)(this.objectDataSource1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
     //
     // Detail
     //
     this.Detail.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrLabel15,
         this.xrLabel14,
         this.xrLabel13,
         this.xrBarCode1,
         this.xrLabel12,
         this.xrLabel11,
         this.xrLabel10,
         this.xrLabel9,
         this.xrLabel8,
         this.xrLabel7,
         this.xrLabel6,
         this.xrLabel5,
         this.xrLabel4,
         this.xrLabel3,
         this.xrLabel2,
         this.xrLabel1
     });
     this.Detail.HeightF       = 40.76389F;
     this.Detail.Name          = "Detail";
     this.Detail.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.Detail.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // TopMargin
     //
     this.TopMargin.HeightF       = 0F;
     this.TopMargin.Name          = "TopMargin";
     this.TopMargin.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.TopMargin.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // BottomMargin
     //
     this.BottomMargin.HeightF       = 0F;
     this.BottomMargin.Name          = "BottomMargin";
     this.BottomMargin.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.BottomMargin.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // objectDataSource1
     //
     this.objectDataSource1.DataSource = typeof(Print.Model.Header);
     this.objectDataSource1.Name       = "objectDataSource1";
     //
     // xrLabel1
     //
     this.xrLabel1.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[Dc1]")
     });
     this.xrLabel1.Font                  = new System.Drawing.Font("宋体", 3.8F, System.Drawing.FontStyle.Bold);
     this.xrLabel1.LocationFloat         = new DevExpress.Utils.PointFloat(0F, 0F);
     this.xrLabel1.Multiline             = true;
     this.xrLabel1.Name                  = "xrLabel1";
     this.xrLabel1.Padding               = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 96F);
     this.xrLabel1.SizeF                 = new System.Drawing.SizeF(28.12502F, 6F);
     this.xrLabel1.StylePriority.UseFont = false;
     this.xrLabel1.Text                  = "3205.6694\r\n";
     //
     // xrLabel2
     //
     this.xrLabel2.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[Dc2]")
     });
     this.xrLabel2.Font                           = new System.Drawing.Font("宋体", 3.8F, System.Drawing.FontStyle.Bold);
     this.xrLabel2.LocationFloat                  = new DevExpress.Utils.PointFloat(28.12502F, 0F);
     this.xrLabel2.Multiline                      = true;
     this.xrLabel2.Name                           = "xrLabel2";
     this.xrLabel2.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel2.SizeF                          = new System.Drawing.SizeF(31.87498F, 6F);
     this.xrLabel2.StylePriority.UseFont          = false;
     this.xrLabel2.StylePriority.UseTextAlignment = false;
     this.xrLabel2.Text                           = "上海";
     this.xrLabel2.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.TopRight;
     //
     // xrLabel3
     //
     this.xrLabel3.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[Dc3]")
     });
     this.xrLabel3.Font                  = new System.Drawing.Font("宋体", 3.8F, System.Drawing.FontStyle.Bold);
     this.xrLabel3.LocationFloat         = new DevExpress.Utils.PointFloat(0F, 5.999999F);
     this.xrLabel3.Multiline             = true;
     this.xrLabel3.Name                  = "xrLabel3";
     this.xrLabel3.Padding               = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel3.SizeF                 = new System.Drawing.SizeF(28.12502F, 6F);
     this.xrLabel3.StylePriority.UseFont = false;
     this.xrLabel3.Text                  = "JFWLF";
     //
     // xrLabel4
     //
     this.xrLabel4.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[Dc4]")
     });
     this.xrLabel4.Font                           = new System.Drawing.Font("宋体", 3.8F, System.Drawing.FontStyle.Bold);
     this.xrLabel4.LocationFloat                  = new DevExpress.Utils.PointFloat(28.12502F, 5.999999F);
     this.xrLabel4.Multiline                      = true;
     this.xrLabel4.Name                           = "xrLabel4";
     this.xrLabel4.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel4.SizeF                          = new System.Drawing.SizeF(31.87498F, 6F);
     this.xrLabel4.StylePriority.UseFont          = false;
     this.xrLabel4.StylePriority.UseTextAlignment = false;
     this.xrLabel4.Text                           = "集团成品仓";
     this.xrLabel4.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.TopRight;
     //
     // xrLabel5
     //
     this.xrLabel5.Font                           = new System.Drawing.Font("宋体", 2.3F, System.Drawing.FontStyle.Bold);
     this.xrLabel5.LocationFloat                  = new DevExpress.Utils.PointFloat(0F, 12F);
     this.xrLabel5.Multiline                      = true;
     this.xrLabel5.Name                           = "xrLabel5";
     this.xrLabel5.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel5.SizeF                          = new System.Drawing.SizeF(17F, 8.000002F);
     this.xrLabel5.StylePriority.UseFont          = false;
     this.xrLabel5.StylePriority.UseTextAlignment = false;
     this.xrLabel5.Text                           = "合同型号";
     this.xrLabel5.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // xrLabel6
     //
     this.xrLabel6.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[Dc5]")
     });
     this.xrLabel6.Font                           = new System.Drawing.Font("宋体", 2.3F, System.Drawing.FontStyle.Bold);
     this.xrLabel6.LocationFloat                  = new DevExpress.Utils.PointFloat(16.8403F, 12F);
     this.xrLabel6.Multiline                      = true;
     this.xrLabel6.Name                           = "xrLabel6";
     this.xrLabel6.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel6.SizeF                          = new System.Drawing.SizeF(43.1597F, 8F);
     this.xrLabel6.StylePriority.UseFont          = false;
     this.xrLabel6.StylePriority.UseTextAlignment = false;
     this.xrLabel6.Text                           = "1234567876543456\r\n123456";
     this.xrLabel6.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // xrLabel7
     //
     this.xrLabel7.Font                  = new System.Drawing.Font("宋体", 2.3F, System.Drawing.FontStyle.Bold);
     this.xrLabel7.LocationFloat         = new DevExpress.Utils.PointFloat(0F, 20F);
     this.xrLabel7.Multiline             = true;
     this.xrLabel7.Name                  = "xrLabel7";
     this.xrLabel7.Padding               = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel7.SizeF                 = new System.Drawing.SizeF(10.84F, 4.000002F);
     this.xrLabel7.StylePriority.UseFont = false;
     this.xrLabel7.Text                  = "料号";
     //
     // xrLabel8
     //
     this.xrLabel8.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[Dc6]")
     });
     this.xrLabel8.Font                  = new System.Drawing.Font("宋体", 2.3F, System.Drawing.FontStyle.Bold);
     this.xrLabel8.LocationFloat         = new DevExpress.Utils.PointFloat(10.84F, 20F);
     this.xrLabel8.Multiline             = true;
     this.xrLabel8.Name                  = "xrLabel8";
     this.xrLabel8.Padding               = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel8.SizeF                 = new System.Drawing.SizeF(49.16F, 4.000002F);
     this.xrLabel8.StylePriority.UseFont = false;
     this.xrLabel8.Text                  = "JR30002090F0004-009";
     //
     // xrLabel9
     //
     this.xrLabel9.Font                  = new System.Drawing.Font("宋体", 2.3F, System.Drawing.FontStyle.Bold);
     this.xrLabel9.LocationFloat         = new DevExpress.Utils.PointFloat(0F, 24F);
     this.xrLabel9.Multiline             = true;
     this.xrLabel9.Name                  = "xrLabel9";
     this.xrLabel9.Padding               = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel9.SizeF                 = new System.Drawing.SizeF(10.84F, 4F);
     this.xrLabel9.StylePriority.UseFont = false;
     this.xrLabel9.Text                  = "番号";
     //
     // xrLabel10
     //
     this.xrLabel10.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[Dc7]")
     });
     this.xrLabel10.Font                  = new System.Drawing.Font("宋体", 2.3F, System.Drawing.FontStyle.Bold);
     this.xrLabel10.LocationFloat         = new DevExpress.Utils.PointFloat(10.84F, 24F);
     this.xrLabel10.Multiline             = true;
     this.xrLabel10.Name                  = "xrLabel10";
     this.xrLabel10.Padding               = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel10.SizeF                 = new System.Drawing.SizeF(25.29F, 4F);
     this.xrLabel10.StylePriority.UseFont = false;
     this.xrLabel10.Text                  = "12345678";
     //
     // xrLabel11
     //
     this.xrLabel11.Font                  = new System.Drawing.Font("宋体", 2.3F, System.Drawing.FontStyle.Bold);
     this.xrLabel11.LocationFloat         = new DevExpress.Utils.PointFloat(0F, 28F);
     this.xrLabel11.Multiline             = true;
     this.xrLabel11.Name                  = "xrLabel11";
     this.xrLabel11.Padding               = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel11.SizeF                 = new System.Drawing.SizeF(10.84F, 3.999998F);
     this.xrLabel11.StylePriority.UseFont = false;
     this.xrLabel11.Text                  = "数量";
     //
     // xrLabel12
     //
     this.xrLabel12.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[Dc8]")
     });
     this.xrLabel12.Font                  = new System.Drawing.Font("宋体", 2.3F, System.Drawing.FontStyle.Bold);
     this.xrLabel12.LocationFloat         = new DevExpress.Utils.PointFloat(10.84F, 28F);
     this.xrLabel12.Multiline             = true;
     this.xrLabel12.Name                  = "xrLabel12";
     this.xrLabel12.Padding               = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel12.SizeF                 = new System.Drawing.SizeF(25.29F, 3.999998F);
     this.xrLabel12.StylePriority.UseFont = false;
     this.xrLabel12.Text                  = "12345678";
     //
     // xrBarCode1
     //
     this.xrBarCode1.AutoModule = true;
     this.xrBarCode1.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[Dc11]")
     });
     this.xrBarCode1.LocationFloat            = new DevExpress.Utils.PointFloat(40F, 24F);
     this.xrBarCode1.Module                   = 1F;
     this.xrBarCode1.Name                     = "xrBarCode1";
     this.xrBarCode1.Padding                  = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.xrBarCode1.SizeF                    = new System.Drawing.SizeF(20F, 11.99999F);
     this.xrBarCode1.StylePriority.UsePadding = false;
     this.xrBarCode1.Symbology                = qrCodeGenerator1;
     //
     // xrLabel13
     //
     this.xrLabel13.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[Dc9]")
     });
     this.xrLabel13.Font                  = new System.Drawing.Font("宋体", 2.3F, System.Drawing.FontStyle.Bold);
     this.xrLabel13.LocationFloat         = new DevExpress.Utils.PointFloat(0F, 32F);
     this.xrLabel13.Multiline             = true;
     this.xrLabel13.Name                  = "xrLabel13";
     this.xrLabel13.Padding               = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel13.SizeF                 = new System.Drawing.SizeF(40F, 3.999998F);
     this.xrLabel13.StylePriority.UseFont = false;
     this.xrLabel13.Text                  = "国内标准订单";
     //
     // xrLabel14
     //
     this.xrLabel14.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[Dc10]")
     });
     this.xrLabel14.Font                  = new System.Drawing.Font("宋体", 2.3F, System.Drawing.FontStyle.Bold);
     this.xrLabel14.LocationFloat         = new DevExpress.Utils.PointFloat(0F, 35.99999F);
     this.xrLabel14.Multiline             = true;
     this.xrLabel14.Name                  = "xrLabel14";
     this.xrLabel14.Padding               = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel14.SizeF                 = new System.Drawing.SizeF(40F, 4F);
     this.xrLabel14.StylePriority.UseFont = false;
     this.xrLabel14.Text                  = "客户订单号";
     //
     // xrLabel15
     //
     this.xrLabel15.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[Dc12]")
     });
     this.xrLabel15.Font                           = new System.Drawing.Font("宋体", 2.3F, System.Drawing.FontStyle.Bold);
     this.xrLabel15.LocationFloat                  = new DevExpress.Utils.PointFloat(40F, 35.99999F);
     this.xrLabel15.Multiline                      = true;
     this.xrLabel15.Name                           = "xrLabel15";
     this.xrLabel15.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.xrLabel15.SizeF                          = new System.Drawing.SizeF(16.07637F, 4F);
     this.xrLabel15.StylePriority.UseFont          = false;
     this.xrLabel15.StylePriority.UsePadding       = false;
     this.xrLabel15.StylePriority.UseTextAlignment = false;
     this.xrLabel15.Text                           = "12345678";
     this.xrLabel15.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // Outerbox
     //
     this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
         this.Detail,
         this.TopMargin,
         this.BottomMargin
     });
     this.ComponentStorage.AddRange(new System.ComponentModel.IComponent[] {
         this.objectDataSource1
     });
     this.DataSource = this.objectDataSource1;
     this.Margins    = new System.Drawing.Printing.Margins(0, 0, 0, 0);
     this.PageHeight = 75;
     this.PageWidth  = 60;
     this.PaperKind  = System.Drawing.Printing.PaperKind.Custom;
     this.Version    = "18.1";
     ((System.ComponentModel.ISupportInitialize)(this.objectDataSource1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this)).EndInit();
 }