/// <summary>
 /// Creates a ValueList containing all the predefined font sizes.
 /// </summary>
 internal static Infragistics.Win.ValueList GetFontSizeValueList()
 {
     Infragistics.Win.ValueList list = new Infragistics.Win.ValueList();
     foreach (int i in new int[] { 8, 9, 10, 11, 12, 14, 16, 18, 20, 22, 24, 26, 28, 36, 48, 72 })
     {
         list.ValueListItems.Add(i * 20, i.ToString());
     }
     return(list);
 }
        private void listaInitializeRow(object sender, Infragistics.Win.UltraWinGrid.InitializeRowEventArgs e)
        {
            if (e.Row.IsAddRow)
            {
                var modello = (ModelloLetteraTestoDTO)e.Row.ListObject;
                modello.IsDeleteAllow = true;
                modello.IsUpdateAllow = true;
            }

            if (e.Row.IsDataRow && e.Row.ListObject is ModelloLetteraTestoDTO)
            {
                var modello = (ModelloLetteraTestoDTO)e.Row.ListObject;
                if (!modello.IsUpdateAllow)
                {
                    foreach (var cell in e.Row.Cells)
                        cell.Activation = Infragistics.Win.UltraWinGrid.Activation.NoEdit;
                }
            }

            lista.DisplayLayout.ValueLists.Clear();
            if (lista.DisplayLayout.ValueLists.Count == 0)
            {
                if (_tipiModello.Count > 0)
                {
                    var valueList = new Infragistics.Win.ValueList {Key = "TipoModello"};
                    foreach (var tipoModelloLetteraTestoEnum in _tipiModello)
                        valueList.ValueListItems.Add(tipoModelloLetteraTestoEnum, tipoModelloLetteraTestoEnum.ToString());

                    lista.DisplayLayout.ValueLists.Add(valueList);
                }
                else
                    lista.DisplayLayout.ValueLists.Add(DataSourceHelper.GetValueList<TipoModelloLetteraTestoEnum>("TipoModello"));
                lista.DisplayLayout.Bands[0].Columns["Tipo"].ValueList = lista.DisplayLayout.ValueLists["TipoModello"];

                var valueListApplicazione = new Infragistics.Win.ValueList { Key = "Applicazione" };
                valueListApplicazione.ValueListItems.Add("Sollecito");
                valueListApplicazione.ValueListItems.Add("Subentro");
                lista.DisplayLayout.ValueLists.Add(valueListApplicazione);
                lista.DisplayLayout.Bands[0].Columns["Applicazione"].ValueList = lista.DisplayLayout.ValueLists["Applicazione"];
            }
        }
Example #3
0
        /// <summary>
        /// Metodo necessario per il supporto della finestra di progettazione. Non modificare
        /// il contenuto del metodo con l'editor di codice.
        /// </summary>
        private void InitializeComponent()
        {
            Infragistics.Win.UltraWinToolbars.UltraToolbar ultraToolbar1 = new Infragistics.Win.UltraWinToolbars.UltraToolbar("FaxToolBar");
            Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool1 = new Infragistics.Win.UltraWinToolbars.ButtonTool("Delete");
            Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool2 = new Infragistics.Win.UltraWinToolbars.ButtonTool("Previous");
            Infragistics.Win.UltraWinToolbars.ComboBoxTool comboBoxTool1 = new Infragistics.Win.UltraWinToolbars.ComboBoxTool("PageNumbers");
            Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool3 = new Infragistics.Win.UltraWinToolbars.ButtonTool("Next");
            Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool4 = new Infragistics.Win.UltraWinToolbars.ButtonTool("ZoomOut");
            Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool5 = new Infragistics.Win.UltraWinToolbars.ButtonTool("ZoomIn");
            Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool6 = new Infragistics.Win.UltraWinToolbars.ButtonTool("RotateLeft");
            Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool7 = new Infragistics.Win.UltraWinToolbars.ButtonTool("RotateRight");
            Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool8 = new Infragistics.Win.UltraWinToolbars.ButtonTool("PdfConvert");
            Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool9 = new Infragistics.Win.UltraWinToolbars.ButtonTool("ApriFax");
            Infragistics.Win.UltraWinToolbars.ComboBoxTool comboBoxTool2 = new Infragistics.Win.UltraWinToolbars.ComboBoxTool("PageNumbers");
            Infragistics.Win.ValueList valueList1 = new Infragistics.Win.ValueList(0);
            Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool10 = new Infragistics.Win.UltraWinToolbars.ButtonTool("Previous");
            Infragistics.Win.Appearance appearance1 = new Infragistics.Win.Appearance();
            Infragistics.Win.Appearance appearance2 = new Infragistics.Win.Appearance();
            Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool11 = new Infragistics.Win.UltraWinToolbars.ButtonTool("Next");
            Infragistics.Win.Appearance appearance3 = new Infragistics.Win.Appearance();
            Infragistics.Win.Appearance appearance4 = new Infragistics.Win.Appearance();
            Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool12 = new Infragistics.Win.UltraWinToolbars.ButtonTool("ZoomOut");
            Infragistics.Win.Appearance appearance5 = new Infragistics.Win.Appearance();
            Infragistics.Win.Appearance appearance6 = new Infragistics.Win.Appearance();
            Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool13 = new Infragistics.Win.UltraWinToolbars.ButtonTool("ZoomIn");
            Infragistics.Win.Appearance appearance7 = new Infragistics.Win.Appearance();
            Infragistics.Win.Appearance appearance8 = new Infragistics.Win.Appearance();
            Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool14 = new Infragistics.Win.UltraWinToolbars.ButtonTool("RotateLeft");
            Infragistics.Win.Appearance appearance9 = new Infragistics.Win.Appearance();
            Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool15 = new Infragistics.Win.UltraWinToolbars.ButtonTool("RotateRight");
            Infragistics.Win.Appearance appearance10 = new Infragistics.Win.Appearance();
            Infragistics.Win.Appearance appearance11 = new Infragistics.Win.Appearance();
            Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool16 = new Infragistics.Win.UltraWinToolbars.ButtonTool("PdfConvert");
            Infragistics.Win.Appearance appearance12 = new Infragistics.Win.Appearance();
            Infragistics.Win.Appearance appearance13 = new Infragistics.Win.Appearance();
            Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool17 = new Infragistics.Win.UltraWinToolbars.ButtonTool("ApriFax");
            Infragistics.Win.Appearance appearance14 = new Infragistics.Win.Appearance();
            Infragistics.Win.Appearance appearance15 = new Infragistics.Win.Appearance();
            Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool18 = new Infragistics.Win.UltraWinToolbars.ButtonTool("Delete");
            Infragistics.Win.Appearance appearance16 = new Infragistics.Win.Appearance();
            Infragistics.Win.Appearance appearance17 = new Infragistics.Win.Appearance();
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(GestioneFax));
            this.openFileDialog1 = new System.Windows.Forms.OpenFileDialog();
            this.picImage = new System.Windows.Forms.PictureBox();
            ((System.ComponentModel.ISupportInitialize)(this.ultraToolbarsManagerStandard)).BeginInit();
            this.MainStandardForm_Fill_Panel.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.picImage)).BeginInit();
            this.SuspendLayout();
            // 
            // ultraToolbarsManagerStandard
            // 
            this.ultraToolbarsManagerStandard.MenuSettings.ForceSerialization = true;
            ultraToolbar1.DockedColumn = 1;
            ultraToolbar1.DockedRow = 1;
            ultraToolbar1.FloatingSize = new System.Drawing.Size(189, 44);
            buttonTool2.InstanceProps.IsFirstInGroup = true;
            comboBoxTool1.InstanceProps.Width = 45;
            buttonTool4.InstanceProps.IsFirstInGroup = true;
            buttonTool6.InstanceProps.IsFirstInGroup = true;
            buttonTool8.InstanceProps.IsFirstInGroup = true;
            ultraToolbar1.NonInheritedTools.AddRange(new Infragistics.Win.UltraWinToolbars.ToolBase[] {
            buttonTool1,
            buttonTool2,
            comboBoxTool1,
            buttonTool3,
            buttonTool4,
            buttonTool5,
            buttonTool6,
            buttonTool7,
            buttonTool8,
            buttonTool9});
            ultraToolbar1.Text = "FaxToolBar";
            this.ultraToolbarsManagerStandard.Toolbars.AddRange(new Infragistics.Win.UltraWinToolbars.UltraToolbar[] {
            ultraToolbar1});
            this.ultraToolbarsManagerStandard.ToolbarSettings.ForceSerialization = true;
            comboBoxTool2.SharedProps.Category = "Fax";
            comboBoxTool2.ValueList = valueList1;
            appearance1.Image = global::FaxGest.Properties.Resources.previous_large;
            buttonTool10.SharedProps.AppearancesLarge.Appearance = appearance1;
            appearance2.Image = global::FaxGest.Properties.Resources.previous_small;
            buttonTool10.SharedProps.AppearancesSmall.Appearance = appearance2;
            buttonTool10.SharedProps.Caption = "Precedente";
            buttonTool10.SharedProps.Category = "Fax";
            appearance3.Image = global::FaxGest.Properties.Resources.next_large;
            buttonTool11.SharedProps.AppearancesLarge.Appearance = appearance3;
            appearance4.Image = global::FaxGest.Properties.Resources.next_small;
            buttonTool11.SharedProps.AppearancesSmall.Appearance = appearance4;
            buttonTool11.SharedProps.Caption = "Successivo";
            buttonTool11.SharedProps.Category = "Fax";
            appearance5.Image = global::FaxGest.Properties.Resources.zoomout_large;
            buttonTool12.SharedProps.AppearancesLarge.Appearance = appearance5;
            appearance6.Image = global::FaxGest.Properties.Resources.zoomout_small;
            buttonTool12.SharedProps.AppearancesSmall.Appearance = appearance6;
            buttonTool12.SharedProps.Caption = "Zoom Out";
            appearance7.Image = global::FaxGest.Properties.Resources.zoomin_large;
            buttonTool13.SharedProps.AppearancesLarge.Appearance = appearance7;
            appearance8.Image = global::FaxGest.Properties.Resources.zoomin_small;
            buttonTool13.SharedProps.AppearancesSmall.Appearance = appearance8;
            buttonTool13.SharedProps.Caption = "Zoom In";
            buttonTool13.SharedProps.Category = "Fax";
            appearance9.Image = global::FaxGest.Properties.Resources.rotatesx_small;
            buttonTool14.SharedProps.AppearancesSmall.Appearance = appearance9;
            buttonTool14.SharedProps.Caption = "Ruota verso sinistra";
            buttonTool14.SharedProps.Category = "Fax";
            appearance10.Image = global::FaxGest.Properties.Resources.rotatedx_large;
            buttonTool15.SharedProps.AppearancesLarge.Appearance = appearance10;
            appearance11.Image = global::FaxGest.Properties.Resources.rotatedx_small;
            buttonTool15.SharedProps.AppearancesSmall.Appearance = appearance11;
            buttonTool15.SharedProps.Caption = "Ruota verso destra";
            buttonTool15.SharedProps.Category = "Fax";
            appearance12.Image = global::FaxGest.Properties.Resources.acrobat_large;
            buttonTool16.SharedProps.AppearancesLarge.Appearance = appearance12;
            appearance13.Image = global::FaxGest.Properties.Resources.acrobat_small;
            buttonTool16.SharedProps.AppearancesSmall.Appearance = appearance13;
            buttonTool16.SharedProps.Caption = "Converti in PDF";
            buttonTool16.SharedProps.Category = "Fax";
            appearance14.Image = global::FaxGest.Properties.Resources.fileopen_large;
            buttonTool17.SharedProps.AppearancesLarge.Appearance = appearance14;
            appearance15.Image = global::FaxGest.Properties.Resources.fileopen_small;
            buttonTool17.SharedProps.AppearancesSmall.Appearance = appearance15;
            buttonTool17.SharedProps.Caption = "Apri fax";
            appearance16.Image = global::FaxGest.Properties.Resources.delete_large;
            buttonTool18.SharedProps.AppearancesLarge.Appearance = appearance16;
            appearance17.Image = global::FaxGest.Properties.Resources.delete_small;
            buttonTool18.SharedProps.AppearancesSmall.Appearance = appearance17;
            buttonTool18.SharedProps.Caption = "Cancella pagina";
            buttonTool18.SharedProps.Category = "Fax";
            this.ultraToolbarsManagerStandard.Tools.AddRange(new Infragistics.Win.UltraWinToolbars.ToolBase[] {
            comboBoxTool2,
            buttonTool10,
            buttonTool11,
            buttonTool12,
            buttonTool13,
            buttonTool14,
            buttonTool15,
            buttonTool16,
            buttonTool17,
            buttonTool18});
            this.ultraToolbarsManagerStandard.ToolClick += new Infragistics.Win.UltraWinToolbars.ToolClickEventHandler(this.ultraToolbarsManagerStandardFax_ToolClick);
            // 
            // standardFormStatus
            // 
            this.standardFormStatus.Location = new System.Drawing.Point(0, 623);
            this.standardFormStatus.Size = new System.Drawing.Size(401, 23);
            // 
            // MainStandardForm_Fill_Panel
            // 
            this.MainStandardForm_Fill_Panel.AutoScroll = true;
            this.MainStandardForm_Fill_Panel.Controls.Add(this.picImage);
            this.MainStandardForm_Fill_Panel.Location = new System.Drawing.Point(0, 44);
            this.MainStandardForm_Fill_Panel.Size = new System.Drawing.Size(401, 579);
            // 
            // openFileDialog1
            // 
            this.openFileDialog1.DefaultExt = "*.tif";
            this.openFileDialog1.Filter = "Fax|*.tif;*.tiff";
            // 
            // picImage
            // 
            this.picImage.Location = new System.Drawing.Point(0, 0);
            this.picImage.Name = "picImage";
            this.picImage.Size = new System.Drawing.Size(400, 575);
            this.picImage.SizeMode = System.Windows.Forms.PictureBoxSizeMode.Zoom;
            this.picImage.TabIndex = 1;
            this.picImage.TabStop = false;
            // 
            // GestioneFax
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.BackColor = System.Drawing.Color.White;
            this.ClientSize = new System.Drawing.Size(401, 646);
            this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
            this.Name = "GestioneFax";
            this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
            this.Text = "Gestione Fax";
            this.FormClosed += new System.Windows.Forms.FormClosedEventHandler(this.GestioneFax_FormClosed);
            this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.GestioneFax_FormClosing);
            this.Load += new System.EventHandler(this.GestioneFax_Load);
            ((System.ComponentModel.ISupportInitialize)(this.ultraToolbarsManagerStandard)).EndInit();
            this.MainStandardForm_Fill_Panel.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.picImage)).EndInit();
            this.ResumeLayout(false);

        }
 /// <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();
     Infragistics.Win.Appearance appearance10 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridBand   ultraGridBand1    = new Infragistics.Win.UltraWinGrid.UltraGridBand("SuppliersTable", -1);
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn1  = new Infragistics.Win.UltraWinGrid.UltraGridColumn("SupplierObject");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn2  = new Infragistics.Win.UltraWinGrid.UltraGridColumn("addressline1");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn3  = new Infragistics.Win.UltraWinGrid.UltraGridColumn("addressline2");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn4  = new Infragistics.Win.UltraWinGrid.UltraGridColumn("city");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn5  = new Infragistics.Win.UltraWinGrid.UltraGridColumn("state");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn6  = new Infragistics.Win.UltraWinGrid.UltraGridColumn("zip");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn7  = new Infragistics.Win.UltraWinGrid.UltraGridColumn("contactname");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn8  = new Infragistics.Win.UltraWinGrid.UltraGridColumn("telephone");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn9  = new Infragistics.Win.UltraWinGrid.UltraGridColumn("email");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn10 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("name");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn11 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("fax");
     Infragistics.Win.Appearance appearance4 = new Infragistics.Win.Appearance();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(SuppliersTabView));
     Infragistics.Win.Appearance    appearance5             = 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.ValueList     valueList1              = new Infragistics.Win.ValueList(20951407);
     Infragistics.Win.ValueListItem valueListItem1          = new Infragistics.Win.ValueListItem();
     Infragistics.Win.ValueListItem valueListItem2          = new Infragistics.Win.ValueListItem();
     Infragistics.Win.ValueListItem valueListItem3          = new Infragistics.Win.ValueListItem();
     Infragistics.Win.UltraWinTabControl.UltraTab ultraTab1 = new Infragistics.Win.UltraWinTabControl.UltraTab();
     Infragistics.Win.Appearance appearance1 = new Infragistics.Win.Appearance();
     this.ultraTabPageControl1          = new Infragistics.Win.UltraWinTabControl.UltraTabPageControl();
     this.ultraGridSuppliers            = new Infragistics.Win.UltraWinGrid.UltraGrid();
     this.contextMenuStrip1             = new System.Windows.Forms.ContextMenuStrip(this.components);
     this.newUserToolStripMenuItem      = new System.Windows.Forms.ToolStripMenuItem();
     this.deleteUserToolStripMenuItem   = new System.Windows.Forms.ToolStripMenuItem();
     this.editSupplierToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.suppliersDataSet            = new System.Data.DataSet();
     this.suppliersTable              = new System.Data.DataTable();
     this.firstName                   = new System.Data.DataColumn();
     this.dataColumn3                 = new System.Data.DataColumn();
     this.dataColumn4                 = new System.Data.DataColumn();
     this.dataColumn5                 = new System.Data.DataColumn();
     this.dataColumn2                 = new System.Data.DataColumn();
     this.dataColumn6                 = new System.Data.DataColumn();
     this.dataColumn7                 = new System.Data.DataColumn();
     this.dataColumn8                 = new System.Data.DataColumn();
     this.dataColumn9                 = new System.Data.DataColumn();
     this.dataColumn10                = new System.Data.DataColumn();
     this.activityTabPage             = new Infragistics.Win.UltraWinTabControl.UltraTabPageControl();
     this.emailButton                 = new System.Windows.Forms.Button();
     this.advancedButton              = new System.Windows.Forms.Button();
     this.smtpTextBox                 = new System.Windows.Forms.TextBox();
     this.label3                      = new System.Windows.Forms.Label();
     this.emailTextBox                = new System.Windows.Forms.TextBox();
     this.label2                      = new System.Windows.Forms.Label();
     this.neverRadioButton            = new System.Windows.Forms.RadioButton();
     this.monthlyRadioButton          = new System.Windows.Forms.RadioButton();
     this.label1                      = new System.Windows.Forms.Label();
     this.weeklyRadioButton           = new System.Windows.Forms.RadioButton();
     this.dailyRadioButton            = new System.Windows.Forms.RadioButton();
     this.instructionLabel            = new Infragistics.Win.Misc.UltraLabel();
     this.footerPictureBox            = new System.Windows.Forms.PictureBox();
     this.generalTabControl           = new Infragistics.Win.UltraWinTabControl.UltraTabControl();
     this.ultraTabSharedControlsPage1 = new Infragistics.Win.UltraWinTabControl.UltraTabSharedControlsPage();
     this.headerGroupBox              = new Infragistics.Win.Misc.UltraGroupBox();
     this.headerLabel                 = new Infragistics.Win.Misc.UltraLabel();
     this.splitContainer1             = new System.Windows.Forms.SplitContainer();
     this.bnEditSupplier              = new System.Windows.Forms.Button();
     this.bnNewSupplier               = new System.Windows.Forms.Button();
     this.bnDeleteSupplier            = new System.Windows.Forms.Button();
     this.toolTip1                    = new System.Windows.Forms.ToolTip(this.components);
     this.dataColumn1                 = new System.Data.DataColumn();
     this.ultraTabPageControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.ultraGridSuppliers)).BeginInit();
     this.contextMenuStrip1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.suppliersDataSet)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.suppliersTable)).BeginInit();
     this.activityTabPage.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.footerPictureBox)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.generalTabControl)).BeginInit();
     this.generalTabControl.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.headerGroupBox)).BeginInit();
     this.headerGroupBox.SuspendLayout();
     this.splitContainer1.Panel1.SuspendLayout();
     this.splitContainer1.Panel2.SuspendLayout();
     this.splitContainer1.SuspendLayout();
     this.SuspendLayout();
     //
     // ultraTabPageControl1
     //
     this.ultraTabPageControl1.Controls.Add(this.splitContainer1);
     this.ultraTabPageControl1.Location = new System.Drawing.Point(0, 0);
     this.ultraTabPageControl1.Name     = "ultraTabPageControl1";
     this.ultraTabPageControl1.Size     = new System.Drawing.Size(817, 420);
     //
     // ultraGridSuppliers
     //
     this.ultraGridSuppliers.ContextMenuStrip = this.contextMenuStrip1;
     this.ultraGridSuppliers.DataSource       = this.suppliersDataSet;
     appearance10.BackColor   = System.Drawing.Color.Transparent;
     appearance10.BorderColor = System.Drawing.SystemColors.InactiveCaption;
     this.ultraGridSuppliers.DisplayLayout.Appearance = appearance10;
     ultraGridBand1.CardSettings.CaptionField         = "name";
     ultraGridBand1.CardSettings.LabelWidth           = 100;
     ultraGridBand1.CardSettings.Style        = Infragistics.Win.UltraWinGrid.CardStyle.StandardLabels;
     ultraGridBand1.CardSettings.Width        = 250;
     ultraGridBand1.CardView                  = true;
     ultraGridColumn1.Header.VisiblePosition  = 0;
     ultraGridColumn1.Hidden                  = true;
     ultraGridColumn2.Header.VisiblePosition  = 1;
     ultraGridColumn3.Header.VisiblePosition  = 2;
     ultraGridColumn4.Header.VisiblePosition  = 3;
     ultraGridColumn5.Header.VisiblePosition  = 4;
     ultraGridColumn6.Header.VisiblePosition  = 5;
     ultraGridColumn7.Header.Caption          = "ContactName";
     ultraGridColumn7.Header.VisiblePosition  = 6;
     ultraGridColumn8.Header.VisiblePosition  = 7;
     ultraGridColumn9.Header.Caption          = "Email";
     ultraGridColumn9.Header.VisiblePosition  = 8;
     ultraGridColumn10.Header.VisiblePosition = 9;
     ultraGridColumn10.Hidden                 = true;
     ultraGridColumn11.Header.VisiblePosition = 10;
     ultraGridBand1.Columns.AddRange(new object[] {
         ultraGridColumn1,
         ultraGridColumn2,
         ultraGridColumn3,
         ultraGridColumn4,
         ultraGridColumn5,
         ultraGridColumn6,
         ultraGridColumn7,
         ultraGridColumn8,
         ultraGridColumn9,
         ultraGridColumn10,
         ultraGridColumn11
     });
     ultraGridBand1.Override.AllowAddNew      = Infragistics.Win.UltraWinGrid.AllowAddNew.Yes;
     ultraGridBand1.Override.AllowColSwapping = Infragistics.Win.UltraWinGrid.AllowColSwapping.NotAllowed;
     ultraGridBand1.Override.AllowDelete      = Infragistics.Win.DefaultableBoolean.True;
     ultraGridBand1.Override.AllowGroupBy     = Infragistics.Win.DefaultableBoolean.False;
     appearance4.FontData.BoldAsString        = "True";
     appearance4.FontData.SizeInPoints        = 10F;
     appearance4.Image = ((object)(resources.GetObject("appearance4.Image")));
     appearance4.TextHAlignAsString = "Left";
     ultraGridBand1.Override.CardCaptionAppearance = appearance4;
     ultraGridBand1.Override.CardSpacing           = 5;
     ultraGridBand1.Override.CellSpacing           = 0;
     appearance5.TextHAlignAsString           = "Right";
     ultraGridBand1.Override.HeaderAppearance = appearance5;
     this.ultraGridSuppliers.DisplayLayout.BandsSerializer.Add(ultraGridBand1);
     this.ultraGridSuppliers.DisplayLayout.BorderStyle = Infragistics.Win.UIElementBorderStyle.None;
     appearance15.TextVAlignAsString = "Middle";
     this.ultraGridSuppliers.DisplayLayout.CaptionAppearance = appearance15;
     this.ultraGridSuppliers.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.ultraGridSuppliers.DisplayLayout.GroupByBox.Appearance = appearance16;
     appearance17.ForeColor = System.Drawing.SystemColors.GrayText;
     this.ultraGridSuppliers.DisplayLayout.GroupByBox.BandLabelAppearance = appearance17;
     this.ultraGridSuppliers.DisplayLayout.GroupByBox.BorderStyle         = Infragistics.Win.UIElementBorderStyle.None;
     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.ultraGridSuppliers.DisplayLayout.GroupByBox.PromptAppearance = appearance18;
     this.ultraGridSuppliers.DisplayLayout.MaxColScrollRegions         = 1;
     this.ultraGridSuppliers.DisplayLayout.MaxRowScrollRegions         = 1;
     appearance19.BackColor = System.Drawing.SystemColors.Window;
     appearance19.ForeColor = System.Drawing.SystemColors.ControlText;
     this.ultraGridSuppliers.DisplayLayout.Override.ActiveCellAppearance = appearance19;
     appearance20.BackColor = System.Drawing.SystemColors.Highlight;
     appearance20.ForeColor = System.Drawing.SystemColors.HighlightText;
     this.ultraGridSuppliers.DisplayLayout.Override.ActiveRowAppearance = appearance20;
     this.ultraGridSuppliers.DisplayLayout.Override.AllowAddNew         = Infragistics.Win.UltraWinGrid.AllowAddNew.No;
     this.ultraGridSuppliers.DisplayLayout.Override.AllowUpdate         = Infragistics.Win.DefaultableBoolean.True;
     appearance21.BackColor = System.Drawing.SystemColors.Window;
     this.ultraGridSuppliers.DisplayLayout.Override.CardAreaAppearance = appearance21;
     appearance22.BackColor    = System.Drawing.SystemColors.Window;
     appearance22.BorderColor  = System.Drawing.Color.Silver;
     appearance22.TextTrimming = Infragistics.Win.TextTrimming.EllipsisCharacter;
     this.ultraGridSuppliers.DisplayLayout.Override.CellAppearance  = appearance22;
     this.ultraGridSuppliers.DisplayLayout.Override.CellClickAction = Infragistics.Win.UltraWinGrid.CellClickAction.EditAndSelectText;
     this.ultraGridSuppliers.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.ultraGridSuppliers.DisplayLayout.Override.GroupByRowAppearance = appearance23;
     appearance24.TextHAlignAsString = "Left";
     this.ultraGridSuppliers.DisplayLayout.Override.HeaderAppearance  = appearance24;
     this.ultraGridSuppliers.DisplayLayout.Override.HeaderClickAction = Infragistics.Win.UltraWinGrid.HeaderClickAction.SortMulti;
     this.ultraGridSuppliers.DisplayLayout.Override.HeaderStyle       = Infragistics.Win.HeaderStyle.WindowsXPCommand;
     appearance25.BackColor   = System.Drawing.SystemColors.Window;
     appearance25.BorderColor = System.Drawing.Color.Silver;
     this.ultraGridSuppliers.DisplayLayout.Override.RowAppearance = appearance25;
     this.ultraGridSuppliers.DisplayLayout.Override.RowSelectors  = Infragistics.Win.DefaultableBoolean.False;
     appearance26.BackColor = System.Drawing.SystemColors.Window;
     this.ultraGridSuppliers.DisplayLayout.Override.SelectedCellAppearance = appearance26;
     this.ultraGridSuppliers.DisplayLayout.Override.SelectTypeRow          = Infragistics.Win.UltraWinGrid.SelectType.Single;
     appearance27.BackColor = System.Drawing.SystemColors.ControlLight;
     this.ultraGridSuppliers.DisplayLayout.Override.TemplateAddRowAppearance = appearance27;
     this.ultraGridSuppliers.DisplayLayout.ScrollBounds = Infragistics.Win.UltraWinGrid.ScrollBounds.ScrollToFill;
     this.ultraGridSuppliers.DisplayLayout.ScrollStyle  = Infragistics.Win.UltraWinGrid.ScrollStyle.Immediate;
     valueListItem1.DataValue   = 0;
     valueListItem1.DisplayText = "Administrator";
     valueListItem2.DataValue   = 0;
     valueListItem2.DisplayText = "Auditor";
     valueListItem3.DataValue   = 0;
     valueListItem3.DisplayText = "Read-Only";
     valueList1.ValueListItems.AddRange(new Infragistics.Win.ValueListItem[] {
         valueListItem1,
         valueListItem2,
         valueListItem3
     });
     this.ultraGridSuppliers.DisplayLayout.ValueLists.AddRange(new Infragistics.Win.ValueList[] {
         valueList1
     });
     this.ultraGridSuppliers.Dock               = System.Windows.Forms.DockStyle.Fill;
     this.ultraGridSuppliers.Font               = new System.Drawing.Font("Verdana", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.ultraGridSuppliers.Location           = new System.Drawing.Point(0, 0);
     this.ultraGridSuppliers.Name               = "ultraGridSuppliers";
     this.ultraGridSuppliers.Size               = new System.Drawing.Size(817, 391);
     this.ultraGridSuppliers.TabIndex           = 0;
     this.ultraGridSuppliers.Text               = "ultraGrid1";
     this.ultraGridSuppliers.MouseDown         += new System.Windows.Forms.MouseEventHandler(this.ultraGridSuppliers_MouseDown);
     this.ultraGridSuppliers.InitializeLayout  += new Infragistics.Win.UltraWinGrid.InitializeLayoutEventHandler(this.ultraGridSuppliers_InitializeLayout);
     this.ultraGridSuppliers.AfterSelectChange += new Infragistics.Win.UltraWinGrid.AfterSelectChangeEventHandler(this.ultraGridSuppliers_AfterSelectChange);
     this.ultraGridSuppliers.BeforeRowsDeleted += new Infragistics.Win.UltraWinGrid.BeforeRowsDeletedEventHandler(this.ultraGridSuppliers_BeforeRowsDeleted);
     this.ultraGridSuppliers.AfterCellUpdate   += new Infragistics.Win.UltraWinGrid.CellEventHandler(this.ultraGridSuppliers_AfterCellUpdate);
     this.ultraGridSuppliers.DoubleClickRow    += new Infragistics.Win.UltraWinGrid.DoubleClickRowEventHandler(this.ultraGridSuppliers_DoubleClickRow);
     //
     // contextMenuStrip1
     //
     this.contextMenuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.newUserToolStripMenuItem,
         this.deleteUserToolStripMenuItem,
         this.editSupplierToolStripMenuItem
     });
     this.contextMenuStrip1.Name = "contextMenuStrip1";
     this.contextMenuStrip1.Size = new System.Drawing.Size(158, 70);
     //
     // newUserToolStripMenuItem
     //
     this.newUserToolStripMenuItem.Image  = global::Layton.AuditWizard.Administration.Properties.Resources.useradd_16;
     this.newUserToolStripMenuItem.Name   = "newUserToolStripMenuItem";
     this.newUserToolStripMenuItem.Size   = new System.Drawing.Size(157, 22);
     this.newUserToolStripMenuItem.Text   = "&New Supplier";
     this.newUserToolStripMenuItem.Click += new System.EventHandler(this.newSupplierToolStripMenuItem_Click);
     //
     // deleteUserToolStripMenuItem
     //
     this.deleteUserToolStripMenuItem.Image  = global::Layton.AuditWizard.Administration.Properties.Resources.userdelete_16;
     this.deleteUserToolStripMenuItem.Name   = "deleteUserToolStripMenuItem";
     this.deleteUserToolStripMenuItem.Size   = new System.Drawing.Size(157, 22);
     this.deleteUserToolStripMenuItem.Text   = "&Delete Supplier";
     this.deleteUserToolStripMenuItem.Click += new System.EventHandler(this.deleteSupplierToolStripMenuItem_Click);
     //
     // editSupplierToolStripMenuItem
     //
     this.editSupplierToolStripMenuItem.Image  = global::Layton.AuditWizard.Administration.Properties.Resources.useredit_16;
     this.editSupplierToolStripMenuItem.Name   = "editSupplierToolStripMenuItem";
     this.editSupplierToolStripMenuItem.Size   = new System.Drawing.Size(157, 22);
     this.editSupplierToolStripMenuItem.Text   = "&Edit Supplier";
     this.editSupplierToolStripMenuItem.Click += new System.EventHandler(this.editSupplierToolStripMenuItem_Click);
     //
     // suppliersDataSet
     //
     this.suppliersDataSet.DataSetName = "NewDataSet";
     this.suppliersDataSet.Tables.AddRange(new System.Data.DataTable[] {
         this.suppliersTable
     });
     //
     // suppliersTable
     //
     this.suppliersTable.Columns.AddRange(new System.Data.DataColumn[] {
         this.dataColumn1,
         this.firstName,
         this.dataColumn3,
         this.dataColumn4,
         this.dataColumn5,
         this.dataColumn2,
         this.dataColumn6,
         this.dataColumn7,
         this.dataColumn8,
         this.dataColumn9,
         this.dataColumn10
     });
     this.suppliersTable.TableName = "SuppliersTable";
     //
     // firstName
     //
     this.firstName.Caption    = "Address Line 1";
     this.firstName.ColumnName = "addressline1";
     //
     // dataColumn3
     //
     this.dataColumn3.Caption    = "Address Line 2";
     this.dataColumn3.ColumnName = "addressline2";
     //
     // dataColumn4
     //
     this.dataColumn4.Caption    = "City";
     this.dataColumn4.ColumnName = "city";
     //
     // dataColumn5
     //
     this.dataColumn5.Caption    = "State";
     this.dataColumn5.ColumnName = "state";
     //
     // dataColumn2
     //
     this.dataColumn2.Caption    = "Zip";
     this.dataColumn2.ColumnName = "zip";
     //
     // dataColumn6
     //
     this.dataColumn6.ColumnName = "contactname";
     //
     // dataColumn7
     //
     this.dataColumn7.Caption    = "Telephone";
     this.dataColumn7.ColumnName = "telephone";
     //
     // dataColumn8
     //
     this.dataColumn8.ColumnName = "email";
     //
     // dataColumn9
     //
     this.dataColumn9.Caption    = "Name";
     this.dataColumn9.ColumnName = "name";
     //
     // dataColumn10
     //
     this.dataColumn10.Caption    = "Fax";
     this.dataColumn10.ColumnName = "fax";
     //
     // activityTabPage
     //
     this.activityTabPage.Controls.Add(this.emailButton);
     this.activityTabPage.Controls.Add(this.advancedButton);
     this.activityTabPage.Controls.Add(this.smtpTextBox);
     this.activityTabPage.Controls.Add(this.label3);
     this.activityTabPage.Controls.Add(this.emailTextBox);
     this.activityTabPage.Controls.Add(this.label2);
     this.activityTabPage.Controls.Add(this.neverRadioButton);
     this.activityTabPage.Controls.Add(this.monthlyRadioButton);
     this.activityTabPage.Controls.Add(this.label1);
     this.activityTabPage.Controls.Add(this.weeklyRadioButton);
     this.activityTabPage.Controls.Add(this.dailyRadioButton);
     this.activityTabPage.Controls.Add(this.instructionLabel);
     this.activityTabPage.Controls.Add(this.footerPictureBox);
     this.activityTabPage.Location = new System.Drawing.Point(-10000, -10000);
     this.activityTabPage.Name     = "activityTabPage";
     this.activityTabPage.Size     = new System.Drawing.Size(825, 535);
     //
     // emailButton
     //
     this.emailButton.Anchor    = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.emailButton.BackColor = System.Drawing.Color.Transparent;
     this.emailButton.Location  = new System.Drawing.Point(316, 175);
     this.emailButton.Name      = "emailButton";
     this.emailButton.Size      = new System.Drawing.Size(75, 23);
     this.emailButton.TabIndex  = 29;
     this.emailButton.Text      = "Send Email";
     this.emailButton.UseVisualStyleBackColor = false;
     //
     // advancedButton
     //
     this.advancedButton.Anchor    = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.advancedButton.BackColor = System.Drawing.Color.Transparent;
     this.advancedButton.Location  = new System.Drawing.Point(397, 175);
     this.advancedButton.Name      = "advancedButton";
     this.advancedButton.Size      = new System.Drawing.Size(75, 23);
     this.advancedButton.TabIndex  = 28;
     this.advancedButton.Text      = "Advanced";
     this.advancedButton.UseVisualStyleBackColor = false;
     //
     // smtpTextBox
     //
     this.smtpTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                     | System.Windows.Forms.AnchorStyles.Right)));
     this.smtpTextBox.Location = new System.Drawing.Point(98, 149);
     this.smtpTextBox.Name     = "smtpTextBox";
     this.smtpTextBox.Size     = new System.Drawing.Size(374, 20);
     this.smtpTextBox.TabIndex = 27;
     //
     // label3
     //
     this.label3.AutoSize = true;
     this.label3.Location = new System.Drawing.Point(13, 152);
     this.label3.Name     = "label3";
     this.label3.Size     = new System.Drawing.Size(65, 13);
     this.label3.TabIndex = 26;
     this.label3.Text     = "SMTP Host:";
     //
     // emailTextBox
     //
     this.emailTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                      | System.Windows.Forms.AnchorStyles.Right)));
     this.emailTextBox.Location = new System.Drawing.Point(98, 123);
     this.emailTextBox.Name     = "emailTextBox";
     this.emailTextBox.Size     = new System.Drawing.Size(374, 20);
     this.emailTextBox.TabIndex = 25;
     //
     // label2
     //
     this.label2.AutoSize = true;
     this.label2.Location = new System.Drawing.Point(13, 126);
     this.label2.Name     = "label2";
     this.label2.Size     = new System.Drawing.Size(76, 13);
     this.label2.TabIndex = 24;
     this.label2.Text     = "Email Address:";
     //
     // neverRadioButton
     //
     this.neverRadioButton.AutoSize  = true;
     this.neverRadioButton.BackColor = System.Drawing.Color.Transparent;
     this.neverRadioButton.Location  = new System.Drawing.Point(267, 79);
     this.neverRadioButton.Name      = "neverRadioButton";
     this.neverRadioButton.Size      = new System.Drawing.Size(54, 17);
     this.neverRadioButton.TabIndex  = 23;
     this.neverRadioButton.Text      = "Never";
     this.neverRadioButton.UseVisualStyleBackColor = false;
     //
     // monthlyRadioButton
     //
     this.monthlyRadioButton.AutoSize  = true;
     this.monthlyRadioButton.BackColor = System.Drawing.Color.Transparent;
     this.monthlyRadioButton.Location  = new System.Drawing.Point(204, 79);
     this.monthlyRadioButton.Name      = "monthlyRadioButton";
     this.monthlyRadioButton.Size      = new System.Drawing.Size(62, 17);
     this.monthlyRadioButton.TabIndex  = 22;
     this.monthlyRadioButton.Text      = "Monthly";
     this.monthlyRadioButton.UseVisualStyleBackColor = false;
     //
     // label1
     //
     this.label1.AutoSize = true;
     this.label1.Location = new System.Drawing.Point(13, 81);
     this.label1.Name     = "label1";
     this.label1.Size     = new System.Drawing.Size(60, 13);
     this.label1.TabIndex = 21;
     this.label1.Text     = "Frequency:";
     //
     // weeklyRadioButton
     //
     this.weeklyRadioButton.AutoSize  = true;
     this.weeklyRadioButton.BackColor = System.Drawing.Color.Transparent;
     this.weeklyRadioButton.Location  = new System.Drawing.Point(139, 79);
     this.weeklyRadioButton.Name      = "weeklyRadioButton";
     this.weeklyRadioButton.Size      = new System.Drawing.Size(61, 17);
     this.weeklyRadioButton.TabIndex  = 20;
     this.weeklyRadioButton.Text      = "Weekly";
     this.weeklyRadioButton.UseVisualStyleBackColor = false;
     //
     // dailyRadioButton
     //
     this.dailyRadioButton.AutoSize  = true;
     this.dailyRadioButton.BackColor = System.Drawing.Color.Transparent;
     this.dailyRadioButton.Checked   = true;
     this.dailyRadioButton.Location  = new System.Drawing.Point(85, 79);
     this.dailyRadioButton.Name      = "dailyRadioButton";
     this.dailyRadioButton.Size      = new System.Drawing.Size(48, 17);
     this.dailyRadioButton.TabIndex  = 19;
     this.dailyRadioButton.TabStop   = true;
     this.dailyRadioButton.Text      = "Daily";
     this.dailyRadioButton.UseVisualStyleBackColor = false;
     //
     // instructionLabel
     //
     this.instructionLabel.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                          | System.Windows.Forms.AnchorStyles.Right)));
     this.instructionLabel.Font     = new System.Drawing.Font("Verdana", 8.25F);
     this.instructionLabel.Location = new System.Drawing.Point(16, 14);
     this.instructionLabel.Name     = "instructionLabel";
     this.instructionLabel.Size     = new System.Drawing.Size(793, 69);
     this.instructionLabel.TabIndex = 17;
     this.instructionLabel.Text     = resources.GetString("instructionLabel.Text");
     //
     // footerPictureBox
     //
     this.footerPictureBox.Anchor    = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.footerPictureBox.BackColor = System.Drawing.Color.Transparent;
     this.footerPictureBox.Image     = global::Layton.AuditWizard.Administration.Properties.Resources.email_settings_footer;
     this.footerPictureBox.Location  = new System.Drawing.Point(510, 440);
     this.footerPictureBox.Name      = "footerPictureBox";
     this.footerPictureBox.Size      = new System.Drawing.Size(312, 92);
     this.footerPictureBox.TabIndex  = 7;
     this.footerPictureBox.TabStop   = false;
     //
     // generalTabControl
     //
     this.generalTabControl.Controls.Add(this.ultraTabSharedControlsPage1);
     this.generalTabControl.Controls.Add(this.ultraTabPageControl1);
     this.generalTabControl.Dock               = System.Windows.Forms.DockStyle.Fill;
     this.generalTabControl.Location           = new System.Drawing.Point(0, 80);
     this.generalTabControl.Name               = "generalTabControl";
     this.generalTabControl.SharedControlsPage = this.ultraTabSharedControlsPage1;
     this.generalTabControl.Size               = new System.Drawing.Size(817, 420);
     this.generalTabControl.Style              = Infragistics.Win.UltraWinTabControl.UltraTabControlStyle.Wizard;
     this.generalTabControl.TabIndex           = 3;
     this.generalTabControl.TabOrientation     = Infragistics.Win.UltraWinTabs.TabOrientation.TopLeft;
     ultraTab1.TabPage = this.ultraTabPageControl1;
     ultraTab1.Text    = "User Accounts";
     this.generalTabControl.Tabs.AddRange(new Infragistics.Win.UltraWinTabControl.UltraTab[] {
         ultraTab1
     });
     //
     // ultraTabSharedControlsPage1
     //
     this.ultraTabSharedControlsPage1.Location = new System.Drawing.Point(-10000, -10000);
     this.ultraTabSharedControlsPage1.Name     = "ultraTabSharedControlsPage1";
     this.ultraTabSharedControlsPage1.Size     = new System.Drawing.Size(817, 420);
     //
     // headerGroupBox
     //
     this.headerGroupBox.Controls.Add(this.headerLabel);
     this.headerGroupBox.Dock      = System.Windows.Forms.DockStyle.Top;
     this.headerGroupBox.Location  = new System.Drawing.Point(0, 0);
     this.headerGroupBox.Name      = "headerGroupBox";
     this.headerGroupBox.Size      = new System.Drawing.Size(817, 80);
     this.headerGroupBox.TabIndex  = 7;
     this.headerGroupBox.ViewStyle = Infragistics.Win.Misc.GroupBoxViewStyle.Office2007;
     //
     // headerLabel
     //
     appearance1.BackColor          = System.Drawing.Color.Transparent;
     appearance1.Image              = global::Layton.AuditWizard.Administration.Properties.Resources.supplier_72;
     appearance1.ImageVAlign        = Infragistics.Win.VAlign.Middle;
     appearance1.TextHAlignAsString = "Center";
     appearance1.TextVAlignAsString = "Middle";
     this.headerLabel.Appearance    = appearance1;
     this.headerLabel.Font          = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.headerLabel.ImageSize     = new System.Drawing.Size(72, 72);
     this.headerLabel.Location      = new System.Drawing.Point(7, 5);
     this.headerLabel.Name          = "headerLabel";
     this.headerLabel.RightToLeft   = System.Windows.Forms.RightToLeft.No;
     this.headerLabel.Size          = new System.Drawing.Size(177, 72);
     this.headerLabel.TabIndex      = 5;
     this.headerLabel.Text          = "Suppliers";
     //
     // splitContainer1
     //
     this.splitContainer1.Dock        = System.Windows.Forms.DockStyle.Fill;
     this.splitContainer1.Location    = new System.Drawing.Point(0, 0);
     this.splitContainer1.Name        = "splitContainer1";
     this.splitContainer1.Orientation = System.Windows.Forms.Orientation.Horizontal;
     //
     // splitContainer1.Panel1
     //
     this.splitContainer1.Panel1.Controls.Add(this.ultraGridSuppliers);
     //
     // splitContainer1.Panel2
     //
     this.splitContainer1.Panel2.Controls.Add(this.bnEditSupplier);
     this.splitContainer1.Panel2.Controls.Add(this.bnNewSupplier);
     this.splitContainer1.Panel2.Controls.Add(this.bnDeleteSupplier);
     this.splitContainer1.Size             = new System.Drawing.Size(817, 420);
     this.splitContainer1.SplitterDistance = 391;
     this.splitContainer1.TabIndex         = 1;
     //
     // bnEditSupplier
     //
     this.bnEditSupplier.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
     this.bnEditSupplier.Enabled     = false;
     this.bnEditSupplier.Image       = global::Layton.AuditWizard.Administration.Properties.Resources.Edit;
     this.bnEditSupplier.Location    = new System.Drawing.Point(54, 2);
     this.bnEditSupplier.MaximumSize = new System.Drawing.Size(24, 24);
     this.bnEditSupplier.MinimumSize = new System.Drawing.Size(24, 24);
     this.bnEditSupplier.Name        = "bnEditSupplier";
     this.bnEditSupplier.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
     this.bnEditSupplier.Size        = new System.Drawing.Size(24, 24);
     this.bnEditSupplier.TabIndex    = 10;
     this.toolTip1.SetToolTip(this.bnEditSupplier, "Edit supplier");
     this.bnEditSupplier.UseVisualStyleBackColor = true;
     this.bnEditSupplier.Click += new System.EventHandler(this.bnEditSupplier_Click);
     //
     // bnNewSupplier
     //
     this.bnNewSupplier.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
     this.bnNewSupplier.Image       = global::Layton.AuditWizard.Administration.Properties.Resources.add16;
     this.bnNewSupplier.Location    = new System.Drawing.Point(4, 2);
     this.bnNewSupplier.MaximumSize = new System.Drawing.Size(24, 24);
     this.bnNewSupplier.MinimumSize = new System.Drawing.Size(24, 24);
     this.bnNewSupplier.Name        = "bnNewSupplier";
     this.bnNewSupplier.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
     this.bnNewSupplier.Size        = new System.Drawing.Size(24, 24);
     this.bnNewSupplier.TabIndex    = 8;
     this.toolTip1.SetToolTip(this.bnNewSupplier, "Add new supplier");
     this.bnNewSupplier.UseVisualStyleBackColor = true;
     this.bnNewSupplier.Click += new System.EventHandler(this.bnNewSupplier_Click);
     //
     // bnDeleteSupplier
     //
     this.bnDeleteSupplier.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
     this.bnDeleteSupplier.Image       = global::Layton.AuditWizard.Administration.Properties.Resources.Delete;
     this.bnDeleteSupplier.Location    = new System.Drawing.Point(29, 2);
     this.bnDeleteSupplier.MaximumSize = new System.Drawing.Size(24, 24);
     this.bnDeleteSupplier.MinimumSize = new System.Drawing.Size(24, 24);
     this.bnDeleteSupplier.Name        = "bnDeleteSupplier";
     this.bnDeleteSupplier.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
     this.bnDeleteSupplier.Size        = new System.Drawing.Size(24, 24);
     this.bnDeleteSupplier.TabIndex    = 9;
     this.toolTip1.SetToolTip(this.bnDeleteSupplier, "Delete supplier");
     this.bnDeleteSupplier.UseVisualStyleBackColor = true;
     this.bnDeleteSupplier.Click += new System.EventHandler(this.bnDeleteSupplier_Click);
     //
     // dataColumn1
     //
     this.dataColumn1.ColumnName = "SupplierObject";
     this.dataColumn1.DataType   = typeof(object);
     //
     // SuppliersTabView
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 13F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.BackColor           = System.Drawing.Color.White;
     this.Controls.Add(this.generalTabControl);
     this.Controls.Add(this.headerGroupBox);
     this.Font = new System.Drawing.Font("Verdana", 8.25F);
     this.Name = "SuppliersTabView";
     this.Size = new System.Drawing.Size(817, 500);
     this.ultraTabPageControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.ultraGridSuppliers)).EndInit();
     this.contextMenuStrip1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.suppliersDataSet)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.suppliersTable)).EndInit();
     this.activityTabPage.ResumeLayout(false);
     this.activityTabPage.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.footerPictureBox)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.generalTabControl)).EndInit();
     this.generalTabControl.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.headerGroupBox)).EndInit();
     this.headerGroupBox.ResumeLayout(false);
     this.splitContainer1.Panel1.ResumeLayout(false);
     this.splitContainer1.Panel2.ResumeLayout(false);
     this.splitContainer1.ResumeLayout(false);
     this.ResumeLayout(false);
 }
Example #5
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();
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmCodeEditor));
            Infragistics.Win.UltraWinToolbars.UltraToolbar ultraToolbar1 = new Infragistics.Win.UltraWinToolbars.UltraToolbar("Code editor menu");
            Infragistics.Win.UltraWinToolbars.PopupMenuTool popupMenuTool1 = new Infragistics.Win.UltraWinToolbars.PopupMenuTool("mnuEdit");
            Infragistics.Win.UltraWinToolbars.PopupMenuTool popupMenuTool2 = new Infragistics.Win.UltraWinToolbars.PopupMenuTool("mnuScript");
            Infragistics.Win.UltraWinToolbars.UltraToolbar ultraToolbar2 = new Infragistics.Win.UltraWinToolbars.UltraToolbar("Code editor tools");
            Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool1 = new Infragistics.Win.UltraWinToolbars.ButtonTool("mnuUndo");
            Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool2 = new Infragistics.Win.UltraWinToolbars.ButtonTool("mnuRedo");
            Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool3 = new Infragistics.Win.UltraWinToolbars.ButtonTool("mnuCut");
            Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool4 = new Infragistics.Win.UltraWinToolbars.ButtonTool("mnuCopy");
            Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool5 = new Infragistics.Win.UltraWinToolbars.ButtonTool("mnuPaste");
            Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool6 = new Infragistics.Win.UltraWinToolbars.ButtonTool("mnuDelete");
            Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool7 = new Infragistics.Win.UltraWinToolbars.ButtonTool("mnuUpdateCodeStructure");
            Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool8 = new Infragistics.Win.UltraWinToolbars.ButtonTool("mnuCompile");
            Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool9 = new Infragistics.Win.UltraWinToolbars.ButtonTool("mnuRun");
            Infragistics.Win.UltraWinToolbars.UltraToolbar ultraToolbar3 = new Infragistics.Win.UltraWinToolbars.UltraToolbar("Locating");
            Infragistics.Win.UltraWinToolbars.LabelTool labelTool1 = new Infragistics.Win.UltraWinToolbars.LabelTool("mnuFindLabel");
            Infragistics.Win.UltraWinToolbars.ComboBoxTool comboBoxTool1 = new Infragistics.Win.UltraWinToolbars.ComboBoxTool("mnuFindField");
            Infragistics.Win.UltraWinToolbars.LabelTool labelTool2 = new Infragistics.Win.UltraWinToolbars.LabelTool("mnuGotoLineLabel");
            Infragistics.Win.UltraWinToolbars.TextBoxTool textBoxTool1 = new Infragistics.Win.UltraWinToolbars.TextBoxTool("mnuGotoLine");
            Infragistics.Win.UltraWinToolbars.PopupMenuTool popupMenuTool3 = new Infragistics.Win.UltraWinToolbars.PopupMenuTool("mnuEdit");
            Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool10 = new Infragistics.Win.UltraWinToolbars.ButtonTool("mnuUndo");
            Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool11 = new Infragistics.Win.UltraWinToolbars.ButtonTool("mnuRedo");
            Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool12 = new Infragistics.Win.UltraWinToolbars.ButtonTool("mnuCut");
            Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool13 = new Infragistics.Win.UltraWinToolbars.ButtonTool("mnuCopy");
            Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool14 = new Infragistics.Win.UltraWinToolbars.ButtonTool("mnuPaste");
            Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool15 = new Infragistics.Win.UltraWinToolbars.ButtonTool("mnuDelete");
            Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool16 = new Infragistics.Win.UltraWinToolbars.ButtonTool("mnuSelectAll");
            Infragistics.Win.UltraWinToolbars.PopupMenuTool popupMenuTool4 = new Infragistics.Win.UltraWinToolbars.PopupMenuTool("mnuScript");
            Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool17 = new Infragistics.Win.UltraWinToolbars.ButtonTool("mnuUpdateCodeStructure");
            Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool18 = new Infragistics.Win.UltraWinToolbars.ButtonTool("mnuCompile");
            Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool19 = new Infragistics.Win.UltraWinToolbars.ButtonTool("mnuRun");
            Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool20 = new Infragistics.Win.UltraWinToolbars.ButtonTool("mnuUndo");
            Infragistics.Win.Appearance appearance1 = new Infragistics.Win.Appearance();
            Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool21 = new Infragistics.Win.UltraWinToolbars.ButtonTool("mnuRedo");
            Infragistics.Win.Appearance appearance2 = new Infragistics.Win.Appearance();
            Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool22 = new Infragistics.Win.UltraWinToolbars.ButtonTool("mnuCopy");
            Infragistics.Win.Appearance appearance3 = new Infragistics.Win.Appearance();
            Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool23 = new Infragistics.Win.UltraWinToolbars.ButtonTool("mnuPaste");
            Infragistics.Win.Appearance appearance4 = new Infragistics.Win.Appearance();
            Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool24 = new Infragistics.Win.UltraWinToolbars.ButtonTool("mnuCut");
            Infragistics.Win.Appearance appearance5 = new Infragistics.Win.Appearance();
            Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool25 = new Infragistics.Win.UltraWinToolbars.ButtonTool("mnuSelectAll");
            Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool26 = new Infragistics.Win.UltraWinToolbars.ButtonTool("mnuDelete");
            Infragistics.Win.Appearance appearance6 = new Infragistics.Win.Appearance();
            Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool27 = new Infragistics.Win.UltraWinToolbars.ButtonTool("mnuUpdateCodeStructure");
            Infragistics.Win.Appearance appearance7 = new Infragistics.Win.Appearance();
            Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool28 = new Infragistics.Win.UltraWinToolbars.ButtonTool("mnuCompile");
            Infragistics.Win.Appearance appearance8 = new Infragistics.Win.Appearance();
            Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool29 = new Infragistics.Win.UltraWinToolbars.ButtonTool("mnuRun");
            Infragistics.Win.Appearance appearance9 = new Infragistics.Win.Appearance();
            Infragistics.Win.UltraWinToolbars.ComboBoxTool comboBoxTool2 = new Infragistics.Win.UltraWinToolbars.ComboBoxTool("mnuFindField");
            Infragistics.Win.ValueList valueList1 = new Infragistics.Win.ValueList(0);
            Infragistics.Win.UltraWinToolbars.LabelTool labelTool3 = new Infragistics.Win.UltraWinToolbars.LabelTool("mnuFindLabel");
            Infragistics.Win.Appearance appearance10 = new Infragistics.Win.Appearance();
            Infragistics.Win.UltraWinToolbars.TextBoxTool textBoxTool2 = new Infragistics.Win.UltraWinToolbars.TextBoxTool("mnuGotoLine");
            Infragistics.Win.UltraWinToolbars.LabelTool labelTool4 = new Infragistics.Win.UltraWinToolbars.LabelTool("mnuGotoLineLabel");
            Infragistics.Win.Appearance appearance11 = new Infragistics.Win.Appearance();
            Fireball.Windows.Forms.LineMarginRender lineMarginRender1 = new Fireball.Windows.Forms.LineMarginRender();
            Infragistics.Win.UltraWinDock.DockAreaPane dockAreaPane1 = new Infragistics.Win.UltraWinDock.DockAreaPane(Infragistics.Win.UltraWinDock.DockedLocation.DockedLeft, new System.Guid("f694993e-09d7-4a31-a93b-c4def9ae9808"));
            Infragistics.Win.UltraWinDock.DockableControlPane dockableControlPane1 = new Infragistics.Win.UltraWinDock.DockableControlPane(new System.Guid("eed9e4a0-d8df-4a5c-8e73-ff16fd379fb6"), new System.Guid("00000000-0000-0000-0000-000000000000"), -1, new System.Guid("f694993e-09d7-4a31-a93b-c4def9ae9808"), -1);
            this.codeStructTreeView = new System.Windows.Forms.TreeView();
            this.codeStructImageList = new System.Windows.Forms.ImageList(this.components);
            this.toolbarsManager = new Infragistics.Win.UltraWinToolbars.UltraToolbarsManager(this.components);
            this.editor = new Fireball.Windows.Forms.CodeEditorControl();
            this.syntaxDocument1 = new Fireball.Syntax.SyntaxDocument(this.components);
            this.frmCodeEditor_Fill_Panel = new System.Windows.Forms.Panel();
            this._frmCodeEditor_Toolbars_Dock_Area_Left = new Infragistics.Win.UltraWinToolbars.UltraToolbarsDockArea();
            this._frmCodeEditor_Toolbars_Dock_Area_Right = new Infragistics.Win.UltraWinToolbars.UltraToolbarsDockArea();
            this._frmCodeEditor_Toolbars_Dock_Area_Top = new Infragistics.Win.UltraWinToolbars.UltraToolbarsDockArea();
            this._frmCodeEditor_Toolbars_Dock_Area_Bottom = new Infragistics.Win.UltraWinToolbars.UltraToolbarsDockArea();
            this.dockManager = new Infragistics.Win.UltraWinDock.UltraDockManager(this.components);
            this._frmCodeEditorUnpinnedTabAreaLeft = new Infragistics.Win.UltraWinDock.UnpinnedTabArea();
            this._frmCodeEditorUnpinnedTabAreaRight = new Infragistics.Win.UltraWinDock.UnpinnedTabArea();
            this._frmCodeEditorUnpinnedTabAreaTop = new Infragistics.Win.UltraWinDock.UnpinnedTabArea();
            this._frmCodeEditorUnpinnedTabAreaBottom = new Infragistics.Win.UltraWinDock.UnpinnedTabArea();
            this._frmCodeEditorAutoHideControl = new Infragistics.Win.UltraWinDock.AutoHideControl();
            this.windowDockingArea1 = new Infragistics.Win.UltraWinDock.WindowDockingArea();
            this.dockableWindow1 = new Infragistics.Win.UltraWinDock.DockableWindow();
            ((System.ComponentModel.ISupportInitialize)(this.toolbarsManager)).BeginInit();
            this.frmCodeEditor_Fill_Panel.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.dockManager)).BeginInit();
            this.windowDockingArea1.SuspendLayout();
            this.dockableWindow1.SuspendLayout();
            this.SuspendLayout();
            // 
            // codeStructTreeView
            // 
            this.codeStructTreeView.AccessibleDescription = null;
            this.codeStructTreeView.AccessibleName = null;
            resources.ApplyResources(this.codeStructTreeView, "codeStructTreeView");
            this.codeStructTreeView.BackgroundImage = null;
            this.toolbarsManager.SetContextMenuUltra(this.codeStructTreeView, "mnuScript");
            this.codeStructTreeView.Font = null;
            this.codeStructTreeView.FullRowSelect = true;
            this.codeStructTreeView.HideSelection = false;
            this.codeStructTreeView.ImageList = this.codeStructImageList;
            this.codeStructTreeView.Name = "codeStructTreeView";
            this.codeStructTreeView.DoubleClick += new System.EventHandler(this.codeStructTreeView_DoubleClick);
            // 
            // codeStructImageList
            // 
            this.codeStructImageList.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("codeStructImageList.ImageStream")));
            this.codeStructImageList.TransparentColor = System.Drawing.Color.Fuchsia;
            this.codeStructImageList.Images.SetKeyName(0, "Struct");
            this.codeStructImageList.Images.SetKeyName(1, "Class");
            this.codeStructImageList.Images.SetKeyName(2, "Enum");
            this.codeStructImageList.Images.SetKeyName(3, "Interface");
            this.codeStructImageList.Images.SetKeyName(4, "PrivateClass");
            this.codeStructImageList.Images.SetKeyName(5, "PrivateEnum");
            this.codeStructImageList.Images.SetKeyName(6, "PrivateInterface");
            this.codeStructImageList.Images.SetKeyName(7, "PrivateStruct");
            this.codeStructImageList.Images.SetKeyName(8, "Namespace");
            this.codeStructImageList.Images.SetKeyName(9, "Property");
            this.codeStructImageList.Images.SetKeyName(10, "Event");
            this.codeStructImageList.Images.SetKeyName(11, "Field");
            this.codeStructImageList.Images.SetKeyName(12, "Method");
            this.codeStructImageList.Images.SetKeyName(13, "PrivateEvent");
            this.codeStructImageList.Images.SetKeyName(14, "PrivateField");
            this.codeStructImageList.Images.SetKeyName(15, "PrivateMethod");
            this.codeStructImageList.Images.SetKeyName(16, "PrivateProperty");
            this.codeStructImageList.Images.SetKeyName(17, "Error");
            // 
            // toolbarsManager
            // 
            this.toolbarsManager.DesignerFlags = 1;
            this.toolbarsManager.DockWithinContainer = this;
            this.toolbarsManager.DockWithinContainerBaseType = typeof(System.Windows.Forms.Form);
            this.toolbarsManager.ImageTransparentColor = System.Drawing.Color.Fuchsia;
            this.toolbarsManager.ShowFullMenusDelay = 500;
            this.toolbarsManager.Style = Infragistics.Win.UltraWinToolbars.ToolbarStyle.Office2003;
            ultraToolbar1.DockedColumn = 0;
            ultraToolbar1.DockedRow = 0;
            ultraToolbar1.IsMainMenuBar = true;
            ultraToolbar1.NonInheritedTools.AddRange(new Infragistics.Win.UltraWinToolbars.ToolBase[] {
            popupMenuTool1,
            popupMenuTool2});
            resources.ApplyResources(ultraToolbar1, "ultraToolbar1");
            ultraToolbar2.DockedColumn = 0;
            ultraToolbar2.DockedRow = 1;
            buttonTool3.InstanceProps.IsFirstInGroup = true;
            buttonTool7.InstanceProps.IsFirstInGroup = true;
            buttonTool8.InstanceProps.IsFirstInGroup = true;
            ultraToolbar2.NonInheritedTools.AddRange(new Infragistics.Win.UltraWinToolbars.ToolBase[] {
            buttonTool1,
            buttonTool2,
            buttonTool3,
            buttonTool4,
            buttonTool5,
            buttonTool6,
            buttonTool7,
            buttonTool8,
            buttonTool9});
            resources.ApplyResources(ultraToolbar2, "ultraToolbar2");
            ultraToolbar3.DockedColumn = 0;
            ultraToolbar3.DockedRow = 2;
            comboBoxTool1.InstanceProps.Width = 174;
            ultraToolbar3.NonInheritedTools.AddRange(new Infragistics.Win.UltraWinToolbars.ToolBase[] {
            labelTool1,
            comboBoxTool1,
            labelTool2,
            textBoxTool1});
            ultraToolbar3.Settings.AllowDockLeft = Infragistics.Win.DefaultableBoolean.False;
            ultraToolbar3.Settings.AllowDockRight = Infragistics.Win.DefaultableBoolean.False;
            resources.ApplyResources(ultraToolbar3, "ultraToolbar3");
            this.toolbarsManager.Toolbars.AddRange(new Infragistics.Win.UltraWinToolbars.UltraToolbar[] {
            ultraToolbar1,
            ultraToolbar2,
            ultraToolbar3});
            popupMenuTool3.SharedProps.Caption = resources.GetString("resource.Caption");
            popupMenuTool3.SharedProps.MergeOrder = 110;
            popupMenuTool3.SharedProps.ToolTipText = resources.GetString("resource.ToolTipText");
            buttonTool12.InstanceProps.IsFirstInGroup = true;
            buttonTool16.InstanceProps.IsFirstInGroup = true;
            popupMenuTool3.Tools.AddRange(new Infragistics.Win.UltraWinToolbars.ToolBase[] {
            buttonTool10,
            buttonTool11,
            buttonTool12,
            buttonTool13,
            buttonTool14,
            buttonTool15,
            buttonTool16});
            popupMenuTool4.SharedProps.Caption = resources.GetString("resource.Caption1");
            popupMenuTool4.SharedProps.MergeOrder = 210;
            popupMenuTool4.SharedProps.ToolTipText = resources.GetString("resource.ToolTipText1");
            buttonTool18.InstanceProps.IsFirstInGroup = true;
            popupMenuTool4.Tools.AddRange(new Infragistics.Win.UltraWinToolbars.ToolBase[] {
            buttonTool17,
            buttonTool18,
            buttonTool19});
            appearance1.Image = global::SunnyChen.Gulu.Win.Properties.Resources.BMP_UNDO;
            resources.ApplyResources(appearance1, "appearance1");
            buttonTool20.SharedProps.AppearancesSmall.Appearance = appearance1;
            buttonTool20.SharedProps.Caption = resources.GetString("resource.Caption2");
            buttonTool20.SharedProps.Shortcut = System.Windows.Forms.Shortcut.CtrlZ;
            appearance2.Image = global::SunnyChen.Gulu.Win.Properties.Resources.BMP_REDO;
            resources.ApplyResources(appearance2, "appearance2");
            buttonTool21.SharedProps.AppearancesSmall.Appearance = appearance2;
            buttonTool21.SharedProps.Caption = resources.GetString("resource.Caption3");
            buttonTool21.SharedProps.Shortcut = System.Windows.Forms.Shortcut.CtrlY;
            appearance3.Image = global::SunnyChen.Gulu.Win.Properties.Resources.BMP_COPY;
            resources.ApplyResources(appearance3, "appearance3");
            buttonTool22.SharedProps.AppearancesSmall.Appearance = appearance3;
            buttonTool22.SharedProps.Caption = resources.GetString("resource.Caption4");
            buttonTool22.SharedProps.Shortcut = System.Windows.Forms.Shortcut.CtrlC;
            appearance4.Image = global::SunnyChen.Gulu.Win.Properties.Resources.BMP_PASTE;
            resources.ApplyResources(appearance4, "appearance4");
            buttonTool23.SharedProps.AppearancesSmall.Appearance = appearance4;
            buttonTool23.SharedProps.Caption = resources.GetString("resource.Caption5");
            buttonTool23.SharedProps.Shortcut = System.Windows.Forms.Shortcut.CtrlV;
            appearance5.Image = global::SunnyChen.Gulu.Win.Properties.Resources.BMP_CUT;
            resources.ApplyResources(appearance5, "appearance5");
            buttonTool24.SharedProps.AppearancesSmall.Appearance = appearance5;
            buttonTool24.SharedProps.Caption = resources.GetString("resource.Caption6");
            buttonTool24.SharedProps.Shortcut = System.Windows.Forms.Shortcut.CtrlX;
            buttonTool25.SharedProps.Caption = resources.GetString("resource.Caption7");
            buttonTool25.SharedProps.Shortcut = System.Windows.Forms.Shortcut.CtrlA;
            appearance6.Image = global::SunnyChen.Gulu.Win.Properties.Resources.BMP_DELETE2;
            resources.ApplyResources(appearance6, "appearance6");
            buttonTool26.SharedProps.AppearancesSmall.Appearance = appearance6;
            buttonTool26.SharedProps.Caption = resources.GetString("resource.Caption8");
            appearance7.Image = global::SunnyChen.Gulu.Win.Properties.Resources.BMP_UPDATELIST;
            resources.ApplyResources(appearance7, "appearance7");
            buttonTool27.SharedProps.AppearancesSmall.Appearance = appearance7;
            buttonTool27.SharedProps.Caption = resources.GetString("resource.Caption9");
            buttonTool27.SharedProps.Shortcut = System.Windows.Forms.Shortcut.F6;
            appearance8.Image = ((object)(resources.GetObject("appearance8.Image")));
            resources.ApplyResources(appearance8, "appearance8");
            buttonTool28.SharedProps.AppearancesSmall.Appearance = appearance8;
            buttonTool28.SharedProps.Caption = resources.GetString("resource.Caption10");
            buttonTool28.SharedProps.Shortcut = System.Windows.Forms.Shortcut.CtrlF9;
            buttonTool28.SharedProps.ToolTipText = resources.GetString("resource.ToolTipText2");
            appearance9.Image = global::SunnyChen.Gulu.Win.Properties.Resources.BMP_RUN;
            resources.ApplyResources(appearance9, "appearance9");
            buttonTool29.SharedProps.AppearancesSmall.Appearance = appearance9;
            buttonTool29.SharedProps.Caption = resources.GetString("resource.Caption11");
            buttonTool29.SharedProps.Shortcut = System.Windows.Forms.Shortcut.F9;
            buttonTool29.SharedProps.ToolTipText = resources.GetString("resource.ToolTipText3");
            comboBoxTool2.AutoComplete = true;
            comboBoxTool2.DropDownStyle = Infragistics.Win.DropDownStyle.DropDown;
            comboBoxTool2.SharedProps.Caption = resources.GetString("resource.Caption12");
            comboBoxTool2.SharedProps.Shortcut = System.Windows.Forms.Shortcut.CtrlF;
            comboBoxTool2.SharedProps.ToolTipText = resources.GetString("resource.ToolTipText4");
            comboBoxTool2.ValueList = valueList1;
            appearance10.Image = global::SunnyChen.Gulu.Win.Properties.Resources.BMP_FIND;
            resources.ApplyResources(appearance10, "appearance10");
            labelTool3.SharedProps.AppearancesSmall.Appearance = appearance10;
            labelTool3.SharedProps.Caption = resources.GetString("resource.Caption13");
            textBoxTool2.SharedProps.Caption = resources.GetString("resource.Caption14");
            textBoxTool2.SharedProps.Shortcut = System.Windows.Forms.Shortcut.CtrlG;
            textBoxTool2.SharedProps.ToolTipText = resources.GetString("resource.ToolTipText5");
            appearance11.Image = global::SunnyChen.Gulu.Win.Properties.Resources.BMP_GOTOLINE;
            resources.ApplyResources(appearance11, "appearance11");
            labelTool4.SharedProps.AppearancesSmall.Appearance = appearance11;
            labelTool4.SharedProps.Caption = resources.GetString("resource.Caption15");
            this.toolbarsManager.Tools.AddRange(new Infragistics.Win.UltraWinToolbars.ToolBase[] {
            popupMenuTool3,
            popupMenuTool4,
            buttonTool20,
            buttonTool21,
            buttonTool22,
            buttonTool23,
            buttonTool24,
            buttonTool25,
            buttonTool26,
            buttonTool27,
            buttonTool28,
            buttonTool29,
            comboBoxTool2,
            labelTool3,
            textBoxTool2,
            labelTool4});
            this.toolbarsManager.ToolClick += new Infragistics.Win.UltraWinToolbars.ToolClickEventHandler(this.toolbarsManager_ToolClick);
            this.toolbarsManager.ToolKeyPress += new Infragistics.Win.UltraWinToolbars.ToolKeyPressEventHandler(this.toolbarsManager_ToolKeyPress);
            // 
            // editor
            // 
            this.editor.AccessibleDescription = null;
            this.editor.AccessibleName = null;
            this.editor.ActiveView = Fireball.Windows.Forms.CodeEditor.ActiveView.BottomRight;
            this.editor.AllowBreakPoints = false;
            resources.ApplyResources(this.editor, "editor");
            this.editor.AutoListPosition = null;
            this.editor.AutoListSelectedText = "a123";
            this.editor.AutoListVisible = false;
            this.editor.BackgroundImage = null;
            this.editor.BorderStyle = Fireball.Windows.Forms.ControlBorderStyle.SunkenThin;
            this.toolbarsManager.SetContextMenuUltra(this.editor, "mnuEdit");
            this.editor.CopyAsRTF = false;
            this.editor.Document = this.syntaxDocument1;
            this.editor.Font = null;
            this.editor.FontSize = 9.5F;
            this.editor.HighLightActiveLine = true;
            this.editor.InfoTipCount = 1;
            this.editor.InfoTipPosition = null;
            this.editor.InfoTipSelectedIndex = 1;
            this.editor.InfoTipVisible = false;
            lineMarginRender1.Bounds = new System.Drawing.Rectangle(19, 0, 18, 15);
            this.editor.LineMarginRender = lineMarginRender1;
            this.editor.LockCursorUpdate = false;
            this.editor.Name = "editor";
            this.editor.Saved = false;
            this.editor.ShowScopeIndicator = false;
            this.editor.SmoothScroll = false;
            this.editor.SplitviewH = -4;
            this.editor.SplitviewV = -4;
            this.editor.TabGuideColor = System.Drawing.Color.FromArgb(((int)(((byte)(244)))), ((int)(((byte)(243)))), ((int)(((byte)(234)))));
            this.editor.WhitespaceColor = System.Drawing.SystemColors.ControlDark;
            this.editor.SelectionChange += new System.EventHandler(this.editor_SelectionChange);
            this.editor.CaretChange += new System.EventHandler(this.editor_CaretChange);
            // 
            // syntaxDocument1
            // 
            this.syntaxDocument1.Lines = new string[] {
        ""};
            this.syntaxDocument1.MaxUndoBufferSize = 1000;
            this.syntaxDocument1.Modified = false;
            this.syntaxDocument1.UndoStep = 0;
            this.syntaxDocument1.ModifiedChanged += new System.EventHandler(this.syntaxDocument1_ModifiedChanged);
            // 
            // frmCodeEditor_Fill_Panel
            // 
            this.frmCodeEditor_Fill_Panel.AccessibleDescription = null;
            this.frmCodeEditor_Fill_Panel.AccessibleName = null;
            resources.ApplyResources(this.frmCodeEditor_Fill_Panel, "frmCodeEditor_Fill_Panel");
            this.frmCodeEditor_Fill_Panel.BackgroundImage = null;
            this.frmCodeEditor_Fill_Panel.Controls.Add(this.editor);
            this.frmCodeEditor_Fill_Panel.Cursor = System.Windows.Forms.Cursors.Default;
            this.frmCodeEditor_Fill_Panel.Font = null;
            this.frmCodeEditor_Fill_Panel.Name = "frmCodeEditor_Fill_Panel";
            // 
            // _frmCodeEditor_Toolbars_Dock_Area_Left
            // 
            this._frmCodeEditor_Toolbars_Dock_Area_Left.AccessibleDescription = null;
            this._frmCodeEditor_Toolbars_Dock_Area_Left.AccessibleName = null;
            this._frmCodeEditor_Toolbars_Dock_Area_Left.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
            resources.ApplyResources(this._frmCodeEditor_Toolbars_Dock_Area_Left, "_frmCodeEditor_Toolbars_Dock_Area_Left");
            this._frmCodeEditor_Toolbars_Dock_Area_Left.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(158)))), ((int)(((byte)(190)))), ((int)(((byte)(245)))));
            this._frmCodeEditor_Toolbars_Dock_Area_Left.BackgroundImage = null;
            this._frmCodeEditor_Toolbars_Dock_Area_Left.DockedPosition = Infragistics.Win.UltraWinToolbars.DockedPosition.Left;
            this._frmCodeEditor_Toolbars_Dock_Area_Left.ForeColor = System.Drawing.SystemColors.ControlText;
            this._frmCodeEditor_Toolbars_Dock_Area_Left.Name = "_frmCodeEditor_Toolbars_Dock_Area_Left";
            this._frmCodeEditor_Toolbars_Dock_Area_Left.ToolbarsManager = this.toolbarsManager;
            // 
            // _frmCodeEditor_Toolbars_Dock_Area_Right
            // 
            this._frmCodeEditor_Toolbars_Dock_Area_Right.AccessibleDescription = null;
            this._frmCodeEditor_Toolbars_Dock_Area_Right.AccessibleName = null;
            this._frmCodeEditor_Toolbars_Dock_Area_Right.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
            resources.ApplyResources(this._frmCodeEditor_Toolbars_Dock_Area_Right, "_frmCodeEditor_Toolbars_Dock_Area_Right");
            this._frmCodeEditor_Toolbars_Dock_Area_Right.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(158)))), ((int)(((byte)(190)))), ((int)(((byte)(245)))));
            this._frmCodeEditor_Toolbars_Dock_Area_Right.BackgroundImage = null;
            this._frmCodeEditor_Toolbars_Dock_Area_Right.DockedPosition = Infragistics.Win.UltraWinToolbars.DockedPosition.Right;
            this._frmCodeEditor_Toolbars_Dock_Area_Right.ForeColor = System.Drawing.SystemColors.ControlText;
            this._frmCodeEditor_Toolbars_Dock_Area_Right.Name = "_frmCodeEditor_Toolbars_Dock_Area_Right";
            this._frmCodeEditor_Toolbars_Dock_Area_Right.ToolbarsManager = this.toolbarsManager;
            // 
            // _frmCodeEditor_Toolbars_Dock_Area_Top
            // 
            this._frmCodeEditor_Toolbars_Dock_Area_Top.AccessibleDescription = null;
            this._frmCodeEditor_Toolbars_Dock_Area_Top.AccessibleName = null;
            this._frmCodeEditor_Toolbars_Dock_Area_Top.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
            resources.ApplyResources(this._frmCodeEditor_Toolbars_Dock_Area_Top, "_frmCodeEditor_Toolbars_Dock_Area_Top");
            this._frmCodeEditor_Toolbars_Dock_Area_Top.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(158)))), ((int)(((byte)(190)))), ((int)(((byte)(245)))));
            this._frmCodeEditor_Toolbars_Dock_Area_Top.BackgroundImage = null;
            this._frmCodeEditor_Toolbars_Dock_Area_Top.DockedPosition = Infragistics.Win.UltraWinToolbars.DockedPosition.Top;
            this._frmCodeEditor_Toolbars_Dock_Area_Top.ForeColor = System.Drawing.SystemColors.ControlText;
            this._frmCodeEditor_Toolbars_Dock_Area_Top.Name = "_frmCodeEditor_Toolbars_Dock_Area_Top";
            this._frmCodeEditor_Toolbars_Dock_Area_Top.ToolbarsManager = this.toolbarsManager;
            // 
            // _frmCodeEditor_Toolbars_Dock_Area_Bottom
            // 
            this._frmCodeEditor_Toolbars_Dock_Area_Bottom.AccessibleDescription = null;
            this._frmCodeEditor_Toolbars_Dock_Area_Bottom.AccessibleName = null;
            this._frmCodeEditor_Toolbars_Dock_Area_Bottom.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
            resources.ApplyResources(this._frmCodeEditor_Toolbars_Dock_Area_Bottom, "_frmCodeEditor_Toolbars_Dock_Area_Bottom");
            this._frmCodeEditor_Toolbars_Dock_Area_Bottom.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(158)))), ((int)(((byte)(190)))), ((int)(((byte)(245)))));
            this._frmCodeEditor_Toolbars_Dock_Area_Bottom.BackgroundImage = null;
            this._frmCodeEditor_Toolbars_Dock_Area_Bottom.DockedPosition = Infragistics.Win.UltraWinToolbars.DockedPosition.Bottom;
            this._frmCodeEditor_Toolbars_Dock_Area_Bottom.ForeColor = System.Drawing.SystemColors.ControlText;
            this._frmCodeEditor_Toolbars_Dock_Area_Bottom.Name = "_frmCodeEditor_Toolbars_Dock_Area_Bottom";
            this._frmCodeEditor_Toolbars_Dock_Area_Bottom.ToolbarsManager = this.toolbarsManager;
            // 
            // dockManager
            // 
            this.dockManager.CaptionStyle = Infragistics.Win.UltraWinDock.CaptionStyle.Office2003;
            dockableControlPane1.Control = this.codeStructTreeView;
            dockableControlPane1.FlyoutSize = new System.Drawing.Size(175, -1);
            dockableControlPane1.OriginalControlBounds = new System.Drawing.Rectangle(0, 0, 185, 494);
            dockableControlPane1.Size = new System.Drawing.Size(100, 100);
            resources.ApplyResources(dockableControlPane1, "dockableControlPane1");
            dockableControlPane1.TextTab = null;
            dockableControlPane1.ToolTipTab = null;
            dockAreaPane1.Panes.AddRange(new Infragistics.Win.UltraWinDock.DockablePaneBase[] {
            dockableControlPane1});
            dockAreaPane1.Size = new System.Drawing.Size(175, 414);
            resources.ApplyResources(dockAreaPane1, "dockAreaPane1");
            dockAreaPane1.TextTab = null;
            dockAreaPane1.ToolTipTab = null;
            this.dockManager.DockAreas.AddRange(new Infragistics.Win.UltraWinDock.DockAreaPane[] {
            dockAreaPane1});
            this.dockManager.HostControl = this;
            this.dockManager.ShowCloseButton = false;
            this.dockManager.WindowStyle = Infragistics.Win.UltraWinDock.WindowStyle.Office2003;
            // 
            // _frmCodeEditorUnpinnedTabAreaLeft
            // 
            this._frmCodeEditorUnpinnedTabAreaLeft.AccessibleDescription = null;
            this._frmCodeEditorUnpinnedTabAreaLeft.AccessibleName = null;
            resources.ApplyResources(this._frmCodeEditorUnpinnedTabAreaLeft, "_frmCodeEditorUnpinnedTabAreaLeft");
            this._frmCodeEditorUnpinnedTabAreaLeft.BackgroundImage = null;
            this._frmCodeEditorUnpinnedTabAreaLeft.Name = "_frmCodeEditorUnpinnedTabAreaLeft";
            this._frmCodeEditorUnpinnedTabAreaLeft.Owner = this.dockManager;
            // 
            // _frmCodeEditorUnpinnedTabAreaRight
            // 
            this._frmCodeEditorUnpinnedTabAreaRight.AccessibleDescription = null;
            this._frmCodeEditorUnpinnedTabAreaRight.AccessibleName = null;
            resources.ApplyResources(this._frmCodeEditorUnpinnedTabAreaRight, "_frmCodeEditorUnpinnedTabAreaRight");
            this._frmCodeEditorUnpinnedTabAreaRight.BackgroundImage = null;
            this._frmCodeEditorUnpinnedTabAreaRight.Name = "_frmCodeEditorUnpinnedTabAreaRight";
            this._frmCodeEditorUnpinnedTabAreaRight.Owner = this.dockManager;
            // 
            // _frmCodeEditorUnpinnedTabAreaTop
            // 
            this._frmCodeEditorUnpinnedTabAreaTop.AccessibleDescription = null;
            this._frmCodeEditorUnpinnedTabAreaTop.AccessibleName = null;
            resources.ApplyResources(this._frmCodeEditorUnpinnedTabAreaTop, "_frmCodeEditorUnpinnedTabAreaTop");
            this._frmCodeEditorUnpinnedTabAreaTop.BackgroundImage = null;
            this._frmCodeEditorUnpinnedTabAreaTop.Name = "_frmCodeEditorUnpinnedTabAreaTop";
            this._frmCodeEditorUnpinnedTabAreaTop.Owner = this.dockManager;
            // 
            // _frmCodeEditorUnpinnedTabAreaBottom
            // 
            this._frmCodeEditorUnpinnedTabAreaBottom.AccessibleDescription = null;
            this._frmCodeEditorUnpinnedTabAreaBottom.AccessibleName = null;
            resources.ApplyResources(this._frmCodeEditorUnpinnedTabAreaBottom, "_frmCodeEditorUnpinnedTabAreaBottom");
            this._frmCodeEditorUnpinnedTabAreaBottom.BackgroundImage = null;
            this._frmCodeEditorUnpinnedTabAreaBottom.Name = "_frmCodeEditorUnpinnedTabAreaBottom";
            this._frmCodeEditorUnpinnedTabAreaBottom.Owner = this.dockManager;
            // 
            // _frmCodeEditorAutoHideControl
            // 
            this._frmCodeEditorAutoHideControl.AccessibleDescription = null;
            this._frmCodeEditorAutoHideControl.AccessibleName = null;
            resources.ApplyResources(this._frmCodeEditorAutoHideControl, "_frmCodeEditorAutoHideControl");
            this._frmCodeEditorAutoHideControl.BackgroundImage = null;
            this._frmCodeEditorAutoHideControl.Name = "_frmCodeEditorAutoHideControl";
            this._frmCodeEditorAutoHideControl.Owner = this.dockManager;
            // 
            // windowDockingArea1
            // 
            this.windowDockingArea1.AccessibleDescription = null;
            this.windowDockingArea1.AccessibleName = null;
            resources.ApplyResources(this.windowDockingArea1, "windowDockingArea1");
            this.windowDockingArea1.BackgroundImage = null;
            this.windowDockingArea1.Controls.Add(this.dockableWindow1);
            this.windowDockingArea1.Name = "windowDockingArea1";
            this.windowDockingArea1.Owner = this.dockManager;
            // 
            // dockableWindow1
            // 
            this.dockableWindow1.AccessibleDescription = null;
            this.dockableWindow1.AccessibleName = null;
            resources.ApplyResources(this.dockableWindow1, "dockableWindow1");
            this.dockableWindow1.BackgroundImage = null;
            this.dockableWindow1.Controls.Add(this.codeStructTreeView);
            this.dockableWindow1.Font = null;
            this.dockableWindow1.Name = "dockableWindow1";
            this.dockableWindow1.Owner = this.dockManager;
            // 
            // frmCodeEditor
            // 
            this.AccessibleDescription = null;
            this.AccessibleName = null;
            resources.ApplyResources(this, "$this");
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.BackgroundImage = null;
            this.Controls.Add(this._frmCodeEditorAutoHideControl);
            this.Controls.Add(this.frmCodeEditor_Fill_Panel);
            this.Controls.Add(this.windowDockingArea1);
            this.Controls.Add(this._frmCodeEditorUnpinnedTabAreaTop);
            this.Controls.Add(this._frmCodeEditorUnpinnedTabAreaBottom);
            this.Controls.Add(this._frmCodeEditorUnpinnedTabAreaRight);
            this.Controls.Add(this._frmCodeEditorUnpinnedTabAreaLeft);
            this.Controls.Add(this._frmCodeEditor_Toolbars_Dock_Area_Left);
            this.Controls.Add(this._frmCodeEditor_Toolbars_Dock_Area_Right);
            this.Controls.Add(this._frmCodeEditor_Toolbars_Dock_Area_Top);
            this.Controls.Add(this._frmCodeEditor_Toolbars_Dock_Area_Bottom);
            this.KeyPreview = true;
            this.Name = "frmCodeEditor";
            this.Load += new System.EventHandler(this.frmCodeEditor_Load);
            this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.frmCodeEditor_FormClosing);
            ((System.ComponentModel.ISupportInitialize)(this.toolbarsManager)).EndInit();
            this.frmCodeEditor_Fill_Panel.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.dockManager)).EndInit();
            this.windowDockingArea1.ResumeLayout(false);
            this.dockableWindow1.ResumeLayout(false);
            this.ResumeLayout(false);

        }
Example #6
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();
     System.ComponentModel.ComponentResourceManager  resources      = new System.ComponentModel.ComponentResourceManager(typeof(frmCodeEditor));
     Infragistics.Win.UltraWinToolbars.UltraToolbar  ultraToolbar1  = new Infragistics.Win.UltraWinToolbars.UltraToolbar("Code editor menu");
     Infragistics.Win.UltraWinToolbars.PopupMenuTool popupMenuTool1 = new Infragistics.Win.UltraWinToolbars.PopupMenuTool("mnuEdit");
     Infragistics.Win.UltraWinToolbars.PopupMenuTool popupMenuTool2 = new Infragistics.Win.UltraWinToolbars.PopupMenuTool("mnuScript");
     Infragistics.Win.UltraWinToolbars.UltraToolbar  ultraToolbar2  = new Infragistics.Win.UltraWinToolbars.UltraToolbar("Code editor tools");
     Infragistics.Win.UltraWinToolbars.ButtonTool    buttonTool1    = new Infragistics.Win.UltraWinToolbars.ButtonTool("mnuUndo");
     Infragistics.Win.UltraWinToolbars.ButtonTool    buttonTool2    = new Infragistics.Win.UltraWinToolbars.ButtonTool("mnuRedo");
     Infragistics.Win.UltraWinToolbars.ButtonTool    buttonTool3    = new Infragistics.Win.UltraWinToolbars.ButtonTool("mnuCut");
     Infragistics.Win.UltraWinToolbars.ButtonTool    buttonTool4    = new Infragistics.Win.UltraWinToolbars.ButtonTool("mnuCopy");
     Infragistics.Win.UltraWinToolbars.ButtonTool    buttonTool5    = new Infragistics.Win.UltraWinToolbars.ButtonTool("mnuPaste");
     Infragistics.Win.UltraWinToolbars.ButtonTool    buttonTool6    = new Infragistics.Win.UltraWinToolbars.ButtonTool("mnuDelete");
     Infragistics.Win.UltraWinToolbars.ButtonTool    buttonTool7    = new Infragistics.Win.UltraWinToolbars.ButtonTool("mnuUpdateCodeStructure");
     Infragistics.Win.UltraWinToolbars.ButtonTool    buttonTool8    = new Infragistics.Win.UltraWinToolbars.ButtonTool("mnuCompile");
     Infragistics.Win.UltraWinToolbars.ButtonTool    buttonTool9    = new Infragistics.Win.UltraWinToolbars.ButtonTool("mnuRun");
     Infragistics.Win.UltraWinToolbars.UltraToolbar  ultraToolbar3  = new Infragistics.Win.UltraWinToolbars.UltraToolbar("Locating");
     Infragistics.Win.UltraWinToolbars.LabelTool     labelTool1     = new Infragistics.Win.UltraWinToolbars.LabelTool("mnuFindLabel");
     Infragistics.Win.UltraWinToolbars.ComboBoxTool  comboBoxTool1  = new Infragistics.Win.UltraWinToolbars.ComboBoxTool("mnuFindField");
     Infragistics.Win.UltraWinToolbars.LabelTool     labelTool2     = new Infragistics.Win.UltraWinToolbars.LabelTool("mnuGotoLineLabel");
     Infragistics.Win.UltraWinToolbars.TextBoxTool   textBoxTool1   = new Infragistics.Win.UltraWinToolbars.TextBoxTool("mnuGotoLine");
     Infragistics.Win.UltraWinToolbars.PopupMenuTool popupMenuTool3 = new Infragistics.Win.UltraWinToolbars.PopupMenuTool("mnuEdit");
     Infragistics.Win.UltraWinToolbars.ButtonTool    buttonTool10   = new Infragistics.Win.UltraWinToolbars.ButtonTool("mnuUndo");
     Infragistics.Win.UltraWinToolbars.ButtonTool    buttonTool11   = new Infragistics.Win.UltraWinToolbars.ButtonTool("mnuRedo");
     Infragistics.Win.UltraWinToolbars.ButtonTool    buttonTool12   = new Infragistics.Win.UltraWinToolbars.ButtonTool("mnuCut");
     Infragistics.Win.UltraWinToolbars.ButtonTool    buttonTool13   = new Infragistics.Win.UltraWinToolbars.ButtonTool("mnuCopy");
     Infragistics.Win.UltraWinToolbars.ButtonTool    buttonTool14   = new Infragistics.Win.UltraWinToolbars.ButtonTool("mnuPaste");
     Infragistics.Win.UltraWinToolbars.ButtonTool    buttonTool15   = new Infragistics.Win.UltraWinToolbars.ButtonTool("mnuDelete");
     Infragistics.Win.UltraWinToolbars.ButtonTool    buttonTool16   = new Infragistics.Win.UltraWinToolbars.ButtonTool("mnuSelectAll");
     Infragistics.Win.UltraWinToolbars.PopupMenuTool popupMenuTool4 = new Infragistics.Win.UltraWinToolbars.PopupMenuTool("mnuScript");
     Infragistics.Win.UltraWinToolbars.ButtonTool    buttonTool17   = new Infragistics.Win.UltraWinToolbars.ButtonTool("mnuUpdateCodeStructure");
     Infragistics.Win.UltraWinToolbars.ButtonTool    buttonTool18   = new Infragistics.Win.UltraWinToolbars.ButtonTool("mnuCompile");
     Infragistics.Win.UltraWinToolbars.ButtonTool    buttonTool19   = new Infragistics.Win.UltraWinToolbars.ButtonTool("mnuRun");
     Infragistics.Win.UltraWinToolbars.ButtonTool    buttonTool20   = new Infragistics.Win.UltraWinToolbars.ButtonTool("mnuUndo");
     Infragistics.Win.Appearance appearance1 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool21 = new Infragistics.Win.UltraWinToolbars.ButtonTool("mnuRedo");
     Infragistics.Win.Appearance appearance2 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool22 = new Infragistics.Win.UltraWinToolbars.ButtonTool("mnuCopy");
     Infragistics.Win.Appearance appearance3 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool23 = new Infragistics.Win.UltraWinToolbars.ButtonTool("mnuPaste");
     Infragistics.Win.Appearance appearance4 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool24 = new Infragistics.Win.UltraWinToolbars.ButtonTool("mnuCut");
     Infragistics.Win.Appearance appearance5 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool25 = new Infragistics.Win.UltraWinToolbars.ButtonTool("mnuSelectAll");
     Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool26 = new Infragistics.Win.UltraWinToolbars.ButtonTool("mnuDelete");
     Infragistics.Win.Appearance appearance6 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool27 = new Infragistics.Win.UltraWinToolbars.ButtonTool("mnuUpdateCodeStructure");
     Infragistics.Win.Appearance appearance7 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool28 = new Infragistics.Win.UltraWinToolbars.ButtonTool("mnuCompile");
     Infragistics.Win.Appearance appearance8 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool29 = new Infragistics.Win.UltraWinToolbars.ButtonTool("mnuRun");
     Infragistics.Win.Appearance appearance9 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinToolbars.ComboBoxTool comboBoxTool2 = new Infragistics.Win.UltraWinToolbars.ComboBoxTool("mnuFindField");
     Infragistics.Win.ValueList valueList1 = new Infragistics.Win.ValueList(0);
     Infragistics.Win.UltraWinToolbars.LabelTool labelTool3 = new Infragistics.Win.UltraWinToolbars.LabelTool("mnuFindLabel");
     Infragistics.Win.Appearance appearance10 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinToolbars.TextBoxTool textBoxTool2             = new Infragistics.Win.UltraWinToolbars.TextBoxTool("mnuGotoLine");
     Infragistics.Win.UltraWinToolbars.LabelTool   labelTool4               = new Infragistics.Win.UltraWinToolbars.LabelTool("mnuGotoLineLabel");
     Infragistics.Win.Appearance                       appearance11         = new Infragistics.Win.Appearance();
     Fireball.Windows.Forms.LineMarginRender           lineMarginRender1    = new Fireball.Windows.Forms.LineMarginRender();
     Infragistics.Win.UltraWinDock.DockAreaPane        dockAreaPane1        = new Infragistics.Win.UltraWinDock.DockAreaPane(Infragistics.Win.UltraWinDock.DockedLocation.DockedLeft, new System.Guid("f694993e-09d7-4a31-a93b-c4def9ae9808"));
     Infragistics.Win.UltraWinDock.DockableControlPane dockableControlPane1 = new Infragistics.Win.UltraWinDock.DockableControlPane(new System.Guid("eed9e4a0-d8df-4a5c-8e73-ff16fd379fb6"), new System.Guid("00000000-0000-0000-0000-000000000000"), -1, new System.Guid("f694993e-09d7-4a31-a93b-c4def9ae9808"), -1);
     this.codeStructTreeView  = new System.Windows.Forms.TreeView();
     this.codeStructImageList = new System.Windows.Forms.ImageList(this.components);
     this.toolbarsManager     = new Infragistics.Win.UltraWinToolbars.UltraToolbarsManager(this.components);
     this.editor                   = new Fireball.Windows.Forms.CodeEditorControl();
     this.syntaxDocument1          = new Fireball.Syntax.SyntaxDocument(this.components);
     this.frmCodeEditor_Fill_Panel = new System.Windows.Forms.Panel();
     this._frmCodeEditor_Toolbars_Dock_Area_Left   = new Infragistics.Win.UltraWinToolbars.UltraToolbarsDockArea();
     this._frmCodeEditor_Toolbars_Dock_Area_Right  = new Infragistics.Win.UltraWinToolbars.UltraToolbarsDockArea();
     this._frmCodeEditor_Toolbars_Dock_Area_Top    = new Infragistics.Win.UltraWinToolbars.UltraToolbarsDockArea();
     this._frmCodeEditor_Toolbars_Dock_Area_Bottom = new Infragistics.Win.UltraWinToolbars.UltraToolbarsDockArea();
     this.dockManager = new Infragistics.Win.UltraWinDock.UltraDockManager(this.components);
     this._frmCodeEditorUnpinnedTabAreaLeft   = new Infragistics.Win.UltraWinDock.UnpinnedTabArea();
     this._frmCodeEditorUnpinnedTabAreaRight  = new Infragistics.Win.UltraWinDock.UnpinnedTabArea();
     this._frmCodeEditorUnpinnedTabAreaTop    = new Infragistics.Win.UltraWinDock.UnpinnedTabArea();
     this._frmCodeEditorUnpinnedTabAreaBottom = new Infragistics.Win.UltraWinDock.UnpinnedTabArea();
     this._frmCodeEditorAutoHideControl       = new Infragistics.Win.UltraWinDock.AutoHideControl();
     this.windowDockingArea1 = new Infragistics.Win.UltraWinDock.WindowDockingArea();
     this.dockableWindow1    = new Infragistics.Win.UltraWinDock.DockableWindow();
     ((System.ComponentModel.ISupportInitialize)(this.toolbarsManager)).BeginInit();
     this.frmCodeEditor_Fill_Panel.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dockManager)).BeginInit();
     this.windowDockingArea1.SuspendLayout();
     this.dockableWindow1.SuspendLayout();
     this.SuspendLayout();
     //
     // codeStructTreeView
     //
     this.codeStructTreeView.AccessibleDescription = null;
     this.codeStructTreeView.AccessibleName        = null;
     resources.ApplyResources(this.codeStructTreeView, "codeStructTreeView");
     this.codeStructTreeView.BackgroundImage = null;
     this.toolbarsManager.SetContextMenuUltra(this.codeStructTreeView, "mnuScript");
     this.codeStructTreeView.Font          = null;
     this.codeStructTreeView.FullRowSelect = true;
     this.codeStructTreeView.HideSelection = false;
     this.codeStructTreeView.ImageList     = this.codeStructImageList;
     this.codeStructTreeView.Name          = "codeStructTreeView";
     this.codeStructTreeView.DoubleClick  += new System.EventHandler(this.codeStructTreeView_DoubleClick);
     //
     // codeStructImageList
     //
     this.codeStructImageList.ImageStream      = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("codeStructImageList.ImageStream")));
     this.codeStructImageList.TransparentColor = System.Drawing.Color.Fuchsia;
     this.codeStructImageList.Images.SetKeyName(0, "Struct");
     this.codeStructImageList.Images.SetKeyName(1, "Class");
     this.codeStructImageList.Images.SetKeyName(2, "Enum");
     this.codeStructImageList.Images.SetKeyName(3, "Interface");
     this.codeStructImageList.Images.SetKeyName(4, "PrivateClass");
     this.codeStructImageList.Images.SetKeyName(5, "PrivateEnum");
     this.codeStructImageList.Images.SetKeyName(6, "PrivateInterface");
     this.codeStructImageList.Images.SetKeyName(7, "PrivateStruct");
     this.codeStructImageList.Images.SetKeyName(8, "Namespace");
     this.codeStructImageList.Images.SetKeyName(9, "Property");
     this.codeStructImageList.Images.SetKeyName(10, "Event");
     this.codeStructImageList.Images.SetKeyName(11, "Field");
     this.codeStructImageList.Images.SetKeyName(12, "Method");
     this.codeStructImageList.Images.SetKeyName(13, "PrivateEvent");
     this.codeStructImageList.Images.SetKeyName(14, "PrivateField");
     this.codeStructImageList.Images.SetKeyName(15, "PrivateMethod");
     this.codeStructImageList.Images.SetKeyName(16, "PrivateProperty");
     this.codeStructImageList.Images.SetKeyName(17, "Error");
     //
     // toolbarsManager
     //
     this.toolbarsManager.DesignerFlags               = 1;
     this.toolbarsManager.DockWithinContainer         = this;
     this.toolbarsManager.DockWithinContainerBaseType = typeof(System.Windows.Forms.Form);
     this.toolbarsManager.ImageTransparentColor       = System.Drawing.Color.Fuchsia;
     this.toolbarsManager.ShowFullMenusDelay          = 500;
     this.toolbarsManager.Style  = Infragistics.Win.UltraWinToolbars.ToolbarStyle.Office2003;
     ultraToolbar1.DockedColumn  = 0;
     ultraToolbar1.DockedRow     = 0;
     ultraToolbar1.IsMainMenuBar = true;
     ultraToolbar1.NonInheritedTools.AddRange(new Infragistics.Win.UltraWinToolbars.ToolBase[] {
         popupMenuTool1,
         popupMenuTool2
     });
     resources.ApplyResources(ultraToolbar1, "ultraToolbar1");
     ultraToolbar2.DockedColumn = 0;
     ultraToolbar2.DockedRow    = 1;
     buttonTool3.InstanceProps.IsFirstInGroup = true;
     buttonTool7.InstanceProps.IsFirstInGroup = true;
     buttonTool8.InstanceProps.IsFirstInGroup = true;
     ultraToolbar2.NonInheritedTools.AddRange(new Infragistics.Win.UltraWinToolbars.ToolBase[] {
         buttonTool1,
         buttonTool2,
         buttonTool3,
         buttonTool4,
         buttonTool5,
         buttonTool6,
         buttonTool7,
         buttonTool8,
         buttonTool9
     });
     resources.ApplyResources(ultraToolbar2, "ultraToolbar2");
     ultraToolbar3.DockedColumn        = 0;
     ultraToolbar3.DockedRow           = 2;
     comboBoxTool1.InstanceProps.Width = 174;
     ultraToolbar3.NonInheritedTools.AddRange(new Infragistics.Win.UltraWinToolbars.ToolBase[] {
         labelTool1,
         comboBoxTool1,
         labelTool2,
         textBoxTool1
     });
     ultraToolbar3.Settings.AllowDockLeft  = Infragistics.Win.DefaultableBoolean.False;
     ultraToolbar3.Settings.AllowDockRight = Infragistics.Win.DefaultableBoolean.False;
     resources.ApplyResources(ultraToolbar3, "ultraToolbar3");
     this.toolbarsManager.Toolbars.AddRange(new Infragistics.Win.UltraWinToolbars.UltraToolbar[] {
         ultraToolbar1,
         ultraToolbar2,
         ultraToolbar3
     });
     popupMenuTool3.SharedProps.Caption        = resources.GetString("resource.Caption");
     popupMenuTool3.SharedProps.MergeOrder     = 110;
     popupMenuTool3.SharedProps.ToolTipText    = resources.GetString("resource.ToolTipText");
     buttonTool12.InstanceProps.IsFirstInGroup = true;
     buttonTool16.InstanceProps.IsFirstInGroup = true;
     popupMenuTool3.Tools.AddRange(new Infragistics.Win.UltraWinToolbars.ToolBase[] {
         buttonTool10,
         buttonTool11,
         buttonTool12,
         buttonTool13,
         buttonTool14,
         buttonTool15,
         buttonTool16
     });
     popupMenuTool4.SharedProps.Caption        = resources.GetString("resource.Caption1");
     popupMenuTool4.SharedProps.MergeOrder     = 210;
     popupMenuTool4.SharedProps.ToolTipText    = resources.GetString("resource.ToolTipText1");
     buttonTool18.InstanceProps.IsFirstInGroup = true;
     popupMenuTool4.Tools.AddRange(new Infragistics.Win.UltraWinToolbars.ToolBase[] {
         buttonTool17,
         buttonTool18,
         buttonTool19
     });
     appearance1.Image = global::SunnyChen.Gulu.Win.Properties.Resources.BMP_UNDO;
     resources.ApplyResources(appearance1, "appearance1");
     buttonTool20.SharedProps.AppearancesSmall.Appearance = appearance1;
     buttonTool20.SharedProps.Caption  = resources.GetString("resource.Caption2");
     buttonTool20.SharedProps.Shortcut = System.Windows.Forms.Shortcut.CtrlZ;
     appearance2.Image = global::SunnyChen.Gulu.Win.Properties.Resources.BMP_REDO;
     resources.ApplyResources(appearance2, "appearance2");
     buttonTool21.SharedProps.AppearancesSmall.Appearance = appearance2;
     buttonTool21.SharedProps.Caption  = resources.GetString("resource.Caption3");
     buttonTool21.SharedProps.Shortcut = System.Windows.Forms.Shortcut.CtrlY;
     appearance3.Image = global::SunnyChen.Gulu.Win.Properties.Resources.BMP_COPY;
     resources.ApplyResources(appearance3, "appearance3");
     buttonTool22.SharedProps.AppearancesSmall.Appearance = appearance3;
     buttonTool22.SharedProps.Caption  = resources.GetString("resource.Caption4");
     buttonTool22.SharedProps.Shortcut = System.Windows.Forms.Shortcut.CtrlC;
     appearance4.Image = global::SunnyChen.Gulu.Win.Properties.Resources.BMP_PASTE;
     resources.ApplyResources(appearance4, "appearance4");
     buttonTool23.SharedProps.AppearancesSmall.Appearance = appearance4;
     buttonTool23.SharedProps.Caption  = resources.GetString("resource.Caption5");
     buttonTool23.SharedProps.Shortcut = System.Windows.Forms.Shortcut.CtrlV;
     appearance5.Image = global::SunnyChen.Gulu.Win.Properties.Resources.BMP_CUT;
     resources.ApplyResources(appearance5, "appearance5");
     buttonTool24.SharedProps.AppearancesSmall.Appearance = appearance5;
     buttonTool24.SharedProps.Caption  = resources.GetString("resource.Caption6");
     buttonTool24.SharedProps.Shortcut = System.Windows.Forms.Shortcut.CtrlX;
     buttonTool25.SharedProps.Caption  = resources.GetString("resource.Caption7");
     buttonTool25.SharedProps.Shortcut = System.Windows.Forms.Shortcut.CtrlA;
     appearance6.Image = global::SunnyChen.Gulu.Win.Properties.Resources.BMP_DELETE2;
     resources.ApplyResources(appearance6, "appearance6");
     buttonTool26.SharedProps.AppearancesSmall.Appearance = appearance6;
     buttonTool26.SharedProps.Caption = resources.GetString("resource.Caption8");
     appearance7.Image = global::SunnyChen.Gulu.Win.Properties.Resources.BMP_UPDATELIST;
     resources.ApplyResources(appearance7, "appearance7");
     buttonTool27.SharedProps.AppearancesSmall.Appearance = appearance7;
     buttonTool27.SharedProps.Caption  = resources.GetString("resource.Caption9");
     buttonTool27.SharedProps.Shortcut = System.Windows.Forms.Shortcut.F6;
     appearance8.Image = ((object)(resources.GetObject("appearance8.Image")));
     resources.ApplyResources(appearance8, "appearance8");
     buttonTool28.SharedProps.AppearancesSmall.Appearance = appearance8;
     buttonTool28.SharedProps.Caption     = resources.GetString("resource.Caption10");
     buttonTool28.SharedProps.Shortcut    = System.Windows.Forms.Shortcut.CtrlF9;
     buttonTool28.SharedProps.ToolTipText = resources.GetString("resource.ToolTipText2");
     appearance9.Image = global::SunnyChen.Gulu.Win.Properties.Resources.BMP_RUN;
     resources.ApplyResources(appearance9, "appearance9");
     buttonTool29.SharedProps.AppearancesSmall.Appearance = appearance9;
     buttonTool29.SharedProps.Caption      = resources.GetString("resource.Caption11");
     buttonTool29.SharedProps.Shortcut     = System.Windows.Forms.Shortcut.F9;
     buttonTool29.SharedProps.ToolTipText  = resources.GetString("resource.ToolTipText3");
     comboBoxTool2.AutoComplete            = true;
     comboBoxTool2.DropDownStyle           = Infragistics.Win.DropDownStyle.DropDown;
     comboBoxTool2.SharedProps.Caption     = resources.GetString("resource.Caption12");
     comboBoxTool2.SharedProps.Shortcut    = System.Windows.Forms.Shortcut.CtrlF;
     comboBoxTool2.SharedProps.ToolTipText = resources.GetString("resource.ToolTipText4");
     comboBoxTool2.ValueList = valueList1;
     appearance10.Image      = global::SunnyChen.Gulu.Win.Properties.Resources.BMP_FIND;
     resources.ApplyResources(appearance10, "appearance10");
     labelTool3.SharedProps.AppearancesSmall.Appearance = appearance10;
     labelTool3.SharedProps.Caption       = resources.GetString("resource.Caption13");
     textBoxTool2.SharedProps.Caption     = resources.GetString("resource.Caption14");
     textBoxTool2.SharedProps.Shortcut    = System.Windows.Forms.Shortcut.CtrlG;
     textBoxTool2.SharedProps.ToolTipText = resources.GetString("resource.ToolTipText5");
     appearance11.Image = global::SunnyChen.Gulu.Win.Properties.Resources.BMP_GOTOLINE;
     resources.ApplyResources(appearance11, "appearance11");
     labelTool4.SharedProps.AppearancesSmall.Appearance = appearance11;
     labelTool4.SharedProps.Caption = resources.GetString("resource.Caption15");
     this.toolbarsManager.Tools.AddRange(new Infragistics.Win.UltraWinToolbars.ToolBase[] {
         popupMenuTool3,
         popupMenuTool4,
         buttonTool20,
         buttonTool21,
         buttonTool22,
         buttonTool23,
         buttonTool24,
         buttonTool25,
         buttonTool26,
         buttonTool27,
         buttonTool28,
         buttonTool29,
         comboBoxTool2,
         labelTool3,
         textBoxTool2,
         labelTool4
     });
     this.toolbarsManager.ToolClick    += new Infragistics.Win.UltraWinToolbars.ToolClickEventHandler(this.toolbarsManager_ToolClick);
     this.toolbarsManager.ToolKeyPress += new Infragistics.Win.UltraWinToolbars.ToolKeyPressEventHandler(this.toolbarsManager_ToolKeyPress);
     //
     // editor
     //
     this.editor.AccessibleDescription = null;
     this.editor.AccessibleName        = null;
     this.editor.ActiveView            = Fireball.Windows.Forms.CodeEditor.ActiveView.BottomRight;
     this.editor.AllowBreakPoints      = false;
     resources.ApplyResources(this.editor, "editor");
     this.editor.AutoListPosition     = null;
     this.editor.AutoListSelectedText = "a123";
     this.editor.AutoListVisible      = false;
     this.editor.BackgroundImage      = null;
     this.editor.BorderStyle          = Fireball.Windows.Forms.ControlBorderStyle.SunkenThin;
     this.toolbarsManager.SetContextMenuUltra(this.editor, "mnuEdit");
     this.editor.CopyAsRTF            = false;
     this.editor.Document             = this.syntaxDocument1;
     this.editor.Font                 = null;
     this.editor.FontSize             = 9.5F;
     this.editor.HighLightActiveLine  = true;
     this.editor.InfoTipCount         = 1;
     this.editor.InfoTipPosition      = null;
     this.editor.InfoTipSelectedIndex = 1;
     this.editor.InfoTipVisible       = false;
     lineMarginRender1.Bounds         = new System.Drawing.Rectangle(19, 0, 18, 15);
     this.editor.LineMarginRender     = lineMarginRender1;
     this.editor.LockCursorUpdate     = false;
     this.editor.Name                 = "editor";
     this.editor.Saved                = false;
     this.editor.ShowScopeIndicator   = false;
     this.editor.SmoothScroll         = false;
     this.editor.SplitviewH           = -4;
     this.editor.SplitviewV           = -4;
     this.editor.TabGuideColor        = System.Drawing.Color.FromArgb(((int)(((byte)(244)))), ((int)(((byte)(243)))), ((int)(((byte)(234)))));
     this.editor.WhitespaceColor      = System.Drawing.SystemColors.ControlDark;
     this.editor.SelectionChange     += new System.EventHandler(this.editor_SelectionChange);
     this.editor.CaretChange         += new System.EventHandler(this.editor_CaretChange);
     //
     // syntaxDocument1
     //
     this.syntaxDocument1.Lines = new string[] {
         ""
     };
     this.syntaxDocument1.MaxUndoBufferSize = 1000;
     this.syntaxDocument1.Modified          = false;
     this.syntaxDocument1.UndoStep          = 0;
     this.syntaxDocument1.ModifiedChanged  += new System.EventHandler(this.syntaxDocument1_ModifiedChanged);
     //
     // frmCodeEditor_Fill_Panel
     //
     this.frmCodeEditor_Fill_Panel.AccessibleDescription = null;
     this.frmCodeEditor_Fill_Panel.AccessibleName        = null;
     resources.ApplyResources(this.frmCodeEditor_Fill_Panel, "frmCodeEditor_Fill_Panel");
     this.frmCodeEditor_Fill_Panel.BackgroundImage = null;
     this.frmCodeEditor_Fill_Panel.Controls.Add(this.editor);
     this.frmCodeEditor_Fill_Panel.Cursor = System.Windows.Forms.Cursors.Default;
     this.frmCodeEditor_Fill_Panel.Font   = null;
     this.frmCodeEditor_Fill_Panel.Name   = "frmCodeEditor_Fill_Panel";
     //
     // _frmCodeEditor_Toolbars_Dock_Area_Left
     //
     this._frmCodeEditor_Toolbars_Dock_Area_Left.AccessibleDescription = null;
     this._frmCodeEditor_Toolbars_Dock_Area_Left.AccessibleName        = null;
     this._frmCodeEditor_Toolbars_Dock_Area_Left.AccessibleRole        = System.Windows.Forms.AccessibleRole.Grouping;
     resources.ApplyResources(this._frmCodeEditor_Toolbars_Dock_Area_Left, "_frmCodeEditor_Toolbars_Dock_Area_Left");
     this._frmCodeEditor_Toolbars_Dock_Area_Left.BackColor       = System.Drawing.Color.FromArgb(((int)(((byte)(158)))), ((int)(((byte)(190)))), ((int)(((byte)(245)))));
     this._frmCodeEditor_Toolbars_Dock_Area_Left.BackgroundImage = null;
     this._frmCodeEditor_Toolbars_Dock_Area_Left.DockedPosition  = Infragistics.Win.UltraWinToolbars.DockedPosition.Left;
     this._frmCodeEditor_Toolbars_Dock_Area_Left.ForeColor       = System.Drawing.SystemColors.ControlText;
     this._frmCodeEditor_Toolbars_Dock_Area_Left.Name            = "_frmCodeEditor_Toolbars_Dock_Area_Left";
     this._frmCodeEditor_Toolbars_Dock_Area_Left.ToolbarsManager = this.toolbarsManager;
     //
     // _frmCodeEditor_Toolbars_Dock_Area_Right
     //
     this._frmCodeEditor_Toolbars_Dock_Area_Right.AccessibleDescription = null;
     this._frmCodeEditor_Toolbars_Dock_Area_Right.AccessibleName        = null;
     this._frmCodeEditor_Toolbars_Dock_Area_Right.AccessibleRole        = System.Windows.Forms.AccessibleRole.Grouping;
     resources.ApplyResources(this._frmCodeEditor_Toolbars_Dock_Area_Right, "_frmCodeEditor_Toolbars_Dock_Area_Right");
     this._frmCodeEditor_Toolbars_Dock_Area_Right.BackColor       = System.Drawing.Color.FromArgb(((int)(((byte)(158)))), ((int)(((byte)(190)))), ((int)(((byte)(245)))));
     this._frmCodeEditor_Toolbars_Dock_Area_Right.BackgroundImage = null;
     this._frmCodeEditor_Toolbars_Dock_Area_Right.DockedPosition  = Infragistics.Win.UltraWinToolbars.DockedPosition.Right;
     this._frmCodeEditor_Toolbars_Dock_Area_Right.ForeColor       = System.Drawing.SystemColors.ControlText;
     this._frmCodeEditor_Toolbars_Dock_Area_Right.Name            = "_frmCodeEditor_Toolbars_Dock_Area_Right";
     this._frmCodeEditor_Toolbars_Dock_Area_Right.ToolbarsManager = this.toolbarsManager;
     //
     // _frmCodeEditor_Toolbars_Dock_Area_Top
     //
     this._frmCodeEditor_Toolbars_Dock_Area_Top.AccessibleDescription = null;
     this._frmCodeEditor_Toolbars_Dock_Area_Top.AccessibleName        = null;
     this._frmCodeEditor_Toolbars_Dock_Area_Top.AccessibleRole        = System.Windows.Forms.AccessibleRole.Grouping;
     resources.ApplyResources(this._frmCodeEditor_Toolbars_Dock_Area_Top, "_frmCodeEditor_Toolbars_Dock_Area_Top");
     this._frmCodeEditor_Toolbars_Dock_Area_Top.BackColor       = System.Drawing.Color.FromArgb(((int)(((byte)(158)))), ((int)(((byte)(190)))), ((int)(((byte)(245)))));
     this._frmCodeEditor_Toolbars_Dock_Area_Top.BackgroundImage = null;
     this._frmCodeEditor_Toolbars_Dock_Area_Top.DockedPosition  = Infragistics.Win.UltraWinToolbars.DockedPosition.Top;
     this._frmCodeEditor_Toolbars_Dock_Area_Top.ForeColor       = System.Drawing.SystemColors.ControlText;
     this._frmCodeEditor_Toolbars_Dock_Area_Top.Name            = "_frmCodeEditor_Toolbars_Dock_Area_Top";
     this._frmCodeEditor_Toolbars_Dock_Area_Top.ToolbarsManager = this.toolbarsManager;
     //
     // _frmCodeEditor_Toolbars_Dock_Area_Bottom
     //
     this._frmCodeEditor_Toolbars_Dock_Area_Bottom.AccessibleDescription = null;
     this._frmCodeEditor_Toolbars_Dock_Area_Bottom.AccessibleName        = null;
     this._frmCodeEditor_Toolbars_Dock_Area_Bottom.AccessibleRole        = System.Windows.Forms.AccessibleRole.Grouping;
     resources.ApplyResources(this._frmCodeEditor_Toolbars_Dock_Area_Bottom, "_frmCodeEditor_Toolbars_Dock_Area_Bottom");
     this._frmCodeEditor_Toolbars_Dock_Area_Bottom.BackColor       = System.Drawing.Color.FromArgb(((int)(((byte)(158)))), ((int)(((byte)(190)))), ((int)(((byte)(245)))));
     this._frmCodeEditor_Toolbars_Dock_Area_Bottom.BackgroundImage = null;
     this._frmCodeEditor_Toolbars_Dock_Area_Bottom.DockedPosition  = Infragistics.Win.UltraWinToolbars.DockedPosition.Bottom;
     this._frmCodeEditor_Toolbars_Dock_Area_Bottom.ForeColor       = System.Drawing.SystemColors.ControlText;
     this._frmCodeEditor_Toolbars_Dock_Area_Bottom.Name            = "_frmCodeEditor_Toolbars_Dock_Area_Bottom";
     this._frmCodeEditor_Toolbars_Dock_Area_Bottom.ToolbarsManager = this.toolbarsManager;
     //
     // dockManager
     //
     this.dockManager.CaptionStyle              = Infragistics.Win.UltraWinDock.CaptionStyle.Office2003;
     dockableControlPane1.Control               = this.codeStructTreeView;
     dockableControlPane1.FlyoutSize            = new System.Drawing.Size(175, -1);
     dockableControlPane1.OriginalControlBounds = new System.Drawing.Rectangle(0, 0, 185, 494);
     dockableControlPane1.Size = new System.Drawing.Size(100, 100);
     resources.ApplyResources(dockableControlPane1, "dockableControlPane1");
     dockableControlPane1.TextTab    = null;
     dockableControlPane1.ToolTipTab = null;
     dockAreaPane1.Panes.AddRange(new Infragistics.Win.UltraWinDock.DockablePaneBase[] {
         dockableControlPane1
     });
     dockAreaPane1.Size = new System.Drawing.Size(175, 414);
     resources.ApplyResources(dockAreaPane1, "dockAreaPane1");
     dockAreaPane1.TextTab    = null;
     dockAreaPane1.ToolTipTab = null;
     this.dockManager.DockAreas.AddRange(new Infragistics.Win.UltraWinDock.DockAreaPane[] {
         dockAreaPane1
     });
     this.dockManager.HostControl     = this;
     this.dockManager.ShowCloseButton = false;
     this.dockManager.WindowStyle     = Infragistics.Win.UltraWinDock.WindowStyle.Office2003;
     //
     // _frmCodeEditorUnpinnedTabAreaLeft
     //
     this._frmCodeEditorUnpinnedTabAreaLeft.AccessibleDescription = null;
     this._frmCodeEditorUnpinnedTabAreaLeft.AccessibleName        = null;
     resources.ApplyResources(this._frmCodeEditorUnpinnedTabAreaLeft, "_frmCodeEditorUnpinnedTabAreaLeft");
     this._frmCodeEditorUnpinnedTabAreaLeft.BackgroundImage = null;
     this._frmCodeEditorUnpinnedTabAreaLeft.Name            = "_frmCodeEditorUnpinnedTabAreaLeft";
     this._frmCodeEditorUnpinnedTabAreaLeft.Owner           = this.dockManager;
     //
     // _frmCodeEditorUnpinnedTabAreaRight
     //
     this._frmCodeEditorUnpinnedTabAreaRight.AccessibleDescription = null;
     this._frmCodeEditorUnpinnedTabAreaRight.AccessibleName        = null;
     resources.ApplyResources(this._frmCodeEditorUnpinnedTabAreaRight, "_frmCodeEditorUnpinnedTabAreaRight");
     this._frmCodeEditorUnpinnedTabAreaRight.BackgroundImage = null;
     this._frmCodeEditorUnpinnedTabAreaRight.Name            = "_frmCodeEditorUnpinnedTabAreaRight";
     this._frmCodeEditorUnpinnedTabAreaRight.Owner           = this.dockManager;
     //
     // _frmCodeEditorUnpinnedTabAreaTop
     //
     this._frmCodeEditorUnpinnedTabAreaTop.AccessibleDescription = null;
     this._frmCodeEditorUnpinnedTabAreaTop.AccessibleName        = null;
     resources.ApplyResources(this._frmCodeEditorUnpinnedTabAreaTop, "_frmCodeEditorUnpinnedTabAreaTop");
     this._frmCodeEditorUnpinnedTabAreaTop.BackgroundImage = null;
     this._frmCodeEditorUnpinnedTabAreaTop.Name            = "_frmCodeEditorUnpinnedTabAreaTop";
     this._frmCodeEditorUnpinnedTabAreaTop.Owner           = this.dockManager;
     //
     // _frmCodeEditorUnpinnedTabAreaBottom
     //
     this._frmCodeEditorUnpinnedTabAreaBottom.AccessibleDescription = null;
     this._frmCodeEditorUnpinnedTabAreaBottom.AccessibleName        = null;
     resources.ApplyResources(this._frmCodeEditorUnpinnedTabAreaBottom, "_frmCodeEditorUnpinnedTabAreaBottom");
     this._frmCodeEditorUnpinnedTabAreaBottom.BackgroundImage = null;
     this._frmCodeEditorUnpinnedTabAreaBottom.Name            = "_frmCodeEditorUnpinnedTabAreaBottom";
     this._frmCodeEditorUnpinnedTabAreaBottom.Owner           = this.dockManager;
     //
     // _frmCodeEditorAutoHideControl
     //
     this._frmCodeEditorAutoHideControl.AccessibleDescription = null;
     this._frmCodeEditorAutoHideControl.AccessibleName        = null;
     resources.ApplyResources(this._frmCodeEditorAutoHideControl, "_frmCodeEditorAutoHideControl");
     this._frmCodeEditorAutoHideControl.BackgroundImage = null;
     this._frmCodeEditorAutoHideControl.Name            = "_frmCodeEditorAutoHideControl";
     this._frmCodeEditorAutoHideControl.Owner           = this.dockManager;
     //
     // windowDockingArea1
     //
     this.windowDockingArea1.AccessibleDescription = null;
     this.windowDockingArea1.AccessibleName        = null;
     resources.ApplyResources(this.windowDockingArea1, "windowDockingArea1");
     this.windowDockingArea1.BackgroundImage = null;
     this.windowDockingArea1.Controls.Add(this.dockableWindow1);
     this.windowDockingArea1.Name  = "windowDockingArea1";
     this.windowDockingArea1.Owner = this.dockManager;
     //
     // dockableWindow1
     //
     this.dockableWindow1.AccessibleDescription = null;
     this.dockableWindow1.AccessibleName        = null;
     resources.ApplyResources(this.dockableWindow1, "dockableWindow1");
     this.dockableWindow1.BackgroundImage = null;
     this.dockableWindow1.Controls.Add(this.codeStructTreeView);
     this.dockableWindow1.Font  = null;
     this.dockableWindow1.Name  = "dockableWindow1";
     this.dockableWindow1.Owner = this.dockManager;
     //
     // frmCodeEditor
     //
     this.AccessibleDescription = null;
     this.AccessibleName        = null;
     resources.ApplyResources(this, "$this");
     this.AutoScaleMode   = System.Windows.Forms.AutoScaleMode.Font;
     this.BackgroundImage = null;
     this.Controls.Add(this._frmCodeEditorAutoHideControl);
     this.Controls.Add(this.frmCodeEditor_Fill_Panel);
     this.Controls.Add(this.windowDockingArea1);
     this.Controls.Add(this._frmCodeEditorUnpinnedTabAreaTop);
     this.Controls.Add(this._frmCodeEditorUnpinnedTabAreaBottom);
     this.Controls.Add(this._frmCodeEditorUnpinnedTabAreaRight);
     this.Controls.Add(this._frmCodeEditorUnpinnedTabAreaLeft);
     this.Controls.Add(this._frmCodeEditor_Toolbars_Dock_Area_Left);
     this.Controls.Add(this._frmCodeEditor_Toolbars_Dock_Area_Right);
     this.Controls.Add(this._frmCodeEditor_Toolbars_Dock_Area_Top);
     this.Controls.Add(this._frmCodeEditor_Toolbars_Dock_Area_Bottom);
     this.KeyPreview   = true;
     this.Name         = "frmCodeEditor";
     this.Load        += new System.EventHandler(this.frmCodeEditor_Load);
     this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.frmCodeEditor_FormClosing);
     ((System.ComponentModel.ISupportInitialize)(this.toolbarsManager)).EndInit();
     this.frmCodeEditor_Fill_Panel.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.dockManager)).EndInit();
     this.windowDockingArea1.ResumeLayout(false);
     this.dockableWindow1.ResumeLayout(false);
     this.ResumeLayout(false);
 }
    /// <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();
      Infragistics.Win.UltraWinStatusBar.UltraStatusPanel ultraStatusPanel1 = new Infragistics.Win.UltraWinStatusBar.UltraStatusPanel();
      Infragistics.Win.UltraWinStatusBar.UltraStatusPanel ultraStatusPanel2 = new Infragistics.Win.UltraWinStatusBar.UltraStatusPanel();
      Infragistics.Win.UltraWinStatusBar.UltraStatusPanel ultraStatusPanel3 = new Infragistics.Win.UltraWinStatusBar.UltraStatusPanel();
      Infragistics.Win.Appearance appearance1 = new Infragistics.Win.Appearance();
      Infragistics.Win.UltraWinTabControl.UltraTab ultraTab1 = new Infragistics.Win.UltraWinTabControl.UltraTab();
      Infragistics.Win.UltraWinTabControl.UltraTab ultraTab2 = new Infragistics.Win.UltraWinTabControl.UltraTab();
      Infragistics.Win.UltraWinToolbars.UltraToolbar ultraToolbar1 = new Infragistics.Win.UltraWinToolbars.UltraToolbar("tbDashboard");
      Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool11 = new Infragistics.Win.UltraWinToolbars.ButtonTool("btnRefresh");
      Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool9 = new Infragistics.Win.UltraWinToolbars.ButtonTool("btnPerformanceCompare");
      Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool15 = new Infragistics.Win.UltraWinToolbars.ButtonTool("btnBucketPnl");
      Infragistics.Win.UltraWinToolbars.LabelTool labelTool1 = new Infragistics.Win.UltraWinToolbars.LabelTool("lblSignal");
      Infragistics.Win.UltraWinToolbars.ComboBoxTool comboBoxTool1 = new Infragistics.Win.UltraWinToolbars.ComboBoxTool("cmbSignal");
      Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool3 = new Infragistics.Win.UltraWinToolbars.ButtonTool("btnShowHistoricPnl");
      Infragistics.Win.Appearance appearance2 = new Infragistics.Win.Appearance();
      Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool1 = new Infragistics.Win.UltraWinToolbars.ButtonTool("btnSignalWeights");
      Infragistics.Win.Appearance appearance3 = new Infragistics.Win.Appearance();
      Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool5 = new Infragistics.Win.UltraWinToolbars.ButtonTool("btnShowIRSignalGrid");
      Infragistics.Win.Appearance appearance4 = new Infragistics.Win.Appearance();
      Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool13 = new Infragistics.Win.UltraWinToolbars.ButtonTool("btnSignalAnalysis");
      Infragistics.Win.UltraWinToolbars.LabelTool labelTool3 = new Infragistics.Win.UltraWinToolbars.LabelTool("lblCurrency");
      Infragistics.Win.UltraWinToolbars.ComboBoxTool comboBoxTool3 = new Infragistics.Win.UltraWinToolbars.ComboBoxTool("cmbCurrency");
      Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool7 = new Infragistics.Win.UltraWinToolbars.ButtonTool("btnCurrencyWtAnalysis");
      Infragistics.Win.Appearance appearance5 = new Infragistics.Win.Appearance();
      Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool17 = new Infragistics.Win.UltraWinToolbars.ButtonTool("btnLivePnl");
      Infragistics.Win.UltraWinToolbars.ComboBoxTool comboBoxTool2 = new Infragistics.Win.UltraWinToolbars.ComboBoxTool("cmbSignal");
      Infragistics.Win.ValueList valueList1 = new Infragistics.Win.ValueList(0);
      Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool2 = new Infragistics.Win.UltraWinToolbars.ButtonTool("btnSignalWeights");
      Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool4 = new Infragistics.Win.UltraWinToolbars.ButtonTool("btnShowHistoricPnl");
      Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool6 = new Infragistics.Win.UltraWinToolbars.ButtonTool("btnShowIRSignalGrid");
      Infragistics.Win.UltraWinToolbars.LabelTool labelTool2 = new Infragistics.Win.UltraWinToolbars.LabelTool("lblSignal");
      Infragistics.Win.UltraWinToolbars.LabelTool labelTool4 = new Infragistics.Win.UltraWinToolbars.LabelTool("lblCurrency");
      Infragistics.Win.UltraWinToolbars.ComboBoxTool comboBoxTool4 = new Infragistics.Win.UltraWinToolbars.ComboBoxTool("cmbCurrency");
      Infragistics.Win.ValueList valueList2 = new Infragistics.Win.ValueList(0);
      Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool8 = new Infragistics.Win.UltraWinToolbars.ButtonTool("btnCurrencyWtAnalysis");
      Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool10 = new Infragistics.Win.UltraWinToolbars.ButtonTool("btnPerformanceCompare");
      Infragistics.Win.Appearance appearance6 = new Infragistics.Win.Appearance();
      Infragistics.Win.UltraWinToolbars.LabelTool labelTool6 = new Infragistics.Win.UltraWinToolbars.LabelTool("|");
      Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool12 = new Infragistics.Win.UltraWinToolbars.ButtonTool("btnRefresh");
      Infragistics.Win.Appearance appearance7 = new Infragistics.Win.Appearance();
      Infragistics.Win.UltraWinToolbars.ComboBoxTool comboBoxTool6 = new Infragistics.Win.UltraWinToolbars.ComboBoxTool("cmbWeightType");
      Infragistics.Win.ValueList valueList3 = new Infragistics.Win.ValueList(0);
      Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool14 = new Infragistics.Win.UltraWinToolbars.ButtonTool("btnSignalAnalysis");
      Infragistics.Win.Appearance appearance8 = new Infragistics.Win.Appearance();
      Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool16 = new Infragistics.Win.UltraWinToolbars.ButtonTool("btnBucketPnl");
      Infragistics.Win.Appearance appearance9 = new Infragistics.Win.Appearance();
      Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool18 = new Infragistics.Win.UltraWinToolbars.ButtonTool("btnLivePnl");
      this.ultraTabPageControl1 = new Infragistics.Win.UltraWinTabControl.UltraTabPageControl();
      this.ultraTabPageControl2 = new Infragistics.Win.UltraWinTabControl.UltraTabPageControl();
      this.timerRefreshCheck = new System.Windows.Forms.Timer(this.components);
      this._DashboardMain_Toolbars_Dock_Area_Left = new Infragistics.Win.UltraWinToolbars.UltraToolbarsDockArea();
      this._DashboardMain_Toolbars_Dock_Area_Right = new Infragistics.Win.UltraWinToolbars.UltraToolbarsDockArea();
      this._DashboardMain_Toolbars_Dock_Area_Top = new Infragistics.Win.UltraWinToolbars.UltraToolbarsDockArea();
      this._DashboardMain_Toolbars_Dock_Area_Bottom = new Infragistics.Win.UltraWinToolbars.UltraToolbarsDockArea();
      this.ultraStatusBar1 = new Infragistics.Win.UltraWinStatusBar.UltraStatusBar();
      this.ultraDesktopAlert1 = new Infragistics.Win.Misc.UltraDesktopAlert(this.components);
      this.ultraTabControl1 = new Infragistics.Win.UltraWinTabControl.UltraTabControl();
      this.ultraTabSharedControlsPage1 = new Infragistics.Win.UltraWinTabControl.UltraTabSharedControlsPage();
      this.m_dashboardGridFx = new SI.Dashboard.DashBoardGridFX();
      this.m_dashboardGridCom = new SI.Dashboard.DashBoardGridCom();
      this.ultraToolbarsManager1 = new Infragistics.Win.UltraWinToolbars.UltraToolbarsManager(this.components);
      this.ultraTabPageControl1.SuspendLayout();
      this.ultraTabPageControl2.SuspendLayout();
      ((System.ComponentModel.ISupportInitialize)(this.ultraStatusBar1)).BeginInit();
      ((System.ComponentModel.ISupportInitialize)(this.ultraDesktopAlert1)).BeginInit();
      ((System.ComponentModel.ISupportInitialize)(this.ultraTabControl1)).BeginInit();
      this.ultraTabControl1.SuspendLayout();
      ((System.ComponentModel.ISupportInitialize)(this.m_dashboardGridFx)).BeginInit();
      ((System.ComponentModel.ISupportInitialize)(this.m_dashboardGridCom)).BeginInit();
      ((System.ComponentModel.ISupportInitialize)(this.ultraToolbarsManager1)).BeginInit();
      this.SuspendLayout();
      // 
      // ultraTabPageControl1
      // 
      this.ultraTabPageControl1.Controls.Add(this.m_dashboardGridFx);
      this.ultraTabPageControl1.Location = new System.Drawing.Point(1, 1);
      this.ultraTabPageControl1.Name = "ultraTabPageControl1";
      this.ultraTabPageControl1.Size = new System.Drawing.Size(1169, 487);
      // 
      // ultraTabPageControl2
      // 
      this.ultraTabPageControl2.Controls.Add(this.m_dashboardGridCom);
      this.ultraTabPageControl2.Location = new System.Drawing.Point(-10000, -10000);
      this.ultraTabPageControl2.Name = "ultraTabPageControl2";
      this.ultraTabPageControl2.Size = new System.Drawing.Size(1169, 487);
      // 
      // timerRefreshCheck
      // 
      this.timerRefreshCheck.Enabled = true;
      this.timerRefreshCheck.Interval = 60000;
      this.timerRefreshCheck.Tick += new System.EventHandler(this.timerRefreshCheck_Tick);
      // 
      // _DashboardMain_Toolbars_Dock_Area_Left
      // 
      this._DashboardMain_Toolbars_Dock_Area_Left.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
      this._DashboardMain_Toolbars_Dock_Area_Left.BackColor = System.Drawing.SystemColors.Control;
      this._DashboardMain_Toolbars_Dock_Area_Left.DockedPosition = Infragistics.Win.UltraWinToolbars.DockedPosition.Left;
      this._DashboardMain_Toolbars_Dock_Area_Left.ForeColor = System.Drawing.SystemColors.ControlText;
      this._DashboardMain_Toolbars_Dock_Area_Left.Location = new System.Drawing.Point(0, 27);
      this._DashboardMain_Toolbars_Dock_Area_Left.Name = "_DashboardMain_Toolbars_Dock_Area_Left";
      this._DashboardMain_Toolbars_Dock_Area_Left.Size = new System.Drawing.Size(0, 513);
      this._DashboardMain_Toolbars_Dock_Area_Left.ToolbarsManager = this.ultraToolbarsManager1;
      // 
      // _DashboardMain_Toolbars_Dock_Area_Right
      // 
      this._DashboardMain_Toolbars_Dock_Area_Right.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
      this._DashboardMain_Toolbars_Dock_Area_Right.BackColor = System.Drawing.SystemColors.Control;
      this._DashboardMain_Toolbars_Dock_Area_Right.DockedPosition = Infragistics.Win.UltraWinToolbars.DockedPosition.Right;
      this._DashboardMain_Toolbars_Dock_Area_Right.ForeColor = System.Drawing.SystemColors.ControlText;
      this._DashboardMain_Toolbars_Dock_Area_Right.Location = new System.Drawing.Point(1173, 27);
      this._DashboardMain_Toolbars_Dock_Area_Right.Name = "_DashboardMain_Toolbars_Dock_Area_Right";
      this._DashboardMain_Toolbars_Dock_Area_Right.Size = new System.Drawing.Size(0, 513);
      this._DashboardMain_Toolbars_Dock_Area_Right.ToolbarsManager = this.ultraToolbarsManager1;
      // 
      // _DashboardMain_Toolbars_Dock_Area_Top
      // 
      this._DashboardMain_Toolbars_Dock_Area_Top.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
      this._DashboardMain_Toolbars_Dock_Area_Top.BackColor = System.Drawing.SystemColors.Control;
      this._DashboardMain_Toolbars_Dock_Area_Top.DockedPosition = Infragistics.Win.UltraWinToolbars.DockedPosition.Top;
      this._DashboardMain_Toolbars_Dock_Area_Top.ForeColor = System.Drawing.SystemColors.ControlText;
      this._DashboardMain_Toolbars_Dock_Area_Top.Location = new System.Drawing.Point(0, 0);
      this._DashboardMain_Toolbars_Dock_Area_Top.Name = "_DashboardMain_Toolbars_Dock_Area_Top";
      this._DashboardMain_Toolbars_Dock_Area_Top.Size = new System.Drawing.Size(1173, 27);
      this._DashboardMain_Toolbars_Dock_Area_Top.ToolbarsManager = this.ultraToolbarsManager1;
      // 
      // _DashboardMain_Toolbars_Dock_Area_Bottom
      // 
      this._DashboardMain_Toolbars_Dock_Area_Bottom.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
      this._DashboardMain_Toolbars_Dock_Area_Bottom.BackColor = System.Drawing.SystemColors.Control;
      this._DashboardMain_Toolbars_Dock_Area_Bottom.DockedPosition = Infragistics.Win.UltraWinToolbars.DockedPosition.Bottom;
      this._DashboardMain_Toolbars_Dock_Area_Bottom.ForeColor = System.Drawing.SystemColors.ControlText;
      this._DashboardMain_Toolbars_Dock_Area_Bottom.Location = new System.Drawing.Point(0, 540);
      this._DashboardMain_Toolbars_Dock_Area_Bottom.Name = "_DashboardMain_Toolbars_Dock_Area_Bottom";
      this._DashboardMain_Toolbars_Dock_Area_Bottom.Size = new System.Drawing.Size(1173, 0);
      this._DashboardMain_Toolbars_Dock_Area_Bottom.ToolbarsManager = this.ultraToolbarsManager1;
      // 
      // ultraStatusBar1
      // 
      this.ultraStatusBar1.Location = new System.Drawing.Point(0, 540);
      this.ultraStatusBar1.Name = "ultraStatusBar1";
      ultraStatusPanel1.SizingMode = Infragistics.Win.UltraWinStatusBar.PanelSizingMode.Automatic;
      ultraStatusPanel1.Text = "<Last Check Time>";
      appearance1.TextHAlignAsString = "Right";
      ultraStatusPanel3.Appearance = appearance1;
      ultraStatusPanel3.SizingMode = Infragistics.Win.UltraWinStatusBar.PanelSizingMode.Spring;
      this.ultraStatusBar1.Panels.AddRange(new Infragistics.Win.UltraWinStatusBar.UltraStatusPanel[] {
            ultraStatusPanel1,
            ultraStatusPanel2,
            ultraStatusPanel3});
      this.ultraStatusBar1.Size = new System.Drawing.Size(1173, 23);
      this.ultraStatusBar1.TabIndex = 5;
      this.ultraStatusBar1.Text = "ultraStatusBar1";
      // 
      // ultraDesktopAlert1
      // 
      this.ultraDesktopAlert1.Style = Infragistics.Win.Misc.DesktopAlertStyle.Office2007;
      // 
      // ultraTabControl1
      // 
      this.ultraTabControl1.Controls.Add(this.ultraTabSharedControlsPage1);
      this.ultraTabControl1.Controls.Add(this.ultraTabPageControl1);
      this.ultraTabControl1.Controls.Add(this.ultraTabPageControl2);
      this.ultraTabControl1.Dock = System.Windows.Forms.DockStyle.Fill;
      this.ultraTabControl1.Location = new System.Drawing.Point(0, 27);
      this.ultraTabControl1.Name = "ultraTabControl1";
      this.ultraTabControl1.SharedControlsPage = this.ultraTabSharedControlsPage1;
      this.ultraTabControl1.Size = new System.Drawing.Size(1173, 513);
      this.ultraTabControl1.TabIndex = 7;
      this.ultraTabControl1.TabOrientation = Infragistics.Win.UltraWinTabs.TabOrientation.BottomLeft;
      ultraTab1.Key = "tabFXStrategyGrid";
      ultraTab1.TabPage = this.ultraTabPageControl1;
      ultraTab1.Text = "FX Signal Weights";
      ultraTab2.Key = "tabComStrategyGrid";
      ultraTab2.TabPage = this.ultraTabPageControl2;
      ultraTab2.Text = "Commodity Signal Weights";
      this.ultraTabControl1.Tabs.AddRange(new Infragistics.Win.UltraWinTabControl.UltraTab[] {
            ultraTab1,
            ultraTab2});
      this.ultraTabControl1.TabClosed += new Infragistics.Win.UltraWinTabControl.TabClosedEventHandler(this.ultraTabControl1_TabClosed);
      // 
      // ultraTabSharedControlsPage1
      // 
      this.ultraTabSharedControlsPage1.Location = new System.Drawing.Point(-10000, -10000);
      this.ultraTabSharedControlsPage1.Name = "ultraTabSharedControlsPage1";
      this.ultraTabSharedControlsPage1.Size = new System.Drawing.Size(1169, 487);
      // 
      // m_dashboardGridFx
      // 
      this.m_dashboardGridFx.AllEditHandler = null;
      this.m_dashboardGridFx.Dock = System.Windows.Forms.DockStyle.Fill;
      this.m_dashboardGridFx.DoubleDisplayFormat = null;
      this.m_dashboardGridFx.Location = new System.Drawing.Point(0, 0);
      this.m_dashboardGridFx.Name = "m_dashboardGridFx";
      this.m_dashboardGridFx.ResizeGridColumns = false;
      this.m_dashboardGridFx.Size = new System.Drawing.Size(1169, 487);
      this.m_dashboardGridFx.TabIndex = 0;
      // 
      // m_dashboardGridCom
      // 
      this.m_dashboardGridCom.AllEditHandler = null;
      this.m_dashboardGridCom.Dock = System.Windows.Forms.DockStyle.Fill;
      this.m_dashboardGridCom.DoubleDisplayFormat = null;
      this.m_dashboardGridCom.Location = new System.Drawing.Point(0, 0);
      this.m_dashboardGridCom.Name = "m_dashboardGridCom";
      this.m_dashboardGridCom.ResizeGridColumns = false;
      this.m_dashboardGridCom.Size = new System.Drawing.Size(1169, 487);
      this.m_dashboardGridCom.TabIndex = 0;
      // 
      // ultraToolbarsManager1
      // 
      this.ultraToolbarsManager1.DesignerFlags = 1;
      this.ultraToolbarsManager1.DockWithinContainer = this;
      this.ultraToolbarsManager1.LockToolbars = true;
      ultraToolbar1.DockedColumn = 0;
      ultraToolbar1.DockedRow = 0;
      appearance2.Image = global::SI.Dashboard.Properties.Resources.moneyWhite;
      buttonTool3.InstanceProps.AppearancesSmall.Appearance = appearance2;
      appearance3.Image = global::SI.Dashboard.Properties.Resources.gridWhite;
      buttonTool1.InstanceProps.AppearancesSmall.Appearance = appearance3;
      appearance4.Image = global::SI.Dashboard.Properties.Resources.sigWhite;
      buttonTool5.InstanceProps.AppearancesSmall.Appearance = appearance4;
      appearance5.Image = global::SI.Dashboard.Properties.Resources.columnChartWhite;
      buttonTool7.InstanceProps.AppearancesSmall.Appearance = appearance5;
      ultraToolbar1.NonInheritedTools.AddRange(new Infragistics.Win.UltraWinToolbars.ToolBase[] {
            buttonTool11,
            buttonTool9,
            buttonTool15,
            labelTool1,
            comboBoxTool1,
            buttonTool3,
            buttonTool1,
            buttonTool5,
            buttonTool13,
            labelTool3,
            comboBoxTool3,
            buttonTool7,
            buttonTool17});
      ultraToolbar1.Text = "tbDashboard";
      this.ultraToolbarsManager1.Toolbars.AddRange(new Infragistics.Win.UltraWinToolbars.UltraToolbar[] {
            ultraToolbar1});
      comboBoxTool2.SharedPropsInternal.Caption = "Signal";
      comboBoxTool2.ValueList = valueList1;
      buttonTool2.SharedPropsInternal.Caption = "Show Historic Weights";
      buttonTool4.SharedPropsInternal.Caption = "Show Historic P&L";
      buttonTool6.SharedPropsInternal.Caption = "Show IR Signal Grid";
      labelTool2.SharedPropsInternal.Caption = "Signal";
      labelTool4.SharedPropsInternal.Caption = "Instrument";
      comboBoxTool4.SharedPropsInternal.Caption = "Currency";
      comboBoxTool4.ValueList = valueList2;
      buttonTool8.SharedPropsInternal.Caption = "Currency Weight Analysis";
      appearance6.Image = global::SI.Dashboard.Properties.Resources.multiLineWhite;
      buttonTool10.SharedPropsInternal.AppearancesSmall.Appearance = appearance6;
      buttonTool10.SharedPropsInternal.Caption = "Compare Performance of all signals";
      labelTool6.SharedPropsInternal.Caption = "|";
      appearance7.Image = global::SI.Dashboard.Properties.Resources.refresh_icon_16w;
      buttonTool12.SharedPropsInternal.AppearancesSmall.Appearance = appearance7;
      buttonTool12.SharedPropsInternal.Caption = "Refresh All";
      comboBoxTool6.SharedPropsInternal.Caption = "Weights Grid - display weight or flow from previous?";
      comboBoxTool6.ValueList = valueList3;
      appearance8.Image = global::SI.Dashboard.Properties.Resources.zoomWhite;
      buttonTool14.SharedPropsInternal.AppearancesSmall.Appearance = appearance8;
      buttonTool14.SharedPropsInternal.Caption = "Signal Flow Analysis";
      appearance9.Image = global::SI.Dashboard.Properties.Resources.box_icon_white;
      buttonTool16.SharedPropsInternal.AppearancesSmall.Appearance = appearance9;
      buttonTool16.SharedPropsInternal.Caption = "Show Bucketed Performance";
      buttonTool18.SharedPropsInternal.Caption = "Live FX Pnl";
      buttonTool18.SharedPropsInternal.CustomizerCaption = "FX Live Pnl";
      this.ultraToolbarsManager1.Tools.AddRange(new Infragistics.Win.UltraWinToolbars.ToolBase[] {
            comboBoxTool2,
            buttonTool2,
            buttonTool4,
            buttonTool6,
            labelTool2,
            labelTool4,
            comboBoxTool4,
            buttonTool8,
            buttonTool10,
            labelTool6,
            buttonTool12,
            comboBoxTool6,
            buttonTool14,
            buttonTool16,
            buttonTool18});
      // 
      // DashboardMain
      // 
      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
      this.Controls.Add(this.ultraTabControl1);
      this.Controls.Add(this._DashboardMain_Toolbars_Dock_Area_Left);
      this.Controls.Add(this._DashboardMain_Toolbars_Dock_Area_Right);
      this.Controls.Add(this._DashboardMain_Toolbars_Dock_Area_Bottom);
      this.Controls.Add(this.ultraStatusBar1);
      this.Controls.Add(this._DashboardMain_Toolbars_Dock_Area_Top);
      this.Name = "DashboardMain";
      this.Size = new System.Drawing.Size(1173, 563);
      this.ultraTabPageControl1.ResumeLayout(false);
      this.ultraTabPageControl2.ResumeLayout(false);
      ((System.ComponentModel.ISupportInitialize)(this.ultraStatusBar1)).EndInit();
      ((System.ComponentModel.ISupportInitialize)(this.ultraDesktopAlert1)).EndInit();
      ((System.ComponentModel.ISupportInitialize)(this.ultraTabControl1)).EndInit();
      this.ultraTabControl1.ResumeLayout(false);
      ((System.ComponentModel.ISupportInitialize)(this.m_dashboardGridFx)).EndInit();
      ((System.ComponentModel.ISupportInitialize)(this.m_dashboardGridCom)).EndInit();
      ((System.ComponentModel.ISupportInitialize)(this.ultraToolbarsManager1)).EndInit();
      this.ResumeLayout(false);

    }
 /// <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();
     Infragistics.Win.Appearance appearance27 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridBand   ultraGridBand1   = new Infragistics.Win.UltraWinGrid.UltraGridBand("UsersTable", -1);
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn1 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("UserObject");
     Infragistics.Win.Appearance appearance4 = new Infragistics.Win.Appearance();
     System.ComponentModel.ComponentResourceManager resources        = new System.ComponentModel.ComponentResourceManager(typeof(SecurityTabView));
     Infragistics.Win.UltraWinGrid.UltraGridColumn  ultraGridColumn2 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("firstName");
     Infragistics.Win.UltraWinGrid.UltraGridColumn  ultraGridColumn3 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("lastName");
     Infragistics.Win.UltraWinGrid.UltraGridColumn  ultraGridColumn4 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("accessLevel", -1, 20951407);
     Infragistics.Win.UltraWinGrid.UltraGridColumn  ultraGridColumn5 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("logon");
     Infragistics.Win.Appearance    appearance5             = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance    appearance6             = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance    appearance53            = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance    appearance42            = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance    appearance43            = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance    appearance44            = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance    appearance45            = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance    appearance46            = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance    appearance47            = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance    appearance48            = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance    appearance49            = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance    appearance50            = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance    appearance51            = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance    appearance52            = new Infragistics.Win.Appearance();
     Infragistics.Win.ValueList     valueList1              = new Infragistics.Win.ValueList(20951407);
     Infragistics.Win.ValueListItem valueListItem1          = new Infragistics.Win.ValueListItem();
     Infragistics.Win.ValueListItem valueListItem2          = new Infragistics.Win.ValueListItem();
     Infragistics.Win.ValueListItem valueListItem3          = new Infragistics.Win.ValueListItem();
     Infragistics.Win.UltraWinTabControl.UltraTab ultraTab1 = new Infragistics.Win.UltraWinTabControl.UltraTab();
     Infragistics.Win.Appearance appearance9 = new Infragistics.Win.Appearance();
     this.ultraTabPageControl1        = new Infragistics.Win.UltraWinTabControl.UltraTabPageControl();
     this.ultraGridUsers              = new Infragistics.Win.UltraWinGrid.UltraGrid();
     this.contextMenuStrip1           = new System.Windows.Forms.ContextMenuStrip(this.components);
     this.newUserToolStripMenuItem    = new System.Windows.Forms.ToolStripMenuItem();
     this.deleteUserToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.editUserToolStripMenuItem   = new System.Windows.Forms.ToolStripMenuItem();
     this.usersDataSet                = new System.Data.DataSet();
     this.usersTable                  = new System.Data.DataTable();
     this.dataColumn1                 = new System.Data.DataColumn();
     this.firstName                   = new System.Data.DataColumn();
     this.dataColumn3                 = new System.Data.DataColumn();
     this.dataColumn4                 = new System.Data.DataColumn();
     this.dataColumn2                 = new System.Data.DataColumn();
     this.ultraGroupBox1              = new Infragistics.Win.Misc.UltraGroupBox();
     this.cbEnableSecurity            = new System.Windows.Forms.CheckBox();
     this.activityTabPage             = new Infragistics.Win.UltraWinTabControl.UltraTabPageControl();
     this.emailButton                 = new System.Windows.Forms.Button();
     this.advancedButton              = new System.Windows.Forms.Button();
     this.smtpTextBox                 = new System.Windows.Forms.TextBox();
     this.label3                      = new System.Windows.Forms.Label();
     this.emailTextBox                = new System.Windows.Forms.TextBox();
     this.label2                      = new System.Windows.Forms.Label();
     this.neverRadioButton            = new System.Windows.Forms.RadioButton();
     this.monthlyRadioButton          = new System.Windows.Forms.RadioButton();
     this.label1                      = new System.Windows.Forms.Label();
     this.weeklyRadioButton           = new System.Windows.Forms.RadioButton();
     this.dailyRadioButton            = new System.Windows.Forms.RadioButton();
     this.instructionLabel            = new Infragistics.Win.Misc.UltraLabel();
     this.footerPictureBox            = new System.Windows.Forms.PictureBox();
     this.usersTabControl             = new Infragistics.Win.UltraWinTabControl.UltraTabControl();
     this.ultraTabSharedControlsPage1 = new Infragistics.Win.UltraWinTabControl.UltraTabSharedControlsPage();
     this.headerGroupBox              = new Infragistics.Win.Misc.UltraGroupBox();
     this.headerLabel                 = new Infragistics.Win.Misc.UltraLabel();
     this.ultraTabPageControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.ultraGridUsers)).BeginInit();
     this.contextMenuStrip1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.usersDataSet)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.usersTable)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox1)).BeginInit();
     this.ultraGroupBox1.SuspendLayout();
     this.activityTabPage.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.footerPictureBox)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.usersTabControl)).BeginInit();
     this.usersTabControl.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.headerGroupBox)).BeginInit();
     this.headerGroupBox.SuspendLayout();
     this.SuspendLayout();
     //
     // ultraTabPageControl1
     //
     this.ultraTabPageControl1.Controls.Add(this.ultraGridUsers);
     this.ultraTabPageControl1.Controls.Add(this.ultraGroupBox1);
     this.ultraTabPageControl1.Location = new System.Drawing.Point(0, 0);
     this.ultraTabPageControl1.Name     = "ultraTabPageControl1";
     this.ultraTabPageControl1.Size     = new System.Drawing.Size(817, 420);
     //
     // ultraGridUsers
     //
     this.ultraGridUsers.ContextMenuStrip = this.contextMenuStrip1;
     this.ultraGridUsers.DataSource       = this.usersDataSet;
     appearance27.BackColor   = System.Drawing.Color.Transparent;
     appearance27.BorderColor = System.Drawing.SystemColors.InactiveCaption;
     this.ultraGridUsers.DisplayLayout.Appearance = appearance27;
     ultraGridBand1.CardSettings.CaptionField     = "Logon";
     ultraGridBand1.CardSettings.LabelWidth       = 90;
     ultraGridBand1.CardSettings.Style            = Infragistics.Win.UltraWinGrid.CardStyle.StandardLabels;
     ultraGridBand1.CardSettings.Width            = 200;
     ultraGridBand1.CardView                 = true;
     appearance4.Image                       = ((object)(resources.GetObject("appearance4.Image")));
     ultraGridColumn1.CellAppearance         = appearance4;
     ultraGridColumn1.Header.VisiblePosition = 0;
     ultraGridColumn1.Hidden                 = true;
     ultraGridColumn2.Header.VisiblePosition = 1;
     ultraGridColumn3.Header.VisiblePosition = 2;
     ultraGridColumn4.CellActivation         = Infragistics.Win.UltraWinGrid.Activation.Disabled;
     ultraGridColumn4.Header.VisiblePosition = 3;
     ultraGridColumn5.Header.VisiblePosition = 4;
     ultraGridColumn5.Hidden                 = true;
     ultraGridBand1.Columns.AddRange(new object[] {
         ultraGridColumn1,
         ultraGridColumn2,
         ultraGridColumn3,
         ultraGridColumn4,
         ultraGridColumn5
     });
     ultraGridBand1.Override.AllowAddNew      = Infragistics.Win.UltraWinGrid.AllowAddNew.Yes;
     ultraGridBand1.Override.AllowColSwapping = Infragistics.Win.UltraWinGrid.AllowColSwapping.NotAllowed;
     ultraGridBand1.Override.AllowDelete      = Infragistics.Win.DefaultableBoolean.True;
     ultraGridBand1.Override.AllowGroupBy     = Infragistics.Win.DefaultableBoolean.False;
     ultraGridBand1.Override.BorderStyleRow   = Infragistics.Win.UIElementBorderStyle.None;
     appearance5.FontData.BoldAsString        = "True";
     appearance5.FontData.SizeInPoints        = 10F;
     appearance5.ForeColor          = System.Drawing.Color.Lavender;
     appearance5.Image              = ((object)(resources.GetObject("appearance5.Image")));
     appearance5.TextHAlignAsString = "Left";
     ultraGridBand1.Override.CardCaptionAppearance = appearance5;
     ultraGridBand1.Override.CardSpacing           = 5;
     ultraGridBand1.Override.CellSpacing           = 0;
     appearance6.TextHAlignAsString           = "Right";
     ultraGridBand1.Override.HeaderAppearance = appearance6;
     this.ultraGridUsers.DisplayLayout.BandsSerializer.Add(ultraGridBand1);
     this.ultraGridUsers.DisplayLayout.BorderStyle = Infragistics.Win.UIElementBorderStyle.None;
     appearance53.FontData.Name         = "Verdana";
     appearance53.FontData.SizeInPoints = 10F;
     this.ultraGridUsers.DisplayLayout.CaptionAppearance = appearance53;
     this.ultraGridUsers.DisplayLayout.CaptionVisible    = Infragistics.Win.DefaultableBoolean.False;
     appearance42.BackColor         = System.Drawing.SystemColors.ActiveBorder;
     appearance42.BackColor2        = System.Drawing.SystemColors.ControlDark;
     appearance42.BackGradientStyle = Infragistics.Win.GradientStyle.Vertical;
     appearance42.BorderColor       = System.Drawing.SystemColors.Window;
     this.ultraGridUsers.DisplayLayout.GroupByBox.Appearance = appearance42;
     appearance43.ForeColor = System.Drawing.SystemColors.GrayText;
     this.ultraGridUsers.DisplayLayout.GroupByBox.BandLabelAppearance = appearance43;
     this.ultraGridUsers.DisplayLayout.GroupByBox.BorderStyle         = Infragistics.Win.UIElementBorderStyle.None;
     appearance44.BackColor         = System.Drawing.SystemColors.ControlLightLight;
     appearance44.BackColor2        = System.Drawing.SystemColors.Control;
     appearance44.BackGradientStyle = Infragistics.Win.GradientStyle.Horizontal;
     appearance44.ForeColor         = System.Drawing.SystemColors.GrayText;
     this.ultraGridUsers.DisplayLayout.GroupByBox.PromptAppearance = appearance44;
     this.ultraGridUsers.DisplayLayout.MaxColScrollRegions         = 1;
     this.ultraGridUsers.DisplayLayout.MaxRowScrollRegions         = 1;
     appearance45.BackColor = System.Drawing.SystemColors.Window;
     appearance45.ForeColor = System.Drawing.SystemColors.ControlText;
     this.ultraGridUsers.DisplayLayout.Override.ActiveCellAppearance = appearance45;
     appearance46.BackColor = System.Drawing.SystemColors.Highlight;
     appearance46.ForeColor = System.Drawing.SystemColors.HighlightText;
     this.ultraGridUsers.DisplayLayout.Override.ActiveRowAppearance = appearance46;
     this.ultraGridUsers.DisplayLayout.Override.AllowAddNew         = Infragistics.Win.UltraWinGrid.AllowAddNew.No;
     this.ultraGridUsers.DisplayLayout.Override.AllowUpdate         = Infragistics.Win.DefaultableBoolean.True;
     appearance47.BackColor = System.Drawing.SystemColors.Window;
     this.ultraGridUsers.DisplayLayout.Override.CardAreaAppearance = appearance47;
     appearance48.BorderColor  = System.Drawing.Color.Silver;
     appearance48.TextTrimming = Infragistics.Win.TextTrimming.EllipsisCharacter;
     this.ultraGridUsers.DisplayLayout.Override.CellAppearance  = appearance48;
     this.ultraGridUsers.DisplayLayout.Override.CellClickAction = Infragistics.Win.UltraWinGrid.CellClickAction.EditAndSelectText;
     this.ultraGridUsers.DisplayLayout.Override.CellPadding     = 0;
     appearance49.BackColor             = System.Drawing.SystemColors.Control;
     appearance49.BackColor2            = System.Drawing.SystemColors.ControlDark;
     appearance49.BackGradientAlignment = Infragistics.Win.GradientAlignment.Element;
     appearance49.BackGradientStyle     = Infragistics.Win.GradientStyle.Horizontal;
     appearance49.BorderColor           = System.Drawing.SystemColors.Window;
     this.ultraGridUsers.DisplayLayout.Override.GroupByRowAppearance = appearance49;
     appearance50.TextHAlignAsString = "Left";
     this.ultraGridUsers.DisplayLayout.Override.HeaderAppearance  = appearance50;
     this.ultraGridUsers.DisplayLayout.Override.HeaderClickAction = Infragistics.Win.UltraWinGrid.HeaderClickAction.SortMulti;
     this.ultraGridUsers.DisplayLayout.Override.HeaderStyle       = Infragistics.Win.HeaderStyle.WindowsXPCommand;
     appearance51.BackColor   = System.Drawing.SystemColors.Window;
     appearance51.BorderColor = System.Drawing.Color.Silver;
     this.ultraGridUsers.DisplayLayout.Override.RowAppearance = appearance51;
     this.ultraGridUsers.DisplayLayout.Override.RowSelectors  = Infragistics.Win.DefaultableBoolean.False;
     this.ultraGridUsers.DisplayLayout.Override.SelectTypeRow = Infragistics.Win.UltraWinGrid.SelectType.Single;
     appearance52.BackColor = System.Drawing.SystemColors.ControlLight;
     this.ultraGridUsers.DisplayLayout.Override.TemplateAddRowAppearance = appearance52;
     this.ultraGridUsers.DisplayLayout.ScrollBounds = Infragistics.Win.UltraWinGrid.ScrollBounds.ScrollToFill;
     this.ultraGridUsers.DisplayLayout.ScrollStyle  = Infragistics.Win.UltraWinGrid.ScrollStyle.Immediate;
     valueListItem1.DataValue   = 0;
     valueListItem1.DisplayText = "Administrator";
     valueListItem2.DataValue   = 0;
     valueListItem2.DisplayText = "Auditor";
     valueListItem3.DataValue   = 0;
     valueListItem3.DisplayText = "Read-Only";
     valueList1.ValueListItems.AddRange(new Infragistics.Win.ValueListItem[] {
         valueListItem1,
         valueListItem2,
         valueListItem3
     });
     this.ultraGridUsers.DisplayLayout.ValueLists.AddRange(new Infragistics.Win.ValueList[] {
         valueList1
     });
     this.ultraGridUsers.Dock               = System.Windows.Forms.DockStyle.Fill;
     this.ultraGridUsers.Enabled            = false;
     this.ultraGridUsers.Font               = new System.Drawing.Font("Verdana", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.ultraGridUsers.Location           = new System.Drawing.Point(0, 39);
     this.ultraGridUsers.Name               = "ultraGridUsers";
     this.ultraGridUsers.Size               = new System.Drawing.Size(817, 381);
     this.ultraGridUsers.TabIndex           = 0;
     this.ultraGridUsers.Text               = "ultraGrid1";
     this.ultraGridUsers.BeforeCellUpdate  += new Infragistics.Win.UltraWinGrid.BeforeCellUpdateEventHandler(this.ultraGridUsers_BeforeCellUpdate);
     this.ultraGridUsers.InitializeLayout  += new Infragistics.Win.UltraWinGrid.InitializeLayoutEventHandler(this.ultraGridUsers_InitializeLayout);
     this.ultraGridUsers.BeforeRowsDeleted += new Infragistics.Win.UltraWinGrid.BeforeRowsDeletedEventHandler(this.ultraGrid1_BeforeRowsDeleted);
     this.ultraGridUsers.AfterCellUpdate   += new Infragistics.Win.UltraWinGrid.CellEventHandler(this.ultraGridUsers_AfterCellUpdate);
     this.ultraGridUsers.KeyPress          += new System.Windows.Forms.KeyPressEventHandler(this.ultraGridUsers_KeyPress);
     this.ultraGridUsers.DoubleClickRow    += new Infragistics.Win.UltraWinGrid.DoubleClickRowEventHandler(this.ultraGridUsers_DoubleClickRow);
     //
     // contextMenuStrip1
     //
     this.contextMenuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.newUserToolStripMenuItem,
         this.deleteUserToolStripMenuItem,
         this.editUserToolStripMenuItem
     });
     this.contextMenuStrip1.Name = "contextMenuStrip1";
     this.contextMenuStrip1.Size = new System.Drawing.Size(142, 70);
     //
     // newUserToolStripMenuItem
     //
     this.newUserToolStripMenuItem.Image  = global::Layton.AuditWizard.Administration.Properties.Resources.useradd_16;
     this.newUserToolStripMenuItem.Name   = "newUserToolStripMenuItem";
     this.newUserToolStripMenuItem.Size   = new System.Drawing.Size(141, 22);
     this.newUserToolStripMenuItem.Text   = "&New User";
     this.newUserToolStripMenuItem.Click += new System.EventHandler(this.newUserToolStripMenuItem_Click);
     //
     // deleteUserToolStripMenuItem
     //
     this.deleteUserToolStripMenuItem.Image  = global::Layton.AuditWizard.Administration.Properties.Resources.userdelete_16;
     this.deleteUserToolStripMenuItem.Name   = "deleteUserToolStripMenuItem";
     this.deleteUserToolStripMenuItem.Size   = new System.Drawing.Size(141, 22);
     this.deleteUserToolStripMenuItem.Text   = "&Delete User";
     this.deleteUserToolStripMenuItem.Click += new System.EventHandler(this.deleteUserToolStripMenuItem_Click);
     //
     // editUserToolStripMenuItem
     //
     this.editUserToolStripMenuItem.Image  = global::Layton.AuditWizard.Administration.Properties.Resources.useredit_16;
     this.editUserToolStripMenuItem.Name   = "editUserToolStripMenuItem";
     this.editUserToolStripMenuItem.Size   = new System.Drawing.Size(141, 22);
     this.editUserToolStripMenuItem.Text   = "Edit User";
     this.editUserToolStripMenuItem.Click += new System.EventHandler(this.editUserToolStripMenuItem_Click);
     //
     // usersDataSet
     //
     this.usersDataSet.DataSetName = "NewDataSet";
     this.usersDataSet.Tables.AddRange(new System.Data.DataTable[] {
         this.usersTable
     });
     //
     // usersTable
     //
     this.usersTable.Columns.AddRange(new System.Data.DataColumn[] {
         this.dataColumn1,
         this.firstName,
         this.dataColumn3,
         this.dataColumn4,
         this.dataColumn2
     });
     this.usersTable.TableName = "UsersTable";
     //
     // dataColumn1
     //
     this.dataColumn1.ColumnName = "UserObject";
     this.dataColumn1.DataType   = typeof(object);
     //
     // firstName
     //
     this.firstName.Caption    = "First Name";
     this.firstName.ColumnName = "firstName";
     //
     // dataColumn3
     //
     this.dataColumn3.Caption    = "Last Name";
     this.dataColumn3.ColumnName = "lastName";
     //
     // dataColumn4
     //
     this.dataColumn4.Caption    = "Access Level";
     this.dataColumn4.ColumnName = "accessLevel";
     this.dataColumn4.DataType   = typeof(int);
     //
     // dataColumn2
     //
     this.dataColumn2.Caption    = "Logon";
     this.dataColumn2.ColumnName = "logon";
     //
     // ultraGroupBox1
     //
     this.ultraGroupBox1.Controls.Add(this.cbEnableSecurity);
     this.ultraGroupBox1.Dock      = System.Windows.Forms.DockStyle.Top;
     this.ultraGroupBox1.Location  = new System.Drawing.Point(0, 0);
     this.ultraGroupBox1.Name      = "ultraGroupBox1";
     this.ultraGroupBox1.Size      = new System.Drawing.Size(817, 39);
     this.ultraGroupBox1.TabIndex  = 8;
     this.ultraGroupBox1.ViewStyle = Infragistics.Win.Misc.GroupBoxViewStyle.Office2007;
     //
     // cbEnableSecurity
     //
     this.cbEnableSecurity.BackColor = System.Drawing.Color.Transparent;
     this.cbEnableSecurity.Location  = new System.Drawing.Point(7, 9);
     this.cbEnableSecurity.Name      = "cbEnableSecurity";
     this.cbEnableSecurity.Size      = new System.Drawing.Size(322, 24);
     this.cbEnableSecurity.TabIndex  = 0;
     this.cbEnableSecurity.Text      = "Enable Security within AuditWizard";
     this.cbEnableSecurity.UseVisualStyleBackColor = false;
     this.cbEnableSecurity.CheckedChanged         += new System.EventHandler(this.cbEnableSecurity_CheckedChanged);
     //
     // activityTabPage
     //
     this.activityTabPage.Controls.Add(this.emailButton);
     this.activityTabPage.Controls.Add(this.advancedButton);
     this.activityTabPage.Controls.Add(this.smtpTextBox);
     this.activityTabPage.Controls.Add(this.label3);
     this.activityTabPage.Controls.Add(this.emailTextBox);
     this.activityTabPage.Controls.Add(this.label2);
     this.activityTabPage.Controls.Add(this.neverRadioButton);
     this.activityTabPage.Controls.Add(this.monthlyRadioButton);
     this.activityTabPage.Controls.Add(this.label1);
     this.activityTabPage.Controls.Add(this.weeklyRadioButton);
     this.activityTabPage.Controls.Add(this.dailyRadioButton);
     this.activityTabPage.Controls.Add(this.instructionLabel);
     this.activityTabPage.Controls.Add(this.footerPictureBox);
     this.activityTabPage.Location = new System.Drawing.Point(-10000, -10000);
     this.activityTabPage.Name     = "activityTabPage";
     this.activityTabPage.Size     = new System.Drawing.Size(823, 512);
     //
     // emailButton
     //
     this.emailButton.Anchor    = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.emailButton.BackColor = System.Drawing.Color.Transparent;
     this.emailButton.Location  = new System.Drawing.Point(314, 175);
     this.emailButton.Name      = "emailButton";
     this.emailButton.Size      = new System.Drawing.Size(75, 23);
     this.emailButton.TabIndex  = 29;
     this.emailButton.Text      = "Send Email";
     this.emailButton.UseVisualStyleBackColor = false;
     //
     // advancedButton
     //
     this.advancedButton.Anchor    = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.advancedButton.BackColor = System.Drawing.Color.Transparent;
     this.advancedButton.Location  = new System.Drawing.Point(395, 175);
     this.advancedButton.Name      = "advancedButton";
     this.advancedButton.Size      = new System.Drawing.Size(75, 23);
     this.advancedButton.TabIndex  = 28;
     this.advancedButton.Text      = "Advanced";
     this.advancedButton.UseVisualStyleBackColor = false;
     //
     // smtpTextBox
     //
     this.smtpTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                     | System.Windows.Forms.AnchorStyles.Right)));
     this.smtpTextBox.Location = new System.Drawing.Point(98, 149);
     this.smtpTextBox.Name     = "smtpTextBox";
     this.smtpTextBox.Size     = new System.Drawing.Size(372, 20);
     this.smtpTextBox.TabIndex = 27;
     //
     // label3
     //
     this.label3.AutoSize = true;
     this.label3.Location = new System.Drawing.Point(13, 152);
     this.label3.Name     = "label3";
     this.label3.Size     = new System.Drawing.Size(65, 13);
     this.label3.TabIndex = 26;
     this.label3.Text     = "SMTP Host:";
     //
     // emailTextBox
     //
     this.emailTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                      | System.Windows.Forms.AnchorStyles.Right)));
     this.emailTextBox.Location = new System.Drawing.Point(98, 123);
     this.emailTextBox.Name     = "emailTextBox";
     this.emailTextBox.Size     = new System.Drawing.Size(372, 20);
     this.emailTextBox.TabIndex = 25;
     //
     // label2
     //
     this.label2.AutoSize = true;
     this.label2.Location = new System.Drawing.Point(13, 126);
     this.label2.Name     = "label2";
     this.label2.Size     = new System.Drawing.Size(76, 13);
     this.label2.TabIndex = 24;
     this.label2.Text     = "Email Address:";
     //
     // neverRadioButton
     //
     this.neverRadioButton.AutoSize  = true;
     this.neverRadioButton.BackColor = System.Drawing.Color.Transparent;
     this.neverRadioButton.Location  = new System.Drawing.Point(267, 79);
     this.neverRadioButton.Name      = "neverRadioButton";
     this.neverRadioButton.Size      = new System.Drawing.Size(54, 17);
     this.neverRadioButton.TabIndex  = 23;
     this.neverRadioButton.Text      = "Never";
     this.neverRadioButton.UseVisualStyleBackColor = false;
     //
     // monthlyRadioButton
     //
     this.monthlyRadioButton.AutoSize  = true;
     this.monthlyRadioButton.BackColor = System.Drawing.Color.Transparent;
     this.monthlyRadioButton.Location  = new System.Drawing.Point(204, 79);
     this.monthlyRadioButton.Name      = "monthlyRadioButton";
     this.monthlyRadioButton.Size      = new System.Drawing.Size(62, 17);
     this.monthlyRadioButton.TabIndex  = 22;
     this.monthlyRadioButton.Text      = "Monthly";
     this.monthlyRadioButton.UseVisualStyleBackColor = false;
     //
     // label1
     //
     this.label1.AutoSize = true;
     this.label1.Location = new System.Drawing.Point(13, 81);
     this.label1.Name     = "label1";
     this.label1.Size     = new System.Drawing.Size(60, 13);
     this.label1.TabIndex = 21;
     this.label1.Text     = "Frequency:";
     //
     // weeklyRadioButton
     //
     this.weeklyRadioButton.AutoSize  = true;
     this.weeklyRadioButton.BackColor = System.Drawing.Color.Transparent;
     this.weeklyRadioButton.Location  = new System.Drawing.Point(139, 79);
     this.weeklyRadioButton.Name      = "weeklyRadioButton";
     this.weeklyRadioButton.Size      = new System.Drawing.Size(61, 17);
     this.weeklyRadioButton.TabIndex  = 20;
     this.weeklyRadioButton.Text      = "Weekly";
     this.weeklyRadioButton.UseVisualStyleBackColor = false;
     //
     // dailyRadioButton
     //
     this.dailyRadioButton.AutoSize  = true;
     this.dailyRadioButton.BackColor = System.Drawing.Color.Transparent;
     this.dailyRadioButton.Checked   = true;
     this.dailyRadioButton.Location  = new System.Drawing.Point(85, 79);
     this.dailyRadioButton.Name      = "dailyRadioButton";
     this.dailyRadioButton.Size      = new System.Drawing.Size(48, 17);
     this.dailyRadioButton.TabIndex  = 19;
     this.dailyRadioButton.TabStop   = true;
     this.dailyRadioButton.Text      = "Daily";
     this.dailyRadioButton.UseVisualStyleBackColor = false;
     //
     // instructionLabel
     //
     this.instructionLabel.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                          | System.Windows.Forms.AnchorStyles.Right)));
     this.instructionLabel.Font     = new System.Drawing.Font("Verdana", 8.25F);
     this.instructionLabel.Location = new System.Drawing.Point(16, 14);
     this.instructionLabel.Name     = "instructionLabel";
     this.instructionLabel.Size     = new System.Drawing.Size(791, 69);
     this.instructionLabel.TabIndex = 17;
     this.instructionLabel.Text     = resources.GetString("instructionLabel.Text");
     //
     // footerPictureBox
     //
     this.footerPictureBox.Anchor    = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.footerPictureBox.BackColor = System.Drawing.Color.Transparent;
     this.footerPictureBox.Image     = global::Layton.AuditWizard.Administration.Properties.Resources.email_settings_footer;
     this.footerPictureBox.Location  = new System.Drawing.Point(508, 417);
     this.footerPictureBox.Name      = "footerPictureBox";
     this.footerPictureBox.Size      = new System.Drawing.Size(312, 92);
     this.footerPictureBox.TabIndex  = 7;
     this.footerPictureBox.TabStop   = false;
     //
     // usersTabControl
     //
     this.usersTabControl.Controls.Add(this.ultraTabSharedControlsPage1);
     this.usersTabControl.Controls.Add(this.ultraTabPageControl1);
     this.usersTabControl.Dock               = System.Windows.Forms.DockStyle.Fill;
     this.usersTabControl.Location           = new System.Drawing.Point(0, 80);
     this.usersTabControl.Name               = "usersTabControl";
     this.usersTabControl.SharedControlsPage = this.ultraTabSharedControlsPage1;
     this.usersTabControl.Size               = new System.Drawing.Size(817, 420);
     this.usersTabControl.Style              = Infragistics.Win.UltraWinTabControl.UltraTabControlStyle.Wizard;
     this.usersTabControl.TabIndex           = 3;
     this.usersTabControl.TabOrientation     = Infragistics.Win.UltraWinTabs.TabOrientation.TopLeft;
     ultraTab1.TabPage = this.ultraTabPageControl1;
     ultraTab1.Text    = "User Accounts";
     this.usersTabControl.Tabs.AddRange(new Infragistics.Win.UltraWinTabControl.UltraTab[] {
         ultraTab1
     });
     this.usersTabControl.ViewStyle = Infragistics.Win.UltraWinTabControl.ViewStyle.Office2007;
     //
     // ultraTabSharedControlsPage1
     //
     this.ultraTabSharedControlsPage1.Location = new System.Drawing.Point(-10000, -10000);
     this.ultraTabSharedControlsPage1.Name     = "ultraTabSharedControlsPage1";
     this.ultraTabSharedControlsPage1.Size     = new System.Drawing.Size(817, 420);
     //
     // headerGroupBox
     //
     this.headerGroupBox.Controls.Add(this.headerLabel);
     this.headerGroupBox.Dock      = System.Windows.Forms.DockStyle.Top;
     this.headerGroupBox.Location  = new System.Drawing.Point(0, 0);
     this.headerGroupBox.Name      = "headerGroupBox";
     this.headerGroupBox.Size      = new System.Drawing.Size(817, 80);
     this.headerGroupBox.TabIndex  = 7;
     this.headerGroupBox.ViewStyle = Infragistics.Win.Misc.GroupBoxViewStyle.Office2007;
     //
     // headerLabel
     //
     appearance9.BackColor          = System.Drawing.Color.Transparent;
     appearance9.Image              = global::Layton.AuditWizard.Administration.Properties.Resources.users_72;
     appearance9.ImageVAlign        = Infragistics.Win.VAlign.Middle;
     appearance9.TextHAlignAsString = "Center";
     appearance9.TextVAlignAsString = "Middle";
     this.headerLabel.Appearance    = appearance9;
     this.headerLabel.AutoSize      = true;
     this.headerLabel.Font          = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.headerLabel.ImageSize     = new System.Drawing.Size(72, 72);
     this.headerLabel.Location      = new System.Drawing.Point(7, 5);
     this.headerLabel.Name          = "headerLabel";
     this.headerLabel.RightToLeft   = System.Windows.Forms.RightToLeft.No;
     this.headerLabel.Size          = new System.Drawing.Size(388, 72);
     this.headerLabel.TabIndex      = 5;
     this.headerLabel.Text          = "Users and Security";
     //
     // SecurityTabView
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 13F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.AutoScroll          = true;
     this.BackColor           = System.Drawing.Color.White;
     this.Controls.Add(this.usersTabControl);
     this.Controls.Add(this.headerGroupBox);
     this.Font = new System.Drawing.Font("Verdana", 8.25F);
     this.Name = "SecurityTabView";
     this.Size = new System.Drawing.Size(817, 500);
     this.ultraTabPageControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.ultraGridUsers)).EndInit();
     this.contextMenuStrip1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.usersDataSet)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.usersTable)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox1)).EndInit();
     this.ultraGroupBox1.ResumeLayout(false);
     this.activityTabPage.ResumeLayout(false);
     this.activityTabPage.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.footerPictureBox)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.usersTabControl)).EndInit();
     this.usersTabControl.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.headerGroupBox)).EndInit();
     this.headerGroupBox.ResumeLayout(false);
     this.headerGroupBox.PerformLayout();
     this.ResumeLayout(false);
 }
Example #9
0
        /// <summary>
        /// Metodo necessario per il supporto della finestra di progettazione. Non modificare
        /// il contenuto del metodo con l'editor di codice.
        /// </summary>
        private void InitializeComponent()
        {
            Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool30 = new Infragistics.Win.UltraWinToolbars.ButtonTool("Opzioni");
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(OpenPDF));
            Infragistics.Win.UltraWinToolbars.RibbonTab ribbonTab1 = new Infragistics.Win.UltraWinToolbars.RibbonTab("file");
            Infragistics.Win.UltraWinToolbars.RibbonGroup ribbonGroup1 = new Infragistics.Win.UltraWinToolbars.RibbonGroup("gestione");
            Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool21 = new Infragistics.Win.UltraWinToolbars.ButtonTool("ApriFile");
            Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool22 = new Infragistics.Win.UltraWinToolbars.ButtonTool("SaveDocument");
            Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool23 = new Infragistics.Win.UltraWinToolbars.ButtonTool("PrintDocument");
            Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool24 = new Infragistics.Win.UltraWinToolbars.ButtonTool("PrevPage");
            Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool25 = new Infragistics.Win.UltraWinToolbars.ButtonTool("NextPage");
            Infragistics.Win.UltraWinToolbars.ComboBoxTool comboBoxTool5 = new Infragistics.Win.UltraWinToolbars.ComboBoxTool("CurrentPage");
            Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool29 = new Infragistics.Win.UltraWinToolbars.ButtonTool("InserisciFirma");
            Infragistics.Win.UltraWinToolbars.RibbonTab ribbonTab2 = new Infragistics.Win.UltraWinToolbars.RibbonTab("visualizzazione");
            Infragistics.Win.UltraWinToolbars.RibbonGroup ribbonGroup2 = new Infragistics.Win.UltraWinToolbars.RibbonGroup("visualizzazione");
            Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool26 = new Infragistics.Win.UltraWinToolbars.ButtonTool("zoomIn");
            Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool27 = new Infragistics.Win.UltraWinToolbars.ButtonTool("zoomOut");
            Infragistics.Win.UltraWinToolbars.MaskedEditTool maskedEditTool3 = new Infragistics.Win.UltraWinToolbars.MaskedEditTool("CurrentSize");
            Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool28 = new Infragistics.Win.UltraWinToolbars.ButtonTool("FitAllPage");
            Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool31 = new Infragistics.Win.UltraWinToolbars.ButtonTool("Opzioni");
            Infragistics.Win.UltraWinToolbars.UltraToolbar ultraToolbar1 = new Infragistics.Win.UltraWinToolbars.UltraToolbar("StdPDF");
            Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool1 = new Infragistics.Win.UltraWinToolbars.ButtonTool("ApriFile");
            Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool2 = new Infragistics.Win.UltraWinToolbars.ButtonTool("SaveDocument");
            Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool3 = new Infragistics.Win.UltraWinToolbars.ButtonTool("PrintDocument");
            Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool4 = new Infragistics.Win.UltraWinToolbars.ButtonTool("InserisciFirma");
            Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool5 = new Infragistics.Win.UltraWinToolbars.ButtonTool("PrevPage");
            Infragistics.Win.UltraWinToolbars.ComboBoxTool comboBoxTool1 = new Infragistics.Win.UltraWinToolbars.ComboBoxTool("CurrentPage");
            Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool6 = new Infragistics.Win.UltraWinToolbars.ButtonTool("NextPage");
            Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool7 = new Infragistics.Win.UltraWinToolbars.ButtonTool("zoomOut");
            Infragistics.Win.UltraWinToolbars.MaskedEditTool maskedEditTool1 = new Infragistics.Win.UltraWinToolbars.MaskedEditTool("CurrentSize");
            Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool8 = new Infragistics.Win.UltraWinToolbars.ButtonTool("zoomIn");
            Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool9 = new Infragistics.Win.UltraWinToolbars.ButtonTool("FitAllPage");
            Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool10 = new Infragistics.Win.UltraWinToolbars.ButtonTool("Opzioni");
            Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool11 = new Infragistics.Win.UltraWinToolbars.ButtonTool("ApriFile");
            Infragistics.Win.Appearance appearance1 = new Infragistics.Win.Appearance();
            Infragistics.Win.Appearance appearance2 = new Infragistics.Win.Appearance();
            Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool12 = new Infragistics.Win.UltraWinToolbars.ButtonTool("InserisciFirma");
            Infragistics.Win.Appearance appearance3 = new Infragistics.Win.Appearance();
            Infragistics.Win.Appearance appearance4 = new Infragistics.Win.Appearance();
            Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool13 = new Infragistics.Win.UltraWinToolbars.ButtonTool("PrevPage");
            Infragistics.Win.Appearance appearance5 = new Infragistics.Win.Appearance();
            Infragistics.Win.Appearance appearance6 = new Infragistics.Win.Appearance();
            Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool14 = new Infragistics.Win.UltraWinToolbars.ButtonTool("NextPage");
            Infragistics.Win.Appearance appearance7 = new Infragistics.Win.Appearance();
            Infragistics.Win.Appearance appearance8 = new Infragistics.Win.Appearance();
            Infragistics.Win.UltraWinToolbars.ComboBoxTool comboBoxTool2 = new Infragistics.Win.UltraWinToolbars.ComboBoxTool("CurrentPage");
            Infragistics.Win.ValueList valueList1 = new Infragistics.Win.ValueList(0);
            Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool15 = new Infragistics.Win.UltraWinToolbars.ButtonTool("zoomIn");
            Infragistics.Win.Appearance appearance9 = new Infragistics.Win.Appearance();
            Infragistics.Win.Appearance appearance10 = new Infragistics.Win.Appearance();
            Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool16 = new Infragistics.Win.UltraWinToolbars.ButtonTool("zoomOut");
            Infragistics.Win.Appearance appearance11 = new Infragistics.Win.Appearance();
            Infragistics.Win.Appearance appearance12 = new Infragistics.Win.Appearance();
            Infragistics.Win.UltraWinToolbars.MaskedEditTool maskedEditTool2 = new Infragistics.Win.UltraWinToolbars.MaskedEditTool("CurrentSize");
            Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool17 = new Infragistics.Win.UltraWinToolbars.ButtonTool("FitAllPage");
            Infragistics.Win.Appearance appearance13 = new Infragistics.Win.Appearance();
            Infragistics.Win.Appearance appearance14 = new Infragistics.Win.Appearance();
            Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool18 = new Infragistics.Win.UltraWinToolbars.ButtonTool("PrintDocument");
            Infragistics.Win.Appearance appearance15 = new Infragistics.Win.Appearance();
            Infragistics.Win.Appearance appearance16 = new Infragistics.Win.Appearance();
            Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool19 = new Infragistics.Win.UltraWinToolbars.ButtonTool("SaveDocument");
            Infragistics.Win.Appearance appearance17 = new Infragistics.Win.Appearance();
            Infragistics.Win.Appearance appearance18 = new Infragistics.Win.Appearance();
            Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool20 = new Infragistics.Win.UltraWinToolbars.ButtonTool("Opzioni");
            Infragistics.Win.Appearance appearance19 = new Infragistics.Win.Appearance();
            Infragistics.Win.Appearance appearance20 = new Infragistics.Win.Appearance();
            Infragistics.Win.Appearance appearance21 = new Infragistics.Win.Appearance();
            this.axAcroPDF1 = new AxAcroPDFLib.AxAcroPDF();
            this.openFileDialog1 = new System.Windows.Forms.OpenFileDialog();
            this.lblDragger = new Infragistics.Win.Misc.UltraLabel();
            this.savePdfDialog = new System.Windows.Forms.SaveFileDialog();
            ((System.ComponentModel.ISupportInitialize)(this.ultraToolbarsManagerStandard)).BeginInit();
            this.MainStandardForm_Fill_Panel.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.axAcroPDF1)).BeginInit();
            this.SuspendLayout();
            // 
            // ultraToolbarsManagerStandard
            // 
            this.ultraToolbarsManagerStandard.MenuSettings.ForceSerialization = true;
            this.ultraToolbarsManagerStandard.Ribbon.ApplicationMenu.ToolAreaLeft.NonInheritedTools.AddRange(new Infragistics.Win.UltraWinToolbars.ToolBase[] {
            buttonTool30});
            this.ultraToolbarsManagerStandard.Ribbon.ApplicationMenuButtonImage = ((System.Drawing.Image)(resources.GetObject("ultraToolbarsManagerStandard.Ribbon.ApplicationMenuButtonImage")));
            ribbonTab1.Caption = "File";
            ribbonGroup1.Caption = "Gestione PDF";
            buttonTool24.InstanceProps.IsFirstInGroup = true;
            buttonTool29.InstanceProps.IsFirstInGroup = true;
            ribbonGroup1.Tools.AddRange(new Infragistics.Win.UltraWinToolbars.ToolBase[] {
            buttonTool21,
            buttonTool22,
            buttonTool23,
            buttonTool24,
            buttonTool25,
            comboBoxTool5,
            buttonTool29});
            ribbonTab1.Groups.AddRange(new Infragistics.Win.UltraWinToolbars.RibbonGroup[] {
            ribbonGroup1});
            ribbonTab2.Caption = "Visualizza";
            ribbonGroup2.Caption = "Visualizzazione";
            maskedEditTool3.InstanceProps.IsFirstInGroup = true;
            ribbonGroup2.Tools.AddRange(new Infragistics.Win.UltraWinToolbars.ToolBase[] {
            buttonTool26,
            buttonTool27,
            maskedEditTool3,
            buttonTool28});
            ribbonTab2.Groups.AddRange(new Infragistics.Win.UltraWinToolbars.RibbonGroup[] {
            ribbonGroup2});
            this.ultraToolbarsManagerStandard.Ribbon.NonInheritedRibbonTabs.AddRange(new Infragistics.Win.UltraWinToolbars.RibbonTab[] {
            ribbonTab1,
            ribbonTab2});
            this.ultraToolbarsManagerStandard.Ribbon.QuickAccessToolbar.NonInheritedTools.AddRange(new Infragistics.Win.UltraWinToolbars.ToolBase[] {
            buttonTool31});
            this.ultraToolbarsManagerStandard.Ribbon.Visible = true;
            ultraToolbar1.DockedColumn = 1;
            ultraToolbar1.DockedRow = 1;
            buttonTool5.InstanceProps.IsFirstInGroup = true;
            comboBoxTool1.InstanceProps.Width = 40;
            buttonTool7.InstanceProps.IsFirstInGroup = true;
            maskedEditTool1.InstanceProps.Width = 57;
            buttonTool10.InstanceProps.IsFirstInGroup = true;
            ultraToolbar1.NonInheritedTools.AddRange(new Infragistics.Win.UltraWinToolbars.ToolBase[] {
            buttonTool1,
            buttonTool2,
            buttonTool3,
            buttonTool4,
            buttonTool5,
            comboBoxTool1,
            buttonTool6,
            buttonTool7,
            maskedEditTool1,
            buttonTool8,
            buttonTool9,
            buttonTool10});
            ultraToolbar1.Text = "StdPDF";
            this.ultraToolbarsManagerStandard.Toolbars.AddRange(new Infragistics.Win.UltraWinToolbars.UltraToolbar[] {
            ultraToolbar1});
            this.ultraToolbarsManagerStandard.ToolbarSettings.ForceSerialization = true;
            appearance1.Image = global::GpPDF.Properties.Resources.fileopen_large;
            buttonTool11.SharedPropsInternal.AppearancesLarge.Appearance = appearance1;
            appearance2.Image = global::GpPDF.Properties.Resources.fileopen_small;
            buttonTool11.SharedPropsInternal.AppearancesSmall.Appearance = appearance2;
            buttonTool11.SharedPropsInternal.Caption = "Apri file";
            appearance3.Image = global::GpPDF.Properties.Resources.firma_large;
            buttonTool12.SharedPropsInternal.AppearancesLarge.Appearance = appearance3;
            appearance4.Image = global::GpPDF.Properties.Resources.firma_small;
            buttonTool12.SharedPropsInternal.AppearancesSmall.Appearance = appearance4;
            buttonTool12.SharedPropsInternal.Caption = "Inserisci la firma";
            appearance5.Image = global::GpPDF.Properties.Resources.previous_large;
            buttonTool13.SharedPropsInternal.AppearancesLarge.Appearance = appearance5;
            appearance6.Image = global::GpPDF.Properties.Resources.previous_small;
            buttonTool13.SharedPropsInternal.AppearancesSmall.Appearance = appearance6;
            buttonTool13.SharedPropsInternal.Caption = "Pagina precedente";
            appearance7.Image = global::GpPDF.Properties.Resources.next_large;
            buttonTool14.SharedPropsInternal.AppearancesLarge.Appearance = appearance7;
            appearance8.Image = global::GpPDF.Properties.Resources.next_small;
            buttonTool14.SharedPropsInternal.AppearancesSmall.Appearance = appearance8;
            buttonTool14.SharedPropsInternal.Caption = "Pagina Successiva";
            comboBoxTool2.SharedPropsInternal.Caption = "Pagina Corrente";
            comboBoxTool2.ValueList = valueList1;
            appearance9.Image = global::GpPDF.Properties.Resources.zoomin_large;
            buttonTool15.SharedPropsInternal.AppearancesLarge.Appearance = appearance9;
            appearance10.Image = global::GpPDF.Properties.Resources.zoomin_small;
            buttonTool15.SharedPropsInternal.AppearancesSmall.Appearance = appearance10;
            buttonTool15.SharedPropsInternal.Caption = "Ingrandisci";
            appearance11.Image = global::GpPDF.Properties.Resources.zoomout_large;
            buttonTool16.SharedPropsInternal.AppearancesLarge.Appearance = appearance11;
            appearance12.Image = global::GpPDF.Properties.Resources.zoomout_small;
            buttonTool16.SharedPropsInternal.AppearancesSmall.Appearance = appearance12;
            buttonTool16.SharedPropsInternal.Caption = "Rimpicciolisci";
            maskedEditTool2.MaskInput = "{double:3.1}";
            maskedEditTool2.SharedPropsInternal.Caption = "Ridimensiona il pdf";
            maskedEditTool2.SpinButtonDisplayStyle = Infragistics.Win.SpinButtonDisplayStyle.OnRight;
            appearance13.Image = global::GpPDF.Properties.Resources.documentview_large;
            buttonTool17.SharedPropsInternal.AppearancesLarge.Appearance = appearance13;
            appearance14.Image = global::GpPDF.Properties.Resources.documentview_small;
            buttonTool17.SharedPropsInternal.AppearancesSmall.Appearance = appearance14;
            buttonTool17.SharedPropsInternal.Caption = "Imposta dimensioni di default";
            appearance15.Image = global::GpPDF.Properties.Resources.printer_large;
            buttonTool18.SharedPropsInternal.AppearancesLarge.Appearance = appearance15;
            appearance16.Image = global::GpPDF.Properties.Resources.printer_small;
            buttonTool18.SharedPropsInternal.AppearancesSmall.Appearance = appearance16;
            buttonTool18.SharedPropsInternal.Caption = "Stampa il documento";
            appearance17.Image = global::GpPDF.Properties.Resources.salva_large;
            buttonTool19.SharedPropsInternal.AppearancesLarge.Appearance = appearance17;
            appearance18.Image = global::GpPDF.Properties.Resources.salva_small;
            buttonTool19.SharedPropsInternal.AppearancesSmall.Appearance = appearance18;
            buttonTool19.SharedPropsInternal.Caption = "Salva il documento";
            appearance19.Image = global::GpPDF.Properties.Resources.opzioni_large;
            buttonTool20.SharedPropsInternal.AppearancesLarge.Appearance = appearance19;
            appearance20.Image = global::GpPDF.Properties.Resources.opzioni_small;
            buttonTool20.SharedPropsInternal.AppearancesSmall.Appearance = appearance20;
            buttonTool20.SharedPropsInternal.Caption = "Opzioni";
            this.ultraToolbarsManagerStandard.Tools.AddRange(new Infragistics.Win.UltraWinToolbars.ToolBase[] {
            buttonTool11,
            buttonTool12,
            buttonTool13,
            buttonTool14,
            comboBoxTool2,
            buttonTool15,
            buttonTool16,
            maskedEditTool2,
            buttonTool17,
            buttonTool18,
            buttonTool19,
            buttonTool20});
            // 
            // standardFormStatus
            // 
            this.standardFormStatus.Location = new System.Drawing.Point(0, 753);
            this.standardFormStatus.Size = new System.Drawing.Size(607, 23);
            // 
            // MainStandardForm_Fill_Panel
            // 
            this.MainStandardForm_Fill_Panel.Controls.Add(this.lblDragger);
            this.MainStandardForm_Fill_Panel.Controls.Add(this.axAcroPDF1);
            this.MainStandardForm_Fill_Panel.Location = new System.Drawing.Point(8, 187);
            this.MainStandardForm_Fill_Panel.Size = new System.Drawing.Size(591, 566);
            // 
            // persistWindowComponent1
            // 
            this.persistWindowComponent1.XMLFilePath = "C:\\Users\\Giorgio\\AppData\\Local\\Microsoft\\VisualStudio\\9.0\\ProjectAssemblies\\engex" +
                "vsz01\\Layouts\\WindowState.xml";
            // 
            // axAcroPDF1
            // 
            this.axAcroPDF1.Dock = System.Windows.Forms.DockStyle.Fill;
            this.axAcroPDF1.Enabled = true;
            this.axAcroPDF1.Location = new System.Drawing.Point(0, 0);
            this.axAcroPDF1.Name = "axAcroPDF1";
            this.axAcroPDF1.OcxState = ((System.Windows.Forms.AxHost.State)(resources.GetObject("axAcroPDF1.OcxState")));
            this.axAcroPDF1.Size = new System.Drawing.Size(591, 566);
            this.axAcroPDF1.TabIndex = 1;
            // 
            // openFileDialog1
            // 
            this.openFileDialog1.DefaultExt = "pdf";
            this.openFileDialog1.Filter = "File PDF|*.pdf|Tiff|*.tiff;*.tif";
            // 
            // lblDragger
            // 
            appearance21.Image = global::GpPDF.Properties.Resources.firma;
            this.lblDragger.Appearance = appearance21;
            this.lblDragger.BorderStyleOuter = Infragistics.Win.UIElementBorderStyle.Dashed;
            this.lblDragger.ImageSize = new System.Drawing.Size(48, 34);
            this.lblDragger.Location = new System.Drawing.Point(374, 407);
            this.lblDragger.Name = "lblDragger";
            this.lblDragger.Size = new System.Drawing.Size(48, 34);
            this.lblDragger.TabIndex = 3;
            this.lblDragger.Visible = false;
            this.lblDragger.MouseMove += new System.Windows.Forms.MouseEventHandler(this.lblDragger_MouseMove);
            this.lblDragger.MouseDown += new System.Windows.Forms.MouseEventHandler(this.lblDragger_MouseDown);
            this.lblDragger.MouseUp += new System.Windows.Forms.MouseEventHandler(this.lblDragger_MouseUp);
            // 
            // savePdfDialog
            // 
            this.savePdfDialog.DefaultExt = "pdf";
            this.savePdfDialog.Filter = "File PDF|*.pdf|Tutti i file|*.*";
            // 
            // OpenPDF
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.ClientSize = new System.Drawing.Size(607, 776);
            this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
            this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
            this.MaximizeBox = false;
            this.Name = "OpenPDF";
            this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
            this.Text = "PDF";
            this.Load += new System.EventHandler(this.OpenPDF_Load);
            this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.OpenPDF_FormClosing);
            ((System.ComponentModel.ISupportInitialize)(this.ultraToolbarsManagerStandard)).EndInit();
            this.MainStandardForm_Fill_Panel.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.axAcroPDF1)).EndInit();
            this.ResumeLayout(false);

        }
Example #10
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();
     Infragistics.Win.Appearance appearance1  = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance2  = 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.UltraWinToolbars.UltraToolbar  ultraToolbar1  = new Infragistics.Win.UltraWinToolbars.UltraToolbar("tbrFunction");
     Infragistics.Win.UltraWinToolbars.PopupMenuTool PopupMenuTool7 = new Infragistics.Win.UltraWinToolbars.PopupMenuTool("popPrevious");
     Infragistics.Win.UltraWinToolbars.PopupMenuTool PopupMenuTool6 = new Infragistics.Win.UltraWinToolbars.PopupMenuTool("popNext");
     Infragistics.Win.UltraWinToolbars.ButtonTool    ButtonTool18   = new Infragistics.Win.UltraWinToolbars.ButtonTool("btnAdd");
     Infragistics.Win.UltraWinToolbars.ButtonTool    ButtonTool17   = new Infragistics.Win.UltraWinToolbars.ButtonTool("btnEdit");
     Infragistics.Win.UltraWinToolbars.ButtonTool    ButtonTool20   = new Infragistics.Win.UltraWinToolbars.ButtonTool("btnDelete");
     Infragistics.Win.UltraWinToolbars.ButtonTool    ButtonTool2    = new Infragistics.Win.UltraWinToolbars.ButtonTool("btnSave");
     Infragistics.Win.UltraWinToolbars.ButtonTool    ButtonTool14   = new Infragistics.Win.UltraWinToolbars.ButtonTool("btnCancel");
     Infragistics.Win.UltraWinToolbars.ButtonTool    ButtonTool15   = new Infragistics.Win.UltraWinToolbars.ButtonTool("btnGet");
     Infragistics.Win.UltraWinToolbars.ButtonTool    ButtonTool6    = new Infragistics.Win.UltraWinToolbars.ButtonTool("btnHelp");
     Infragistics.Win.UltraWinToolbars.ButtonTool    ButtonTool4    = new Infragistics.Win.UltraWinToolbars.ButtonTool("btnClose");
     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.UltraWinToolbars.ButtonTool ButtonTool3 = new Infragistics.Win.UltraWinToolbars.ButtonTool("btnNext");
     Infragistics.Win.UltraWinToolbars.ButtonTool ButtonTool5 = new Infragistics.Win.UltraWinToolbars.ButtonTool("btnAdd");
     Infragistics.Win.Appearance appearance21 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinToolbars.ButtonTool ButtonTool7 = new Infragistics.Win.UltraWinToolbars.ButtonTool("btnEdit");
     Infragistics.Win.Appearance appearance22 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinToolbars.ButtonTool ButtonTool8 = new Infragistics.Win.UltraWinToolbars.ButtonTool("btnSave");
     Infragistics.Win.Appearance appearance23 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinToolbars.ButtonTool ButtonTool9 = new Infragistics.Win.UltraWinToolbars.ButtonTool("btnDelete");
     Infragistics.Win.Appearance appearance24 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinToolbars.ButtonTool ButtonTool10 = new Infragistics.Win.UltraWinToolbars.ButtonTool("btnCancel");
     Infragistics.Win.Appearance appearance25 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinToolbars.ButtonTool ButtonTool11 = new Infragistics.Win.UltraWinToolbars.ButtonTool("btnGet");
     Infragistics.Win.Appearance appearance26 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinToolbars.ButtonTool ButtonTool12 = new Infragistics.Win.UltraWinToolbars.ButtonTool("btnHelp");
     Infragistics.Win.Appearance appearance27 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinToolbars.ButtonTool ButtonTool13 = new Infragistics.Win.UltraWinToolbars.ButtonTool("btnClose");
     Infragistics.Win.Appearance appearance28 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinToolbars.ComboBoxTool ComboBoxTool2 = new Infragistics.Win.UltraWinToolbars.ComboBoxTool("btnMoveFirst");
     Infragistics.Win.ValueList valueList1 = new Infragistics.Win.ValueList(0);
     Infragistics.Win.UltraWinToolbars.ButtonTool    ButtonTool23   = new Infragistics.Win.UltraWinToolbars.ButtonTool("btnPrevious");
     Infragistics.Win.UltraWinToolbars.PopupMenuTool PopupMenuTool4 = new Infragistics.Win.UltraWinToolbars.PopupMenuTool("popPrevious");
     Infragistics.Win.Appearance appearance29 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinToolbars.ButtonTool    ButtonTool21   = new Infragistics.Win.UltraWinToolbars.ButtonTool("btnPrevious");
     Infragistics.Win.UltraWinToolbars.ComboBoxTool  ComboBoxTool4  = new Infragistics.Win.UltraWinToolbars.ComboBoxTool("btnMoveFirst");
     Infragistics.Win.UltraWinToolbars.PopupMenuTool PopupMenuTool5 = new Infragistics.Win.UltraWinToolbars.PopupMenuTool("popNext");
     Infragistics.Win.Appearance appearance30 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinToolbars.ButtonTool ButtonTool22 = new Infragistics.Win.UltraWinToolbars.ButtonTool("btnNext");
     Infragistics.Win.UltraWinToolbars.ButtonTool ButtonTool24 = new Infragistics.Win.UltraWinToolbars.ButtonTool("btnMoveLast");
     Infragistics.Win.UltraWinToolbars.ButtonTool ButtonTool25 = new Infragistics.Win.UltraWinToolbars.ButtonTool("btnMoveLast");
     Infragistics.Win.Appearance appearance3 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance4 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinTabControl.UltraTab UltraTab1 = new Infragistics.Win.UltraWinTabControl.UltraTab();
     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();
     this.UltraTabPageControl1               = new Infragistics.Win.UltraWinTabControl.UltraTabPageControl();
     this.tbrManager                         = new Infragistics.Win.UltraWinToolbars.UltraToolbarsManager(this.components);
     this._frmMain_Toolbars_Dock_Area_Top    = new Infragistics.Win.UltraWinToolbars.UltraToolbarsDockArea();
     this._frmMain_Toolbars_Dock_Area_Bottom = new Infragistics.Win.UltraWinToolbars.UltraToolbarsDockArea();
     this._frmMain_Toolbars_Dock_Area_Left   = new Infragistics.Win.UltraWinToolbars.UltraToolbarsDockArea();
     this._frmMain_Toolbars_Dock_Area_Right  = new Infragistics.Win.UltraWinToolbars.UltraToolbarsDockArea();
     this.bsList   = new System.Windows.Forms.BindingSource(this.components);
     this.bsDetail = new System.Windows.Forms.BindingSource(this.components);
     this.FrmBaseVoucherDetail_Fill_Panel = new Infragistics.Win.Misc.UltraPanel();
     this.pnlDetail = new Infragistics.Win.Misc.UltraPanel();
     this.tabInfo   = new Infragistics.Win.UltraWinTabControl.UltraTabControl();
     this.UltraTabSharedControlsPage1 = new Infragistics.Win.UltraWinTabControl.UltraTabSharedControlsPage();
     this.splContent   = new Infragistics.Win.Misc.UltraSplitter();
     this.pnlInfo      = new Infragistics.Win.Misc.UltraPanel();
     this.pnlTitle     = new Infragistics.Win.Misc.UltraPanel();
     this.lblTitle     = new Infragistics.Win.Misc.UltraLabel();
     this.dsDictionary = new Desktop.Entity.DictionaryDataSet();
     this.ttpManager   = new Infragistics.Win.UltraWinToolTip.UltraToolTipManager(this.components);
     ((System.ComponentModel.ISupportInitialize)(this.tbrManager)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.bsList)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.bsDetail)).BeginInit();
     this.FrmBaseVoucherDetail_Fill_Panel.ClientArea.SuspendLayout();
     this.FrmBaseVoucherDetail_Fill_Panel.SuspendLayout();
     this.pnlDetail.ClientArea.SuspendLayout();
     this.pnlDetail.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.tabInfo)).BeginInit();
     this.tabInfo.SuspendLayout();
     this.pnlInfo.SuspendLayout();
     this.pnlTitle.ClientArea.SuspendLayout();
     this.pnlTitle.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dsDictionary)).BeginInit();
     this.SuspendLayout();
     //
     // UltraTabPageControl1
     //
     this.UltraTabPageControl1.Location = new System.Drawing.Point(-10000, -10000);
     this.UltraTabPageControl1.Name     = "UltraTabPageControl1";
     this.UltraTabPageControl1.Size     = new System.Drawing.Size(876, 227);
     //
     // tbrManager
     //
     appearance1.BackColor                                   = System.Drawing.Color.FromArgb(((int)(((byte)(173)))), ((int)(((byte)(199)))), ((int)(((byte)(231)))));
     appearance1.BackColor2                                  = System.Drawing.Color.FromArgb(((int)(((byte)(173)))), ((int)(((byte)(199)))), ((int)(((byte)(231)))));
     appearance1.BorderColor                                 = System.Drawing.Color.Red;
     appearance1.ForeColor                                   = System.Drawing.Color.Black;
     this.tbrManager.Appearance                              = appearance1;
     this.tbrManager.DesignerFlags                           = 1;
     appearance2.BackColor                                   = System.Drawing.Color.FromArgb(((int)(((byte)(173)))), ((int)(((byte)(199)))), ((int)(((byte)(231)))));
     appearance2.BackColor2                                  = System.Drawing.Color.FromArgb(((int)(((byte)(173)))), ((int)(((byte)(199)))), ((int)(((byte)(231)))));
     this.tbrManager.DockAreaAppearance                      = appearance2;
     this.tbrManager.DockWithinContainer                     = this;
     this.tbrManager.DockWithinContainerBaseType             = typeof(System.Windows.Forms.Form);
     this.tbrManager.FormDisplayStyle                        = Infragistics.Win.UltraWinToolbars.FormDisplayStyle.RoundedSizable;
     this.tbrManager.LockToolbars                            = true;
     appearance10.ForeColor                                  = System.Drawing.Color.Black;
     appearance10.ForeColorDisabled                          = System.Drawing.Color.Gray;
     this.tbrManager.MenuSettings.Appearance                 = appearance10;
     appearance11.BackColor                                  = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(192)))), ((int)(((byte)(128)))));
     appearance11.BorderColor                                = System.Drawing.Color.Red;
     appearance11.ForeColor                                  = System.Drawing.Color.Black;
     this.tbrManager.MenuSettings.HotTrackAppearance         = appearance11;
     appearance12.BackColor                                  = System.Drawing.SystemColors.GradientInactiveCaption;
     appearance12.BackColor2                                 = System.Drawing.SystemColors.GradientInactiveCaption;
     appearance12.ForeColor                                  = System.Drawing.Color.Black;
     this.tbrManager.MenuSettings.ToolAppearance             = appearance12;
     appearance13.BackColor                                  = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(192)))), ((int)(((byte)(128)))));
     appearance13.BorderColor                                = System.Drawing.Color.Red;
     this.tbrManager.MiniToolbar.Settings.HotTrackAppearance = appearance13;
     this.tbrManager.MiniToolbar.ToolRowCount                = 10;
     appearance14.BackColor                                  = System.Drawing.Color.FromArgb(((int)(((byte)(100)))), ((int)(((byte)(150)))), ((int)(((byte)(200)))));
     appearance14.BackColor2                                 = System.Drawing.Color.FromArgb(((int)(((byte)(100)))), ((int)(((byte)(150)))), ((int)(((byte)(200)))));
     appearance14.ForeColor                                  = System.Drawing.Color.White;
     appearance14.ForeColorDisabled                          = System.Drawing.Color.Silver;
     this.tbrManager.Ribbon.CaptionAreaActiveAppearance      = appearance14;
     appearance15.BackColor                                  = System.Drawing.Color.FromArgb(((int)(((byte)(100)))), ((int)(((byte)(150)))), ((int)(((byte)(200)))));
     this.tbrManager.Ribbon.CaptionAreaAppearance            = appearance15;
     appearance16.ForeColor                                  = System.Drawing.Color.Black;
     appearance16.ForeColorDisabled                          = System.Drawing.Color.Gray;
     this.tbrManager.Ribbon.DefaultCaptionButtonsAppearances.DefaultButtonAppearances.Appearance = appearance16;
     appearance17.BackColor   = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(128)))));
     appearance17.BorderColor = System.Drawing.Color.Red;
     appearance17.ForeColor   = System.Drawing.Color.Black;
     this.tbrManager.Ribbon.DefaultCaptionButtonsAppearances.DefaultButtonAppearances.HotTrackAppearance = appearance17;
     this.tbrManager.ShowFullMenusDelay       = 500;
     this.tbrManager.ShowQuickCustomizeButton = false;
     this.tbrManager.Style      = Infragistics.Win.UltraWinToolbars.ToolbarStyle.Office2013;
     ultraToolbar1.DockedColumn = 0;
     ultraToolbar1.DockedRow    = 0;
     ButtonTool18.InstanceProps.IsFirstInGroup = true;
     ButtonTool15.InstanceProps.IsFirstInGroup = true;
     ButtonTool6.InstanceProps.IsFirstInGroup  = true;
     ultraToolbar1.NonInheritedTools.AddRange(new Infragistics.Win.UltraWinToolbars.ToolBase[] {
         PopupMenuTool7,
         PopupMenuTool6,
         ButtonTool18,
         ButtonTool17,
         ButtonTool20,
         ButtonTool2,
         ButtonTool14,
         ButtonTool15,
         ButtonTool6,
         ButtonTool4
     });
     ultraToolbar1.Settings.CaptionPlacement = Infragistics.Win.TextPlacement.BelowImage;
     ultraToolbar1.Settings.ToolDisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
     ultraToolbar1.Text = "tbrFunction";
     this.tbrManager.Toolbars.AddRange(new Infragistics.Win.UltraWinToolbars.UltraToolbar[] {
         ultraToolbar1
     });
     appearance18.ForeColor = System.Drawing.Color.Black;
     this.tbrManager.ToolbarSettings.Appearance = appearance18;
     appearance19.BackColor   = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(128)))));
     appearance19.BorderColor = System.Drawing.Color.Red;
     this.tbrManager.ToolbarSettings.HotTrackAppearance = appearance19;
     appearance20.ForeColor = System.Drawing.Color.Black;
     this.tbrManager.ToolbarSettings.ToolAppearance = appearance20;
     ButtonTool3.SharedPropsInternal.Caption        = "Sau";
     ButtonTool3.SharedPropsInternal.Shortcut       = System.Windows.Forms.Shortcut.F8;
     appearance21.Image = global::ClientApp.Properties.Resources.btnItemAdd;
     ButtonTool5.SharedPropsInternal.AppearancesSmall.Appearance = appearance21;
     ButtonTool5.SharedPropsInternal.Caption  = "Thêm";
     ButtonTool5.SharedPropsInternal.Shortcut = System.Windows.Forms.Shortcut.CtrlN;
     appearance22.Image = global::ClientApp.Properties.Resources.btnItemEdit;
     ButtonTool7.SharedPropsInternal.AppearancesSmall.Appearance = appearance22;
     ButtonTool7.SharedPropsInternal.Caption  = "Sửa";
     ButtonTool7.SharedPropsInternal.Shortcut = System.Windows.Forms.Shortcut.CtrlE;
     appearance23.Image = global::ClientApp.Properties.Resources.btnSave;
     ButtonTool8.SharedPropsInternal.AppearancesSmall.Appearance = appearance23;
     ButtonTool8.SharedPropsInternal.Caption  = "Lưu";
     ButtonTool8.SharedPropsInternal.Shortcut = System.Windows.Forms.Shortcut.CtrlS;
     appearance24.Image = global::ClientApp.Properties.Resources.btnItemDelete;
     ButtonTool9.SharedPropsInternal.AppearancesSmall.Appearance = appearance24;
     ButtonTool9.SharedPropsInternal.Caption  = "Xóa";
     ButtonTool9.SharedPropsInternal.Shortcut = System.Windows.Forms.Shortcut.CtrlD;
     appearance25.Image = global::ClientApp.Properties.Resources.Cancel;
     ButtonTool10.SharedPropsInternal.AppearancesSmall.Appearance = appearance25;
     ButtonTool10.SharedPropsInternal.Caption  = "Hoãn";
     ButtonTool10.SharedPropsInternal.Shortcut = System.Windows.Forms.Shortcut.CtrlU;
     appearance26.Image = global::ClientApp.Properties.Resources.btnItemGet;
     ButtonTool11.SharedPropsInternal.AppearancesSmall.Appearance = appearance26;
     ButtonTool11.SharedPropsInternal.Caption  = "Nạp";
     ButtonTool11.SharedPropsInternal.Shortcut = System.Windows.Forms.Shortcut.F5;
     appearance27.Image = global::ClientApp.Properties.Resources.Help;
     ButtonTool12.SharedPropsInternal.AppearancesSmall.Appearance = appearance27;
     ButtonTool12.SharedPropsInternal.Caption  = "Giúp";
     ButtonTool12.SharedPropsInternal.Shortcut = System.Windows.Forms.Shortcut.F1;
     appearance28.Image = global::ClientApp.Properties.Resources.btnExit;
     ButtonTool13.SharedPropsInternal.AppearancesSmall.Appearance = appearance28;
     ButtonTool13.SharedPropsInternal.Caption  = "Đóng";
     ButtonTool13.SharedPropsInternal.Shortcut = System.Windows.Forms.Shortcut.CtrlF4;
     ComboBoxTool2.SharedPropsInternal.Caption = "Về đầu";
     ComboBoxTool2.ValueList = valueList1;
     ButtonTool23.SharedPropsInternal.Caption      = "Trước";
     ButtonTool23.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
     ButtonTool23.SharedPropsInternal.Shortcut     = System.Windows.Forms.Shortcut.F7;
     appearance29.Image = global::ClientApp.Properties.Resources.btnNavigateBack;
     PopupMenuTool4.SharedPropsInternal.AppearancesSmall.Appearance = appearance29;
     PopupMenuTool4.SharedPropsInternal.Caption = "Trước";
     PopupMenuTool4.Tools.AddRange(new Infragistics.Win.UltraWinToolbars.ToolBase[] {
         ButtonTool21,
         ComboBoxTool4
     });
     appearance30.Image = global::ClientApp.Properties.Resources.btnNavigateNext;
     PopupMenuTool5.SharedPropsInternal.AppearancesSmall.Appearance = appearance30;
     PopupMenuTool5.SharedPropsInternal.Caption = "Sau";
     PopupMenuTool5.Tools.AddRange(new Infragistics.Win.UltraWinToolbars.ToolBase[] {
         ButtonTool22,
         ButtonTool24
     });
     ButtonTool25.SharedPropsInternal.Caption = "Về cuối";
     this.tbrManager.Tools.AddRange(new Infragistics.Win.UltraWinToolbars.ToolBase[] {
         ButtonTool3,
         ButtonTool5,
         ButtonTool7,
         ButtonTool8,
         ButtonTool9,
         ButtonTool10,
         ButtonTool11,
         ButtonTool12,
         ButtonTool13,
         ComboBoxTool2,
         ButtonTool23,
         PopupMenuTool4,
         PopupMenuTool5,
         ButtonTool25
     });
     this.tbrManager.UseFlatMode = Infragistics.Win.DefaultableBoolean.True;
     this.tbrManager.UseOsThemes = Infragistics.Win.DefaultableBoolean.False;
     this.tbrManager.ToolClick  += new Infragistics.Win.UltraWinToolbars.ToolClickEventHandler(this.tbrManager_ToolClick);
     //
     // _frmMain_Toolbars_Dock_Area_Top
     //
     this._frmMain_Toolbars_Dock_Area_Top.AccessibleRole  = System.Windows.Forms.AccessibleRole.Grouping;
     this._frmMain_Toolbars_Dock_Area_Top.BackColor       = System.Drawing.Color.FromArgb(((int)(((byte)(173)))), ((int)(((byte)(199)))), ((int)(((byte)(231)))));
     this._frmMain_Toolbars_Dock_Area_Top.DockedPosition  = Infragistics.Win.UltraWinToolbars.DockedPosition.Top;
     this._frmMain_Toolbars_Dock_Area_Top.ForeColor       = System.Drawing.Color.Black;
     this._frmMain_Toolbars_Dock_Area_Top.Location        = new System.Drawing.Point(0, 0);
     this._frmMain_Toolbars_Dock_Area_Top.Name            = "_frmMain_Toolbars_Dock_Area_Top";
     this._frmMain_Toolbars_Dock_Area_Top.Size            = new System.Drawing.Size(880, 74);
     this._frmMain_Toolbars_Dock_Area_Top.ToolbarsManager = this.tbrManager;
     //
     // _frmMain_Toolbars_Dock_Area_Bottom
     //
     this._frmMain_Toolbars_Dock_Area_Bottom.AccessibleRole          = System.Windows.Forms.AccessibleRole.Grouping;
     this._frmMain_Toolbars_Dock_Area_Bottom.BackColor               = System.Drawing.Color.FromArgb(((int)(((byte)(173)))), ((int)(((byte)(199)))), ((int)(((byte)(231)))));
     this._frmMain_Toolbars_Dock_Area_Bottom.DockedPosition          = Infragistics.Win.UltraWinToolbars.DockedPosition.Bottom;
     this._frmMain_Toolbars_Dock_Area_Bottom.ForeColor               = System.Drawing.Color.Black;
     this._frmMain_Toolbars_Dock_Area_Bottom.InitialResizeAreaExtent = 1;
     this._frmMain_Toolbars_Dock_Area_Bottom.Location        = new System.Drawing.Point(0, 659);
     this._frmMain_Toolbars_Dock_Area_Bottom.Name            = "_frmMain_Toolbars_Dock_Area_Bottom";
     this._frmMain_Toolbars_Dock_Area_Bottom.Size            = new System.Drawing.Size(880, 1);
     this._frmMain_Toolbars_Dock_Area_Bottom.ToolbarsManager = this.tbrManager;
     //
     // _frmMain_Toolbars_Dock_Area_Left
     //
     this._frmMain_Toolbars_Dock_Area_Left.AccessibleRole          = System.Windows.Forms.AccessibleRole.Grouping;
     this._frmMain_Toolbars_Dock_Area_Left.BackColor               = System.Drawing.Color.FromArgb(((int)(((byte)(173)))), ((int)(((byte)(199)))), ((int)(((byte)(231)))));
     this._frmMain_Toolbars_Dock_Area_Left.DockedPosition          = Infragistics.Win.UltraWinToolbars.DockedPosition.Left;
     this._frmMain_Toolbars_Dock_Area_Left.ForeColor               = System.Drawing.Color.Black;
     this._frmMain_Toolbars_Dock_Area_Left.InitialResizeAreaExtent = 1;
     this._frmMain_Toolbars_Dock_Area_Left.Location        = new System.Drawing.Point(0, 74);
     this._frmMain_Toolbars_Dock_Area_Left.Name            = "_frmMain_Toolbars_Dock_Area_Left";
     this._frmMain_Toolbars_Dock_Area_Left.Size            = new System.Drawing.Size(1, 585);
     this._frmMain_Toolbars_Dock_Area_Left.ToolbarsManager = this.tbrManager;
     //
     // _frmMain_Toolbars_Dock_Area_Right
     //
     this._frmMain_Toolbars_Dock_Area_Right.AccessibleRole          = System.Windows.Forms.AccessibleRole.Grouping;
     this._frmMain_Toolbars_Dock_Area_Right.BackColor               = System.Drawing.Color.FromArgb(((int)(((byte)(173)))), ((int)(((byte)(199)))), ((int)(((byte)(231)))));
     this._frmMain_Toolbars_Dock_Area_Right.DockedPosition          = Infragistics.Win.UltraWinToolbars.DockedPosition.Right;
     this._frmMain_Toolbars_Dock_Area_Right.ForeColor               = System.Drawing.Color.Black;
     this._frmMain_Toolbars_Dock_Area_Right.InitialResizeAreaExtent = 1;
     this._frmMain_Toolbars_Dock_Area_Right.Location        = new System.Drawing.Point(879, 74);
     this._frmMain_Toolbars_Dock_Area_Right.Name            = "_frmMain_Toolbars_Dock_Area_Right";
     this._frmMain_Toolbars_Dock_Area_Right.Size            = new System.Drawing.Size(1, 585);
     this._frmMain_Toolbars_Dock_Area_Right.ToolbarsManager = this.tbrManager;
     //
     // bsList
     //
     this.bsList.DataMember = "Voucher";
     //
     // bsDetail
     //
     this.bsDetail.DataMember = "VoucherDetail";
     //
     // FrmBaseVoucherDetail_Fill_Panel
     //
     //
     // FrmBaseVoucherDetail_Fill_Panel.ClientArea
     //
     this.FrmBaseVoucherDetail_Fill_Panel.ClientArea.Controls.Add(this.pnlDetail);
     this.FrmBaseVoucherDetail_Fill_Panel.ClientArea.Controls.Add(this.splContent);
     this.FrmBaseVoucherDetail_Fill_Panel.ClientArea.Controls.Add(this.pnlInfo);
     this.FrmBaseVoucherDetail_Fill_Panel.ClientArea.Controls.Add(this.pnlTitle);
     this.FrmBaseVoucherDetail_Fill_Panel.Cursor   = System.Windows.Forms.Cursors.Default;
     this.FrmBaseVoucherDetail_Fill_Panel.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.FrmBaseVoucherDetail_Fill_Panel.Location = new System.Drawing.Point(1, 74);
     this.FrmBaseVoucherDetail_Fill_Panel.Name     = "FrmBaseVoucherDetail_Fill_Panel";
     this.FrmBaseVoucherDetail_Fill_Panel.Size     = new System.Drawing.Size(878, 585);
     this.FrmBaseVoucherDetail_Fill_Panel.TabIndex = 8;
     //
     // pnlDetail
     //
     //
     // pnlDetail.ClientArea
     //
     this.pnlDetail.ClientArea.Controls.Add(this.tabInfo);
     this.pnlDetail.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.pnlDetail.Location = new System.Drawing.Point(0, 337);
     this.pnlDetail.Name     = "pnlDetail";
     this.pnlDetail.Size     = new System.Drawing.Size(878, 248);
     this.pnlDetail.TabIndex = 9;
     //
     // tabInfo
     //
     appearance3.BackColor             = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(230)))), ((int)(((byte)(159)))));
     appearance3.BackColor2            = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(230)))), ((int)(((byte)(159)))));
     appearance3.FontData.BoldAsString = "True";
     this.tabInfo.ActiveTabAppearance  = appearance3;
     appearance4.BackColor             = System.Drawing.Color.FromArgb(((int)(((byte)(204)))), ((int)(((byte)(220)))), ((int)(((byte)(240)))));
     appearance4.BackColor2            = System.Drawing.Color.FromArgb(((int)(((byte)(204)))), ((int)(((byte)(220)))), ((int)(((byte)(240)))));
     appearance4.BorderColor           = System.Drawing.Color.FromArgb(((int)(((byte)(125)))), ((int)(((byte)(162)))), ((int)(((byte)(206)))));
     appearance4.BorderColor2          = System.Drawing.Color.FromArgb(((int)(((byte)(125)))), ((int)(((byte)(162)))), ((int)(((byte)(206)))));
     this.tabInfo.Appearance           = appearance4;
     this.tabInfo.Controls.Add(this.UltraTabSharedControlsPage1);
     this.tabInfo.Controls.Add(this.UltraTabPageControl1);
     this.tabInfo.Dock               = System.Windows.Forms.DockStyle.Fill;
     this.tabInfo.Location           = new System.Drawing.Point(0, 0);
     this.tabInfo.Name               = "tabInfo";
     this.tabInfo.SharedControlsPage = this.UltraTabSharedControlsPage1;
     this.tabInfo.Size               = new System.Drawing.Size(878, 248);
     this.tabInfo.Style              = Infragistics.Win.UltraWinTabControl.UltraTabControlStyle.VisualStudio2005;
     this.tabInfo.TabIndex           = 0;
     UltraTab1.Key     = "tabInfoGeneral";
     UltraTab1.TabPage = this.UltraTabPageControl1;
     UltraTab1.Text    = "Thông tin chung";
     this.tabInfo.Tabs.AddRange(new Infragistics.Win.UltraWinTabControl.UltraTab[] {
         UltraTab1
     });
     this.tabInfo.UseFlatMode = Infragistics.Win.DefaultableBoolean.True;
     this.tabInfo.UseOsThemes = Infragistics.Win.DefaultableBoolean.False;
     //
     // UltraTabSharedControlsPage1
     //
     this.UltraTabSharedControlsPage1.Location = new System.Drawing.Point(1, 20);
     this.UltraTabSharedControlsPage1.Name     = "UltraTabSharedControlsPage1";
     this.UltraTabSharedControlsPage1.Size     = new System.Drawing.Size(876, 227);
     //
     // splContent
     //
     appearance5.BackColor                     = System.Drawing.Color.FromArgb(((int)(((byte)(204)))), ((int)(((byte)(220)))), ((int)(((byte)(240)))));
     appearance5.BackColor2                    = System.Drawing.Color.FromArgb(((int)(((byte)(204)))), ((int)(((byte)(220)))), ((int)(((byte)(240)))));
     appearance5.BorderColor                   = System.Drawing.Color.FromArgb(((int)(((byte)(204)))), ((int)(((byte)(220)))), ((int)(((byte)(240)))));
     appearance5.BorderColor2                  = System.Drawing.Color.FromArgb(((int)(((byte)(204)))), ((int)(((byte)(220)))), ((int)(((byte)(240)))));
     this.splContent.Appearance                = appearance5;
     this.splContent.BackColor                 = System.Drawing.Color.FromArgb(((int)(((byte)(204)))), ((int)(((byte)(220)))), ((int)(((byte)(240)))));
     appearance6.BackColor                     = System.Drawing.Color.FromArgb(((int)(((byte)(204)))), ((int)(((byte)(220)))), ((int)(((byte)(240)))));
     appearance6.BackColor2                    = System.Drawing.Color.FromArgb(((int)(((byte)(173)))), ((int)(((byte)(199)))), ((int)(((byte)(231)))));
     appearance6.BorderColor                   = System.Drawing.Color.FromArgb(((int)(((byte)(125)))), ((int)(((byte)(162)))), ((int)(((byte)(206)))));
     appearance6.BorderColor2                  = System.Drawing.Color.FromArgb(((int)(((byte)(125)))), ((int)(((byte)(162)))), ((int)(((byte)(206)))));
     this.splContent.ButtonAppearance          = appearance6;
     this.splContent.ButtonStyle               = Infragistics.Win.UIElementButtonStyle.Button;
     appearance7.BackColor                     = System.Drawing.Color.Yellow;
     appearance7.BorderColor                   = System.Drawing.Color.Red;
     this.splContent.CollapsedButtonAppearance = appearance7;
     this.splContent.Dock   = System.Windows.Forms.DockStyle.Top;
     appearance8.BackColor  = System.Drawing.Color.Yellow;
     appearance8.BackColor2 = System.Drawing.Color.Red;
     this.splContent.HotTrackingButtonAppearance = appearance8;
     this.splContent.Location      = new System.Drawing.Point(0, 327);
     this.splContent.Name          = "splContent";
     this.splContent.RestoreExtent = 253;
     this.splContent.Size          = new System.Drawing.Size(878, 10);
     this.splContent.TabIndex      = 8;
     this.splContent.UseFlatMode   = Infragistics.Win.DefaultableBoolean.True;
     this.splContent.UseOsThemes   = Infragistics.Win.DefaultableBoolean.False;
     //
     // pnlInfo
     //
     this.pnlInfo.Dock     = System.Windows.Forms.DockStyle.Top;
     this.pnlInfo.Location = new System.Drawing.Point(0, 27);
     this.pnlInfo.Name     = "pnlInfo";
     this.pnlInfo.Size     = new System.Drawing.Size(878, 300);
     this.pnlInfo.TabIndex = 7;
     //
     // pnlTitle
     //
     //
     // pnlTitle.ClientArea
     //
     this.pnlTitle.ClientArea.Controls.Add(this.lblTitle);
     this.pnlTitle.Dock     = System.Windows.Forms.DockStyle.Top;
     this.pnlTitle.Location = new System.Drawing.Point(0, 0);
     this.pnlTitle.Name     = "pnlTitle";
     this.pnlTitle.Size     = new System.Drawing.Size(878, 27);
     this.pnlTitle.TabIndex = 6;
     //
     // lblTitle
     //
     appearance9.TextHAlignAsString = "Left";
     appearance9.TextVAlignAsString = "Middle";
     this.lblTitle.Appearance       = appearance9;
     this.lblTitle.Dock             = System.Windows.Forms.DockStyle.Left;
     this.lblTitle.Font             = new System.Drawing.Font("Microsoft PhagsPa", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblTitle.Location         = new System.Drawing.Point(0, 0);
     this.lblTitle.Name             = "lblTitle";
     this.lblTitle.Padding          = new System.Drawing.Size(8, 0);
     this.lblTitle.Size             = new System.Drawing.Size(200, 27);
     this.lblTitle.TabIndex         = 0;
     this.lblTitle.Text             = "Hóa đơn";
     this.lblTitle.UseFlatMode      = Infragistics.Win.DefaultableBoolean.True;
     this.lblTitle.UseOsThemes      = Infragistics.Win.DefaultableBoolean.False;
     //
     // dsDictionary
     //
     this.dsDictionary.DataSetName             = "DictionaryDataSet";
     this.dsDictionary.SchemaSerializationMode = System.Data.SchemaSerializationMode.IncludeSchema;
     //
     // ttpManager
     //
     this.ttpManager.ContainingControl = this;
     //
     // FrmBaseVoucherDetail
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.BackColor           = System.Drawing.Color.FromArgb(((int)(((byte)(204)))), ((int)(((byte)(220)))), ((int)(((byte)(240)))));
     this.ClientSize          = new System.Drawing.Size(880, 660);
     this.Controls.Add(this.FrmBaseVoucherDetail_Fill_Panel);
     this.Controls.Add(this._frmMain_Toolbars_Dock_Area_Left);
     this.Controls.Add(this._frmMain_Toolbars_Dock_Area_Right);
     this.Controls.Add(this._frmMain_Toolbars_Dock_Area_Bottom);
     this.Controls.Add(this._frmMain_Toolbars_Dock_Area_Top);
     this.MinimumSize = new System.Drawing.Size(880, 660);
     this.Name        = "FrmBaseVoucherDetail";
     this.Text        = "FrmBaseVoucherDetail";
     this.Load       += new System.EventHandler(this.FrmBaseVoucherDetail_Load);
     ((System.ComponentModel.ISupportInitialize)(this.tbrManager)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.bsList)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.bsDetail)).EndInit();
     this.FrmBaseVoucherDetail_Fill_Panel.ClientArea.ResumeLayout(false);
     this.FrmBaseVoucherDetail_Fill_Panel.ResumeLayout(false);
     this.pnlDetail.ClientArea.ResumeLayout(false);
     this.pnlDetail.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.tabInfo)).EndInit();
     this.tabInfo.ResumeLayout(false);
     this.pnlInfo.ResumeLayout(false);
     this.pnlTitle.ClientArea.ResumeLayout(false);
     this.pnlTitle.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.dsDictionary)).EndInit();
     this.ResumeLayout(false);
 }