Ejemplo n.º 1
0
        private void ActualizarStock()
        {
            /// <summary>
            /// De acuerdo al código de producto muestra en la grilla los distintos visualizaciones de stock permitidas, agrupado por estados, y luego agrupado por sucursales. Además muestra el tipo de visualizacion de stock, estado y sucursal por defecto de acuerdo a las variables de configuración.
            /// </summary>

            System.Data.DataSet data = businessrules.tlg_Stock.GetList(_idProducto, string.Empty);
            ultraGridStock.DataSource = data;

            Infragistics.Win.UltraWinGrid.UltraGridLayout layout = ultraGridStock.DisplayLayout;
            layout.Bands[0].Columns[0].Hidden = true;
            layout.Bands[1].Columns[0].Hidden = true;
            layout.Bands[1].Columns[1].Hidden = true;
            layout.Bands[1].Columns[2].Hidden = true;
            layout.Bands[1].Columns[3].Hidden = true;
            layout.Bands[2].Columns[0].Hidden = true;

            string  IdVisualizacionDeStock = Variables.GetValue("Stock.VisualizacionDeStock.Default").ToString();
            string  IdEstadoDeStock        = Variables.GetValue("Stock.EstadoDeStock.Default").ToString();
            decimal stock = businessrules.Stock.GetStock(IdVisualizacionDeStock, IdEstadoDeStock, _idProducto, false);

            tlg_VisualizacionDeStockDataset.tlg_VisualizacionDeStockRow rowVS = mz.erp.businessrules.tlg_VisualizacionDeStock.GetByPk(IdVisualizacionDeStock);
            tlg_EstadosDeStockDataset.tlg_EstadosDeStockRow             rowES = mz.erp.businessrules.tlg_EstadosDeStock.GetByPk(IdEstadoDeStock);

            if (rowVS != null && rowES != null)
            {
                txtVisualizacion.Text = rowVS.Descripcion;
                txtEstado.Text        = rowES.Descripcion;
                uneStock.Value        = stock;
            }
        }
Ejemplo n.º 2
0
        private void dgvDatos_InitializeLayout(object sender, Infragistics.Win.UltraWinGrid.InitializeLayoutEventArgs e)
        {
            Infragistics.Win.UltraWinGrid.UltraGridLayout layout = e.Layout;
            Infragistics.Win.UltraWinGrid.UltraGridBand   band   = layout.Bands[0];
            e.Layout.Bands[0].Columns["Lugar de arribo"].ValueList = ultraDropDown1;

            foreach (var item in band.Columns)
            {
                item.CellActivation = Infragistics.Win.UltraWinGrid.Activation.NoEdit;
            }

            band.Columns["Fecha de arribo"].CellActivation = Infragistics.Win.UltraWinGrid.Activation.AllowEdit;
            band.Columns["Lugar de arribo"].CellActivation = Infragistics.Win.UltraWinGrid.Activation.AllowEdit;

            band.Columns["DocEntry"].Hidden = true;
            band.Columns["LineNum"].Hidden  = true;
        }
Ejemplo n.º 3
0
        private void dgvDatos_InitializeLayout(object sender, Infragistics.Win.UltraWinGrid.InitializeLayoutEventArgs e)
        {
            Infragistics.Win.UltraWinCalcManager.UltraCalcManager calcManager;
            calcManager = new Infragistics.Win.UltraWinCalcManager.UltraCalcManager(this.Container);
            e.Layout.Grid.CalcManager = calcManager;

            Infragistics.Win.UltraWinGrid.UltraGridLayout layout = e.Layout;
            Infragistics.Win.UltraWinGrid.UltraGridBand   band   = layout.Bands[0];
            e.Layout.Bands[0].Summaries.Clear();

            foreach (var item in e.Layout.Bands[0].Columns)
            {
                item.CellActivation = Infragistics.Win.UltraWinGrid.Activation.NoEdit;
                item.Header.FixedHeaderIndicator = Infragistics.Win.UltraWinGrid.FixedHeaderIndicator.None;

                if (item.Index >= (int)Columnas.Mes1 && item.Index <= (int)Columnas.MesC)
                {
                    Infragistics.Win.UltraWinGrid.SummarySettings summary1 = band.Summaries.Add("sum" + item.Index, Infragistics.Win.UltraWinGrid.SummaryType.Sum, band.Columns[item.Index]);

                    summary1.Appearance.FontData.Bold = Infragistics.Win.DefaultableBoolean.True;
                    summary1.Appearance.TextHAlign    = Infragistics.Win.HAlign.Right;
                    summary1.DisplayFormat            = "{0:N0}";
                    summary1.Formula = "SUM([" + item.Header.Caption + "])";
                }
            }

            e.Layout.Override.AllowMultiCellOperations = Infragistics.Win.UltraWinGrid.AllowMultiCellOperation.Copy;

            e.Layout.Bands[0].Columns[(int)Columnas.Linea].Header.Fixed       = true;
            e.Layout.Bands[0].Columns[(int)Columnas.Articulo].Header.Fixed    = true;
            e.Layout.Bands[0].Columns[(int)Columnas.Descripcion].Header.Fixed = true;
            e.Layout.Bands[0].Columns[(int)Columnas.Almacen].Header.Fixed     = true;

            e.Layout.Bands[0].Columns[(int)Columnas.Mes1].Width       = 70;
            e.Layout.Bands[0].Columns[(int)Columnas.Mes2].Width       = 70;
            e.Layout.Bands[0].Columns[(int)Columnas.Mes3].Width       = 70;
            e.Layout.Bands[0].Columns[(int)Columnas.Mes4].Width       = 70;
            e.Layout.Bands[0].Columns[(int)Columnas.Mes5].Width       = 70;
            e.Layout.Bands[0].Columns[(int)Columnas.Mes6].Width       = 70;
            e.Layout.Bands[0].Columns[(int)Columnas.Mes7].Width       = 70;
            e.Layout.Bands[0].Columns[(int)Columnas.Mes8].Width       = 70;
            e.Layout.Bands[0].Columns[(int)Columnas.Mes9].Width       = 70;
            e.Layout.Bands[0].Columns[(int)Columnas.Mes10].Width      = 70;
            e.Layout.Bands[0].Columns[(int)Columnas.Mes11].Width      = 70;
            e.Layout.Bands[0].Columns[(int)Columnas.Mes12].Width      = 70;
            e.Layout.Bands[0].Columns[(int)Columnas.MesC].Width       = 70;
            e.Layout.Bands[0].Columns[(int)Columnas.Stock].Width      = 70;
            e.Layout.Bands[0].Columns[(int)Columnas.Solicitado].Width = 70;

            e.Layout.Bands[0].Columns[(int)Columnas.Linea].Width       = 80;
            e.Layout.Bands[0].Columns[(int)Columnas.Articulo].Width    = 90;
            e.Layout.Bands[0].Columns[(int)Columnas.Descripcion].Width = 120;
            e.Layout.Bands[0].Columns[(int)Columnas.Almacen].Width     = 90;
            e.Layout.Bands[0].Columns[(int)Columnas.Total].Width       = 100;
            e.Layout.Bands[0].Columns[(int)Columnas.Promedio1].Width   = 100;
            e.Layout.Bands[0].Columns[(int)Columnas.Promedio2].Width   = 100;

            e.Layout.Bands[0].Columns[(int)Columnas.Total].Format      = "N0";
            e.Layout.Bands[0].Columns[(int)Columnas.Promedio1].Format  = "N0";
            e.Layout.Bands[0].Columns[(int)Columnas.Promedio2].Format  = "N0";
            e.Layout.Bands[0].Columns[(int)Columnas.Stock].Format      = "N0";
            e.Layout.Bands[0].Columns[(int)Columnas.Solicitado].Format = "N0";

            e.Layout.Bands[0].Columns[(int)Columnas.Mes1].CellAppearance.TextHAlign  = Infragistics.Win.HAlign.Right;
            e.Layout.Bands[0].Columns[(int)Columnas.Mes2].CellAppearance.TextHAlign  = Infragistics.Win.HAlign.Right;
            e.Layout.Bands[0].Columns[(int)Columnas.Mes3].CellAppearance.TextHAlign  = Infragistics.Win.HAlign.Right;
            e.Layout.Bands[0].Columns[(int)Columnas.Mes4].CellAppearance.TextHAlign  = Infragistics.Win.HAlign.Right;
            e.Layout.Bands[0].Columns[(int)Columnas.Mes5].CellAppearance.TextHAlign  = Infragistics.Win.HAlign.Right;
            e.Layout.Bands[0].Columns[(int)Columnas.Mes6].CellAppearance.TextHAlign  = Infragistics.Win.HAlign.Right;
            e.Layout.Bands[0].Columns[(int)Columnas.Mes7].CellAppearance.TextHAlign  = Infragistics.Win.HAlign.Right;
            e.Layout.Bands[0].Columns[(int)Columnas.Mes8].CellAppearance.TextHAlign  = Infragistics.Win.HAlign.Right;
            e.Layout.Bands[0].Columns[(int)Columnas.Mes9].CellAppearance.TextHAlign  = Infragistics.Win.HAlign.Right;
            e.Layout.Bands[0].Columns[(int)Columnas.Mes10].CellAppearance.TextHAlign = Infragistics.Win.HAlign.Right;
            e.Layout.Bands[0].Columns[(int)Columnas.Mes11].CellAppearance.TextHAlign = Infragistics.Win.HAlign.Right;
            e.Layout.Bands[0].Columns[(int)Columnas.Mes12].CellAppearance.TextHAlign = Infragistics.Win.HAlign.Right;
            e.Layout.Bands[0].Columns[(int)Columnas.MesC].CellAppearance.TextHAlign  = Infragistics.Win.HAlign.Right;

            e.Layout.Bands[0].Columns[(int)Columnas.Total].CellAppearance.TextHAlign      = Infragistics.Win.HAlign.Right;
            e.Layout.Bands[0].Columns[(int)Columnas.Promedio1].CellAppearance.TextHAlign  = Infragistics.Win.HAlign.Right;
            e.Layout.Bands[0].Columns[(int)Columnas.Promedio2].CellAppearance.TextHAlign  = Infragistics.Win.HAlign.Right;
            e.Layout.Bands[0].Columns[(int)Columnas.Stock].CellAppearance.TextHAlign      = Infragistics.Win.HAlign.Right;
            e.Layout.Bands[0].Columns[(int)Columnas.Solicitado].CellAppearance.TextHAlign = Infragistics.Win.HAlign.Right;

            //e.Layout.Bands[0].Columns[(int)Columnas.Stock].Hidden = cbAgrupar.Checked;
            //e.Layout.Bands[0].Columns[(int)Columnas.Solicitado].Hidden = cbAgrupar.Checked;
        }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     Infragistics.Win.Appearance appearance1  = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance2  = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance3  = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance4  = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance5  = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance6  = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance7  = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance8  = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance9  = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance10 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance11 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance12 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance13 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance14 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance15 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance16 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance17 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance18 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance19 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance20 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance21 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance22 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance23 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance24 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridLayout ultraGridLayout1 = new Infragistics.Win.UltraWinGrid.UltraGridLayout("AT");
     Infragistics.Win.UltraWinGrid.UltraGridLayout ultraGridLayout2 = new Infragistics.Win.UltraWinGrid.UltraGridLayout("NL");
     this.grdInvoice   = new Infragistics.Win.UltraWinGrid.UltraGrid();
     this.cmbSite      = new Infragistics.Win.UltraWinGrid.UltraCombo();
     this.ultraLabel1  = new Infragistics.Win.Misc.UltraLabel();
     this.txtPeriod    = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
     this.ultraPanel1  = new Infragistics.Win.Misc.UltraPanel();
     this.btnExport    = new Infragistics.Win.Misc.UltraButton();
     this.ultraLabel2  = new Infragistics.Win.Misc.UltraLabel();
     this.btnFilter    = new Infragistics.Win.Misc.UltraButton();
     this.chkSelectAll = new System.Windows.Forms.CheckBox();
     ((System.ComponentModel.ISupportInitialize)(this.grdInvoice)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbSite)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtPeriod)).BeginInit();
     this.ultraPanel1.ClientArea.SuspendLayout();
     this.ultraPanel1.SuspendLayout();
     this.SuspendLayout();
     //
     // grdInvoice
     //
     appearance1.BackColor   = System.Drawing.SystemColors.Window;
     appearance1.BorderColor = System.Drawing.SystemColors.InactiveCaption;
     this.grdInvoice.DisplayLayout.Appearance     = appearance1;
     this.grdInvoice.DisplayLayout.BorderStyle    = Infragistics.Win.UIElementBorderStyle.Solid;
     this.grdInvoice.DisplayLayout.CaptionVisible = Infragistics.Win.DefaultableBoolean.False;
     appearance2.BackColor         = System.Drawing.SystemColors.ActiveBorder;
     appearance2.BackColor2        = System.Drawing.SystemColors.ControlDark;
     appearance2.BackGradientStyle = Infragistics.Win.GradientStyle.Vertical;
     appearance2.BorderColor       = System.Drawing.SystemColors.Window;
     this.grdInvoice.DisplayLayout.GroupByBox.Appearance = appearance2;
     appearance3.ForeColor = System.Drawing.SystemColors.GrayText;
     this.grdInvoice.DisplayLayout.GroupByBox.BandLabelAppearance = appearance3;
     this.grdInvoice.DisplayLayout.GroupByBox.BorderStyle         = Infragistics.Win.UIElementBorderStyle.Solid;
     this.grdInvoice.DisplayLayout.GroupByBox.Hidden = true;
     appearance4.BackColor         = System.Drawing.SystemColors.ControlLightLight;
     appearance4.BackColor2        = System.Drawing.SystemColors.Control;
     appearance4.BackGradientStyle = Infragistics.Win.GradientStyle.Horizontal;
     appearance4.ForeColor         = System.Drawing.SystemColors.GrayText;
     this.grdInvoice.DisplayLayout.GroupByBox.PromptAppearance = appearance4;
     this.grdInvoice.DisplayLayout.MaxColScrollRegions         = 1;
     this.grdInvoice.DisplayLayout.MaxRowScrollRegions         = 1;
     appearance5.BackColor = System.Drawing.SystemColors.Window;
     appearance5.ForeColor = System.Drawing.SystemColors.ControlText;
     this.grdInvoice.DisplayLayout.Override.ActiveCellAppearance = appearance5;
     appearance6.BackColor = System.Drawing.SystemColors.Highlight;
     appearance6.ForeColor = System.Drawing.SystemColors.HighlightText;
     this.grdInvoice.DisplayLayout.Override.ActiveRowAppearance = appearance6;
     this.grdInvoice.DisplayLayout.Override.BorderStyleCell     = Infragistics.Win.UIElementBorderStyle.Dotted;
     this.grdInvoice.DisplayLayout.Override.BorderStyleRow      = Infragistics.Win.UIElementBorderStyle.Dotted;
     appearance7.BackColor = System.Drawing.SystemColors.Window;
     this.grdInvoice.DisplayLayout.Override.CardAreaAppearance = appearance7;
     appearance8.BorderColor  = System.Drawing.Color.Silver;
     appearance8.TextTrimming = Infragistics.Win.TextTrimming.EllipsisCharacter;
     this.grdInvoice.DisplayLayout.Override.CellAppearance   = appearance8;
     this.grdInvoice.DisplayLayout.Override.CellClickAction  = Infragistics.Win.UltraWinGrid.CellClickAction.EditAndSelectText;
     this.grdInvoice.DisplayLayout.Override.CellPadding      = 0;
     this.grdInvoice.DisplayLayout.Override.ColumnSizingArea = Infragistics.Win.UltraWinGrid.ColumnSizingArea.CellsOnly;
     appearance9.BackColor             = System.Drawing.SystemColors.Control;
     appearance9.BackColor2            = System.Drawing.SystemColors.ControlDark;
     appearance9.BackGradientAlignment = Infragistics.Win.GradientAlignment.Element;
     appearance9.BackGradientStyle     = Infragistics.Win.GradientStyle.Horizontal;
     appearance9.BorderColor           = System.Drawing.SystemColors.Window;
     this.grdInvoice.DisplayLayout.Override.GroupByRowAppearance = appearance9;
     appearance10.TextHAlignAsString = "Left";
     this.grdInvoice.DisplayLayout.Override.HeaderAppearance  = appearance10;
     this.grdInvoice.DisplayLayout.Override.HeaderClickAction = Infragistics.Win.UltraWinGrid.HeaderClickAction.SortMulti;
     this.grdInvoice.DisplayLayout.Override.HeaderStyle       = Infragistics.Win.HeaderStyle.WindowsXPCommand;
     appearance11.BackColor   = System.Drawing.SystemColors.Window;
     appearance11.BorderColor = System.Drawing.Color.Silver;
     this.grdInvoice.DisplayLayout.Override.RowAppearance = appearance11;
     this.grdInvoice.DisplayLayout.Override.RowSelectors  = Infragistics.Win.DefaultableBoolean.False;
     appearance12.BackColor = System.Drawing.SystemColors.ControlLight;
     this.grdInvoice.DisplayLayout.Override.TemplateAddRowAppearance = appearance12;
     this.grdInvoice.DisplayLayout.ScrollBounds  = Infragistics.Win.UltraWinGrid.ScrollBounds.ScrollToFill;
     this.grdInvoice.DisplayLayout.ScrollStyle   = Infragistics.Win.UltraWinGrid.ScrollStyle.Immediate;
     this.grdInvoice.DisplayLayout.ViewStyleBand = Infragistics.Win.UltraWinGrid.ViewStyleBand.OutlookGroupBy;
     this.grdInvoice.Location          = new System.Drawing.Point(12, 91);
     this.grdInvoice.Name              = "grdInvoice";
     this.grdInvoice.Size              = new System.Drawing.Size(803, 537);
     this.grdInvoice.TabIndex          = 0;
     this.grdInvoice.Text              = "Import Invoice";
     this.grdInvoice.InitializeLayout += new Infragistics.Win.UltraWinGrid.InitializeLayoutEventHandler(this.grdInvoice_InitializeLayout);
     //
     // cmbSite
     //
     appearance13.BackColor   = System.Drawing.SystemColors.Window;
     appearance13.BorderColor = System.Drawing.SystemColors.InactiveCaption;
     this.cmbSite.DisplayLayout.Appearance     = appearance13;
     this.cmbSite.DisplayLayout.BorderStyle    = Infragistics.Win.UIElementBorderStyle.Solid;
     this.cmbSite.DisplayLayout.CaptionVisible = Infragistics.Win.DefaultableBoolean.False;
     appearance14.BackColor         = System.Drawing.SystemColors.ActiveBorder;
     appearance14.BackColor2        = System.Drawing.SystemColors.ControlDark;
     appearance14.BackGradientStyle = Infragistics.Win.GradientStyle.Vertical;
     appearance14.BorderColor       = System.Drawing.SystemColors.Window;
     this.cmbSite.DisplayLayout.GroupByBox.Appearance = appearance14;
     appearance15.ForeColor = System.Drawing.SystemColors.GrayText;
     this.cmbSite.DisplayLayout.GroupByBox.BandLabelAppearance = appearance15;
     this.cmbSite.DisplayLayout.GroupByBox.BorderStyle         = Infragistics.Win.UIElementBorderStyle.Solid;
     appearance16.BackColor         = System.Drawing.SystemColors.ControlLightLight;
     appearance16.BackColor2        = System.Drawing.SystemColors.Control;
     appearance16.BackGradientStyle = Infragistics.Win.GradientStyle.Horizontal;
     appearance16.ForeColor         = System.Drawing.SystemColors.GrayText;
     this.cmbSite.DisplayLayout.GroupByBox.PromptAppearance = appearance16;
     this.cmbSite.DisplayLayout.MaxColScrollRegions         = 1;
     this.cmbSite.DisplayLayout.MaxRowScrollRegions         = 1;
     appearance17.BackColor = System.Drawing.SystemColors.Window;
     appearance17.ForeColor = System.Drawing.SystemColors.ControlText;
     this.cmbSite.DisplayLayout.Override.ActiveCellAppearance = appearance17;
     appearance18.BackColor = System.Drawing.SystemColors.Highlight;
     appearance18.ForeColor = System.Drawing.SystemColors.HighlightText;
     this.cmbSite.DisplayLayout.Override.ActiveRowAppearance = appearance18;
     this.cmbSite.DisplayLayout.Override.BorderStyleCell     = Infragistics.Win.UIElementBorderStyle.Dotted;
     this.cmbSite.DisplayLayout.Override.BorderStyleRow      = Infragistics.Win.UIElementBorderStyle.Dotted;
     appearance19.BackColor = System.Drawing.SystemColors.Window;
     this.cmbSite.DisplayLayout.Override.CardAreaAppearance = appearance19;
     appearance20.BorderColor  = System.Drawing.Color.Silver;
     appearance20.TextTrimming = Infragistics.Win.TextTrimming.EllipsisCharacter;
     this.cmbSite.DisplayLayout.Override.CellAppearance  = appearance20;
     this.cmbSite.DisplayLayout.Override.CellClickAction = Infragistics.Win.UltraWinGrid.CellClickAction.EditAndSelectText;
     this.cmbSite.DisplayLayout.Override.CellPadding     = 0;
     appearance21.BackColor             = System.Drawing.SystemColors.Control;
     appearance21.BackColor2            = System.Drawing.SystemColors.ControlDark;
     appearance21.BackGradientAlignment = Infragistics.Win.GradientAlignment.Element;
     appearance21.BackGradientStyle     = Infragistics.Win.GradientStyle.Horizontal;
     appearance21.BorderColor           = System.Drawing.SystemColors.Window;
     this.cmbSite.DisplayLayout.Override.GroupByRowAppearance = appearance21;
     appearance22.TextHAlignAsString = "Left";
     this.cmbSite.DisplayLayout.Override.HeaderAppearance  = appearance22;
     this.cmbSite.DisplayLayout.Override.HeaderClickAction = Infragistics.Win.UltraWinGrid.HeaderClickAction.SortMulti;
     this.cmbSite.DisplayLayout.Override.HeaderStyle       = Infragistics.Win.HeaderStyle.WindowsXPCommand;
     appearance23.BackColor   = System.Drawing.SystemColors.Window;
     appearance23.BorderColor = System.Drawing.Color.Silver;
     this.cmbSite.DisplayLayout.Override.RowAppearance = appearance23;
     this.cmbSite.DisplayLayout.Override.RowSelectors  = Infragistics.Win.DefaultableBoolean.False;
     appearance24.BackColor = System.Drawing.SystemColors.ControlLight;
     this.cmbSite.DisplayLayout.Override.TemplateAddRowAppearance = appearance24;
     this.cmbSite.DisplayLayout.ScrollBounds  = Infragistics.Win.UltraWinGrid.ScrollBounds.ScrollToFill;
     this.cmbSite.DisplayLayout.ScrollStyle   = Infragistics.Win.UltraWinGrid.ScrollStyle.Immediate;
     this.cmbSite.DisplayLayout.ViewStyleBand = Infragistics.Win.UltraWinGrid.ViewStyleBand.OutlookGroupBy;
     this.cmbSite.Font    = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     ultraGridLayout1.Key = "AT";
     ultraGridLayout2.Key = "NL";
     this.cmbSite.Layouts.Add(ultraGridLayout1);
     this.cmbSite.Layouts.Add(ultraGridLayout2);
     this.cmbSite.Location = new System.Drawing.Point(52, 6);
     this.cmbSite.Name     = "cmbSite";
     this.cmbSite.Size     = new System.Drawing.Size(100, 24);
     this.cmbSite.TabIndex = 6;
     //
     // ultraLabel1
     //
     this.ultraLabel1.Font     = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.ultraLabel1.Location = new System.Drawing.Point(15, 11);
     this.ultraLabel1.Name     = "ultraLabel1";
     this.ultraLabel1.Size     = new System.Drawing.Size(42, 18);
     this.ultraLabel1.TabIndex = 7;
     this.ultraLabel1.Text     = "SITE :";
     //
     // txtPeriod
     //
     this.txtPeriod.Font     = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtPeriod.Location = new System.Drawing.Point(244, 7);
     this.txtPeriod.Name     = "txtPeriod";
     this.txtPeriod.Size     = new System.Drawing.Size(100, 23);
     this.txtPeriod.TabIndex = 8;
     //
     // ultraPanel1
     //
     //
     // ultraPanel1.ClientArea
     //
     this.ultraPanel1.ClientArea.Controls.Add(this.btnExport);
     this.ultraPanel1.ClientArea.Controls.Add(this.ultraLabel2);
     this.ultraPanel1.ClientArea.Controls.Add(this.btnFilter);
     this.ultraPanel1.ClientArea.Controls.Add(this.txtPeriod);
     this.ultraPanel1.ClientArea.Controls.Add(this.cmbSite);
     this.ultraPanel1.ClientArea.Controls.Add(this.ultraLabel1);
     this.ultraPanel1.Location = new System.Drawing.Point(12, 20);
     this.ultraPanel1.Name     = "ultraPanel1";
     this.ultraPanel1.Size     = new System.Drawing.Size(803, 42);
     this.ultraPanel1.TabIndex = 9;
     //
     // btnExport
     //
     this.btnExport.Font     = new System.Drawing.Font("Microsoft Sans Serif", 9F);
     this.btnExport.Location = new System.Drawing.Point(668, 5);
     this.btnExport.Name     = "btnExport";
     this.btnExport.Size     = new System.Drawing.Size(112, 24);
     this.btnExport.TabIndex = 11;
     this.btnExport.Text     = "EXPORT";
     this.btnExport.Click   += new System.EventHandler(this.btnExport_Click);
     //
     // ultraLabel2
     //
     this.ultraLabel2.Font     = new System.Drawing.Font("Microsoft Sans Serif", 9F);
     this.ultraLabel2.Location = new System.Drawing.Point(179, 11);
     this.ultraLabel2.Name     = "ultraLabel2";
     this.ultraLabel2.Size     = new System.Drawing.Size(59, 18);
     this.ultraLabel2.TabIndex = 10;
     this.ultraLabel2.Text     = "PERIOD :";
     //
     // btnFilter
     //
     this.btnFilter.Font     = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btnFilter.Location = new System.Drawing.Point(364, 7);
     this.btnFilter.Name     = "btnFilter";
     this.btnFilter.Size     = new System.Drawing.Size(75, 24);
     this.btnFilter.TabIndex = 9;
     this.btnFilter.Text     = "FILTER";
     this.btnFilter.Click   += new System.EventHandler(this.btnFilter_Click);
     //
     // chkSelectAll
     //
     this.chkSelectAll.AutoSize = true;
     this.chkSelectAll.Location = new System.Drawing.Point(12, 68);
     this.chkSelectAll.Name     = "chkSelectAll";
     this.chkSelectAll.Size     = new System.Drawing.Size(78, 17);
     this.chkSelectAll.TabIndex = 12;
     this.chkSelectAll.Text     = "Select ALL";
     this.chkSelectAll.UseVisualStyleBackColor = true;
     this.chkSelectAll.CheckedChanged         += new System.EventHandler(this.chkSelectAll_CheckedChanged);
     //
     // ImportInvoice
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize          = new System.Drawing.Size(834, 674);
     this.Controls.Add(this.chkSelectAll);
     this.Controls.Add(this.ultraPanel1);
     this.Controls.Add(this.grdInvoice);
     this.Name  = "ImportInvoice";
     this.Text  = "ImportInvoice";
     this.Load += new System.EventHandler(this.ImportInvoice_Load);
     ((System.ComponentModel.ISupportInitialize)(this.grdInvoice)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbSite)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtPeriod)).EndInit();
     this.ultraPanel1.ClientArea.ResumeLayout(false);
     this.ultraPanel1.ClientArea.PerformLayout();
     this.ultraPanel1.ResumeLayout(false);
     this.ResumeLayout(false);
     this.PerformLayout();
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     Infragistics.Win.Appearance appearance1  = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance28 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance29 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance30 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance16 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance17 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance18 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance19 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance20 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance21 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance22 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance23 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance24 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance25 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance26 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance27 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridLayout ultraGridLayout4 = new Infragistics.Win.UltraWinGrid.UltraGridLayout("USD");
     Infragistics.Win.UltraWinGrid.UltraGridLayout ultraGridLayout5 = new Infragistics.Win.UltraWinGrid.UltraGridLayout("EUR");
     Infragistics.Win.UltraWinGrid.UltraGridLayout ultraGridLayout6 = new Infragistics.Win.UltraWinGrid.UltraGridLayout("SDG");
     Infragistics.Win.Appearance appearance4  = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance5  = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance6  = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance7  = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance8  = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance9  = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance10 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance11 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance12 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance13 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance14 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance15 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridLayout ultraGridLayout1 = new Infragistics.Win.UltraWinGrid.UltraGridLayout("USD");
     Infragistics.Win.UltraWinGrid.UltraGridLayout ultraGridLayout2 = new Infragistics.Win.UltraWinGrid.UltraGridLayout("EUR");
     Infragistics.Win.UltraWinGrid.UltraGridLayout ultraGridLayout3 = new Infragistics.Win.UltraWinGrid.UltraGridLayout("SDG");
     Infragistics.Win.Appearance appearance3  = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance31 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance32 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance33 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance34 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance35 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance36 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance37 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance38 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance39 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance40 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance41 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance42 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance2  = new Infragistics.Win.Appearance();
     this.ultraGroupBox1 = new Infragistics.Win.Misc.UltraGroupBox();
     this.ultraLabel1    = new Infragistics.Win.Misc.UltraLabel();
     this.btnCopy        = new Infragistics.Win.Misc.UltraButton();
     this.lblQtr         = new Infragistics.Win.Misc.UltraLabel();
     this.cmbQtrFrom     = new Infragistics.Win.UltraWinGrid.UltraCombo();
     this.cmbQtrTo       = new Infragistics.Win.UltraWinGrid.UltraCombo();
     this.btnFilter      = new Infragistics.Win.Misc.UltraButton();
     this.ugData         = new Infragistics.Win.UltraWinGrid.UltraGrid();
     this.btnVendorSplit = new Infragistics.Win.Misc.UltraButton();
     ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox1)).BeginInit();
     this.ultraGroupBox1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.cmbQtrFrom)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbQtrTo)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ugData)).BeginInit();
     this.SuspendLayout();
     //
     // ultraGroupBox1
     //
     appearance1.BackColor = System.Drawing.Color.LightGray;
     this.ultraGroupBox1.ContentAreaAppearance = appearance1;
     this.ultraGroupBox1.Controls.Add(this.btnVendorSplit);
     this.ultraGroupBox1.Controls.Add(this.btnFilter);
     this.ultraGroupBox1.Controls.Add(this.cmbQtrTo);
     this.ultraGroupBox1.Controls.Add(this.cmbQtrFrom);
     this.ultraGroupBox1.Controls.Add(this.ultraLabel1);
     this.ultraGroupBox1.Controls.Add(this.btnCopy);
     this.ultraGroupBox1.Controls.Add(this.lblQtr);
     this.ultraGroupBox1.Location = new System.Drawing.Point(0, 0);
     this.ultraGroupBox1.Name     = "ultraGroupBox1";
     this.ultraGroupBox1.Size     = new System.Drawing.Size(1900, 42);
     this.ultraGroupBox1.TabIndex = 58;
     //
     // ultraLabel1
     //
     appearance28.BackColorAlpha = Infragistics.Win.Alpha.Transparent;
     this.ultraLabel1.Appearance = appearance28;
     this.ultraLabel1.Font       = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.ultraLabel1.Location   = new System.Drawing.Point(628, 12);
     this.ultraLabel1.Name       = "ultraLabel1";
     this.ultraLabel1.Size       = new System.Drawing.Size(72, 15);
     this.ultraLabel1.TabIndex   = 53;
     this.ultraLabel1.Text       = "To Quarter:";
     //
     // btnCopy
     //
     appearance29.BackColor  = System.Drawing.Color.DarkGreen;
     appearance29.ForeColor  = System.Drawing.Color.White;
     this.btnCopy.Appearance = appearance29;
     this.btnCopy.Font       = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btnCopy.Location   = new System.Drawing.Point(812, 6);
     this.btnCopy.Name       = "btnCopy";
     this.btnCopy.Size       = new System.Drawing.Size(89, 25);
     this.btnCopy.TabIndex   = 49;
     this.btnCopy.Text       = "Copy Part";
     this.btnCopy.Click     += new System.EventHandler(this.btnCopy_Click);
     //
     // lblQtr
     //
     appearance30.BackColorAlpha = Infragistics.Win.Alpha.Transparent;
     this.lblQtr.Appearance      = appearance30;
     this.lblQtr.Font            = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblQtr.Location        = new System.Drawing.Point(234, 15);
     this.lblQtr.Name            = "lblQtr";
     this.lblQtr.Size            = new System.Drawing.Size(90, 15);
     this.lblQtr.TabIndex        = 46;
     this.lblQtr.Text            = "From Quarter:";
     //
     // cmbQtrFrom
     //
     appearance16.BackColor   = System.Drawing.SystemColors.Window;
     appearance16.BorderColor = System.Drawing.SystemColors.InactiveCaption;
     this.cmbQtrFrom.DisplayLayout.Appearance     = appearance16;
     this.cmbQtrFrom.DisplayLayout.BorderStyle    = Infragistics.Win.UIElementBorderStyle.Solid;
     this.cmbQtrFrom.DisplayLayout.CaptionVisible = Infragistics.Win.DefaultableBoolean.False;
     appearance17.BackColor         = System.Drawing.SystemColors.ActiveBorder;
     appearance17.BackColor2        = System.Drawing.SystemColors.ControlDark;
     appearance17.BackGradientStyle = Infragistics.Win.GradientStyle.Vertical;
     appearance17.BorderColor       = System.Drawing.SystemColors.Window;
     this.cmbQtrFrom.DisplayLayout.GroupByBox.Appearance = appearance17;
     appearance18.ForeColor = System.Drawing.SystemColors.GrayText;
     this.cmbQtrFrom.DisplayLayout.GroupByBox.BandLabelAppearance = appearance18;
     this.cmbQtrFrom.DisplayLayout.GroupByBox.BorderStyle         = Infragistics.Win.UIElementBorderStyle.Solid;
     appearance19.BackColor         = System.Drawing.SystemColors.ControlLightLight;
     appearance19.BackColor2        = System.Drawing.SystemColors.Control;
     appearance19.BackGradientStyle = Infragistics.Win.GradientStyle.Horizontal;
     appearance19.ForeColor         = System.Drawing.SystemColors.GrayText;
     this.cmbQtrFrom.DisplayLayout.GroupByBox.PromptAppearance = appearance19;
     this.cmbQtrFrom.DisplayLayout.MaxColScrollRegions         = 1;
     this.cmbQtrFrom.DisplayLayout.MaxRowScrollRegions         = 1;
     appearance20.BackColor = System.Drawing.SystemColors.Window;
     appearance20.ForeColor = System.Drawing.SystemColors.ControlText;
     this.cmbQtrFrom.DisplayLayout.Override.ActiveCellAppearance = appearance20;
     appearance21.BackColor = System.Drawing.SystemColors.Highlight;
     appearance21.ForeColor = System.Drawing.SystemColors.HighlightText;
     this.cmbQtrFrom.DisplayLayout.Override.ActiveRowAppearance = appearance21;
     this.cmbQtrFrom.DisplayLayout.Override.BorderStyleCell     = Infragistics.Win.UIElementBorderStyle.Dotted;
     this.cmbQtrFrom.DisplayLayout.Override.BorderStyleRow      = Infragistics.Win.UIElementBorderStyle.Dotted;
     appearance22.BackColor = System.Drawing.SystemColors.Window;
     this.cmbQtrFrom.DisplayLayout.Override.CardAreaAppearance = appearance22;
     appearance23.BorderColor  = System.Drawing.Color.Silver;
     appearance23.TextTrimming = Infragistics.Win.TextTrimming.EllipsisCharacter;
     this.cmbQtrFrom.DisplayLayout.Override.CellAppearance  = appearance23;
     this.cmbQtrFrom.DisplayLayout.Override.CellClickAction = Infragistics.Win.UltraWinGrid.CellClickAction.EditAndSelectText;
     this.cmbQtrFrom.DisplayLayout.Override.CellPadding     = 0;
     appearance24.BackColor             = System.Drawing.SystemColors.Control;
     appearance24.BackColor2            = System.Drawing.SystemColors.ControlDark;
     appearance24.BackGradientAlignment = Infragistics.Win.GradientAlignment.Element;
     appearance24.BackGradientStyle     = Infragistics.Win.GradientStyle.Horizontal;
     appearance24.BorderColor           = System.Drawing.SystemColors.Window;
     this.cmbQtrFrom.DisplayLayout.Override.GroupByRowAppearance = appearance24;
     appearance25.TextHAlignAsString = "Left";
     this.cmbQtrFrom.DisplayLayout.Override.HeaderAppearance  = appearance25;
     this.cmbQtrFrom.DisplayLayout.Override.HeaderClickAction = Infragistics.Win.UltraWinGrid.HeaderClickAction.SortMulti;
     this.cmbQtrFrom.DisplayLayout.Override.HeaderStyle       = Infragistics.Win.HeaderStyle.WindowsXPCommand;
     appearance26.BackColor   = System.Drawing.SystemColors.Window;
     appearance26.BorderColor = System.Drawing.Color.Silver;
     this.cmbQtrFrom.DisplayLayout.Override.RowAppearance = appearance26;
     this.cmbQtrFrom.DisplayLayout.Override.RowSelectors  = Infragistics.Win.DefaultableBoolean.False;
     appearance27.BackColor = System.Drawing.SystemColors.ControlLight;
     this.cmbQtrFrom.DisplayLayout.Override.TemplateAddRowAppearance = appearance27;
     this.cmbQtrFrom.DisplayLayout.ScrollBounds  = Infragistics.Win.UltraWinGrid.ScrollBounds.ScrollToFill;
     this.cmbQtrFrom.DisplayLayout.ScrollStyle   = Infragistics.Win.UltraWinGrid.ScrollStyle.Immediate;
     this.cmbQtrFrom.DisplayLayout.ViewStyleBand = Infragistics.Win.UltraWinGrid.ViewStyleBand.OutlookGroupBy;
     this.cmbQtrFrom.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     ultraGridLayout4.Key = "USD";
     ultraGridLayout5.Key = "EUR";
     ultraGridLayout6.Key = "SDG";
     this.cmbQtrFrom.Layouts.Add(ultraGridLayout4);
     this.cmbQtrFrom.Layouts.Add(ultraGridLayout5);
     this.cmbQtrFrom.Layouts.Add(ultraGridLayout6);
     this.cmbQtrFrom.Location = new System.Drawing.Point(317, 10);
     this.cmbQtrFrom.Name     = "cmbQtrFrom";
     this.cmbQtrFrom.Size     = new System.Drawing.Size(100, 22);
     this.cmbQtrFrom.TabIndex = 57;
     //
     // cmbQtrTo
     //
     appearance4.BackColor   = System.Drawing.SystemColors.Window;
     appearance4.BorderColor = System.Drawing.SystemColors.InactiveCaption;
     this.cmbQtrTo.DisplayLayout.Appearance     = appearance4;
     this.cmbQtrTo.DisplayLayout.BorderStyle    = Infragistics.Win.UIElementBorderStyle.Solid;
     this.cmbQtrTo.DisplayLayout.CaptionVisible = Infragistics.Win.DefaultableBoolean.False;
     appearance5.BackColor         = System.Drawing.SystemColors.ActiveBorder;
     appearance5.BackColor2        = System.Drawing.SystemColors.ControlDark;
     appearance5.BackGradientStyle = Infragistics.Win.GradientStyle.Vertical;
     appearance5.BorderColor       = System.Drawing.SystemColors.Window;
     this.cmbQtrTo.DisplayLayout.GroupByBox.Appearance = appearance5;
     appearance6.ForeColor = System.Drawing.SystemColors.GrayText;
     this.cmbQtrTo.DisplayLayout.GroupByBox.BandLabelAppearance = appearance6;
     this.cmbQtrTo.DisplayLayout.GroupByBox.BorderStyle         = Infragistics.Win.UIElementBorderStyle.Solid;
     appearance7.BackColor         = System.Drawing.SystemColors.ControlLightLight;
     appearance7.BackColor2        = System.Drawing.SystemColors.Control;
     appearance7.BackGradientStyle = Infragistics.Win.GradientStyle.Horizontal;
     appearance7.ForeColor         = System.Drawing.SystemColors.GrayText;
     this.cmbQtrTo.DisplayLayout.GroupByBox.PromptAppearance = appearance7;
     this.cmbQtrTo.DisplayLayout.MaxColScrollRegions         = 1;
     this.cmbQtrTo.DisplayLayout.MaxRowScrollRegions         = 1;
     appearance8.BackColor = System.Drawing.SystemColors.Window;
     appearance8.ForeColor = System.Drawing.SystemColors.ControlText;
     this.cmbQtrTo.DisplayLayout.Override.ActiveCellAppearance = appearance8;
     appearance9.BackColor = System.Drawing.SystemColors.Highlight;
     appearance9.ForeColor = System.Drawing.SystemColors.HighlightText;
     this.cmbQtrTo.DisplayLayout.Override.ActiveRowAppearance = appearance9;
     this.cmbQtrTo.DisplayLayout.Override.BorderStyleCell     = Infragistics.Win.UIElementBorderStyle.Dotted;
     this.cmbQtrTo.DisplayLayout.Override.BorderStyleRow      = Infragistics.Win.UIElementBorderStyle.Dotted;
     appearance10.BackColor = System.Drawing.SystemColors.Window;
     this.cmbQtrTo.DisplayLayout.Override.CardAreaAppearance = appearance10;
     appearance11.BorderColor  = System.Drawing.Color.Silver;
     appearance11.TextTrimming = Infragistics.Win.TextTrimming.EllipsisCharacter;
     this.cmbQtrTo.DisplayLayout.Override.CellAppearance  = appearance11;
     this.cmbQtrTo.DisplayLayout.Override.CellClickAction = Infragistics.Win.UltraWinGrid.CellClickAction.EditAndSelectText;
     this.cmbQtrTo.DisplayLayout.Override.CellPadding     = 0;
     appearance12.BackColor             = System.Drawing.SystemColors.Control;
     appearance12.BackColor2            = System.Drawing.SystemColors.ControlDark;
     appearance12.BackGradientAlignment = Infragistics.Win.GradientAlignment.Element;
     appearance12.BackGradientStyle     = Infragistics.Win.GradientStyle.Horizontal;
     appearance12.BorderColor           = System.Drawing.SystemColors.Window;
     this.cmbQtrTo.DisplayLayout.Override.GroupByRowAppearance = appearance12;
     appearance13.TextHAlignAsString = "Left";
     this.cmbQtrTo.DisplayLayout.Override.HeaderAppearance  = appearance13;
     this.cmbQtrTo.DisplayLayout.Override.HeaderClickAction = Infragistics.Win.UltraWinGrid.HeaderClickAction.SortMulti;
     this.cmbQtrTo.DisplayLayout.Override.HeaderStyle       = Infragistics.Win.HeaderStyle.WindowsXPCommand;
     appearance14.BackColor   = System.Drawing.SystemColors.Window;
     appearance14.BorderColor = System.Drawing.Color.Silver;
     this.cmbQtrTo.DisplayLayout.Override.RowAppearance = appearance14;
     this.cmbQtrTo.DisplayLayout.Override.RowSelectors  = Infragistics.Win.DefaultableBoolean.False;
     appearance15.BackColor = System.Drawing.SystemColors.ControlLight;
     this.cmbQtrTo.DisplayLayout.Override.TemplateAddRowAppearance = appearance15;
     this.cmbQtrTo.DisplayLayout.ScrollBounds  = Infragistics.Win.UltraWinGrid.ScrollBounds.ScrollToFill;
     this.cmbQtrTo.DisplayLayout.ScrollStyle   = Infragistics.Win.UltraWinGrid.ScrollStyle.Immediate;
     this.cmbQtrTo.DisplayLayout.ViewStyleBand = Infragistics.Win.UltraWinGrid.ViewStyleBand.OutlookGroupBy;
     this.cmbQtrTo.Font   = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     ultraGridLayout1.Key = "USD";
     ultraGridLayout2.Key = "EUR";
     ultraGridLayout3.Key = "SDG";
     this.cmbQtrTo.Layouts.Add(ultraGridLayout1);
     this.cmbQtrTo.Layouts.Add(ultraGridLayout2);
     this.cmbQtrTo.Layouts.Add(ultraGridLayout3);
     this.cmbQtrTo.Location = new System.Drawing.Point(706, 8);
     this.cmbQtrTo.Name     = "cmbQtrTo";
     this.cmbQtrTo.Size     = new System.Drawing.Size(100, 22);
     this.cmbQtrTo.TabIndex = 58;
     //
     // btnFilter
     //
     appearance3.BackColor     = System.Drawing.Color.DarkGreen;
     appearance3.ForeColor     = System.Drawing.Color.White;
     this.btnFilter.Appearance = appearance3;
     this.btnFilter.Font       = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btnFilter.Location   = new System.Drawing.Point(423, 7);
     this.btnFilter.Name       = "btnFilter";
     this.btnFilter.Size       = new System.Drawing.Size(90, 25);
     this.btnFilter.TabIndex   = 59;
     this.btnFilter.Text       = "Show Data Fo From Quarter";
     this.btnFilter.Click     += new System.EventHandler(this.btnFilter_Click);
     //
     // ugData
     //
     appearance31.BackColor                                      = System.Drawing.SystemColors.Window;
     appearance31.BorderColor                                    = System.Drawing.SystemColors.InactiveCaption;
     this.ugData.DisplayLayout.Appearance                        = appearance31;
     this.ugData.DisplayLayout.BorderStyle                       = Infragistics.Win.UIElementBorderStyle.Solid;
     this.ugData.DisplayLayout.CaptionVisible                    = Infragistics.Win.DefaultableBoolean.False;
     appearance32.BackColor                                      = System.Drawing.SystemColors.ActiveBorder;
     appearance32.BackColor2                                     = System.Drawing.SystemColors.ControlDark;
     appearance32.BackGradientStyle                              = Infragistics.Win.GradientStyle.Vertical;
     appearance32.BorderColor                                    = System.Drawing.SystemColors.Window;
     this.ugData.DisplayLayout.GroupByBox.Appearance             = appearance32;
     appearance33.ForeColor                                      = System.Drawing.SystemColors.GrayText;
     this.ugData.DisplayLayout.GroupByBox.BandLabelAppearance    = appearance33;
     this.ugData.DisplayLayout.GroupByBox.BorderStyle            = Infragistics.Win.UIElementBorderStyle.Solid;
     this.ugData.DisplayLayout.GroupByBox.Hidden                 = true;
     appearance34.BackColor                                      = System.Drawing.SystemColors.ControlLightLight;
     appearance34.BackColor2                                     = System.Drawing.SystemColors.Control;
     appearance34.BackGradientStyle                              = Infragistics.Win.GradientStyle.Horizontal;
     appearance34.ForeColor                                      = System.Drawing.SystemColors.GrayText;
     this.ugData.DisplayLayout.GroupByBox.PromptAppearance       = appearance34;
     this.ugData.DisplayLayout.MaxColScrollRegions               = 1;
     this.ugData.DisplayLayout.MaxRowScrollRegions               = 1;
     appearance35.BackColor                                      = System.Drawing.SystemColors.Window;
     appearance35.ForeColor                                      = System.Drawing.SystemColors.ControlText;
     this.ugData.DisplayLayout.Override.ActiveCellAppearance     = appearance35;
     appearance36.BackColor                                      = System.Drawing.SystemColors.Highlight;
     appearance36.ForeColor                                      = System.Drawing.SystemColors.HighlightText;
     this.ugData.DisplayLayout.Override.ActiveRowAppearance      = appearance36;
     this.ugData.DisplayLayout.Override.BorderStyleCell          = Infragistics.Win.UIElementBorderStyle.Dotted;
     this.ugData.DisplayLayout.Override.BorderStyleRow           = Infragistics.Win.UIElementBorderStyle.Dotted;
     appearance37.BackColor                                      = System.Drawing.SystemColors.Window;
     this.ugData.DisplayLayout.Override.CardAreaAppearance       = appearance37;
     appearance38.BorderColor                                    = System.Drawing.Color.Silver;
     appearance38.TextTrimming                                   = Infragistics.Win.TextTrimming.EllipsisCharacter;
     this.ugData.DisplayLayout.Override.CellAppearance           = appearance38;
     this.ugData.DisplayLayout.Override.CellClickAction          = Infragistics.Win.UltraWinGrid.CellClickAction.EditAndSelectText;
     this.ugData.DisplayLayout.Override.CellPadding              = 0;
     appearance39.BackColor                                      = System.Drawing.SystemColors.Control;
     appearance39.BackColor2                                     = System.Drawing.SystemColors.ControlDark;
     appearance39.BackGradientAlignment                          = Infragistics.Win.GradientAlignment.Element;
     appearance39.BackGradientStyle                              = Infragistics.Win.GradientStyle.Horizontal;
     appearance39.BorderColor                                    = System.Drawing.SystemColors.Window;
     this.ugData.DisplayLayout.Override.GroupByRowAppearance     = appearance39;
     appearance40.TextHAlignAsString                             = "Left";
     this.ugData.DisplayLayout.Override.HeaderAppearance         = appearance40;
     this.ugData.DisplayLayout.Override.HeaderClickAction        = Infragistics.Win.UltraWinGrid.HeaderClickAction.SortMulti;
     this.ugData.DisplayLayout.Override.HeaderStyle              = Infragistics.Win.HeaderStyle.WindowsXPCommand;
     appearance41.BackColor                                      = System.Drawing.SystemColors.Window;
     appearance41.BorderColor                                    = System.Drawing.Color.Silver;
     this.ugData.DisplayLayout.Override.RowAppearance            = appearance41;
     this.ugData.DisplayLayout.Override.RowSelectors             = Infragistics.Win.DefaultableBoolean.False;
     appearance42.BackColor                                      = System.Drawing.SystemColors.ControlLight;
     this.ugData.DisplayLayout.Override.TemplateAddRowAppearance = appearance42;
     this.ugData.DisplayLayout.ScrollBounds                      = Infragistics.Win.UltraWinGrid.ScrollBounds.ScrollToFill;
     this.ugData.DisplayLayout.ScrollStyle                       = Infragistics.Win.UltraWinGrid.ScrollStyle.Immediate;
     this.ugData.DisplayLayout.ViewStyleBand                     = Infragistics.Win.UltraWinGrid.ViewStyleBand.OutlookGroupBy;
     this.ugData.Location = new System.Drawing.Point(10, 50);
     this.ugData.Name     = "ugData";
     this.ugData.Size     = new System.Drawing.Size(1370, 741);
     this.ugData.TabIndex = 59;
     this.ugData.Text     = "ultraGrid1";
     //
     // btnVendorSplit
     //
     appearance2.BackColor          = System.Drawing.Color.DarkGreen;
     appearance2.ForeColor          = System.Drawing.Color.White;
     this.btnVendorSplit.Appearance = appearance2;
     this.btnVendorSplit.Font       = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btnVendorSplit.Location   = new System.Drawing.Point(1020, 8);
     this.btnVendorSplit.Name       = "btnVendorSplit";
     this.btnVendorSplit.Size       = new System.Drawing.Size(153, 25);
     this.btnVendorSplit.TabIndex   = 60;
     this.btnVendorSplit.Text       = "Copy Vendor Split";
     this.btnVendorSplit.Click     += new System.EventHandler(this.ultraButton1_Click);
     //
     // frmQuoteCopy
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize          = new System.Drawing.Size(1392, 803);
     this.Controls.Add(this.ugData);
     this.Controls.Add(this.ultraGroupBox1);
     this.Name  = "frmQuoteCopy";
     this.Text  = "Quote Copy";
     this.Load += new System.EventHandler(this.frmQuoteCopy_Load);
     ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox1)).EndInit();
     this.ultraGroupBox1.ResumeLayout(false);
     this.ultraGroupBox1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.cmbQtrFrom)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbQtrTo)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ugData)).EndInit();
     this.ResumeLayout(false);
 }
Ejemplo n.º 6
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     Infragistics.Win.Appearance appearance1  = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance2  = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance3  = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance4  = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance5  = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance6  = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance7  = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance8  = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance9  = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance10 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance11 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance12 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance13 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance14 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance15 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance16 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance17 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance18 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance19 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance20 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance21 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance22 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance23 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance24 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance25 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance26 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance27 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance28 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance29 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance30 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance31 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance32 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance33 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance34 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance35 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance36 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance37 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance38 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridLayout ultraGridLayout1 = new Infragistics.Win.UltraWinGrid.UltraGridLayout("USD");
     Infragistics.Win.UltraWinGrid.UltraGridLayout ultraGridLayout2 = new Infragistics.Win.UltraWinGrid.UltraGridLayout("EUR");
     Infragistics.Win.UltraWinGrid.UltraGridLayout ultraGridLayout3 = new Infragistics.Win.UltraWinGrid.UltraGridLayout("SDG");
     Infragistics.Win.Appearance appearance39 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance40 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance41 = new Infragistics.Win.Appearance();
     this.ultraGroupBox1   = new Infragistics.Win.Misc.UltraGroupBox();
     this.btnExport        = new Infragistics.Win.Misc.UltraButton();
     this.ultraDropDown1   = new Infragistics.Win.UltraWinGrid.UltraDropDown();
     this.vendor           = new Infragistics.Win.UltraWinGrid.UltraCombo();
     this.ComboQtr         = new Infragistics.Win.UltraWinGrid.UltraCombo();
     this.lblQtr           = new Infragistics.Win.Misc.UltraLabel();
     this.ultraTextEditor2 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
     this.ultraLabel2      = new Infragistics.Win.Misc.UltraLabel();
     ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox1)).BeginInit();
     this.ultraGroupBox1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.ultraDropDown1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.vendor)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ComboQtr)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor2)).BeginInit();
     this.SuspendLayout();
     //
     // ultraGroupBox1
     //
     appearance1.BackColor = System.Drawing.Color.LightGray;
     this.ultraGroupBox1.ContentAreaAppearance = appearance1;
     this.ultraGroupBox1.Controls.Add(this.btnExport);
     this.ultraGroupBox1.Controls.Add(this.ultraDropDown1);
     this.ultraGroupBox1.Controls.Add(this.vendor);
     this.ultraGroupBox1.Controls.Add(this.ComboQtr);
     this.ultraGroupBox1.Controls.Add(this.lblQtr);
     this.ultraGroupBox1.Controls.Add(this.ultraTextEditor2);
     this.ultraGroupBox1.Controls.Add(this.ultraLabel2);
     this.ultraGroupBox1.Location = new System.Drawing.Point(0, 0);
     this.ultraGroupBox1.Name     = "ultraGroupBox1";
     this.ultraGroupBox1.Size     = new System.Drawing.Size(1865, 42);
     this.ultraGroupBox1.TabIndex = 58;
     //
     // btnExport
     //
     appearance2.BackColor     = System.Drawing.Color.Brown;
     appearance2.ForeColor     = System.Drawing.Color.White;
     this.btnExport.Appearance = appearance2;
     this.btnExport.Font       = new System.Drawing.Font("Arial", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btnExport.Location   = new System.Drawing.Point(253, 12);
     this.btnExport.Name       = "btnExport";
     this.btnExport.Size       = new System.Drawing.Size(111, 23);
     this.btnExport.TabIndex   = 53;
     this.btnExport.Text       = "Export";
     this.btnExport.Click     += new System.EventHandler(this.btnExport_Click);
     //
     // ultraDropDown1
     //
     appearance3.BackColor   = System.Drawing.SystemColors.Window;
     appearance3.BorderColor = System.Drawing.SystemColors.InactiveCaption;
     this.ultraDropDown1.DisplayLayout.Appearance     = appearance3;
     this.ultraDropDown1.DisplayLayout.BorderStyle    = Infragistics.Win.UIElementBorderStyle.Solid;
     this.ultraDropDown1.DisplayLayout.CaptionVisible = Infragistics.Win.DefaultableBoolean.False;
     appearance4.BackColor         = System.Drawing.SystemColors.ActiveBorder;
     appearance4.BackColor2        = System.Drawing.SystemColors.ControlDark;
     appearance4.BackGradientStyle = Infragistics.Win.GradientStyle.Vertical;
     appearance4.BorderColor       = System.Drawing.SystemColors.Window;
     this.ultraDropDown1.DisplayLayout.GroupByBox.Appearance = appearance4;
     appearance5.ForeColor = System.Drawing.SystemColors.GrayText;
     this.ultraDropDown1.DisplayLayout.GroupByBox.BandLabelAppearance = appearance5;
     this.ultraDropDown1.DisplayLayout.GroupByBox.BorderStyle         = Infragistics.Win.UIElementBorderStyle.Solid;
     appearance6.BackColor         = System.Drawing.SystemColors.ControlLightLight;
     appearance6.BackColor2        = System.Drawing.SystemColors.Control;
     appearance6.BackGradientStyle = Infragistics.Win.GradientStyle.Horizontal;
     appearance6.ForeColor         = System.Drawing.SystemColors.GrayText;
     this.ultraDropDown1.DisplayLayout.GroupByBox.PromptAppearance = appearance6;
     this.ultraDropDown1.DisplayLayout.MaxColScrollRegions         = 1;
     this.ultraDropDown1.DisplayLayout.MaxRowScrollRegions         = 1;
     appearance7.BackColor = System.Drawing.SystemColors.Window;
     appearance7.ForeColor = System.Drawing.SystemColors.ControlText;
     this.ultraDropDown1.DisplayLayout.Override.ActiveCellAppearance = appearance7;
     appearance8.BackColor = System.Drawing.SystemColors.Highlight;
     appearance8.ForeColor = System.Drawing.SystemColors.HighlightText;
     this.ultraDropDown1.DisplayLayout.Override.ActiveRowAppearance = appearance8;
     this.ultraDropDown1.DisplayLayout.Override.BorderStyleCell     = Infragistics.Win.UIElementBorderStyle.Dotted;
     this.ultraDropDown1.DisplayLayout.Override.BorderStyleRow      = Infragistics.Win.UIElementBorderStyle.Dotted;
     appearance9.BackColor = System.Drawing.SystemColors.Window;
     this.ultraDropDown1.DisplayLayout.Override.CardAreaAppearance = appearance9;
     appearance10.BorderColor  = System.Drawing.Color.Silver;
     appearance10.TextTrimming = Infragistics.Win.TextTrimming.EllipsisCharacter;
     this.ultraDropDown1.DisplayLayout.Override.CellAppearance  = appearance10;
     this.ultraDropDown1.DisplayLayout.Override.CellClickAction = Infragistics.Win.UltraWinGrid.CellClickAction.EditAndSelectText;
     this.ultraDropDown1.DisplayLayout.Override.CellPadding     = 0;
     appearance11.BackColor             = System.Drawing.SystemColors.Control;
     appearance11.BackColor2            = System.Drawing.SystemColors.ControlDark;
     appearance11.BackGradientAlignment = Infragistics.Win.GradientAlignment.Element;
     appearance11.BackGradientStyle     = Infragistics.Win.GradientStyle.Horizontal;
     appearance11.BorderColor           = System.Drawing.SystemColors.Window;
     this.ultraDropDown1.DisplayLayout.Override.GroupByRowAppearance = appearance11;
     appearance12.TextHAlignAsString = "Left";
     this.ultraDropDown1.DisplayLayout.Override.HeaderAppearance  = appearance12;
     this.ultraDropDown1.DisplayLayout.Override.HeaderClickAction = Infragistics.Win.UltraWinGrid.HeaderClickAction.SortMulti;
     this.ultraDropDown1.DisplayLayout.Override.HeaderStyle       = Infragistics.Win.HeaderStyle.WindowsXPCommand;
     appearance13.BackColor   = System.Drawing.SystemColors.Window;
     appearance13.BorderColor = System.Drawing.Color.Silver;
     this.ultraDropDown1.DisplayLayout.Override.RowAppearance = appearance13;
     this.ultraDropDown1.DisplayLayout.Override.RowSelectors  = Infragistics.Win.DefaultableBoolean.False;
     appearance14.BackColor = System.Drawing.SystemColors.ControlLight;
     this.ultraDropDown1.DisplayLayout.Override.TemplateAddRowAppearance = appearance14;
     this.ultraDropDown1.DisplayLayout.ScrollBounds  = Infragistics.Win.UltraWinGrid.ScrollBounds.ScrollToFill;
     this.ultraDropDown1.DisplayLayout.ScrollStyle   = Infragistics.Win.UltraWinGrid.ScrollStyle.Immediate;
     this.ultraDropDown1.DisplayLayout.ViewStyleBand = Infragistics.Win.UltraWinGrid.ViewStyleBand.OutlookGroupBy;
     this.ultraDropDown1.Location = new System.Drawing.Point(1378, 6);
     this.ultraDropDown1.Name     = "ultraDropDown1";
     this.ultraDropDown1.Size     = new System.Drawing.Size(133, 33);
     this.ultraDropDown1.TabIndex = 51;
     this.ultraDropDown1.Text     = "ultraDropDown2";
     this.ultraDropDown1.Visible  = false;
     //
     // vendor
     //
     appearance15.BackColor                                      = System.Drawing.SystemColors.Window;
     appearance15.BorderColor                                    = System.Drawing.SystemColors.InactiveCaption;
     this.vendor.DisplayLayout.Appearance                        = appearance15;
     this.vendor.DisplayLayout.AutoFitStyle                      = Infragistics.Win.UltraWinGrid.AutoFitStyle.ResizeAllColumns;
     this.vendor.DisplayLayout.BorderStyle                       = Infragistics.Win.UIElementBorderStyle.Solid;
     this.vendor.DisplayLayout.CaptionVisible                    = Infragistics.Win.DefaultableBoolean.False;
     appearance16.BackColor                                      = System.Drawing.SystemColors.ActiveBorder;
     appearance16.BackColor2                                     = System.Drawing.SystemColors.ControlDark;
     appearance16.BackGradientStyle                              = Infragistics.Win.GradientStyle.Vertical;
     appearance16.BorderColor                                    = System.Drawing.SystemColors.Window;
     this.vendor.DisplayLayout.GroupByBox.Appearance             = appearance16;
     appearance17.ForeColor                                      = System.Drawing.SystemColors.GrayText;
     this.vendor.DisplayLayout.GroupByBox.BandLabelAppearance    = appearance17;
     this.vendor.DisplayLayout.GroupByBox.BorderStyle            = Infragistics.Win.UIElementBorderStyle.Solid;
     appearance18.BackColor                                      = System.Drawing.SystemColors.ControlLightLight;
     appearance18.BackColor2                                     = System.Drawing.SystemColors.Control;
     appearance18.BackGradientStyle                              = Infragistics.Win.GradientStyle.Horizontal;
     appearance18.ForeColor                                      = System.Drawing.SystemColors.GrayText;
     this.vendor.DisplayLayout.GroupByBox.PromptAppearance       = appearance18;
     this.vendor.DisplayLayout.MaxColScrollRegions               = 1;
     this.vendor.DisplayLayout.MaxRowScrollRegions               = 1;
     appearance19.BackColor                                      = System.Drawing.SystemColors.Window;
     appearance19.ForeColor                                      = System.Drawing.SystemColors.ControlText;
     this.vendor.DisplayLayout.Override.ActiveCellAppearance     = appearance19;
     appearance20.BackColor                                      = System.Drawing.SystemColors.Highlight;
     appearance20.ForeColor                                      = System.Drawing.SystemColors.HighlightText;
     this.vendor.DisplayLayout.Override.ActiveRowAppearance      = appearance20;
     this.vendor.DisplayLayout.Override.BorderStyleCell          = Infragistics.Win.UIElementBorderStyle.Dotted;
     this.vendor.DisplayLayout.Override.BorderStyleRow           = Infragistics.Win.UIElementBorderStyle.Dotted;
     appearance21.BackColor                                      = System.Drawing.SystemColors.Window;
     this.vendor.DisplayLayout.Override.CardAreaAppearance       = appearance21;
     appearance22.BorderColor                                    = System.Drawing.Color.Silver;
     appearance22.TextTrimming                                   = Infragistics.Win.TextTrimming.EllipsisCharacter;
     this.vendor.DisplayLayout.Override.CellAppearance           = appearance22;
     this.vendor.DisplayLayout.Override.CellClickAction          = Infragistics.Win.UltraWinGrid.CellClickAction.EditAndSelectText;
     this.vendor.DisplayLayout.Override.CellPadding              = 0;
     appearance23.BackColor                                      = System.Drawing.SystemColors.Control;
     appearance23.BackColor2                                     = System.Drawing.SystemColors.ControlDark;
     appearance23.BackGradientAlignment                          = Infragistics.Win.GradientAlignment.Element;
     appearance23.BackGradientStyle                              = Infragistics.Win.GradientStyle.Horizontal;
     appearance23.BorderColor                                    = System.Drawing.SystemColors.Window;
     this.vendor.DisplayLayout.Override.GroupByRowAppearance     = appearance23;
     appearance24.TextHAlignAsString                             = "Left";
     this.vendor.DisplayLayout.Override.HeaderAppearance         = appearance24;
     this.vendor.DisplayLayout.Override.HeaderClickAction        = Infragistics.Win.UltraWinGrid.HeaderClickAction.SortMulti;
     this.vendor.DisplayLayout.Override.HeaderStyle              = Infragistics.Win.HeaderStyle.WindowsXPCommand;
     appearance25.BackColor                                      = System.Drawing.SystemColors.Window;
     appearance25.BorderColor                                    = System.Drawing.Color.Silver;
     this.vendor.DisplayLayout.Override.RowAppearance            = appearance25;
     this.vendor.DisplayLayout.Override.RowSelectors             = Infragistics.Win.DefaultableBoolean.False;
     appearance26.BackColor                                      = System.Drawing.SystemColors.ControlLight;
     this.vendor.DisplayLayout.Override.TemplateAddRowAppearance = appearance26;
     this.vendor.DisplayLayout.ScrollBounds                      = Infragistics.Win.UltraWinGrid.ScrollBounds.ScrollToFill;
     this.vendor.DisplayLayout.ScrollStyle                       = Infragistics.Win.UltraWinGrid.ScrollStyle.Immediate;
     this.vendor.DisplayLayout.ViewStyleBand                     = Infragistics.Win.UltraWinGrid.ViewStyleBand.OutlookGroupBy;
     this.vendor.Font     = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.vendor.Location = new System.Drawing.Point(66, 12);
     this.vendor.Name     = "vendor";
     this.vendor.Size     = new System.Drawing.Size(181, 23);
     this.vendor.TabIndex = 48;
     //
     // ComboQtr
     //
     appearance27.BackColor   = System.Drawing.SystemColors.Window;
     appearance27.BorderColor = System.Drawing.SystemColors.InactiveCaption;
     this.ComboQtr.DisplayLayout.Appearance     = appearance27;
     this.ComboQtr.DisplayLayout.BorderStyle    = Infragistics.Win.UIElementBorderStyle.Solid;
     this.ComboQtr.DisplayLayout.CaptionVisible = Infragistics.Win.DefaultableBoolean.False;
     appearance28.BackColor         = System.Drawing.SystemColors.ActiveBorder;
     appearance28.BackColor2        = System.Drawing.SystemColors.ControlDark;
     appearance28.BackGradientStyle = Infragistics.Win.GradientStyle.Vertical;
     appearance28.BorderColor       = System.Drawing.SystemColors.Window;
     this.ComboQtr.DisplayLayout.GroupByBox.Appearance = appearance28;
     appearance29.ForeColor = System.Drawing.SystemColors.GrayText;
     this.ComboQtr.DisplayLayout.GroupByBox.BandLabelAppearance = appearance29;
     this.ComboQtr.DisplayLayout.GroupByBox.BorderStyle         = Infragistics.Win.UIElementBorderStyle.Solid;
     appearance30.BackColor         = System.Drawing.SystemColors.ControlLightLight;
     appearance30.BackColor2        = System.Drawing.SystemColors.Control;
     appearance30.BackGradientStyle = Infragistics.Win.GradientStyle.Horizontal;
     appearance30.ForeColor         = System.Drawing.SystemColors.GrayText;
     this.ComboQtr.DisplayLayout.GroupByBox.PromptAppearance = appearance30;
     this.ComboQtr.DisplayLayout.MaxColScrollRegions         = 1;
     this.ComboQtr.DisplayLayout.MaxRowScrollRegions         = 1;
     appearance31.BackColor = System.Drawing.SystemColors.Window;
     appearance31.ForeColor = System.Drawing.SystemColors.ControlText;
     this.ComboQtr.DisplayLayout.Override.ActiveCellAppearance = appearance31;
     appearance32.BackColor = System.Drawing.SystemColors.Highlight;
     appearance32.ForeColor = System.Drawing.SystemColors.HighlightText;
     this.ComboQtr.DisplayLayout.Override.ActiveRowAppearance = appearance32;
     this.ComboQtr.DisplayLayout.Override.BorderStyleCell     = Infragistics.Win.UIElementBorderStyle.Dotted;
     this.ComboQtr.DisplayLayout.Override.BorderStyleRow      = Infragistics.Win.UIElementBorderStyle.Dotted;
     appearance33.BackColor = System.Drawing.SystemColors.Window;
     this.ComboQtr.DisplayLayout.Override.CardAreaAppearance = appearance33;
     appearance34.BorderColor  = System.Drawing.Color.Silver;
     appearance34.TextTrimming = Infragistics.Win.TextTrimming.EllipsisCharacter;
     this.ComboQtr.DisplayLayout.Override.CellAppearance  = appearance34;
     this.ComboQtr.DisplayLayout.Override.CellClickAction = Infragistics.Win.UltraWinGrid.CellClickAction.EditAndSelectText;
     this.ComboQtr.DisplayLayout.Override.CellPadding     = 0;
     appearance35.BackColor             = System.Drawing.SystemColors.Control;
     appearance35.BackColor2            = System.Drawing.SystemColors.ControlDark;
     appearance35.BackGradientAlignment = Infragistics.Win.GradientAlignment.Element;
     appearance35.BackGradientStyle     = Infragistics.Win.GradientStyle.Horizontal;
     appearance35.BorderColor           = System.Drawing.SystemColors.Window;
     this.ComboQtr.DisplayLayout.Override.GroupByRowAppearance = appearance35;
     appearance36.TextHAlignAsString = "Left";
     this.ComboQtr.DisplayLayout.Override.HeaderAppearance  = appearance36;
     this.ComboQtr.DisplayLayout.Override.HeaderClickAction = Infragistics.Win.UltraWinGrid.HeaderClickAction.SortMulti;
     this.ComboQtr.DisplayLayout.Override.HeaderStyle       = Infragistics.Win.HeaderStyle.WindowsXPCommand;
     appearance37.BackColor   = System.Drawing.SystemColors.Window;
     appearance37.BorderColor = System.Drawing.Color.Silver;
     this.ComboQtr.DisplayLayout.Override.RowAppearance = appearance37;
     this.ComboQtr.DisplayLayout.Override.RowSelectors  = Infragistics.Win.DefaultableBoolean.False;
     appearance38.BackColor = System.Drawing.SystemColors.ControlLight;
     this.ComboQtr.DisplayLayout.Override.TemplateAddRowAppearance = appearance38;
     this.ComboQtr.DisplayLayout.ScrollBounds  = Infragistics.Win.UltraWinGrid.ScrollBounds.ScrollToFill;
     this.ComboQtr.DisplayLayout.ScrollStyle   = Infragistics.Win.UltraWinGrid.ScrollStyle.Immediate;
     this.ComboQtr.DisplayLayout.ViewStyleBand = Infragistics.Win.UltraWinGrid.ViewStyleBand.OutlookGroupBy;
     this.ComboQtr.Font   = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     ultraGridLayout1.Key = "USD";
     ultraGridLayout2.Key = "EUR";
     ultraGridLayout3.Key = "SDG";
     this.ComboQtr.Layouts.Add(ultraGridLayout1);
     this.ComboQtr.Layouts.Add(ultraGridLayout2);
     this.ComboQtr.Layouts.Add(ultraGridLayout3);
     this.ComboQtr.Location = new System.Drawing.Point(699, 12);
     this.ComboQtr.Name     = "ComboQtr";
     this.ComboQtr.Size     = new System.Drawing.Size(100, 22);
     this.ComboQtr.TabIndex = 47;
     this.ComboQtr.Visible  = false;
     //
     // lblQtr
     //
     appearance39.BackColorAlpha = Infragistics.Win.Alpha.Transparent;
     this.lblQtr.Appearance      = appearance39;
     this.lblQtr.Font            = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblQtr.Location        = new System.Drawing.Point(639, 18);
     this.lblQtr.Name            = "lblQtr";
     this.lblQtr.Size            = new System.Drawing.Size(54, 15);
     this.lblQtr.TabIndex        = 46;
     this.lblQtr.Text            = "Quarter:";
     this.lblQtr.Visible         = false;
     //
     // ultraTextEditor2
     //
     appearance40.BackColor           = System.Drawing.Color.White;
     this.ultraTextEditor2.Appearance = appearance40;
     this.ultraTextEditor2.BackColor  = System.Drawing.Color.White;
     this.ultraTextEditor2.Font       = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.ultraTextEditor2.Location   = new System.Drawing.Point(1005, 12);
     this.ultraTextEditor2.Name       = "ultraTextEditor2";
     this.ultraTextEditor2.ReadOnly   = true;
     this.ultraTextEditor2.Size       = new System.Drawing.Size(367, 21);
     this.ultraTextEditor2.TabIndex   = 44;
     this.ultraTextEditor2.Visible    = false;
     //
     // ultraLabel2
     //
     appearance41.BackColorAlpha = Infragistics.Win.Alpha.Transparent;
     this.ultraLabel2.Appearance = appearance41;
     this.ultraLabel2.Font       = new System.Drawing.Font("Arial Narrow", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.ultraLabel2.Location   = new System.Drawing.Point(9, 18);
     this.ultraLabel2.Name       = "ultraLabel2";
     this.ultraLabel2.Size       = new System.Drawing.Size(54, 15);
     this.ultraLabel2.TabIndex   = 43;
     this.ultraLabel2.Text       = "Vendor:";
     //
     // Vendor_Protal
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize          = new System.Drawing.Size(1865, 885);
     this.Controls.Add(this.ultraGroupBox1);
     this.Name          = "Vendor_Protal";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text          = "Vendor_Protal";
     this.WindowState   = System.Windows.Forms.FormWindowState.Maximized;
     this.Load         += new System.EventHandler(this.Vendor_Protal_Load);
     ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox1)).EndInit();
     this.ultraGroupBox1.ResumeLayout(false);
     this.ultraGroupBox1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.ultraDropDown1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.vendor)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ComboQtr)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor2)).EndInit();
     this.ResumeLayout(false);
 }