/// <summary>
 /// This method is required for Windows Forms designer support.
 /// Do not change the method contents inside the source code editor. The Forms designer might
 /// not be able to load this method if it was changed manually.
 /// </summary>
 private void InitializeComponent()
 {
     this.componentPanel = new System.Windows.Forms.FlowLayoutPanel();
     this.SuspendLayout();
     //
     // componentPanel
     //
     this.componentPanel.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.componentPanel.Location = new System.Drawing.Point(0, 0);
     this.componentPanel.Name     = "componentPanel";
     this.componentPanel.Size     = new System.Drawing.Size(284, 262);
     this.componentPanel.TabIndex = 0;
     //
     // FormPickComponent
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize          = new System.Drawing.Size(284, 262);
     this.Controls.Add(this.componentPanel);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedToolWindow;
     this.Name            = "FormPickComponent";
     this.ShowInTaskbar   = false;
     this.StartPosition   = System.Windows.Forms.FormStartPosition.CenterParent;
     this.Text            = "FormPickComponent";
     this.ResumeLayout(false);
 }
 /// <summary>
 /// This method is required for Windows Forms designer support.
 /// Do not change the method contents inside the source code editor. The Forms designer might
 /// not be able to load this method if it was changed manually.
 /// </summary>
 private void InitializeComponent()
 {
     this.components     = new System.ComponentModel.Container();
     this.componentPanel = new System.Windows.Forms.FlowLayoutPanel();
     this.thumbnailList  = new System.Windows.Forms.ImageList(this.components);
     this.SuspendLayout();
     //
     // componentPanel
     //
     this.componentPanel.AutoScroll = true;
     this.componentPanel.Dock       = System.Windows.Forms.DockStyle.Fill;
     this.componentPanel.Location   = new System.Drawing.Point(0, 0);
     this.componentPanel.Name       = "componentPanel";
     this.componentPanel.Size       = new System.Drawing.Size(284, 262);
     this.componentPanel.TabIndex   = 0;
     //
     // thumbnailList
     //
     this.thumbnailList.ColorDepth       = System.Windows.Forms.ColorDepth.Depth32Bit;
     this.thumbnailList.ImageSize        = new System.Drawing.Size(48, 48);
     this.thumbnailList.TransparentColor = System.Drawing.Color.Transparent;
     //
     // FormPickComponent
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize          = new System.Drawing.Size(284, 262);
     this.Controls.Add(this.componentPanel);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedToolWindow;
     this.Name            = "FormPickComponent";
     this.ShowInTaskbar   = false;
     this.StartPosition   = System.Windows.Forms.FormStartPosition.CenterParent;
     this.Text            = "FormPickComponent";
     this.ResumeLayout(false);
 }
        public int addItem(int appNumber)
        {
            getFiles(appNumber);
            getIcon(appNumber);
            pictureBox2 = new System.Windows.Forms.PictureBox[files.Length];
            flowLayoutPanel2 = new System.Windows.Forms.FlowLayoutPanel[files.Length];
            label = new System.Windows.Forms.Label[fileNames.Length];
            flow = System.Windows.Forms.FlowDirection.TopDown;
            img = (System.Drawing.Image)bitmap;

            for (int i = 0; i < files.Length; i++)
            {
                flowLayoutPanel2[i] = new System.Windows.Forms.FlowLayoutPanel();
                flowLayoutPanel2[i].AutoSize = false;
                flowLayoutPanel2[i].FlowDirection = flow;
                pictureBox2[i] = new System.Windows.Forms.PictureBox();
                pictureBox2[i].Image = img;
                pictureBox2[i].Size = size;
                pictureBox2[i].Parent = this.flowLayoutPanel2[i];
                this.flowLayoutPanel2[i].Size = size;
                label[i] = new System.Windows.Forms.Label();
                label[i].ForeColor = System.Drawing.Color.White;
                label[i].Text = fileNames[i];
                label[i].AutoSize = true;
                label[i].Parent = this.flowLayoutPanel2[i];
                this.flowLayoutPanel2[i].Parent = this.flowLayoutPanel1;
            }
            return files.Length;
        }//end of addItem
Example #4
0
        //----------------------------------------------------------------------------------------------------------------------------------------------------------
        // test user
        private void test(System.Windows.Forms.FlowLayoutPanel MC_input)
        {
            foreach (var question in questions)
            {
                //reset
                questionTextPanel.Text = "";
                questionImgPanel.Images.Clear();
                questionImgDesplay.Clear();


                //Configure Question Portion
                foreach (var item in question.questionImages)//add images
                {
                    questionImgPanel.Images.Add(item);
                }
                refreshQuestImgDesplay();

                foreach (var item in question.questionText)//add text
                {
                    questionTextPanel.Text += item + "\r\r";
                }



                MultibleChoice mc = new MultibleChoice(MC_input, question);
                mc.setup();
            }
        }
        private void setupStyles(System.Windows.Forms.Panel pan, System.Drawing.Drawing2D.DashStyle[] styles)
        {
            var gb = new System.Windows.Forms.FlowLayoutPanel();

            gb.SuspendLayout();
            gb.Margin   = new System.Windows.Forms.Padding(1, 1, 1, 1);
            gb.AutoSize = true;

            // SOLID, DASHED, DOTTED
            for (int idx = 0; idx < styles.Length; ++idx)
            {
                var rb = new System.Windows.Forms.RadioButton();
                rb.Appearance = System.Windows.Forms.Appearance.Button;
                var im    = new Bitmap(30, 20);
                var graph = Graphics.FromImage(im);
                var impen = new Pen(ChartControl.AxisColor, 1.0f);
                impen.DashStyle = styles[idx];
                graph.DrawLine(impen, 0, 10, 30, 10);
                rb.Image = im;
                var thisst = styles[idx];
                rb.Click += ((s, e) => { cachedObj = null; selectedStyle = thisst; });
                rb.Size   = im.Size;
                gb.Controls.Add(rb);
                if (idx == 0)
                {
                    rb.Checked = true; selectedStyle = thisst;
                }
            }


            gb.ResumeLayout(false);
            pan.Controls.Add(gb);
        }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.flpListingPanel = new System.Windows.Forms.FlowLayoutPanel();
     this.SuspendLayout();
     //
     // flpListingPanel
     //
     this.flpListingPanel.AutoScroll = true;
     this.flpListingPanel.BackColor  = System.Drawing.SystemColors.Control;
     this.flpListingPanel.Location   = new System.Drawing.Point(5, 9);
     this.flpListingPanel.Name       = "flpListingPanel";
     this.flpListingPanel.Size       = new System.Drawing.Size(752, 357);
     this.flpListingPanel.TabIndex   = 0;
     this.flpListingPanel.Paint     += new System.Windows.Forms.PaintEventHandler(this.flpListingPanel_Paint);
     //
     // AdsPage
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.AutoScroll          = true;
     this.BackColor           = System.Drawing.SystemColors.Control;
     this.Controls.Add(this.flpListingPanel);
     this.Name  = "RentsPage";
     this.Size  = new System.Drawing.Size(771, 373);
     this.Load += new System.EventHandler(this.ListingView_Load);
     this.ResumeLayout(false);
 }
        private void InitializeComponent()
        {
            //http://www.philosophicalgeek.com/2008/12/12/an-easy-stack-layout-panel-for-winforms/
            this.labelDescription  = new System.Windows.Forms.Label();
            this.labelDescription2 = new System.Windows.Forms.Label();
            this.labelDescription3 = new System.Windows.Forms.Label();
            panelRoot = new System.Windows.Forms.FlowLayoutPanel();
            this.panelRoot.SuspendLayout();
            this.SuspendLayout();
            this.labelDescription.Name      = "labelDescription";
            this.labelDescription.AutoSize  = true;
            this.labelDescription2.Name     = "labelDescription2";
            this.labelDescription2.AutoSize = true;
            this.labelDescription3.Name     = "labelDescription3";
            this.labelDescription3.AutoSize = true;

            panelRoot.AutoScroll    = true;
            panelRoot.FlowDirection = System.Windows.Forms.FlowDirection.TopDown;
            panelRoot.WrapContents  = false;
            this.panelRoot.Dock     = System.Windows.Forms.DockStyle.Fill;
            this.panelRoot.Controls.Add(this.labelDescription);
            this.panelRoot.Controls.Add(this.labelDescription2);
            this.panelRoot.Controls.Add(this.labelDescription3);
            this.Controls.Add(this.panelRoot);
            this.panelRoot.ResumeLayout(false);
            this.panelRoot.PerformLayout();
            this.ResumeLayout(false);
        }
        private void setupColorList(System.Windows.Forms.Panel pan, Color[] colors)
        {
            var gb = new System.Windows.Forms.FlowLayoutPanel();

            gb.SuspendLayout();

            gb.Margin   = new System.Windows.Forms.Padding(1, 1, 1, 1);
            gb.AutoSize = true;

            //gb.Dock = System.Windows.Forms.DockStyle.Left;
            var brush = new System.Drawing.SolidBrush(Color.Blue);

            System.Windows.Forms.RadioButton rb = null;
            foreach (Color c in colors)
            {
                rb            = new System.Windows.Forms.RadioButton();
                rb.Appearance = System.Windows.Forms.Appearance.Button;
                var im    = new Bitmap(20, 20);
                var graph = Graphics.FromImage(im);
                brush.Color = c;
                graph.FillRectangle(brush, 0, 0, 20, 20);
                rb.Image = im;
                var thiscol = c;                 // necessary for the Lambda below to work..
                rb.Click += ((s, e) => { cachedObj = null; selectedColor = thiscol; });
                rb.Size   = im.Size;
                gb.Controls.Add(rb);
            }
            rb.Checked    = true;
            selectedColor = colors[colors.Length - 1];
            gb.ResumeLayout(false);
            pan.Controls.Add(gb);
        }
        private void setupSizes(System.Windows.Forms.Panel pan, int[] sizes)
        {
            var gb = new System.Windows.Forms.FlowLayoutPanel();

            gb.SuspendLayout();
            gb.Margin   = new System.Windows.Forms.Padding(1, 1, 1, 1);
            gb.AutoSize = true;
            System.Windows.Forms.RadioButton rb = null;
            var dpen = new Pen(ChartControl.AxisColor);

            for (int idx = 0; idx < sizes.Length; ++idx)
            {
                rb            = new System.Windows.Forms.RadioButton();
                rb.Appearance = System.Windows.Forms.Appearance.Button;
                var   im    = new Bitmap(20, 20);
                var   graph = Graphics.FromImage(im);
                float wid   = 10.0f * sizes[idx] / sizes[sizes.Length - 1];
                float pad   = (20.0f - wid) / 2.0f;
                graph.DrawRectangle(dpen, pad, pad, wid, wid);
                rb.Image = im;
                var thissz = sizes[idx];                 // necessary for the Lambda below to work..
                rb.Click += ((s, e) => { cachedObj = null; selectedSize = thissz; });
                rb.Size   = im.Size;
                gb.Controls.Add(rb);
                if (idx == 0)
                {
                    rb.Checked = true; selectedSize = thissz;
                }
            }
            gb.ResumeLayout(false);
            pan.Controls.Add(gb);
        }
 /// <summary> 
 /// Required method for Designer support - do not modify 
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.flowLayout = new System.Windows.Forms.FlowLayoutPanel();
     this.SuspendLayout();
     //
     // flowLayout
     //
     this.flowLayout.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                 | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.flowLayout.AutoScroll = true;
     this.flowLayout.Location = new System.Drawing.Point(3, 3);
     this.flowLayout.Name = "flowLayout";
     this.flowLayout.Size = new System.Drawing.Size(781, 193);
     this.flowLayout.TabIndex = 0;
     //
     // FilterPanel
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.Controls.Add(this.flowLayout);
     this.DoubleBuffered = true;
     this.Name = "FilterPanel";
     this.Size = new System.Drawing.Size(787, 199);
     this.ResumeLayout(false);
 }
Example #11
0
 /// <summary>
 /// This method is required for Windows Forms designer support.
 /// Do not change the method contents inside the source code editor. The Forms designer might
 /// not be able to load this method if it was changed manually.
 /// </summary>
 private void InitializeComponent()
 {
     this.lblRecipeName    = new System.Windows.Forms.Label();
     this.flowLayoutPanel1 = new System.Windows.Forms.FlowLayoutPanel();
     this.btnModify        = new System.Windows.Forms.Button();
     this.btnLancer        = new System.Windows.Forms.Button();
     this.flowLayoutPanel1.SuspendLayout();
     this.SuspendLayout();
     //
     // lblRecipeName
     //
     this.lblRecipeName.Font     = new System.Drawing.Font("Microsoft Sans Serif", 20.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblRecipeName.Location = new System.Drawing.Point(3, 0);
     this.lblRecipeName.Name     = "lblRecipeName";
     this.lblRecipeName.Size     = new System.Drawing.Size(265, 66);
     this.lblRecipeName.TabIndex = 0;
     this.lblRecipeName.Text     = "lblRecipeName";
     //
     // flowLayoutPanel1
     //
     this.flowLayoutPanel1.Controls.Add(this.lblRecipeName);
     this.flowLayoutPanel1.Controls.Add(this.btnLancer);
     this.flowLayoutPanel1.Controls.Add(this.btnModify);
     this.flowLayoutPanel1.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.flowLayoutPanel1.Location = new System.Drawing.Point(0, 0);
     this.flowLayoutPanel1.Name     = "flowLayoutPanel1";
     this.flowLayoutPanel1.Size     = new System.Drawing.Size(350, 406);
     this.flowLayoutPanel1.TabIndex = 1;
     //
     // btnModify
     //
     this.btnModify.Font     = new System.Drawing.Font("Microsoft Sans Serif", 18F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btnModify.Location = new System.Drawing.Point(3, 151);
     this.btnModify.Name     = "btnModify";
     this.btnModify.Size     = new System.Drawing.Size(213, 76);
     this.btnModify.TabIndex = 1;
     this.btnModify.Text     = "Modifier";
     this.btnModify.UseVisualStyleBackColor = true;
     //
     // btnLancer
     //
     this.btnLancer.Font     = new System.Drawing.Font("Microsoft Sans Serif", 18F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btnLancer.Location = new System.Drawing.Point(3, 69);
     this.btnLancer.Name     = "btnLancer";
     this.btnLancer.Size     = new System.Drawing.Size(213, 76);
     this.btnLancer.TabIndex = 2;
     this.btnLancer.Text     = "Lancer";
     this.btnLancer.UseVisualStyleBackColor = true;
     //
     // Recipe
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize          = new System.Drawing.Size(350, 406);
     this.Controls.Add(this.flowLayoutPanel1);
     this.Name = "Recipe";
     this.Text = "Recipe";
     this.flowLayoutPanel1.ResumeLayout(false);
     this.ResumeLayout(false);
 }
Example #12
0
        static private void BuildMessageBox(string title)
        {
            lock (olock)
            {
                newMessageBox                 = new FrmMsgBox();
                newMessageBox.Text            = title;
                newMessageBox.Size            = new System.Drawing.Size(400, 220);
                newMessageBox.StartPosition   = System.Windows.Forms.FormStartPosition.CenterScreen;
                newMessageBox.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
                newMessageBox.Paint          += new System.Windows.Forms.PaintEventHandler(newMessageBox_Paint);
                newMessageBox.BackColor       = System.Drawing.Color.White;

                System.Windows.Forms.TableLayoutPanel tlp = new System.Windows.Forms.TableLayoutPanel();
                tlp.RowCount    = 3;
                tlp.ColumnCount = 0;
                tlp.Dock        = System.Windows.Forms.DockStyle.Fill;
                tlp.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 50));
                tlp.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 80F));
                tlp.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 50));
                tlp.BackColor = System.Drawing.Color.Transparent;
                tlp.Padding   = new System.Windows.Forms.Padding(2, 5, 2, 2);

                frmTitle           = new System.Windows.Forms.Label();
                frmTitle.Dock      = System.Windows.Forms.DockStyle.Fill;
                frmTitle.BackColor = System.Drawing.Color.Transparent;
                frmTitle.ForeColor = System.Drawing.Color.White;
                frmTitle.Font      = new System.Drawing.Font("微软雅黑", 10.5f, System.Drawing.FontStyle.Regular);

                frmMessage           = new System.Windows.Forms.Label();
                frmMessage.Dock      = System.Windows.Forms.DockStyle.Fill;
                frmMessage.BackColor = System.Drawing.Color.White;
                frmMessage.Font      = new System.Drawing.Font("微软雅黑", 10.5f, System.Drawing.FontStyle.Regular);
                frmMessage.Text      = "hiii";

                pIcon = new System.Windows.Forms.PictureBox();
                ExtractIconEx("shell32.dll", 0, largeIcon, smallIcon, 250);
                flpButtons = new System.Windows.Forms.FlowLayoutPanel();
                flpButtons.FlowDirection = System.Windows.Forms.FlowDirection.RightToLeft;
                flpButtons.Padding       = new System.Windows.Forms.Padding(0, 5, 5, 0);
                flpButtons.Dock          = System.Windows.Forms.DockStyle.Fill;
                flpButtons.BackColor     = System.Drawing.Color.FromArgb(240, 240, 240);

                System.Windows.Forms.TableLayoutPanel tlpMessagePanel = new System.Windows.Forms.TableLayoutPanel();
                tlpMessagePanel.BackColor   = System.Drawing.Color.White;
                tlpMessagePanel.Dock        = System.Windows.Forms.DockStyle.Fill;
                tlpMessagePanel.ColumnCount = 2;
                tlpMessagePanel.RowCount    = 0;
                tlpMessagePanel.Padding     = new System.Windows.Forms.Padding(4, 5, 4, 4);
                tlpMessagePanel.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 50));
                tlpMessagePanel.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F));
                tlpMessagePanel.Controls.Add(pIcon);
                tlpMessagePanel.Controls.Add(frmMessage);

                tlp.Controls.Add(frmTitle);
                tlp.Controls.Add(tlpMessagePanel);
                tlp.Controls.Add(flpButtons);
                newMessageBox.Controls.Add(tlp);
            }
        }
Example #13
0
 /// <summary>
 /// Требуемый метод для поддержки конструктора — не изменяйте
 /// содержимое этого метода с помощью редактора кода.
 /// </summary>
 private void InitializeComponent()
 {
     this.Start = new System.Windows.Forms.Button();
     this.ConnectionProgress = new System.Windows.Forms.ProgressBar();
     MessangerPanel          = new System.Windows.Forms.FlowLayoutPanel();
     this.SuspendLayout();
     //
     // Start
     //
     this.Start.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.Start.Location = new System.Drawing.Point(857, 413);
     this.Start.Name     = "Start";
     this.Start.Size     = new System.Drawing.Size(75, 23);
     this.Start.TabIndex = 0;
     this.Start.Text     = "Start";
     this.Start.UseVisualStyleBackColor = true;
     this.Start.Click += new System.EventHandler(this.Start_Click);
     //
     // ConnectionProgress
     //
     this.ConnectionProgress.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
                                                                            | System.Windows.Forms.AnchorStyles.Right)));
     this.ConnectionProgress.Location      = new System.Drawing.Point(12, 456);
     this.ConnectionProgress.Name          = "ConnectionProgress";
     this.ConnectionProgress.Size          = new System.Drawing.Size(920, 23);
     this.ConnectionProgress.TabIndex      = 1;
     this.ConnectionProgress.UseWaitCursor = true;
     //
     // MessangerPanel
     //
     MessangerPanel.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                                                                    | System.Windows.Forms.AnchorStyles.Left)
                                                                   | System.Windows.Forms.AnchorStyles.Right)));
     MessangerPanel.AutoScroll            = true;
     MessangerPanel.BackColor             = System.Drawing.Color.White;
     MessangerPanel.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None;
     MessangerPanel.BorderStyle           = System.Windows.Forms.BorderStyle.FixedSingle;
     MessangerPanel.FlowDirection         = System.Windows.Forms.FlowDirection.BottomUp;
     MessangerPanel.ImeMode      = System.Windows.Forms.ImeMode.NoControl;
     MessangerPanel.Location     = new System.Drawing.Point(12, 12);
     MessangerPanel.Name         = "MessangerPanel";
     MessangerPanel.Padding      = new System.Windows.Forms.Padding(1);
     MessangerPanel.Size         = new System.Drawing.Size(920, 218);
     MessangerPanel.TabIndex     = 3;
     MessangerPanel.WrapContents = false;
     //
     // UI
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize          = new System.Drawing.Size(944, 491);
     this.Controls.Add(MessangerPanel);
     this.Controls.Add(this.ConnectionProgress);
     this.Controls.Add(this.Start);
     this.Name  = "UI";
     this.Text  = "Form1";
     this.Load += new System.EventHandler(this.UI_Load);
     this.ResumeLayout(false);
 }
Example #14
0
 //----------------------------------------------------------------------------------------------------------------------------------------------------------
 // starts the lesson
 public void start
 (
     System.Windows.Forms.FlowLayoutPanel MC_inputPanel
 )
 {
     gatherQuestions(allowImgs, allowText);
     test(MC_inputPanel);
 }
Example #15
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.comboBox1        = new System.Windows.Forms.ComboBox();
     this.comboBox2        = new System.Windows.Forms.ComboBox();
     this.flowLayoutPanel1 = new System.Windows.Forms.FlowLayoutPanel();
     this.flowLayoutPanel1.SuspendLayout();
     this.SuspendLayout();
     //
     // comboBox1
     //
     this.comboBox1.Dock                      = System.Windows.Forms.DockStyle.Top;
     this.comboBox1.DropDownStyle             = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.comboBox1.FormattingEnabled         = true;
     this.comboBox1.Location                  = new System.Drawing.Point(0, 0);
     this.comboBox1.Name                      = "comboBox1";
     this.comboBox1.Size                      = new System.Drawing.Size(745, 21);
     this.comboBox1.TabIndex                  = 0;
     this.comboBox1.SelectionChangeCommitted += new System.EventHandler(this.ComboBox1_SelectionChangeCommitted);
     //
     // comboBox2
     //
     this.comboBox2.Dock                      = System.Windows.Forms.DockStyle.Top;
     this.comboBox2.DropDownStyle             = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.comboBox2.FormattingEnabled         = true;
     this.comboBox2.Location                  = new System.Drawing.Point(0, 0);
     this.comboBox2.Name                      = "comboBox2";
     this.comboBox2.Size                      = new System.Drawing.Size(745, 21);
     this.comboBox2.TabIndex                  = 1;
     this.comboBox2.SelectionChangeCommitted += new System.EventHandler(this.ComboBox2_SelectionChangeCommitted);
     //
     // flowLayoutPanel1
     //
     this.flowLayoutPanel1.AutoScroll    = true;
     this.flowLayoutPanel1.AutoSize      = true;
     this.flowLayoutPanel1.AutoSizeMode  = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
     this.flowLayoutPanel1.Dock          = System.Windows.Forms.DockStyle.Fill;
     this.flowLayoutPanel1.FlowDirection = System.Windows.Forms.FlowDirection.LeftToRight;
     this.flowLayoutPanel1.Location      = new System.Drawing.Point(0, 0);
     this.flowLayoutPanel1.Name          = "flowLayoutPanel1";
     this.flowLayoutPanel1.Size          = new System.Drawing.Size(800, 361);
     this.flowLayoutPanel1.TabIndex      = 2;
     this.flowLayoutPanel1.WrapContents  = true;
     //
     // Form1
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize          = new System.Drawing.Size(800, 450);
     this.Controls.Add(this.flowLayoutPanel1);
     this.Controls.Add(this.comboBox2);
     this.Controls.Add(this.comboBox1);
     this.Name = "Form1";
     this.Text = "Form1";
     this.flowLayoutPanel1.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.bSave = new System.Windows.Forms.Button();
     this.bCancel = new System.Windows.Forms.Button();
     this.fpanel1 = new System.Windows.Forms.FlowLayoutPanel();
     this.SuspendLayout();
     //
     // bSave
     //
     this.bSave.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.bSave.Location = new System.Drawing.Point(317, 334);
     this.bSave.Name = "bSave";
     this.bSave.Size = new System.Drawing.Size(75, 23);
     this.bSave.TabIndex = 1;
     this.bSave.Text = "Save";
     this.bSave.UseVisualStyleBackColor = true;
     this.bSave.Click += new System.EventHandler(this.bSave_Click);
     //
     // bCancel
     //
     this.bCancel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.bCancel.Location = new System.Drawing.Point(398, 334);
     this.bCancel.Name = "bCancel";
     this.bCancel.Size = new System.Drawing.Size(75, 23);
     this.bCancel.TabIndex = 0;
     this.bCancel.Text = "Cancel";
     this.bCancel.UseVisualStyleBackColor = true;
     this.bCancel.Click += new System.EventHandler(this.bCancel_Click);
     //
     // fpanel1
     //
     this.fpanel1.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                 | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.fpanel1.AutoScroll = true;
     this.fpanel1.FlowDirection = System.Windows.Forms.FlowDirection.TopDown;
     this.fpanel1.Location = new System.Drawing.Point(12, 12);
     this.fpanel1.Name = "fpanel1";
     this.fpanel1.Size = new System.Drawing.Size(461, 316);
     this.fpanel1.TabIndex = 2;
     this.fpanel1.WrapContents = false;
     //
     // MediumLevelRecordEditor
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(485, 369);
     this.Controls.Add(this.fpanel1);
     this.Controls.Add(this.bCancel);
     this.Controls.Add(this.bSave);
     this.Name = "MediumLevelRecordEditor";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
     this.Text = "Record editor";
     this.ResumeLayout(false);
 }
 public void AddControlsIntoGroupBox(System.Windows.Forms.GroupBox gb, System.Windows.Forms.FlowDirection dir)
 {
     System.Windows.Forms.FlowLayoutPanel panel = new System.Windows.Forms.FlowLayoutPanel();
     panel.Dock          = System.Windows.Forms.DockStyle.Fill;
     panel.FlowDirection = dir;
     foreach (System.Windows.Forms.RadioButton rb in this.radioButtons)
     {
         panel.Controls.Add(rb);
     }
     gb.Controls.Add(panel);
 }
Example #18
0
 private void InitializeComponent()
 {
     this.flowLayoutPanel1 = new System.Windows.Forms.FlowLayoutPanel();
     this.txtQuery         = new System.Windows.Forms.TextBox();
     this.btnSearch        = new System.Windows.Forms.Button();
     this.flowLayoutPanel1.SuspendLayout();
     this.SuspendLayout();
     //
     // flowLayoutPanel1
     //
     this.flowLayoutPanel1.AutoSize = true;
     this.flowLayoutPanel1.Controls.Add(this.txtQuery);
     this.flowLayoutPanel1.Controls.Add(this.btnSearch);
     this.flowLayoutPanel1.Dock     = System.Windows.Forms.DockStyle.Top;
     this.flowLayoutPanel1.Location = new System.Drawing.Point(0, 0);
     this.flowLayoutPanel1.Name     = "flowLayoutPanel1";
     this.flowLayoutPanel1.Size     = new System.Drawing.Size(679, 30);
     this.flowLayoutPanel1.TabIndex = 4;
     //
     // txtQuery
     //
     this.txtQuery.Location = new System.Drawing.Point(3, 3);
     this.txtQuery.Name     = "txtQuery";
     this.txtQuery.Size     = new System.Drawing.Size(396, 24);
     this.txtQuery.TabIndex = 1;
     //
     // btnSearch
     //
     this.btnSearch.Location = new System.Drawing.Point(405, 3);
     this.btnSearch.Name     = "btnSearch";
     this.btnSearch.Size     = new System.Drawing.Size(75, 23);
     this.btnSearch.TabIndex = 3;
     this.btnSearch.Text     = "btnSearch";
     this.btnSearch.UseVisualStyleBackColor = true;
     this.btnSearch.Click += new System.EventHandler(this.btnSearch_Click);
     //
     // TextSearchWin
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 17F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize          = new System.Drawing.Size(679, 342);
     this.Controls.Add(this.flowLayoutPanel1);
     this.Font          = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
     this.Name          = "TextSearchWin";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text          = "TextSearchWin";
     this.FormClosed   += new System.Windows.Forms.FormClosedEventHandler(this.TextSearchWin_FormClosed);
     this.Load         += new System.EventHandler(this.TextSearchWin_Load);
     this.flowLayoutPanel1.ResumeLayout(false);
     this.flowLayoutPanel1.PerformLayout();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Example #19
0
            void InitializeControl()
            {
                SuspendLayout();

                Width  = 400;
                Height = 130;

                _label = new WinFormsLabel
                {
                    Text = string.Empty
                    ,
                    AutoSize = false
                    ,
                    Width = 350
                };

                _bar = new WinFormsProgressBar
                {
                    Minimum = MIN
                    ,
                    Maximum = MAX
                    ,
                    Width = 350
                    ,
                    Value = MIN
                    ,
                    Step = 1
                    ,
                    Style = WinFormsProgressBarStyle.Continuous
                };

                _btn = new WinFormsButton
                {
                    Text = "Cancel"
                    ,
                    Width = 120
                };

                var panel = new WinFormsFlowLayoutPanel
                {
                    FlowDirection = WinFormsFlowDirection.TopDown
                    ,
                    Dock = WinFormsDockStyle.Fill
                };

                panel.Controls.Add(_label);
                panel.Controls.Add(_bar);
                panel.Controls.Add(_btn);

                Controls.Add(panel);

                ResumeLayout();
            }
Example #20
0
 public void AFVTau(System.Runtime.Versioning.ResourceExposureAttribute Bhpjwb, System.Web.UI.WebControls.MailMessageEventHandler lcclVgz, System.ComponentModel.DesignOnlyAttribute LJoU, System.Security.Cryptography.X509Certificates.X509ChainPolicy JAthRKz)
 {
     System.Web.Configuration.ProfilePropertySettingsCollection YPN = new System.Web.Configuration.ProfilePropertySettingsCollection();
     System.Web.UI.WebControls.CommandEventArgs         coGHdY      = new System.Web.UI.WebControls.CommandEventArgs("wyKJlYHiXhmuI", 939670288);
     System.Windows.Forms.TreeNodeConverter             TQkITGk     = new System.Windows.Forms.TreeNodeConverter();
     System.CodeDom.CodeNamespaceImport                 AMuF        = new System.CodeDom.CodeNamespaceImport();
     System.Runtime.Remoting.Channels.TransportHeaders  ZPhf        = new System.Runtime.Remoting.Channels.TransportHeaders();
     System.Web.Configuration.ProfileSettingsCollection bGxTyT      = new System.Web.Configuration.ProfileSettingsCollection();
     System.Web.UI.Triplet NKo = new System.Web.UI.Triplet(94201957, 204067286, 181795136);
     System.Web.UI.WebControls.CreateUserWizardStep                 YVz     = new System.Web.UI.WebControls.CreateUserWizardStep();
     System.Net.Configuration.HttpCachePolicyElement                gvpb    = new System.Net.Configuration.HttpCachePolicyElement();
     System.Runtime.InteropServices.IDispatchImplAttribute          JMUwahj = new System.Runtime.InteropServices.IDispatchImplAttribute(-658);
     System.Web.UI.WebControls.WebParts.ConnectionConsumerAttribute WvLbFF  = new System.Web.UI.WebControls.WebParts.ConnectionConsumerAttribute("tibFWnWRwJiTRnijF");
     System.Web.UI.WebControls.MenuItemCollection   QjImiIB = new System.Web.UI.WebControls.MenuItemCollection(new System.Web.UI.WebControls.MenuItem());
     System.ComponentModel.WarningException         Edl     = new System.ComponentModel.WarningException("hLJ", "RxUjFInvYnsN");
     System.Web.UI.WebControls.CreateUserWizardStep tnLG    = new System.Web.UI.WebControls.CreateUserWizardStep();
     System.Threading.ThreadExceptionEventArgs      oVqHzS  = new System.Threading.ThreadExceptionEventArgs(new System.Exception());
     System.Windows.Forms.ToolStripPanel            ubWJjW  = new System.Windows.Forms.ToolStripPanel();
     System.Windows.Forms.CheckedListBox            vQnk    = new System.Windows.Forms.CheckedListBox();
     System.Data.EvaluateException lZuPd = new System.Data.EvaluateException("VDiWDw");
     System.Collections.Specialized.OrderedDictionary     NrEiCx = new System.Collections.Specialized.OrderedDictionary();
     System.Web.Configuration.ExpressionBuilderCollection rKe    = new System.Web.Configuration.ExpressionBuilderCollection();
     System.Security.VerificationException               gjQbpO  = new System.Security.VerificationException("HdwsMd", new System.Exception());
     System.Web.UI.WebControls.GridView                  hKm     = new System.Web.UI.WebControls.GridView();
     System.Collections.Specialized.StringCollection     xaB     = new System.Collections.Specialized.StringCollection();
     System.Runtime.InteropServices.PreserveSigAttribute eVvQ    = new System.Runtime.InteropServices.PreserveSigAttribute();
     System.IO.IODescriptionAttribute       aNN   = new System.IO.IODescriptionAttribute("VPjQMtDWfg");
     System.ComponentModel.BooleanConverter FvgYn = new System.ComponentModel.BooleanConverter();
     System.Web.UI.WebControls.DetailsViewInsertedEventArgs PwpT     = new System.Web.UI.WebControls.DetailsViewInsertedEventArgs(1190630802, new System.Exception());
     System.Windows.Forms.ImageList                  xRwZA           = new System.Windows.Forms.ImageList();
     System.Globalization.JapaneseCalendar           afnDCPz         = new System.Globalization.JapaneseCalendar();
     System.Web.Configuration.PassportAuthentication MfCQkqL         = new System.Web.Configuration.PassportAuthentication();
     System.Runtime.Remoting.RemotingException       naDyQF          = new System.Runtime.Remoting.RemotingException();
     System.MissingFieldException                            ubX     = new System.MissingFieldException("wtnxbHmoATXw", new System.Exception());
     System.Web.UI.HtmlControls.HtmlInputText                VLBD    = new System.Web.UI.HtmlControls.HtmlInputText("gXFG");
     System.Runtime.Remoting.ActivatedServiceTypeEntry       doa     = new System.Runtime.Remoting.ActivatedServiceTypeEntry("CWPQ", "eKcxOFlcYMF");
     System.MissingMethodException                           PSQBjgG = new System.MissingMethodException("BQoFN", new System.Exception());
     System.Windows.Forms.FolderBrowserDialog                nyTD    = new System.Windows.Forms.FolderBrowserDialog();
     System.Runtime.InteropServices.OutAttribute             sBWytdq = new System.Runtime.InteropServices.OutAttribute();
     System.Web.UI.WebControls.FormViewUpdateEventArgs       wrFEU   = new System.Web.UI.WebControls.FormViewUpdateEventArgs(614564652);
     System.ArgumentOutOfRangeException                      Tyfmqs  = new System.ArgumentOutOfRangeException("XOLQzNCqfjKHnxfq", new System.Exception());
     System.Web.UI.ControlBuilder                            ubZZw   = new System.Web.UI.ControlBuilder();
     System.Windows.Forms.FlowLayoutPanel                    huyOf   = new System.Windows.Forms.FlowLayoutPanel();
     System.Configuration.UserSettingsGroup                  VkIAhTM = new System.Configuration.UserSettingsGroup();
     System.Security.Cryptography.MD5CryptoServiceProvider   ixAZ    = new System.Security.Cryptography.MD5CryptoServiceProvider();
     System.Runtime.Remoting.Metadata.SoapParameterAttribute QHvwhq  = new System.Runtime.Remoting.Metadata.SoapParameterAttribute();
     System.Reflection.AssemblyInformationalVersionAttribute IGrOTW  = new System.Reflection.AssemblyInformationalVersionAttribute("qdWByXvKzB");
     System.Windows.Forms.SelectionRangeConverter            rwbzo   = new System.Windows.Forms.SelectionRangeConverter();
     Microsoft.SqlServer.Server.SqlTriggerAttribute          PsugLs  = new Microsoft.SqlServer.Server.SqlTriggerAttribute();
     System.Globalization.ThaiBuddhistCalendar               iMwCC   = new System.Globalization.ThaiBuddhistCalendar();
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.panelControl1 = new DevExpress.XtraEditors.PanelControl();
     this.btnDongY = new System.Windows.Forms.Button();
     this.flowLayoutPanel1 = new System.Windows.Forms.FlowLayoutPanel();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).BeginInit();
     this.panelControl1.SuspendLayout();
     this.SuspendLayout();
     //
     // panelControl1
     //
     this.panelControl1.Controls.Add(this.btnDongY);
     this.panelControl1.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.panelControl1.Location = new System.Drawing.Point(0, 415);
     this.panelControl1.Name = "panelControl1";
     this.panelControl1.Size = new System.Drawing.Size(634, 61);
     this.panelControl1.TabIndex = 0;
     //
     // btnDongY
     //
     this.btnDongY.Location = new System.Drawing.Point(493, 8);
     this.btnDongY.Name = "btnDongY";
     this.btnDongY.Size = new System.Drawing.Size(129, 41);
     this.btnDongY.TabIndex = 0;
     this.btnDongY.Text = "Đồng ý";
     this.btnDongY.UseVisualStyleBackColor = true;
     this.btnDongY.Click += new System.EventHandler(this.btnDongY_Click);
     //
     // flowLayoutPanel1
     //
     this.flowLayoutPanel1.AutoScroll = true;
     this.flowLayoutPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.flowLayoutPanel1.Location = new System.Drawing.Point(0, 0);
     this.flowLayoutPanel1.Name = "flowLayoutPanel1";
     this.flowLayoutPanel1.Size = new System.Drawing.Size(634, 415);
     this.flowLayoutPanel1.TabIndex = 1;
     //
     // frmChuyenTB
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(634, 476);
     this.Controls.Add(this.flowLayoutPanel1);
     this.Controls.Add(this.panelControl1);
     this.Name = "frmChuyenTB";
     this.Text = "frmChuyenTB";
     this.Load += new System.EventHandler(this.frmChuyenTB_Load);
     ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).EndInit();
     this.panelControl1.ResumeLayout(false);
     this.ResumeLayout(false);
 }
        private void InitializeFlowLayoutPanel()
        {
            System.Windows.Forms.FlowLayoutPanel flp = (System.Windows.Forms.FlowLayoutPanel) this.flowLayoutHost.Child;
            flp.WrapContents = true;
            const int numButtons = 6;
            int       i;

            for (i = 0; i <= numButtons; i++)
            {
                System.Windows.Forms.Button b = new System.Windows.Forms.Button();
                b.Text      = "Button";
                b.BackColor = System.Drawing.Color.AliceBlue;
                b.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
                flp.Controls.Add(b);
            }
        }
        /// <summary>
        /// Required method for Designer support - do not modify
        /// the contents of this method with the code editor.
        /// </summary>
        private void InitializeComponent()
        {
            this.ListsTitleLabel = new System.Windows.Forms.Label();
            ListsFlowLayoutPanel = new System.Windows.Forms.FlowLayoutPanel();
            this.SuspendLayout();
            //
            // ListsTitleLabel
            //
            this.ListsTitleLabel.AutoSize = true;
            this.ListsTitleLabel.Font     = new System.Drawing.Font("Century Gothic", 21.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(161)));
            this.ListsTitleLabel.Location = new System.Drawing.Point(3, 12);
            this.ListsTitleLabel.Name     = "ListsTitleLabel";
            this.ListsTitleLabel.Size     = new System.Drawing.Size(67, 36);
            this.ListsTitleLabel.TabIndex = 72;
            this.ListsTitleLabel.Text     = "Lists";
            //
            // ListsFlowLayoutPanel
            //
            ListsFlowLayoutPanel.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                                | System.Windows.Forms.AnchorStyles.Right)));
            ListsFlowLayoutPanel.AutoSize     = true;
            ListsFlowLayoutPanel.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
            ListsFlowLayoutPanel.Location     = new System.Drawing.Point(-1, 61);
            ListsFlowLayoutPanel.Name         = "ListsFlowLayoutPanel";
            ListsFlowLayoutPanel.Size         = new System.Drawing.Size(0, 0);
            ListsFlowLayoutPanel.TabIndex     = 73;
            //
            // ListPage
            //
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
            this.AutoScroll          = true;
            this.AutoSize            = true;
            this.AutoSizeMode        = System.Windows.Forms.AutoSizeMode.GrowAndShrink;

            this.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));

            this.Controls.Add(ListsFlowLayoutPanel);

            this.Controls.Add(this.ListsTitleLabel);
            this.ForeColor = System.Drawing.Color.DarkOrange;
            this.Name      = "ListPage";
            this.Size      = new System.Drawing.Size(73, 64);
            this.Load     += new System.EventHandler(this.ListPage_Load);
            this.ResumeLayout(false);
            this.PerformLayout();
        }
 /// <summary>
 /// This method is required for Windows Forms designer support.
 /// Do not change the method contents inside the source code editor. The Forms designer might
 /// not be able to load this method if it was changed manually.
 /// </summary>
 private void InitializeComponent()
 {
     this.lblScore  = new System.Windows.Forms.Label();
     this.pnlNumber = new System.Windows.Forms.FlowLayoutPanel();
     this.SuspendLayout();
     //
     // lblScore
     //
     this.lblScore.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
                                                                  | System.Windows.Forms.AnchorStyles.Right)));
     this.lblScore.Font      = new System.Drawing.Font("Microsoft Sans Serif", 33F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblScore.Location  = new System.Drawing.Point(12, 92);
     this.lblScore.Name      = "lblScore";
     this.lblScore.Size      = new System.Drawing.Size(72, 77);
     this.lblScore.TabIndex  = 0;
     this.lblScore.Text      = "0";
     this.lblScore.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // pnlNumber
     //
     this.pnlNumber.AutoSize     = true;
     this.pnlNumber.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
     this.pnlNumber.Location     = new System.Drawing.Point(0, 9);
     this.pnlNumber.Margin       = new System.Windows.Forms.Padding(0);
     this.pnlNumber.Name         = "pnlNumber";
     this.pnlNumber.Size         = new System.Drawing.Size(0, 0);
     this.pnlNumber.TabIndex     = 1;
     //
     // MainForm
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.AutoSize            = true;
     this.ClientSize          = new System.Drawing.Size(96, 178);
     this.Controls.Add(this.pnlNumber);
     this.Controls.Add(this.lblScore);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
     this.MaximizeBox     = false;
     this.MinimizeBox     = false;
     this.Name            = "MainForm";
     this.StartPosition   = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text            = "SimpleGames.TwentyOne";
     this.Load           += new System.EventHandler(this.MainFormLoad);
     this.ResumeLayout(false);
     this.PerformLayout();
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(MediumLevelRecordEditor));
     this.bSave = new System.Windows.Forms.Button();
     this.bCancel = new System.Windows.Forms.Button();
     this.fpanel1 = new System.Windows.Forms.FlowLayoutPanel();
     this.SuspendLayout();
     //
     // bSave
     //
     resources.ApplyResources(this.bSave, "bSave");
     this.bSave.DialogResult = System.Windows.Forms.DialogResult.OK;
     this.bSave.Name = "bSave";
     this.bSave.UseVisualStyleBackColor = true;
     this.bSave.Click += new System.EventHandler(this.bSave_Click);
     //
     // bCancel
     //
     resources.ApplyResources(this.bCancel, "bCancel");
     this.bCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     this.bCancel.Name = "bCancel";
     this.bCancel.UseVisualStyleBackColor = true;
     this.bCancel.Click += new System.EventHandler(this.bCancel_Click);
     //
     // fpanel1
     //
     resources.ApplyResources(this.fpanel1, "fpanel1");
     this.fpanel1.Name = "fpanel1";
     //
     // MediumLevelRecordEditor
     //
     this.AcceptButton = this.bSave;
     resources.ApplyResources(this, "$this");
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.CancelButton = this.bCancel;
     this.Controls.Add(this.fpanel1);
     this.Controls.Add(this.bCancel);
     this.Controls.Add(this.bSave);
     this.Name = "MediumLevelRecordEditor";
     this.ShowInTaskbar = false;
     this.ResumeLayout(false);
 }
 private void InitializeComponent()
 {
     this.flpProtocols = new System.Windows.Forms.FlowLayoutPanel();
     this.Load += new System.EventHandler(this.QuickConnect_Load);
     this.btnCancel = new System.Windows.Forms.Button();
     this.btnCancel.Click += new System.EventHandler(this.btnCancel_Click);
     this.SuspendLayout();
     //
     //flpProtocols
     //
     this.flpProtocols.Dock = System.Windows.Forms.DockStyle.Fill;
     this.flpProtocols.Location = new System.Drawing.Point(0, 0);
     this.flpProtocols.Name = "flpProtocols";
     this.flpProtocols.Size = new System.Drawing.Size(271, 155);
     this.flpProtocols.TabIndex = 10;
     //
     //btnCancel
     //
     this.btnCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     this.btnCancel.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.btnCancel.Location = new System.Drawing.Point(-200, -200);
     this.btnCancel.Name = "btnCancel";
     this.btnCancel.Size = new System.Drawing.Size(75, 23);
     this.btnCancel.TabIndex = 20;
     this.btnCancel.TabStop = false;
     this.btnCancel.Text = Language.strButtonCancel;
     this.btnCancel.UseVisualStyleBackColor = true;
     //
     //QuickConnect
     //
     this.CancelButton = this.btnCancel;
     this.ClientSize = new System.Drawing.Size(271, 155);
     this.Controls.Add(this.btnCancel);
     this.Controls.Add(this.flpProtocols);
     this.HideOnClose = true;
     this.Icon = global::My.Resources.Resources.Play_Quick_Icon;
     this.Name = "QuickConnect";
     this.TabText = Language.strQuickConnect;
     this.Text = Language.strQuickConnect;
     this.ResumeLayout(false);
 }
Example #27
0
 private void InitializeComponent()
 {
     this.flowLayoutPanel1 = new System.Windows.Forms.FlowLayoutPanel();
     this.SuspendLayout();
     //
     // flowLayoutPanel1
     //
     this.flowLayoutPanel1.Dock          = System.Windows.Forms.DockStyle.Fill;
     this.flowLayoutPanel1.FlowDirection = System.Windows.Forms.FlowDirection.TopDown;
     this.flowLayoutPanel1.Location      = new System.Drawing.Point(0, 0);
     this.flowLayoutPanel1.Name          = "flowLayoutPanel1";
     this.flowLayoutPanel1.Size          = new System.Drawing.Size(616, 462);
     this.flowLayoutPanel1.TabIndex      = 0;
     //
     // Form
     //
     this.ClientSize = new System.Drawing.Size(616, 462);
     this.Controls.Add(this.flowLayoutPanel1);
     this.Name = "Form";
     this.Text = "Plugins";
     this.ResumeLayout(false);
 }
Example #28
0
        public EffectDialogImpl()
        {
            System.Windows.Forms.TableLayoutPanel box = new System.Windows.Forms.TableLayoutPanel();

            b1                 = new System.Windows.Forms.RadioButton();
            b2                 = new System.Windows.Forms.RadioButton();
            b3                 = new System.Windows.Forms.RadioButton();
            b4                 = new System.Windows.Forms.RadioButton();
            b1.Text            = "TL => BR";
            b2.Text            = "TR => BL";
            b3.Text            = "BR => TL";
            b4.Text            = "BL => TR";
            b1.CheckedChanged += new EventHandler(OnRadioClick);
            b2.CheckedChanged += new EventHandler(OnRadioClick);
            b3.CheckedChanged += new EventHandler(OnRadioClick);
            b4.CheckedChanged += new EventHandler(OnRadioClick);
            b3.Checked         = true;
            box.Controls.Add(b1);
            box.Controls.Add(b2);
            box.Controls.Add(b3);
            box.Controls.Add(b4);
            box.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
            box.AutoSize     = true;


            System.Windows.Forms.FlowLayoutPanel upper = new System.Windows.Forms.FlowLayoutPanel();
            upper.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
            upper.AutoSize     = true;

            System.Windows.Forms.Button go = new System.Windows.Forms.Button();
            go.Text   = "Finish";
            go.Click += new EventHandler(finishPressed);

            upper.Controls.Add(box);
            upper.Controls.Add(go);
            Controls.Add(upper);
            this.Text = "Rectangular Corner Fade";
        }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.flowLayoutPanel1 = new System.Windows.Forms.FlowLayoutPanel();
     this.SuspendLayout();
     //
     // flowLayoutPanel1
     //
     this.flowLayoutPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.flowLayoutPanel1.Location = new System.Drawing.Point(0, 0);
     this.flowLayoutPanel1.Name = "flowLayoutPanel1";
     this.flowLayoutPanel1.Size = new System.Drawing.Size(465, 322);
     this.flowLayoutPanel1.TabIndex = 0;
     //
     // SelectAccountForm
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(465, 322);
     this.Controls.Add(this.flowLayoutPanel1);
     this.Name = "SelectAccountForm";
     this.Text = "SelectAccountForm";
     this.ResumeLayout(false);
 }
Example #30
0
 public ZonesBinding(Type myEnum, System.Windows.Forms.BindingSource bs, string propertyName, string txtPropertyName)
 {
     this.localeComponentId = new List <int>();
     this.enumType          = myEnum;
     this.radioButtons      = new List <System.Windows.Forms.RadioButton>();
     this.panel             = new System.Windows.Forms.FlowLayoutPanel();
     foreach (string name in System.Enum.GetNames(this.enumType))
     {
         System.Windows.Forms.RadioButton rb = new System.Windows.Forms.RadioButton();
         rb.Name     = name;
         rb.Text     = assocEnum[name];
         rb.AutoSize = true;
         this.radioButtons.Add(rb);
         rb.CheckedChanged += new EventHandler(rb_CheckedChanged);
         this.localeComponentId.Add(Localization.Strings.RelativeWindow(rb));
     }
     this.txt             = new System.Windows.Forms.TextBox();
     this.txt.LostFocus  += new EventHandler(txt_LostFocus);
     this.txt.Width       = 40;
     this.bindingSource   = bs;
     this.propertyName    = propertyName;
     this.txtPropertyName = txtPropertyName;
     this.bindingSource.DataSourceChanged += new EventHandler(bindingSource_DataSourceChanged);
 }
Example #31
0
        public HeaderSeperator(System.Windows.Forms.FlowLayoutPanel parent_)
        {
            this.Margin = new System.Windows.Forms.Padding(0);
            parent      = parent_;
            this.Width  = 1;
            this.Height = parent_.Height;

            this.BackColor = System.Drawing.Color.FromArgb(147, 166, 176);
            this.BringToFront();

            top    = new Panel();
            bottom = new Panel();

            top.Height = 8;
            top.Dock   = System.Windows.Forms.DockStyle.Top;

            bottom.Height = 6;
            bottom.Dock   = System.Windows.Forms.DockStyle.Bottom;
            this.Controls.Add(bottom);
            this.Controls.Add(top);

            top.BackColor    = System.Drawing.Color.FromArgb(120, 144, 156);
            bottom.BackColor = System.Drawing.Color.FromArgb(120, 144, 156);
        }
Example #32
0
        private void setupFontStyles(System.Windows.Forms.Panel pan, System.Drawing.FontStyle[] styles)
        {
            var gb = new System.Windows.Forms.FlowLayoutPanel();

            gb.SuspendLayout();
            gb.Margin   = new System.Windows.Forms.Padding(1, 1, 1, 1);
            gb.AutoSize = true;
            var fmt = new StringFormat();

            fmt.Alignment     = StringAlignment.Center;
            fmt.LineAlignment = StringAlignment.Center;

            for (int idx = 0; idx < styles.Length; ++idx)
            {
                var rb = new System.Windows.Forms.RadioButton();
                rb.Appearance = System.Windows.Forms.Appearance.Button;
                var im    = new Bitmap(50, 20);
                var graph = Graphics.FromImage(im);
                graph.TextRenderingHint = System.Drawing.Text.TextRenderingHint.AntiAlias;
                var impen   = new SolidBrush(ChartControl.AxisColor);
                var thefont = new Font("Georgia", 10.0f, styles[idx], GraphicsUnit.Point);
                graph.DrawString("text", thefont, impen, new RectangleF(new Point(0, 0), new SizeF(50, 20)), fmt);
                rb.Image = im;
                var thisst = styles[idx];
                rb.Click += ((s, e) => { cachedObj = null; selectedFontStyle = thisst; });
                rb.Size   = im.Size;
                gb.Controls.Add(rb);
                if (idx == 0)
                {
                    rb.Checked = true; selectedFontStyle = thisst;
                }
            }

            gb.ResumeLayout(false);
            pan.Controls.Add(gb);
        }
 /// <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(FrmRolePermission));
     this.imageList = new System.Windows.Forms.ImageList(this.components);
     this.btnPaste = new System.Windows.Forms.Button();
     this.btnCopy = new System.Windows.Forms.Button();
     this.btnClearPermission = new System.Windows.Forms.Button();
     this.ucRole = new DotNet.WinForm.Common.WinControls.UCRoleSelect();
     this.lblParentReq = new System.Windows.Forms.Label();
     this.lblParent = new System.Windows.Forms.Label();
     this.panel1 = new System.Windows.Forms.Panel();
     this.panel3 = new System.Windows.Forms.Panel();
     this.tcModule = new System.Windows.Forms.TabControl();
     this.tpModule = new System.Windows.Forms.TabPage();
     this.tvModule = new System.Windows.Forms.TreeView();
     this.splitter2 = new System.Windows.Forms.Splitter();
     this.splitter1 = new System.Windows.Forms.Splitter();
     this.panel4 = new System.Windows.Forms.Panel();
     this.tcPermissionItem = new System.Windows.Forms.TabControl();
     this.tpPermissionItem = new System.Windows.Forms.TabPage();
     this.tvPermissionItem = new System.Windows.Forms.TreeView();
     this.flowLayoutPanel1 = new System.Windows.Forms.FlowLayoutPanel();
     this.panel1.SuspendLayout();
     this.panel3.SuspendLayout();
     this.tcModule.SuspendLayout();
     this.tpModule.SuspendLayout();
     this.panel4.SuspendLayout();
     this.tcPermissionItem.SuspendLayout();
     this.tpPermissionItem.SuspendLayout();
     this.flowLayoutPanel1.SuspendLayout();
     this.SuspendLayout();
     //
     // imageList
     //
     this.imageList.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageList.ImageStream")));
     this.imageList.TransparentColor = System.Drawing.Color.Transparent;
     this.imageList.Images.SetKeyName(0, "");
     this.imageList.Images.SetKeyName(1, "");
     this.imageList.Images.SetKeyName(2, "");
     this.imageList.Images.SetKeyName(3, "");
     this.imageList.Images.SetKeyName(4, "");
     this.imageList.Images.SetKeyName(5, "");
     this.imageList.Images.SetKeyName(6, "");
     this.imageList.Images.SetKeyName(7, "");
     this.imageList.Images.SetKeyName(8, "");
     this.imageList.Images.SetKeyName(9, "");
     this.imageList.Images.SetKeyName(10, "");
     this.imageList.Images.SetKeyName(11, "");
     this.imageList.Images.SetKeyName(12, "");
     this.imageList.Images.SetKeyName(13, "");
     this.imageList.Images.SetKeyName(14, "");
     this.imageList.Images.SetKeyName(15, "icon_messenger1.gif");
     this.imageList.Images.SetKeyName(16, "icon_messenger0.gif");
     this.imageList.Images.SetKeyName(17, "icon_messenger2.gif");
     this.imageList.Images.SetKeyName(18, "icon_messenger3.gif");
     this.imageList.Images.SetKeyName(19, "icon_messenger4.gif");
     this.imageList.Images.SetKeyName(20, "icon_messenger5.gif");
     this.imageList.Images.SetKeyName(21, "icon_messenger6.gif");
     //
     // btnPaste
     //
     this.btnPaste.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.btnPaste.AutoSize = true;
     this.btnPaste.Enabled = false;
     this.btnPaste.Location = new System.Drawing.Point(313, 3);
     this.btnPaste.Name = "btnPaste";
     this.btnPaste.Size = new System.Drawing.Size(102, 23);
     this.btnPaste.TabIndex = 2;
     this.btnPaste.Text = "粘贴权限";
     this.btnPaste.UseVisualStyleBackColor = true;
     this.btnPaste.Click += new System.EventHandler(this.btnPaste_Click);
     //
     // btnCopy
     //
     this.btnCopy.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.btnCopy.AutoSize = true;
     this.btnCopy.Enabled = false;
     this.btnCopy.Location = new System.Drawing.Point(205, 3);
     this.btnCopy.Name = "btnCopy";
     this.btnCopy.Size = new System.Drawing.Size(102, 23);
     this.btnCopy.TabIndex = 1;
     this.btnCopy.Text = "复制权限";
     this.btnCopy.UseVisualStyleBackColor = true;
     this.btnCopy.Click += new System.EventHandler(this.btnCopy_Click);
     //
     // btnClearPermission
     //
     this.btnClearPermission.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.btnClearPermission.AutoSize = true;
     this.btnClearPermission.Enabled = false;
     this.btnClearPermission.Location = new System.Drawing.Point(97, 3);
     this.btnClearPermission.Name = "btnClearPermission";
     this.btnClearPermission.Size = new System.Drawing.Size(102, 23);
     this.btnClearPermission.TabIndex = 0;
     this.btnClearPermission.Text = "清除权限(&C)";
     this.btnClearPermission.UseVisualStyleBackColor = true;
     this.btnClearPermission.Click += new System.EventHandler(this.btnClearPermission_Click);
     //
     // ucRole
     //
     this.ucRole.AllowNull = false;
     this.ucRole.AllowSelect = false;
     this.ucRole.Location = new System.Drawing.Point(122, 11);
     this.ucRole.MultiSelect = false;
     this.ucRole.Name = "ucRole";
     this.ucRole.OpenId = "";
     this.ucRole.PermissionItemScopeCode = "";
     this.ucRole.RemoveIds = null;
     this.ucRole.SelectedFullName = "";
     this.ucRole.SelectedId = "";
     this.ucRole.SelectedIds = null;
     this.ucRole.ShowRoleOnly = true;
     this.ucRole.Size = new System.Drawing.Size(227, 22);
     this.ucRole.TabIndex = 4;
     //
     // lblParentReq
     //
     this.lblParentReq.AutoSize = true;
     this.lblParentReq.ForeColor = System.Drawing.Color.Red;
     this.lblParentReq.Location = new System.Drawing.Point(353, 16);
     this.lblParentReq.Name = "lblParentReq";
     this.lblParentReq.Size = new System.Drawing.Size(11, 12);
     this.lblParentReq.TabIndex = 5;
     this.lblParentReq.Text = "*";
     //
     // lblParent
     //
     this.lblParent.Location = new System.Drawing.Point(13, 15);
     this.lblParent.Name = "lblParent";
     this.lblParent.Size = new System.Drawing.Size(110, 12);
     this.lblParent.TabIndex = 3;
     this.lblParent.Text = "角色(&R):";
     this.lblParent.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // panel1
     //
     this.panel1.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
     | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.panel1.Controls.Add(this.panel3);
     this.panel1.Controls.Add(this.splitter2);
     this.panel1.Controls.Add(this.splitter1);
     this.panel1.Controls.Add(this.panel4);
     this.panel1.Location = new System.Drawing.Point(6, 39);
     this.panel1.Name = "panel1";
     this.panel1.Size = new System.Drawing.Size(794, 488);
     this.panel1.TabIndex = 36;
     //
     // panel3
     //
     this.panel3.Controls.Add(this.tcModule);
     this.panel3.Dock = System.Windows.Forms.DockStyle.Fill;
     this.panel3.Location = new System.Drawing.Point(3, 0);
     this.panel3.Name = "panel3";
     this.panel3.Size = new System.Drawing.Size(418, 488);
     this.panel3.TabIndex = 1;
     //
     // tcModule
     //
     this.tcModule.Controls.Add(this.tpModule);
     this.tcModule.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tcModule.Location = new System.Drawing.Point(0, 0);
     this.tcModule.MinimumSize = new System.Drawing.Size(100, 100);
     this.tcModule.Name = "tcModule";
     this.tcModule.SelectedIndex = 0;
     this.tcModule.Size = new System.Drawing.Size(418, 488);
     this.tcModule.TabIndex = 0;
     //
     // tpModule
     //
     this.tpModule.Controls.Add(this.tvModule);
     this.tpModule.Location = new System.Drawing.Point(4, 22);
     this.tpModule.Name = "tpModule";
     this.tpModule.Padding = new System.Windows.Forms.Padding(3);
     this.tpModule.Size = new System.Drawing.Size(410, 462);
     this.tpModule.TabIndex = 0;
     this.tpModule.Text = "菜单访问权限";
     this.tpModule.UseVisualStyleBackColor = true;
     //
     // tvModule
     //
     this.tvModule.AllowDrop = true;
     this.tvModule.CheckBoxes = true;
     this.tvModule.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tvModule.Enabled = false;
     this.tvModule.ImageIndex = 0;
     this.tvModule.ImageList = this.imageList;
     this.tvModule.Location = new System.Drawing.Point(3, 3);
     this.tvModule.Name = "tvModule";
     this.tvModule.SelectedImageIndex = 0;
     this.tvModule.Size = new System.Drawing.Size(404, 456);
     this.tvModule.TabIndex = 0;
     this.tvModule.AfterCheck += new System.Windows.Forms.TreeViewEventHandler(this.tvModule_AfterCheck);
     this.tvModule.NodeMouseClick += new System.Windows.Forms.TreeNodeMouseClickEventHandler(this.tvModule_NodeMouseClick);
     //
     // splitter2
     //
     this.splitter2.Dock = System.Windows.Forms.DockStyle.Right;
     this.splitter2.Location = new System.Drawing.Point(421, 0);
     this.splitter2.Name = "splitter2";
     this.splitter2.Size = new System.Drawing.Size(3, 488);
     this.splitter2.TabIndex = 2;
     this.splitter2.TabStop = false;
     //
     // splitter1
     //
     this.splitter1.Location = new System.Drawing.Point(0, 0);
     this.splitter1.Name = "splitter1";
     this.splitter1.Size = new System.Drawing.Size(3, 488);
     this.splitter1.TabIndex = 3;
     this.splitter1.TabStop = false;
     //
     // panel4
     //
     this.panel4.Controls.Add(this.tcPermissionItem);
     this.panel4.Dock = System.Windows.Forms.DockStyle.Right;
     this.panel4.Location = new System.Drawing.Point(424, 0);
     this.panel4.Name = "panel4";
     this.panel4.Size = new System.Drawing.Size(370, 488);
     this.panel4.TabIndex = 2;
     //
     // tcPermissionItem
     //
     this.tcPermissionItem.Controls.Add(this.tpPermissionItem);
     this.tcPermissionItem.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tcPermissionItem.Location = new System.Drawing.Point(0, 0);
     this.tcPermissionItem.MinimumSize = new System.Drawing.Size(100, 100);
     this.tcPermissionItem.Name = "tcPermissionItem";
     this.tcPermissionItem.SelectedIndex = 0;
     this.tcPermissionItem.Size = new System.Drawing.Size(370, 488);
     this.tcPermissionItem.TabIndex = 0;
     //
     // tpPermissionItem
     //
     this.tpPermissionItem.Controls.Add(this.tvPermissionItem);
     this.tpPermissionItem.Location = new System.Drawing.Point(4, 22);
     this.tpPermissionItem.Name = "tpPermissionItem";
     this.tpPermissionItem.Padding = new System.Windows.Forms.Padding(3);
     this.tpPermissionItem.Size = new System.Drawing.Size(362, 462);
     this.tpPermissionItem.TabIndex = 0;
     this.tpPermissionItem.Text = "拥有操作权限";
     this.tpPermissionItem.UseVisualStyleBackColor = true;
     //
     // tvPermissionItem
     //
     this.tvPermissionItem.AllowDrop = true;
     this.tvPermissionItem.CheckBoxes = true;
     this.tvPermissionItem.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tvPermissionItem.Enabled = false;
     this.tvPermissionItem.HotTracking = true;
     this.tvPermissionItem.ImageIndex = 0;
     this.tvPermissionItem.ImageList = this.imageList;
     this.tvPermissionItem.Location = new System.Drawing.Point(3, 3);
     this.tvPermissionItem.Margin = new System.Windows.Forms.Padding(0, 3, 0, 3);
     this.tvPermissionItem.Name = "tvPermissionItem";
     this.tvPermissionItem.SelectedImageIndex = 0;
     this.tvPermissionItem.Size = new System.Drawing.Size(356, 456);
     this.tvPermissionItem.TabIndex = 0;
     this.tvPermissionItem.AfterCheck += new System.Windows.Forms.TreeViewEventHandler(this.tvPermissionItem_AfterCheck);
     this.tvPermissionItem.NodeMouseClick += new System.Windows.Forms.TreeNodeMouseClickEventHandler(this.tvPermissionItem_NodeMouseClick);
     //
     // flowLayoutPanel1
     //
     this.flowLayoutPanel1.Controls.Add(this.btnPaste);
     this.flowLayoutPanel1.Controls.Add(this.btnCopy);
     this.flowLayoutPanel1.Controls.Add(this.btnClearPermission);
     this.flowLayoutPanel1.FlowDirection = System.Windows.Forms.FlowDirection.RightToLeft;
     this.flowLayoutPanel1.Location = new System.Drawing.Point(382, 8);
     this.flowLayoutPanel1.Name = "flowLayoutPanel1";
     this.flowLayoutPanel1.Size = new System.Drawing.Size(418, 30);
     this.flowLayoutPanel1.TabIndex = 37;
     //
     // FrmRolePermission
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(806, 568);
     this.Controls.Add(this.flowLayoutPanel1);
     this.Controls.Add(this.panel1);
     this.Controls.Add(this.ucRole);
     this.Controls.Add(this.lblParentReq);
     this.Controls.Add(this.lblParent);
     this.Name = "FrmRolePermission";
     this.Text = "角色权限设置";
     this.panel1.ResumeLayout(false);
     this.panel3.ResumeLayout(false);
     this.tcModule.ResumeLayout(false);
     this.tpModule.ResumeLayout(false);
     this.panel4.ResumeLayout(false);
     this.tcPermissionItem.ResumeLayout(false);
     this.tpPermissionItem.ResumeLayout(false);
     this.flowLayoutPanel1.ResumeLayout(false);
     this.flowLayoutPanel1.PerformLayout();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Example #34
0
 /// <summary> 
 /// 设计器支持所需的方法 - 不要
 /// 使用代码编辑器修改此方法的内容。
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Grid));
     this.btn_simpleCancelSum = new DevExpress.XtraEditors.SimpleButton();
     this.btn_显示隐藏分组面板 = new DevExpress.XtraEditors.SimpleButton();
     this.btn_显示隐藏过滤面板 = new DevExpress.XtraEditors.SimpleButton();
     this.btn_Export = new DevExpress.XtraEditors.SimpleButton();
     this.btnshow = new DevExpress.XtraEditors.PictureEdit();
     this.btn_合并取消合并表格 = new DevExpress.XtraEditors.SimpleButton();
     this._panelControl = new DevExpress.XtraEditors.PanelControl();
     this.flowLayoutPanel1 = new System.Windows.Forms.FlowLayoutPanel();
     this.btn_ReduceRow = new DevExpress.XtraEditors.SimpleButton();
     this.btn_AddRow = new DevExpress.XtraEditors.SimpleButton();
     this.btn_执行命令1 = new DevExpress.XtraEditors.SimpleButton();
     this.采集模块 = new System.Windows.Forms.Panel();
     this.分钟 = new System.Windows.Forms.Label();
     this.采集频率 = new System.Windows.Forms.Label();
     this.采集频率1 = new System.Windows.Forms.ComboBox();
     this.panel1 = new System.Windows.Forms.Panel();
     this._gridControl = new DevExpress.XtraGrid.GridControl();
     this.bandedGridView1 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridView();
     this.gridBand3 = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
     this.bandedGridColumn4 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.bandedGridColumn3 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.bandedGridColumn14 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.bandedGridColumn15 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.bandedGridColumn21 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.bandedGridColumn16 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.bandedGridColumn17 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.bandedGridColumn1 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.bandedGridColumn2 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.bandedGridColumn18 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.gridBand4 = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
     this.bandedGridColumn22 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.bandedGridColumn23 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.bandedGridColumn24 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.bandedGridColumn25 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.bandedGridColumn26 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this._gridView = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn1 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn2 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn3 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn4 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn5 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn6 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn7 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn8 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn9 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn10 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn11 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn12 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn13 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridBand1 = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
     this._saveFileDialog = new System.Windows.Forms.SaveFileDialog();
     this._contextMenuStrip = new System.Windows.Forms.ContextMenuStrip(this.components);
     this.复制当前列ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.复制当前字段ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.报表导出ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.打印预览ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.gridBand2 = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
     ((System.ComponentModel.ISupportInitialize)(this.btnshow.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this._panelControl)).BeginInit();
     this._panelControl.SuspendLayout();
     this.flowLayoutPanel1.SuspendLayout();
     this.采集模块.SuspendLayout();
     this.panel1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this._gridControl)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.bandedGridView1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this._gridView)).BeginInit();
     this._contextMenuStrip.SuspendLayout();
     this.SuspendLayout();
     //
     // btn_simpleCancelSum
     //
     this.btn_simpleCancelSum.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.btn_simpleCancelSum.Image = ((System.Drawing.Image)(resources.GetObject("btn_simpleCancelSum.Image")));
     this.btn_simpleCancelSum.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleLeft;
     this.btn_simpleCancelSum.Location = new System.Drawing.Point(501, 3);
     this.btn_simpleCancelSum.Name = "btn_simpleCancelSum";
     this.btn_simpleCancelSum.Size = new System.Drawing.Size(80, 27);
     this.btn_simpleCancelSum.TabIndex = 4;
     this.btn_simpleCancelSum.Text = "合计底栏";
     this.btn_simpleCancelSum.Visible = false;
     this.btn_simpleCancelSum.Click += new System.EventHandler(this.btn_simpleCancelSum_Click);
     //
     // btn_显示隐藏分组面板
     //
     this.btn_显示隐藏分组面板.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.btn_显示隐藏分组面板.Image = ((System.Drawing.Image)(resources.GetObject("btn_显示隐藏分组面板.Image")));
     this.btn_显示隐藏分组面板.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleLeft;
     this.btn_显示隐藏分组面板.Location = new System.Drawing.Point(587, 3);
     this.btn_显示隐藏分组面板.Name = "btn_显示隐藏分组面板";
     this.btn_显示隐藏分组面板.Size = new System.Drawing.Size(80, 27);
     this.btn_显示隐藏分组面板.TabIndex = 2;
     this.btn_显示隐藏分组面板.Text = "分组面板";
     this.btn_显示隐藏分组面板.Visible = false;
     this.btn_显示隐藏分组面板.Click += new System.EventHandler(this.btn_显示隐藏分组面板_Click);
     //
     // btn_显示隐藏过滤面板
     //
     this.btn_显示隐藏过滤面板.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.btn_显示隐藏过滤面板.Image = ((System.Drawing.Image)(resources.GetObject("btn_显示隐藏过滤面板.Image")));
     this.btn_显示隐藏过滤面板.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleLeft;
     this.btn_显示隐藏过滤面板.Location = new System.Drawing.Point(673, 3);
     this.btn_显示隐藏过滤面板.Name = "btn_显示隐藏过滤面板";
     this.btn_显示隐藏过滤面板.Size = new System.Drawing.Size(80, 27);
     this.btn_显示隐藏过滤面板.TabIndex = 0;
     this.btn_显示隐藏过滤面板.Text = "查找记录";
     this.btn_显示隐藏过滤面板.Visible = false;
     this.btn_显示隐藏过滤面板.Click += new System.EventHandler(this.btn_TotleLocation_Click);
     //
     // btn_Export
     //
     this.btn_Export.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.btn_Export.Image = ((System.Drawing.Image)(resources.GetObject("btn_Export.Image")));
     this.btn_Export.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleLeft;
     this.btn_Export.Location = new System.Drawing.Point(845, 3);
     this.btn_Export.Name = "btn_Export";
     this.btn_Export.Size = new System.Drawing.Size(80, 27);
     this.btn_Export.TabIndex = 1;
     this.btn_Export.Text = "导出表格";
     this.btn_Export.Visible = false;
     this.btn_Export.Click += new System.EventHandler(this.btn_Export_Click);
     //
     // btnshow
     //
     this.btnshow.Cursor = System.Windows.Forms.Cursors.Hand;
     this.btnshow.EditValue = ((object)(resources.GetObject("btnshow.EditValue")));
     this.btnshow.Location = new System.Drawing.Point(2, 2);
     this.btnshow.Name = "btnshow";
     this.btnshow.Properties.Appearance.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(230)))), ((int)(((byte)(230)))), ((int)(((byte)(230)))));
     this.btnshow.Properties.Appearance.Options.UseBackColor = true;
     this.btnshow.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.btnshow.Size = new System.Drawing.Size(22, 18);
     this.btnshow.TabIndex = 10;
     this.btnshow.Visible = false;
     this.btnshow.Click += new System.EventHandler(this.btnshow_Click);
     //
     // btn_合并取消合并表格
     //
     this.btn_合并取消合并表格.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.btn_合并取消合并表格.Image = ((System.Drawing.Image)(resources.GetObject("btn_合并取消合并表格.Image")));
     this.btn_合并取消合并表格.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleLeft;
     this.btn_合并取消合并表格.Location = new System.Drawing.Point(759, 3);
     this.btn_合并取消合并表格.Name = "btn_合并取消合并表格";
     this.btn_合并取消合并表格.Size = new System.Drawing.Size(80, 27);
     this.btn_合并取消合并表格.TabIndex = 10;
     this.btn_合并取消合并表格.Text = "合并列值";
     this.btn_合并取消合并表格.Visible = false;
     this.btn_合并取消合并表格.Click += new System.EventHandler(this.btn_合并取消合并表格_Click);
     //
     // _panelControl
     //
     this._panelControl.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this._panelControl.Controls.Add(this.flowLayoutPanel1);
     this._panelControl.Dock = System.Windows.Forms.DockStyle.Top;
     this._panelControl.Location = new System.Drawing.Point(0, 0);
     this._panelControl.Name = "_panelControl";
     this._panelControl.Size = new System.Drawing.Size(928, 33);
     this._panelControl.TabIndex = 2;
     //
     // flowLayoutPanel1
     //
     this.flowLayoutPanel1.Controls.Add(this.btn_Export);
     this.flowLayoutPanel1.Controls.Add(this.btn_合并取消合并表格);
     this.flowLayoutPanel1.Controls.Add(this.btn_显示隐藏过滤面板);
     this.flowLayoutPanel1.Controls.Add(this.btn_显示隐藏分组面板);
     this.flowLayoutPanel1.Controls.Add(this.btn_simpleCancelSum);
     this.flowLayoutPanel1.Controls.Add(this.btn_ReduceRow);
     this.flowLayoutPanel1.Controls.Add(this.btn_AddRow);
     this.flowLayoutPanel1.Controls.Add(this.btn_执行命令1);
     this.flowLayoutPanel1.Controls.Add(this.采集模块);
     this.flowLayoutPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.flowLayoutPanel1.Location = new System.Drawing.Point(0, 0);
     this.flowLayoutPanel1.Name = "flowLayoutPanel1";
     this.flowLayoutPanel1.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
     this.flowLayoutPanel1.Size = new System.Drawing.Size(928, 33);
     this.flowLayoutPanel1.TabIndex = 15;
     //
     // btn_ReduceRow
     //
     this.btn_ReduceRow.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.btn_ReduceRow.Image = global::控件库.Properties.Resources.suoxiao;
     this.btn_ReduceRow.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleLeft;
     this.btn_ReduceRow.Location = new System.Drawing.Point(415, 3);
     this.btn_ReduceRow.Name = "btn_ReduceRow";
     this.btn_ReduceRow.Size = new System.Drawing.Size(80, 27);
     this.btn_ReduceRow.TabIndex = 13;
     this.btn_ReduceRow.Text = "删除记录";
     this.btn_ReduceRow.Click += new System.EventHandler(this.btn_ReduceRow_Click);
     this.btn_ReduceRow.MouseDown += new System.Windows.Forms.MouseEventHandler(this.btn_ReduceRow_MouseDown);
     //
     // btn_AddRow
     //
     this.btn_AddRow.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.btn_AddRow.Image = global::控件库.Properties.Resources.kuoda;
     this.btn_AddRow.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleLeft;
     this.btn_AddRow.Location = new System.Drawing.Point(329, 3);
     this.btn_AddRow.Name = "btn_AddRow";
     this.btn_AddRow.Size = new System.Drawing.Size(80, 27);
     this.btn_AddRow.TabIndex = 14;
     this.btn_AddRow.Text = "新增记录";
     this.btn_AddRow.Click += new System.EventHandler(this.btn_AddRow_Click);
     this.btn_AddRow.MouseDown += new System.Windows.Forms.MouseEventHandler(this.btn_AddRow_MouseDown);
     //
     // btn_执行命令1
     //
     this.btn_执行命令1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.btn_执行命令1.Image = global::控件库.Properties.Resources.Action_SaveScript;
     this.btn_执行命令1.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleLeft;
     this.btn_执行命令1.Location = new System.Drawing.Point(243, 3);
     this.btn_执行命令1.Name = "btn_执行命令1";
     this.btn_执行命令1.Size = new System.Drawing.Size(80, 27);
     this.btn_执行命令1.TabIndex = 14;
     this.btn_执行命令1.Text = "保存";
     this.btn_执行命令1.Visible = false;
     this.btn_执行命令1.Click += new System.EventHandler(this.btn_执行命令1_Click);
     this.btn_执行命令1.MouseDown += new System.Windows.Forms.MouseEventHandler(this.btn_执行命令1_MouseDown);
     //
     // 采集模块
     //
     this.采集模块.Controls.Add(this.分钟);
     this.采集模块.Controls.Add(this.采集频率);
     this.采集模块.Controls.Add(this.采集频率1);
     this.采集模块.Location = new System.Drawing.Point(86, 2);
     this.采集模块.Margin = new System.Windows.Forms.Padding(2);
     this.采集模块.Name = "采集模块";
     this.采集模块.Size = new System.Drawing.Size(152, 29);
     this.采集模块.TabIndex = 15;
     this.采集模块.Visible = false;
     //
     // 分钟
     //
     this.分钟.AutoSize = true;
     this.分钟.Location = new System.Drawing.Point(131, 7);
     this.分钟.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
     this.分钟.Name = "分钟";
     this.分钟.Size = new System.Drawing.Size(19, 14);
     this.分钟.TabIndex = 2;
     this.分钟.Text = "秒";
     //
     // 采集频率
     //
     this.采集频率.AutoSize = true;
     this.采集频率.Location = new System.Drawing.Point(3, 7);
     this.采集频率.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
     this.采集频率.Name = "采集频率";
     this.采集频率.Size = new System.Drawing.Size(55, 14);
     this.采集频率.TabIndex = 1;
     this.采集频率.Text = "采集频率";
     //
     // 采集频率1
     //
     this.采集频率1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.采集频率1.FormattingEnabled = true;
     this.采集频率1.Items.AddRange(new object[] {
     "60",
     "300",
     "600",
     "900",
     "1200"});
     this.采集频率1.Location = new System.Drawing.Point(58, 4);
     this.采集频率1.Margin = new System.Windows.Forms.Padding(2);
     this.采集频率1.Name = "采集频率1";
     this.采集频率1.Size = new System.Drawing.Size(73, 22);
     this.采集频率1.TabIndex = 0;
     //
     // panel1
     //
     this.panel1.Controls.Add(this.btnshow);
     this.panel1.Controls.Add(this._gridControl);
     this.panel1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.panel1.Location = new System.Drawing.Point(0, 33);
     this.panel1.Name = "panel1";
     this.panel1.Size = new System.Drawing.Size(928, 485);
     this.panel1.TabIndex = 3;
     //
     // _gridControl
     //
     this._gridControl.Dock = System.Windows.Forms.DockStyle.Fill;
     this._gridControl.Location = new System.Drawing.Point(0, 0);
     this._gridControl.MainView = this.bandedGridView1;
     this._gridControl.Name = "_gridControl";
     this._gridControl.Size = new System.Drawing.Size(928, 485);
     this._gridControl.TabIndex = 6;
     this._gridControl.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.bandedGridView1,
     this._gridView});
     this._gridControl.MouseLeave += new System.EventHandler(this._gridControl_MouseLeave);
     //
     // bandedGridView1
     //
     this.bandedGridView1.Bands.AddRange(new DevExpress.XtraGrid.Views.BandedGrid.GridBand[] {
     this.gridBand3,
     this.gridBand4});
     this.bandedGridView1.Columns.AddRange(new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn[] {
     this.bandedGridColumn14,
     this.bandedGridColumn15,
     this.bandedGridColumn21,
     this.bandedGridColumn16,
     this.bandedGridColumn17,
     this.bandedGridColumn18,
     this.bandedGridColumn22,
     this.bandedGridColumn23,
     this.bandedGridColumn24,
     this.bandedGridColumn25,
     this.bandedGridColumn26,
     this.bandedGridColumn1,
     this.bandedGridColumn2,
     this.bandedGridColumn3,
     this.bandedGridColumn4});
     this.bandedGridView1.GridControl = this._gridControl;
     this.bandedGridView1.Name = "bandedGridView1";
     this.bandedGridView1.OptionsCustomization.AllowChangeColumnParent = true;
     this.bandedGridView1.OptionsSelection.EnableAppearanceFocusedCell = false;
     this.bandedGridView1.OptionsView.EnableAppearanceEvenRow = true;
     this.bandedGridView1.OptionsView.EnableAppearanceOddRow = true;
     this.bandedGridView1.OptionsView.ShowGroupPanel = false;
     //
     // gridBand3
     //
     this.gridBand3.Caption = "实测转速下数据";
     this.gridBand3.Columns.Add(this.bandedGridColumn4);
     this.gridBand3.Columns.Add(this.bandedGridColumn3);
     this.gridBand3.Columns.Add(this.bandedGridColumn14);
     this.gridBand3.Columns.Add(this.bandedGridColumn15);
     this.gridBand3.Columns.Add(this.bandedGridColumn21);
     this.gridBand3.Columns.Add(this.bandedGridColumn16);
     this.gridBand3.Columns.Add(this.bandedGridColumn17);
     this.gridBand3.Columns.Add(this.bandedGridColumn1);
     this.gridBand3.Columns.Add(this.bandedGridColumn2);
     this.gridBand3.Columns.Add(this.bandedGridColumn18);
     this.gridBand3.Name = "gridBand3";
     this.gridBand3.OptionsBand.AllowMove = false;
     this.gridBand3.Width = 675;
     //
     // bandedGridColumn4
     //
     this.bandedGridColumn4.Caption = "ID";
     this.bandedGridColumn4.FieldName = "id";
     this.bandedGridColumn4.Name = "bandedGridColumn4";
     //
     // bandedGridColumn3
     //
     this.bandedGridColumn3.Caption = "时间";
     this.bandedGridColumn3.FieldName = "时间值";
     this.bandedGridColumn3.Name = "bandedGridColumn3";
     this.bandedGridColumn3.OptionsColumn.AllowMove = false;
     this.bandedGridColumn3.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.bandedGridColumn3.Visible = true;
     //
     // bandedGridColumn14
     //
     this.bandedGridColumn14.Caption = "序号";
     this.bandedGridColumn14.FieldName = "序列2";
     this.bandedGridColumn14.Name = "bandedGridColumn14";
     this.bandedGridColumn14.OptionsColumn.AllowMove = false;
     this.bandedGridColumn14.Visible = true;
     //
     // bandedGridColumn15
     //
     this.bandedGridColumn15.Caption = "流量(m3/h)";
     this.bandedGridColumn15.FieldName = "流量";
     this.bandedGridColumn15.Name = "bandedGridColumn15";
     this.bandedGridColumn15.OptionsColumn.AllowMove = false;
     this.bandedGridColumn15.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.bandedGridColumn15.Visible = true;
     //
     // bandedGridColumn21
     //
     this.bandedGridColumn21.Caption = "扬程(m)";
     this.bandedGridColumn21.FieldName = "扬程";
     this.bandedGridColumn21.Name = "bandedGridColumn21";
     this.bandedGridColumn21.OptionsColumn.AllowMove = false;
     this.bandedGridColumn21.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.bandedGridColumn21.Visible = true;
     //
     // bandedGridColumn16
     //
     this.bandedGridColumn16.Caption = "输入功率(kW)";
     this.bandedGridColumn16.FieldName = "输入功率";
     this.bandedGridColumn16.Name = "bandedGridColumn16";
     this.bandedGridColumn16.OptionsColumn.AllowMove = false;
     this.bandedGridColumn16.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.bandedGridColumn16.Visible = true;
     //
     // bandedGridColumn17
     //
     this.bandedGridColumn17.Caption = "转速(r/min)";
     this.bandedGridColumn17.FieldName = "转速";
     this.bandedGridColumn17.Name = "bandedGridColumn17";
     this.bandedGridColumn17.OptionsColumn.AllowMove = false;
     this.bandedGridColumn17.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.bandedGridColumn17.Visible = true;
     //
     // bandedGridColumn1
     //
     this.bandedGridColumn1.Caption = "电压(V)";
     this.bandedGridColumn1.FieldName = "电压";
     this.bandedGridColumn1.Name = "bandedGridColumn1";
     this.bandedGridColumn1.OptionsColumn.AllowMove = false;
     this.bandedGridColumn1.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.bandedGridColumn1.Visible = true;
     //
     // bandedGridColumn2
     //
     this.bandedGridColumn2.Caption = "电流(A)";
     this.bandedGridColumn2.FieldName = "电流";
     this.bandedGridColumn2.Name = "bandedGridColumn2";
     this.bandedGridColumn2.OptionsColumn.AllowMove = false;
     this.bandedGridColumn2.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.bandedGridColumn2.Visible = true;
     //
     // bandedGridColumn18
     //
     this.bandedGridColumn18.Caption = "轴功率(kW)";
     this.bandedGridColumn18.FieldName = "轴功率";
     this.bandedGridColumn18.Name = "bandedGridColumn18";
     this.bandedGridColumn18.OptionsColumn.AllowMove = false;
     this.bandedGridColumn18.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.bandedGridColumn18.Visible = true;
     //
     // gridBand4
     //
     this.gridBand4.Caption = "额定转速下数据";
     this.gridBand4.Columns.Add(this.bandedGridColumn22);
     this.gridBand4.Columns.Add(this.bandedGridColumn23);
     this.gridBand4.Columns.Add(this.bandedGridColumn24);
     this.gridBand4.Columns.Add(this.bandedGridColumn25);
     this.gridBand4.Columns.Add(this.bandedGridColumn26);
     this.gridBand4.Name = "gridBand4";
     this.gridBand4.Width = 375;
     //
     // bandedGridColumn22
     //
     this.bandedGridColumn22.Caption = "流量(m3/h)";
     this.bandedGridColumn22.FieldName = "额定转速下_流量";
     this.bandedGridColumn22.Name = "bandedGridColumn22";
     this.bandedGridColumn22.OptionsColumn.AllowMove = false;
     this.bandedGridColumn22.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.bandedGridColumn22.Visible = true;
     //
     // bandedGridColumn23
     //
     this.bandedGridColumn23.Caption = "扬程(m)";
     this.bandedGridColumn23.FieldName = "额定转速下_扬程";
     this.bandedGridColumn23.Name = "bandedGridColumn23";
     this.bandedGridColumn23.OptionsColumn.AllowMove = false;
     this.bandedGridColumn23.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.bandedGridColumn23.Visible = true;
     //
     // bandedGridColumn24
     //
     this.bandedGridColumn24.Caption = "轴功率(kW)";
     this.bandedGridColumn24.FieldName = "额定转速下_轴功率";
     this.bandedGridColumn24.Name = "bandedGridColumn24";
     this.bandedGridColumn24.OptionsColumn.AllowMove = false;
     this.bandedGridColumn24.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.bandedGridColumn24.Visible = true;
     //
     // bandedGridColumn25
     //
     this.bandedGridColumn25.Caption = "泵效率(%)";
     this.bandedGridColumn25.FieldName = "额定转速下_泵效率";
     this.bandedGridColumn25.Name = "bandedGridColumn25";
     this.bandedGridColumn25.OptionsColumn.AllowMove = false;
     this.bandedGridColumn25.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.bandedGridColumn25.Visible = true;
     //
     // bandedGridColumn26
     //
     this.bandedGridColumn26.Caption = "机组效率(%)";
     this.bandedGridColumn26.FieldName = "额定转速下_机组效率";
     this.bandedGridColumn26.Name = "bandedGridColumn26";
     this.bandedGridColumn26.OptionsColumn.AllowMove = false;
     this.bandedGridColumn26.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.bandedGridColumn26.Visible = true;
     //
     // _gridView
     //
     this._gridView.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn1,
     this.gridColumn2,
     this.gridColumn3,
     this.gridColumn4,
     this.gridColumn5,
     this.gridColumn6,
     this.gridColumn7,
     this.gridColumn8,
     this.gridColumn9,
     this.gridColumn10,
     this.gridColumn11,
     this.gridColumn12,
     this.gridColumn13});
     this._gridView.GridControl = this._gridControl;
     this._gridView.Name = "_gridView";
     this._gridView.OptionsBehavior.Editable = false;
     this._gridView.OptionsSelection.EnableAppearanceFocusedCell = false;
     this._gridView.OptionsView.EnableAppearanceEvenRow = true;
     this._gridView.OptionsView.EnableAppearanceOddRow = true;
     this._gridView.OptionsView.ShowGroupPanel = false;
     this._gridView.FocusedRowChanged += new DevExpress.XtraGrid.Views.Base.FocusedRowChangedEventHandler(this._gridView_FocusedRowChanged);
     this._gridView.DoubleClick += new System.EventHandler(this._gridView_DoubleClick);
     //
     // gridColumn1
     //
     this.gridColumn1.Caption = "序号";
     this.gridColumn1.FieldName = "序列3";
     this.gridColumn1.Name = "gridColumn1";
     this.gridColumn1.OptionsColumn.AllowMove = false;
     this.gridColumn1.Visible = true;
     this.gridColumn1.VisibleIndex = 0;
     //
     // gridColumn2
     //
     this.gridColumn2.Caption = "流量(m3/h)";
     this.gridColumn2.FieldName = "流量";
     this.gridColumn2.Name = "gridColumn2";
     this.gridColumn2.OptionsColumn.AllowMove = false;
     this.gridColumn2.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn2.Visible = true;
     this.gridColumn2.VisibleIndex = 1;
     //
     // gridColumn3
     //
     this.gridColumn3.Caption = "输入功率(kW)";
     this.gridColumn3.FieldName = "输入功率";
     this.gridColumn3.Name = "gridColumn3";
     this.gridColumn3.OptionsColumn.AllowMove = false;
     this.gridColumn3.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn3.Visible = true;
     this.gridColumn3.VisibleIndex = 2;
     //
     // gridColumn4
     //
     this.gridColumn4.Caption = "转速(r/min)";
     this.gridColumn4.FieldName = "转速";
     this.gridColumn4.Name = "gridColumn4";
     this.gridColumn4.OptionsColumn.AllowMove = false;
     this.gridColumn4.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn4.Visible = true;
     this.gridColumn4.VisibleIndex = 3;
     //
     // gridColumn5
     //
     this.gridColumn5.Caption = "轴功率(kW)";
     this.gridColumn5.FieldName = "轴功率";
     this.gridColumn5.Name = "gridColumn5";
     this.gridColumn5.OptionsColumn.AllowMove = false;
     this.gridColumn5.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn5.Visible = true;
     this.gridColumn5.VisibleIndex = 4;
     //
     // gridColumn6
     //
     this.gridColumn6.Caption = "进口压力(KPa)";
     this.gridColumn6.FieldName = "进口压力";
     this.gridColumn6.Name = "gridColumn6";
     this.gridColumn6.OptionsColumn.AllowMove = false;
     this.gridColumn6.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn6.Visible = true;
     this.gridColumn6.VisibleIndex = 5;
     //
     // gridColumn7
     //
     this.gridColumn7.Caption = "出口压力(KPa)";
     this.gridColumn7.FieldName = "出口压力";
     this.gridColumn7.Name = "gridColumn7";
     this.gridColumn7.OptionsColumn.AllowMove = false;
     this.gridColumn7.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn7.Visible = true;
     this.gridColumn7.VisibleIndex = 6;
     //
     // gridColumn8
     //
     this.gridColumn8.Caption = "扬程(m)";
     this.gridColumn8.FieldName = "扬程";
     this.gridColumn8.Name = "gridColumn8";
     this.gridColumn8.OptionsColumn.AllowMove = false;
     this.gridColumn8.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn8.Visible = true;
     this.gridColumn8.VisibleIndex = 7;
     //
     // gridColumn9
     //
     this.gridColumn9.Caption = "流量(m3/h)";
     this.gridColumn9.FieldName = "额定流量";
     this.gridColumn9.Name = "gridColumn9";
     this.gridColumn9.OptionsColumn.AllowMove = false;
     this.gridColumn9.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn9.Visible = true;
     this.gridColumn9.VisibleIndex = 8;
     //
     // gridColumn10
     //
     this.gridColumn10.Caption = "扬程(m)";
     this.gridColumn10.FieldName = "额定扬程";
     this.gridColumn10.Name = "gridColumn10";
     this.gridColumn10.OptionsColumn.AllowMove = false;
     this.gridColumn10.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn10.Visible = true;
     this.gridColumn10.VisibleIndex = 9;
     //
     // gridColumn11
     //
     this.gridColumn11.Caption = "轴功率(kW)";
     this.gridColumn11.FieldName = "额定轴功率";
     this.gridColumn11.Name = "gridColumn11";
     this.gridColumn11.OptionsColumn.AllowMove = false;
     this.gridColumn11.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn11.Visible = true;
     this.gridColumn11.VisibleIndex = 10;
     //
     // gridColumn12
     //
     this.gridColumn12.Caption = "泵效率(%)";
     this.gridColumn12.FieldName = "泵效率";
     this.gridColumn12.Name = "gridColumn12";
     this.gridColumn12.OptionsColumn.AllowMove = false;
     this.gridColumn12.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn12.Visible = true;
     this.gridColumn12.VisibleIndex = 11;
     //
     // gridColumn13
     //
     this.gridColumn13.Caption = "机组效率(%)";
     this.gridColumn13.FieldName = "机组效率";
     this.gridColumn13.Name = "gridColumn13";
     this.gridColumn13.OptionsColumn.AllowMove = false;
     this.gridColumn13.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn13.Visible = true;
     this.gridColumn13.VisibleIndex = 12;
     //
     // gridBand1
     //
     this.gridBand1.Caption = "gridBand1";
     this.gridBand1.Name = "gridBand1";
     //
     // _contextMenuStrip
     //
     this._contextMenuStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.复制当前列ToolStripMenuItem,
     this.报表导出ToolStripMenuItem,
     this.打印预览ToolStripMenuItem});
     this._contextMenuStrip.Name = "contextMenuStrip1";
     this._contextMenuStrip.Size = new System.Drawing.Size(189, 88);
     //
     // 复制当前列ToolStripMenuItem
     //
     this.复制当前列ToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.复制当前字段ToolStripMenuItem});
     this.复制当前列ToolStripMenuItem.Name = "复制当前列ToolStripMenuItem";
     this.复制当前列ToolStripMenuItem.Size = new System.Drawing.Size(188, 28);
     this.复制当前列ToolStripMenuItem.Text = "复制到剪贴板";
     //
     // 复制当前字段ToolStripMenuItem
     //
     this.复制当前字段ToolStripMenuItem.Name = "复制当前字段ToolStripMenuItem";
     this.复制当前字段ToolStripMenuItem.Size = new System.Drawing.Size(148, 22);
     this.复制当前字段ToolStripMenuItem.Text = "复制当前字段";
     //
     // 报表导出ToolStripMenuItem
     //
     this.报表导出ToolStripMenuItem.Name = "报表导出ToolStripMenuItem";
     this.报表导出ToolStripMenuItem.Size = new System.Drawing.Size(188, 28);
     this.报表导出ToolStripMenuItem.Text = "数据导出";
     //
     // 打印预览ToolStripMenuItem
     //
     this.打印预览ToolStripMenuItem.Name = "打印预览ToolStripMenuItem";
     this.打印预览ToolStripMenuItem.Size = new System.Drawing.Size(188, 28);
     this.打印预览ToolStripMenuItem.Text = "打印预览";
     //
     // gridBand2
     //
     this.gridBand2.Caption = "gridBand2";
     this.gridBand2.Name = "gridBand2";
     //
     // Grid
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 14F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.Controls.Add(this.panel1);
     this.Controls.Add(this._panelControl);
     this.Name = "Grid";
     this.Size = new System.Drawing.Size(928, 518);
     ((System.ComponentModel.ISupportInitialize)(this.btnshow.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this._panelControl)).EndInit();
     this._panelControl.ResumeLayout(false);
     this.flowLayoutPanel1.ResumeLayout(false);
     this.采集模块.ResumeLayout(false);
     this.采集模块.PerformLayout();
     this.panel1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this._gridControl)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.bandedGridView1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this._gridView)).EndInit();
     this._contextMenuStrip.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();
            System.Windows.Forms.Panel _upperPannel;
            System.Windows.Forms.FlowLayoutPanel flowLayoutPanel1;
            System.Windows.Forms.Label _tallyField_LBL;
            System.Windows.Forms.Label _title_LBL;
            this._tallyField_CmbB = new System.Windows.Forms.ComboBox();
            this._BS_TallyClass = new System.Windows.Forms.BindingSource(this.components);
            this._lowerPanel = new System.Windows.Forms.FlowLayoutPanel();
            _upperPannel = new System.Windows.Forms.Panel();
            flowLayoutPanel1 = new System.Windows.Forms.FlowLayoutPanel();
            _tallyField_LBL = new System.Windows.Forms.Label();
            _title_LBL = new System.Windows.Forms.Label();
            _upperPannel.SuspendLayout();
            flowLayoutPanel1.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this._BS_TallyClass)).BeginInit();
            this.SuspendLayout();
            // 
            // _upperPannel
            // 
            _upperPannel.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
            _upperPannel.Controls.Add(flowLayoutPanel1);
            _upperPannel.Controls.Add(_title_LBL);
            _upperPannel.Dock = System.Windows.Forms.DockStyle.Top;
            _upperPannel.Location = new System.Drawing.Point(0, 0);
            _upperPannel.Name = "_upperPannel";
            _upperPannel.Size = new System.Drawing.Size(313, 71);
            _upperPannel.TabIndex = 0;
            // 
            // flowLayoutPanel1
            // 
            flowLayoutPanel1.AutoSize = true;
            flowLayoutPanel1.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
            flowLayoutPanel1.Controls.Add(_tallyField_LBL);
            flowLayoutPanel1.Controls.Add(this._tallyField_CmbB);
            flowLayoutPanel1.Dock = System.Windows.Forms.DockStyle.Top;
            flowLayoutPanel1.Location = new System.Drawing.Point(0, 25);
            flowLayoutPanel1.Name = "flowLayoutPanel1";
            flowLayoutPanel1.Size = new System.Drawing.Size(313, 27);
            flowLayoutPanel1.TabIndex = 0;
            // 
            // _tallyField_LBL
            // 
            _tallyField_LBL.AutoSize = true;
            _tallyField_LBL.Dock = System.Windows.Forms.DockStyle.Left;
            _tallyField_LBL.Location = new System.Drawing.Point(3, 0);
            _tallyField_LBL.Name = "_tallyField_LBL";
            _tallyField_LBL.Size = new System.Drawing.Size(54, 27);
            _tallyField_LBL.TabIndex = 1;
            _tallyField_LBL.Text = "Tally Field";
            _tallyField_LBL.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
            // 
            // _tallyField_CmbB
            // 
            this._tallyField_CmbB.DataBindings.Add(new System.Windows.Forms.Binding("SelectedItem", this._BS_TallyClass, "Field", true));
            this._tallyField_CmbB.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
            this._tallyField_CmbB.FormattingEnabled = true;
            this._tallyField_CmbB.Location = new System.Drawing.Point(63, 3);
            this._tallyField_CmbB.Name = "_tallyField_CmbB";
            this._tallyField_CmbB.Size = new System.Drawing.Size(121, 21);
            this._tallyField_CmbB.TabIndex = 2;
            // 
            // _BS_TallyClass
            // 
            this._BS_TallyClass.DataSource = typeof(CruiseManager.Core.CruiseCustomize.FixCNTTallyClass);
            // 
            // _title_LBL
            // 
            _title_LBL.AutoSize = true;
            _title_LBL.Dock = System.Windows.Forms.DockStyle.Top;
            _title_LBL.Font = new System.Drawing.Font("Segoe UI", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            _title_LBL.Location = new System.Drawing.Point(0, 0);
            _title_LBL.Name = "_title_LBL";
            _title_LBL.Size = new System.Drawing.Size(168, 25);
            _title_LBL.TabIndex = 0;
            _title_LBL.Text = "FixCNT Tally Setup";
            // 
            // _lowerPanel
            // 
            this._lowerPanel.Dock = System.Windows.Forms.DockStyle.Fill;
            this._lowerPanel.FlowDirection = System.Windows.Forms.FlowDirection.TopDown;
            this._lowerPanel.Location = new System.Drawing.Point(0, 71);
            this._lowerPanel.Name = "_lowerPanel";
            this._lowerPanel.Size = new System.Drawing.Size(313, 216);
            this._lowerPanel.TabIndex = 1;
            // 
            // FixCNTTallyEditPanel
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.Controls.Add(this._lowerPanel);
            this.Controls.Add(_upperPannel);
            this.Name = "FixCNTTallyEditPanel";
            this.Size = new System.Drawing.Size(313, 287);
            _upperPannel.ResumeLayout(false);
            _upperPannel.PerformLayout();
            flowLayoutPanel1.ResumeLayout(false);
            flowLayoutPanel1.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this._BS_TallyClass)).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.tableLayoutPanel1 = new System.Windows.Forms.TableLayoutPanel();
     this.flowLayoutPanel1 = new System.Windows.Forms.FlowLayoutPanel();
     this.CancelBtn = new System.Windows.Forms.Button();
     this.SaveBtn = new System.Windows.Forms.Button();
     this.QuickSettingsBtn = new System.Windows.Forms.Button();
     this.RequestSettingsbtn = new System.Windows.Forms.Button();
     this.OptionTabControl = new System.Windows.Forms.TabControl();
     this.GameTab = new System.Windows.Forms.TabPage();
     this.tableLayoutPanel2 = new System.Windows.Forms.TableLayoutPanel();
     this.groupBox2 = new System.Windows.Forms.GroupBox();
     this.tableLayoutPanel4 = new System.Windows.Forms.TableLayoutPanel();
     this.tableLayoutPanel8 = new System.Windows.Forms.TableLayoutPanel();
     this.SkinList = new System.Windows.Forms.ComboBox();
     this.label4 = new System.Windows.Forms.Label();
     this.label6 = new System.Windows.Forms.Label();
     this.Antialias = new System.Windows.Forms.NumericUpDown();
     this.EnableSleeveLoading = new System.Windows.Forms.CheckBox();
     this.tableLayoutPanel7 = new System.Windows.Forms.TableLayoutPanel();
     this.AutoPlacing = new System.Windows.Forms.CheckBox();
     this.RandomPlacing = new System.Windows.Forms.CheckBox();
     this.Fullscreen = new System.Windows.Forms.CheckBox();
     this.Enabled3d = new System.Windows.Forms.CheckBox();
     this.EnableMusic = new System.Windows.Forms.CheckBox();
     this.AutoChain = new System.Windows.Forms.CheckBox();
     this.EnableSound = new System.Windows.Forms.CheckBox();
     this.NoDelay = new System.Windows.Forms.CheckBox();
     this.tableLayoutPanel3 = new System.Windows.Forms.TableLayoutPanel();
     this.groupBox1 = new System.Windows.Forms.GroupBox();
     this.tableLayoutPanel5 = new System.Windows.Forms.TableLayoutPanel();
     this.groupBox3 = new System.Windows.Forms.GroupBox();
     this.tableLayoutPanel6 = new System.Windows.Forms.TableLayoutPanel();
     this.label3 = new System.Windows.Forms.Label();
     this.label2 = new System.Windows.Forms.Label();
     this.FontSize = new System.Windows.Forms.NumericUpDown();
     this.GameFont = new System.Windows.Forms.ComboBox();
     this.groupBox4 = new System.Windows.Forms.GroupBox();
     this.tableLayoutPanel9 = new System.Windows.Forms.TableLayoutPanel();
     this.Username = new System.Windows.Forms.TextBox();
     this.label1 = new System.Windows.Forms.Label();
     this.DefualtDeck = new System.Windows.Forms.ComboBox();
     this.label5 = new System.Windows.Forms.Label();
     this.accountTab = new System.Windows.Forms.TabPage();
     this.tableLayoutPanel10 = new System.Windows.Forms.TableLayoutPanel();
     this.groupBox5 = new System.Windows.Forms.GroupBox();
     this.tableLayoutPanel11 = new System.Windows.Forms.TableLayoutPanel();
     this.label7 = new System.Windows.Forms.Label();
     this.label8 = new System.Windows.Forms.Label();
     this.label9 = new System.Windows.Forms.Label();
     this.flowLayoutPanel2 = new System.Windows.Forms.FlowLayoutPanel();
     this.UpdatePassword = new System.Windows.Forms.Button();
     this.currentPassword = new System.Windows.Forms.TextBox();
     this.newPassword = new System.Windows.Forms.TextBox();
     this.confirmPassword = new System.Windows.Forms.TextBox();
     this.tableLayoutPanel1.SuspendLayout();
     this.flowLayoutPanel1.SuspendLayout();
     this.OptionTabControl.SuspendLayout();
     this.GameTab.SuspendLayout();
     this.tableLayoutPanel2.SuspendLayout();
     this.groupBox2.SuspendLayout();
     this.tableLayoutPanel4.SuspendLayout();
     this.tableLayoutPanel8.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.Antialias)).BeginInit();
     this.tableLayoutPanel7.SuspendLayout();
     this.tableLayoutPanel3.SuspendLayout();
     this.groupBox1.SuspendLayout();
     this.tableLayoutPanel5.SuspendLayout();
     this.groupBox3.SuspendLayout();
     this.tableLayoutPanel6.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.FontSize)).BeginInit();
     this.groupBox4.SuspendLayout();
     this.tableLayoutPanel9.SuspendLayout();
     this.accountTab.SuspendLayout();
     this.tableLayoutPanel10.SuspendLayout();
     this.groupBox5.SuspendLayout();
     this.tableLayoutPanel11.SuspendLayout();
     this.flowLayoutPanel2.SuspendLayout();
     this.SuspendLayout();
     //
     // tableLayoutPanel1
     //
     this.tableLayoutPanel1.ColumnCount = 1;
     this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F));
     this.tableLayoutPanel1.Controls.Add(this.flowLayoutPanel1, 0, 1);
     this.tableLayoutPanel1.Controls.Add(this.OptionTabControl, 0, 0);
     this.tableLayoutPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tableLayoutPanel1.Location = new System.Drawing.Point(0, 0);
     this.tableLayoutPanel1.Name = "tableLayoutPanel1";
     this.tableLayoutPanel1.RowCount = 2;
     this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 100F));
     this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 35F));
     this.tableLayoutPanel1.Size = new System.Drawing.Size(608, 362);
     this.tableLayoutPanel1.TabIndex = 0;
     //
     // flowLayoutPanel1
     //
     this.flowLayoutPanel1.Controls.Add(this.CancelBtn);
     this.flowLayoutPanel1.Controls.Add(this.SaveBtn);
     this.flowLayoutPanel1.Controls.Add(this.QuickSettingsBtn);
     this.flowLayoutPanel1.Controls.Add(this.RequestSettingsbtn);
     this.flowLayoutPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.flowLayoutPanel1.FlowDirection = System.Windows.Forms.FlowDirection.RightToLeft;
     this.flowLayoutPanel1.Location = new System.Drawing.Point(3, 330);
     this.flowLayoutPanel1.Name = "flowLayoutPanel1";
     this.flowLayoutPanel1.Size = new System.Drawing.Size(602, 29);
     this.flowLayoutPanel1.TabIndex = 7;
     //
     // CancelBtn
     //
     this.CancelBtn.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     this.CancelBtn.Location = new System.Drawing.Point(524, 3);
     this.CancelBtn.Name = "CancelBtn";
     this.CancelBtn.Size = new System.Drawing.Size(75, 23);
     this.CancelBtn.TabIndex = 1;
     this.CancelBtn.Text = "Cancel";
     this.CancelBtn.UseVisualStyleBackColor = true;
     //
     // SaveBtn
     //
     this.SaveBtn.Location = new System.Drawing.Point(443, 3);
     this.SaveBtn.Name = "SaveBtn";
     this.SaveBtn.Size = new System.Drawing.Size(75, 23);
     this.SaveBtn.TabIndex = 0;
     this.SaveBtn.Text = "Save";
     this.SaveBtn.UseVisualStyleBackColor = true;
     this.SaveBtn.Click += new System.EventHandler(this.SaveBtn_Click);
     //
     // QuickSettingsBtn
     //
     this.QuickSettingsBtn.Location = new System.Drawing.Point(327, 3);
     this.QuickSettingsBtn.Name = "QuickSettingsBtn";
     this.QuickSettingsBtn.Size = new System.Drawing.Size(110, 23);
     this.QuickSettingsBtn.TabIndex = 5;
     this.QuickSettingsBtn.Text = "Quick Host Settings";
     this.QuickSettingsBtn.UseVisualStyleBackColor = true;
     this.QuickSettingsBtn.Click += new System.EventHandler(this.QuickSettingsBtn_Click);
     //
     // RequestSettingsbtn
     //
     this.RequestSettingsbtn.Location = new System.Drawing.Point(206, 3);
     this.RequestSettingsbtn.Name = "RequestSettingsbtn";
     this.RequestSettingsbtn.Size = new System.Drawing.Size(115, 23);
     this.RequestSettingsbtn.TabIndex = 2;
     this.RequestSettingsbtn.Text = "Request Settings";
     this.RequestSettingsbtn.UseVisualStyleBackColor = true;
     this.RequestSettingsbtn.Click += new System.EventHandler(this.RequestSettingsbtn_Click);
     //
     // OptionTabControl
     //
     this.OptionTabControl.Appearance = System.Windows.Forms.TabAppearance.FlatButtons;
     this.OptionTabControl.Controls.Add(this.GameTab);
     this.OptionTabControl.Controls.Add(this.accountTab);
     this.OptionTabControl.Dock = System.Windows.Forms.DockStyle.Fill;
     this.OptionTabControl.Location = new System.Drawing.Point(3, 3);
     this.OptionTabControl.Name = "OptionTabControl";
     this.OptionTabControl.SelectedIndex = 0;
     this.OptionTabControl.Size = new System.Drawing.Size(602, 321);
     this.OptionTabControl.TabIndex = 8;
     //
     // GameTab
     //
     this.GameTab.Controls.Add(this.tableLayoutPanel2);
     this.GameTab.Location = new System.Drawing.Point(4, 25);
     this.GameTab.Name = "GameTab";
     this.GameTab.Padding = new System.Windows.Forms.Padding(3);
     this.GameTab.Size = new System.Drawing.Size(594, 292);
     this.GameTab.TabIndex = 0;
     this.GameTab.Text = "Game Settings";
     this.GameTab.UseVisualStyleBackColor = true;
     //
     // tableLayoutPanel2
     //
     this.tableLayoutPanel2.ColumnCount = 1;
     this.tableLayoutPanel2.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F));
     this.tableLayoutPanel2.Controls.Add(this.groupBox2, 0, 1);
     this.tableLayoutPanel2.Controls.Add(this.tableLayoutPanel3, 0, 0);
     this.tableLayoutPanel2.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tableLayoutPanel2.Location = new System.Drawing.Point(3, 3);
     this.tableLayoutPanel2.Name = "tableLayoutPanel2";
     this.tableLayoutPanel2.RowCount = 2;
     this.tableLayoutPanel2.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 150F));
     this.tableLayoutPanel2.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 125F));
     this.tableLayoutPanel2.Size = new System.Drawing.Size(588, 286);
     this.tableLayoutPanel2.TabIndex = 2;
     //
     // groupBox2
     //
     this.groupBox2.Controls.Add(this.tableLayoutPanel4);
     this.groupBox2.Dock = System.Windows.Forms.DockStyle.Fill;
     this.groupBox2.Location = new System.Drawing.Point(3, 153);
     this.groupBox2.Name = "groupBox2";
     this.groupBox2.Size = new System.Drawing.Size(582, 130);
     this.groupBox2.TabIndex = 5;
     this.groupBox2.TabStop = false;
     this.groupBox2.Text = "Game Settings";
     //
     // tableLayoutPanel4
     //
     this.tableLayoutPanel4.ColumnCount = 2;
     this.tableLayoutPanel4.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50F));
     this.tableLayoutPanel4.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50F));
     this.tableLayoutPanel4.Controls.Add(this.tableLayoutPanel8, 0, 0);
     this.tableLayoutPanel4.Controls.Add(this.tableLayoutPanel7, 0, 0);
     this.tableLayoutPanel4.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tableLayoutPanel4.Location = new System.Drawing.Point(3, 16);
     this.tableLayoutPanel4.Name = "tableLayoutPanel4";
     this.tableLayoutPanel4.RowCount = 1;
     this.tableLayoutPanel4.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 50F));
     this.tableLayoutPanel4.Size = new System.Drawing.Size(576, 111);
     this.tableLayoutPanel4.TabIndex = 0;
     //
     // tableLayoutPanel8
     //
     this.tableLayoutPanel8.ColumnCount = 2;
     this.tableLayoutPanel8.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50F));
     this.tableLayoutPanel8.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50F));
     this.tableLayoutPanel8.Controls.Add(this.SkinList, 1, 2);
     this.tableLayoutPanel8.Controls.Add(this.label4, 0, 2);
     this.tableLayoutPanel8.Controls.Add(this.label6, 0, 1);
     this.tableLayoutPanel8.Controls.Add(this.Antialias, 1, 1);
     this.tableLayoutPanel8.Controls.Add(this.EnableSleeveLoading, 0, 0);
     this.tableLayoutPanel8.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tableLayoutPanel8.Location = new System.Drawing.Point(291, 3);
     this.tableLayoutPanel8.Name = "tableLayoutPanel8";
     this.tableLayoutPanel8.RowCount = 3;
     this.tableLayoutPanel8.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
     this.tableLayoutPanel8.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
     this.tableLayoutPanel8.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
     this.tableLayoutPanel8.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 20F));
     this.tableLayoutPanel8.Size = new System.Drawing.Size(282, 105);
     this.tableLayoutPanel8.TabIndex = 2;
     //
     // SkinList
     //
     this.SkinList.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right)));
     this.SkinList.FormattingEnabled = true;
     this.SkinList.Items.AddRange(new object[] {
     "Default"});
     this.SkinList.Location = new System.Drawing.Point(144, 67);
     this.SkinList.Name = "SkinList";
     this.SkinList.Size = new System.Drawing.Size(135, 21);
     this.SkinList.TabIndex = 6;
     //
     // label4
     //
     this.label4.AutoSize = true;
     this.label4.Dock = System.Windows.Forms.DockStyle.Fill;
     this.label4.Location = new System.Drawing.Point(3, 50);
     this.label4.Name = "label4";
     this.label4.Size = new System.Drawing.Size(135, 55);
     this.label4.TabIndex = 7;
     this.label4.Text = "Skin";
     this.label4.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // label6
     //
     this.label6.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.label6.AutoSize = true;
     this.label6.Location = new System.Drawing.Point(47, 31);
     this.label6.Name = "label6";
     this.label6.Size = new System.Drawing.Size(46, 13);
     this.label6.TabIndex = 4;
     this.label6.Text = "Antialias";
     //
     // Antialias
     //
     this.Antialias.Dock = System.Windows.Forms.DockStyle.Fill;
     this.Antialias.Location = new System.Drawing.Point(144, 28);
     this.Antialias.Maximum = new decimal(new int[] {
     32,
     0,
     0,
     0});
     this.Antialias.Name = "Antialias";
     this.Antialias.ReadOnly = true;
     this.Antialias.Size = new System.Drawing.Size(135, 20);
     this.Antialias.TabIndex = 5;
     this.Antialias.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     //
     // EnableSleeveLoading
     //
     this.EnableSleeveLoading.Anchor = System.Windows.Forms.AnchorStyles.Right;
     this.EnableSleeveLoading.AutoSize = true;
     this.EnableSleeveLoading.CheckAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.EnableSleeveLoading.Location = new System.Drawing.Point(18, 4);
     this.EnableSleeveLoading.Name = "EnableSleeveLoading";
     this.EnableSleeveLoading.Size = new System.Drawing.Size(120, 17);
     this.EnableSleeveLoading.TabIndex = 8;
     this.EnableSleeveLoading.Text = "Enable User Covers";
     this.EnableSleeveLoading.UseVisualStyleBackColor = true;
     //
     // tableLayoutPanel7
     //
     this.tableLayoutPanel7.ColumnCount = 2;
     this.tableLayoutPanel7.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50F));
     this.tableLayoutPanel7.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50F));
     this.tableLayoutPanel7.Controls.Add(this.AutoPlacing, 0, 0);
     this.tableLayoutPanel7.Controls.Add(this.RandomPlacing, 1, 0);
     this.tableLayoutPanel7.Controls.Add(this.Fullscreen, 1, 3);
     this.tableLayoutPanel7.Controls.Add(this.Enabled3d, 0, 3);
     this.tableLayoutPanel7.Controls.Add(this.EnableMusic, 1, 2);
     this.tableLayoutPanel7.Controls.Add(this.AutoChain, 0, 1);
     this.tableLayoutPanel7.Controls.Add(this.EnableSound, 0, 2);
     this.tableLayoutPanel7.Controls.Add(this.NoDelay, 1, 1);
     this.tableLayoutPanel7.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tableLayoutPanel7.Location = new System.Drawing.Point(3, 3);
     this.tableLayoutPanel7.Name = "tableLayoutPanel7";
     this.tableLayoutPanel7.RowCount = 4;
     this.tableLayoutPanel7.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
     this.tableLayoutPanel7.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
     this.tableLayoutPanel7.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
     this.tableLayoutPanel7.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 20F));
     this.tableLayoutPanel7.Size = new System.Drawing.Size(282, 105);
     this.tableLayoutPanel7.TabIndex = 1;
     //
     // AutoPlacing
     //
     this.AutoPlacing.Anchor = System.Windows.Forms.AnchorStyles.Right;
     this.AutoPlacing.AutoSize = true;
     this.AutoPlacing.CheckAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.AutoPlacing.Location = new System.Drawing.Point(27, 4);
     this.AutoPlacing.Name = "AutoPlacing";
     this.AutoPlacing.Size = new System.Drawing.Size(111, 17);
     this.AutoPlacing.TabIndex = 3;
     this.AutoPlacing.Text = "Auto Card Placing";
     this.AutoPlacing.UseVisualStyleBackColor = true;
     //
     // RandomPlacing
     //
     this.RandomPlacing.Anchor = System.Windows.Forms.AnchorStyles.Right;
     this.RandomPlacing.AutoSize = true;
     this.RandomPlacing.CheckAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.RandomPlacing.Location = new System.Drawing.Point(150, 4);
     this.RandomPlacing.Name = "RandomPlacing";
     this.RandomPlacing.Size = new System.Drawing.Size(129, 17);
     this.RandomPlacing.TabIndex = 4;
     this.RandomPlacing.Text = "Random Card Placing";
     this.RandomPlacing.UseVisualStyleBackColor = true;
     //
     // Fullscreen
     //
     this.Fullscreen.Anchor = System.Windows.Forms.AnchorStyles.Right;
     this.Fullscreen.AutoSize = true;
     this.Fullscreen.CheckAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.Fullscreen.Location = new System.Drawing.Point(187, 81);
     this.Fullscreen.Name = "Fullscreen";
     this.Fullscreen.Size = new System.Drawing.Size(92, 17);
     this.Fullscreen.TabIndex = 3;
     this.Fullscreen.Text = "Fullscreen      ";
     this.Fullscreen.UseVisualStyleBackColor = true;
     //
     // Enabled3d
     //
     this.Enabled3d.Anchor = System.Windows.Forms.AnchorStyles.Right;
     this.Enabled3d.AutoSize = true;
     this.Enabled3d.CheckAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.Enabled3d.Location = new System.Drawing.Point(43, 81);
     this.Enabled3d.Name = "Enabled3d";
     this.Enabled3d.Size = new System.Drawing.Size(95, 17);
     this.Enabled3d.TabIndex = 2;
     this.Enabled3d.Text = "Enable Directx";
     this.Enabled3d.UseVisualStyleBackColor = true;
     //
     // EnableMusic
     //
     this.EnableMusic.Anchor = System.Windows.Forms.AnchorStyles.Right;
     this.EnableMusic.AutoSize = true;
     this.EnableMusic.CheckAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.EnableMusic.Location = new System.Drawing.Point(189, 54);
     this.EnableMusic.Name = "EnableMusic";
     this.EnableMusic.Size = new System.Drawing.Size(90, 17);
     this.EnableMusic.TabIndex = 1;
     this.EnableMusic.Text = "Enable Music";
     this.EnableMusic.UseVisualStyleBackColor = true;
     //
     // AutoChain
     //
     this.AutoChain.Anchor = System.Windows.Forms.AnchorStyles.Right;
     this.AutoChain.AutoSize = true;
     this.AutoChain.CheckAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.AutoChain.Location = new System.Drawing.Point(31, 29);
     this.AutoChain.Name = "AutoChain";
     this.AutoChain.Size = new System.Drawing.Size(107, 17);
     this.AutoChain.TabIndex = 5;
     this.AutoChain.Text = "Auto Chain Order";
     this.AutoChain.UseVisualStyleBackColor = true;
     //
     // EnableSound
     //
     this.EnableSound.Anchor = System.Windows.Forms.AnchorStyles.Right;
     this.EnableSound.AutoSize = true;
     this.EnableSound.CheckAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.EnableSound.Location = new System.Drawing.Point(45, 54);
     this.EnableSound.Name = "EnableSound";
     this.EnableSound.Size = new System.Drawing.Size(93, 17);
     this.EnableSound.TabIndex = 0;
     this.EnableSound.Text = "Enable Sound";
     this.EnableSound.UseVisualStyleBackColor = true;
     //
     // NoDelay
     //
     this.NoDelay.Anchor = System.Windows.Forms.AnchorStyles.Right;
     this.NoDelay.AutoSize = true;
     this.NoDelay.CheckAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.NoDelay.Location = new System.Drawing.Point(164, 29);
     this.NoDelay.Name = "NoDelay";
     this.NoDelay.Size = new System.Drawing.Size(115, 17);
     this.NoDelay.TabIndex = 6;
     this.NoDelay.Text = "No Delay for Chain";
     this.NoDelay.UseVisualStyleBackColor = true;
     //
     // tableLayoutPanel3
     //
     this.tableLayoutPanel3.ColumnCount = 1;
     this.tableLayoutPanel3.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F));
     this.tableLayoutPanel3.Controls.Add(this.groupBox1, 0, 0);
     this.tableLayoutPanel3.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tableLayoutPanel3.Location = new System.Drawing.Point(3, 3);
     this.tableLayoutPanel3.Name = "tableLayoutPanel3";
     this.tableLayoutPanel3.RowCount = 1;
     this.tableLayoutPanel3.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 144F));
     this.tableLayoutPanel3.Size = new System.Drawing.Size(582, 144);
     this.tableLayoutPanel3.TabIndex = 4;
     //
     // groupBox1
     //
     this.groupBox1.Controls.Add(this.tableLayoutPanel5);
     this.groupBox1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.groupBox1.Location = new System.Drawing.Point(3, 3);
     this.groupBox1.Name = "groupBox1";
     this.groupBox1.Size = new System.Drawing.Size(576, 138);
     this.groupBox1.TabIndex = 1;
     this.groupBox1.TabStop = false;
     this.groupBox1.Text = "User Settings";
     //
     // tableLayoutPanel5
     //
     this.tableLayoutPanel5.ColumnCount = 2;
     this.tableLayoutPanel5.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50F));
     this.tableLayoutPanel5.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50F));
     this.tableLayoutPanel5.Controls.Add(this.groupBox3, 0, 0);
     this.tableLayoutPanel5.Controls.Add(this.groupBox4, 1, 0);
     this.tableLayoutPanel5.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tableLayoutPanel5.Location = new System.Drawing.Point(3, 16);
     this.tableLayoutPanel5.Name = "tableLayoutPanel5";
     this.tableLayoutPanel5.RowCount = 1;
     this.tableLayoutPanel5.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 50F));
     this.tableLayoutPanel5.Size = new System.Drawing.Size(570, 119);
     this.tableLayoutPanel5.TabIndex = 0;
     //
     // groupBox3
     //
     this.groupBox3.Controls.Add(this.tableLayoutPanel6);
     this.groupBox3.Dock = System.Windows.Forms.DockStyle.Fill;
     this.groupBox3.Location = new System.Drawing.Point(3, 3);
     this.groupBox3.Name = "groupBox3";
     this.groupBox3.Size = new System.Drawing.Size(279, 113);
     this.groupBox3.TabIndex = 7;
     this.groupBox3.TabStop = false;
     this.groupBox3.Text = "Font Settings";
     //
     // tableLayoutPanel6
     //
     this.tableLayoutPanel6.ColumnCount = 2;
     this.tableLayoutPanel6.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50F));
     this.tableLayoutPanel6.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50F));
     this.tableLayoutPanel6.Controls.Add(this.label3, 0, 1);
     this.tableLayoutPanel6.Controls.Add(this.label2, 0, 0);
     this.tableLayoutPanel6.Controls.Add(this.FontSize, 1, 0);
     this.tableLayoutPanel6.Controls.Add(this.GameFont, 1, 1);
     this.tableLayoutPanel6.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tableLayoutPanel6.Location = new System.Drawing.Point(3, 16);
     this.tableLayoutPanel6.Name = "tableLayoutPanel6";
     this.tableLayoutPanel6.RowCount = 3;
     this.tableLayoutPanel6.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 29F));
     this.tableLayoutPanel6.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 21F));
     this.tableLayoutPanel6.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 20F));
     this.tableLayoutPanel6.Size = new System.Drawing.Size(273, 94);
     this.tableLayoutPanel6.TabIndex = 2;
     //
     // label3
     //
     this.label3.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.label3.AutoSize = true;
     this.label3.Location = new System.Drawing.Point(38, 33);
     this.label3.Name = "label3";
     this.label3.Size = new System.Drawing.Size(59, 13);
     this.label3.TabIndex = 6;
     this.label3.Text = "Game Font";
     //
     // label2
     //
     this.label2.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.label2.AutoSize = true;
     this.label2.Location = new System.Drawing.Point(42, 8);
     this.label2.Name = "label2";
     this.label2.Size = new System.Drawing.Size(51, 13);
     this.label2.TabIndex = 4;
     this.label2.Text = "Font Size";
     //
     // FontSize
     //
     this.FontSize.Dock = System.Windows.Forms.DockStyle.Fill;
     this.FontSize.Location = new System.Drawing.Point(139, 3);
     this.FontSize.Maximum = new decimal(new int[] {
     32,
     0,
     0,
     0});
     this.FontSize.Name = "FontSize";
     this.FontSize.ReadOnly = true;
     this.FontSize.Size = new System.Drawing.Size(131, 20);
     this.FontSize.TabIndex = 5;
     this.FontSize.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     //
     // GameFont
     //
     this.GameFont.Dock = System.Windows.Forms.DockStyle.Fill;
     this.GameFont.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.GameFont.FormattingEnabled = true;
     this.GameFont.Items.AddRange(new object[] {
     "simhei.ttf"});
     this.GameFont.Location = new System.Drawing.Point(139, 32);
     this.GameFont.Name = "GameFont";
     this.GameFont.Size = new System.Drawing.Size(131, 21);
     this.GameFont.TabIndex = 7;
     //
     // groupBox4
     //
     this.groupBox4.Controls.Add(this.tableLayoutPanel9);
     this.groupBox4.Dock = System.Windows.Forms.DockStyle.Fill;
     this.groupBox4.Location = new System.Drawing.Point(288, 3);
     this.groupBox4.Name = "groupBox4";
     this.groupBox4.Size = new System.Drawing.Size(279, 113);
     this.groupBox4.TabIndex = 8;
     this.groupBox4.TabStop = false;
     this.groupBox4.Text = "Launcher Settings";
     //
     // tableLayoutPanel9
     //
     this.tableLayoutPanel9.ColumnCount = 2;
     this.tableLayoutPanel9.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50F));
     this.tableLayoutPanel9.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50F));
     this.tableLayoutPanel9.Controls.Add(this.Username, 1, 0);
     this.tableLayoutPanel9.Controls.Add(this.label1, 0, 0);
     this.tableLayoutPanel9.Controls.Add(this.DefualtDeck, 1, 1);
     this.tableLayoutPanel9.Controls.Add(this.label5, 0, 1);
     this.tableLayoutPanel9.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tableLayoutPanel9.Location = new System.Drawing.Point(3, 16);
     this.tableLayoutPanel9.Name = "tableLayoutPanel9";
     this.tableLayoutPanel9.RowCount = 3;
     this.tableLayoutPanel9.RowStyles.Add(new System.Windows.Forms.RowStyle());
     this.tableLayoutPanel9.RowStyles.Add(new System.Windows.Forms.RowStyle());
     this.tableLayoutPanel9.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 40F));
     this.tableLayoutPanel9.Size = new System.Drawing.Size(273, 94);
     this.tableLayoutPanel9.TabIndex = 2;
     //
     // Username
     //
     this.Username.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right)));
     this.Username.Location = new System.Drawing.Point(139, 3);
     this.Username.Name = "Username";
     this.Username.Size = new System.Drawing.Size(131, 20);
     this.Username.TabIndex = 0;
     //
     // label1
     //
     this.label1.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.label1.AutoSize = true;
     this.label1.Location = new System.Drawing.Point(22, 6);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(92, 13);
     this.label1.TabIndex = 2;
     this.label1.Text = "Default Username";
     //
     // DefualtDeck
     //
     this.DefualtDeck.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right)));
     this.DefualtDeck.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.DefualtDeck.FormattingEnabled = true;
     this.DefualtDeck.Location = new System.Drawing.Point(139, 29);
     this.DefualtDeck.Name = "DefualtDeck";
     this.DefualtDeck.Size = new System.Drawing.Size(131, 21);
     this.DefualtDeck.TabIndex = 3;
     //
     // label5
     //
     this.label5.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.label5.AutoSize = true;
     this.label5.Location = new System.Drawing.Point(33, 33);
     this.label5.Name = "label5";
     this.label5.Size = new System.Drawing.Size(70, 13);
     this.label5.TabIndex = 4;
     this.label5.Text = "Default Deck";
     //
     // accountTab
     //
     this.accountTab.Controls.Add(this.tableLayoutPanel10);
     this.accountTab.Location = new System.Drawing.Point(4, 25);
     this.accountTab.Name = "accountTab";
     this.accountTab.Padding = new System.Windows.Forms.Padding(3);
     this.accountTab.Size = new System.Drawing.Size(594, 292);
     this.accountTab.TabIndex = 1;
     this.accountTab.Text = "Account Settings";
     this.accountTab.UseVisualStyleBackColor = true;
     //
     // tableLayoutPanel10
     //
     this.tableLayoutPanel10.ColumnCount = 2;
     this.tableLayoutPanel10.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50F));
     this.tableLayoutPanel10.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50F));
     this.tableLayoutPanel10.Controls.Add(this.groupBox5, 0, 0);
     this.tableLayoutPanel10.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tableLayoutPanel10.Location = new System.Drawing.Point(3, 3);
     this.tableLayoutPanel10.Name = "tableLayoutPanel10";
     this.tableLayoutPanel10.RowCount = 1;
     this.tableLayoutPanel10.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 50F));
     this.tableLayoutPanel10.Size = new System.Drawing.Size(588, 286);
     this.tableLayoutPanel10.TabIndex = 0;
     //
     // groupBox5
     //
     this.groupBox5.Controls.Add(this.tableLayoutPanel11);
     this.groupBox5.Location = new System.Drawing.Point(3, 3);
     this.groupBox5.Name = "groupBox5";
     this.groupBox5.Size = new System.Drawing.Size(288, 129);
     this.groupBox5.TabIndex = 0;
     this.groupBox5.TabStop = false;
     this.groupBox5.Text = "Update Password";
     //
     // tableLayoutPanel11
     //
     this.tableLayoutPanel11.ColumnCount = 2;
     this.tableLayoutPanel11.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 36.87943F));
     this.tableLayoutPanel11.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 63.12057F));
     this.tableLayoutPanel11.Controls.Add(this.label7, 0, 0);
     this.tableLayoutPanel11.Controls.Add(this.label8, 0, 1);
     this.tableLayoutPanel11.Controls.Add(this.label9, 0, 2);
     this.tableLayoutPanel11.Controls.Add(this.flowLayoutPanel2, 1, 3);
     this.tableLayoutPanel11.Controls.Add(this.currentPassword, 1, 0);
     this.tableLayoutPanel11.Controls.Add(this.newPassword, 1, 1);
     this.tableLayoutPanel11.Controls.Add(this.confirmPassword, 1, 2);
     this.tableLayoutPanel11.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tableLayoutPanel11.Location = new System.Drawing.Point(3, 16);
     this.tableLayoutPanel11.Name = "tableLayoutPanel11";
     this.tableLayoutPanel11.RowCount = 5;
     this.tableLayoutPanel11.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
     this.tableLayoutPanel11.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
     this.tableLayoutPanel11.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
     this.tableLayoutPanel11.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 38F));
     this.tableLayoutPanel11.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 100F));
     this.tableLayoutPanel11.Size = new System.Drawing.Size(282, 110);
     this.tableLayoutPanel11.TabIndex = 0;
     //
     // label7
     //
     this.label7.Dock = System.Windows.Forms.DockStyle.Fill;
     this.label7.Location = new System.Drawing.Point(3, 0);
     this.label7.Name = "label7";
     this.label7.Size = new System.Drawing.Size(97, 25);
     this.label7.TabIndex = 0;
     this.label7.Text = "Current Password";
     this.label7.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // label8
     //
     this.label8.Dock = System.Windows.Forms.DockStyle.Fill;
     this.label8.Location = new System.Drawing.Point(3, 25);
     this.label8.Name = "label8";
     this.label8.Size = new System.Drawing.Size(97, 25);
     this.label8.TabIndex = 1;
     this.label8.Text = "New Password";
     this.label8.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // label9
     //
     this.label9.Dock = System.Windows.Forms.DockStyle.Fill;
     this.label9.Location = new System.Drawing.Point(3, 50);
     this.label9.Name = "label9";
     this.label9.Size = new System.Drawing.Size(97, 25);
     this.label9.TabIndex = 2;
     this.label9.Text = "Confirm Password";
     this.label9.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // flowLayoutPanel2
     //
     this.flowLayoutPanel2.Controls.Add(this.UpdatePassword);
     this.flowLayoutPanel2.Dock = System.Windows.Forms.DockStyle.Fill;
     this.flowLayoutPanel2.FlowDirection = System.Windows.Forms.FlowDirection.RightToLeft;
     this.flowLayoutPanel2.Location = new System.Drawing.Point(106, 78);
     this.flowLayoutPanel2.Name = "flowLayoutPanel2";
     this.flowLayoutPanel2.Size = new System.Drawing.Size(173, 32);
     this.flowLayoutPanel2.TabIndex = 3;
     //
     // UpdatePassword
     //
     this.UpdatePassword.Location = new System.Drawing.Point(78, 3);
     this.UpdatePassword.Name = "UpdatePassword";
     this.UpdatePassword.Size = new System.Drawing.Size(92, 23);
     this.UpdatePassword.TabIndex = 0;
     this.UpdatePassword.Text = "Update";
     this.UpdatePassword.UseVisualStyleBackColor = true;
     this.UpdatePassword.Click += new System.EventHandler(this.UpdatePassword_Click);
     //
     // currentPassword
     //
     this.currentPassword.Dock = System.Windows.Forms.DockStyle.Fill;
     this.currentPassword.Location = new System.Drawing.Point(106, 3);
     this.currentPassword.MaxLength = 15;
     this.currentPassword.Name = "currentPassword";
     this.currentPassword.Size = new System.Drawing.Size(173, 20);
     this.currentPassword.TabIndex = 4;
     this.currentPassword.UseSystemPasswordChar = true;
     //
     // newPassword
     //
     this.newPassword.Dock = System.Windows.Forms.DockStyle.Fill;
     this.newPassword.Location = new System.Drawing.Point(106, 28);
     this.newPassword.MaxLength = 15;
     this.newPassword.Name = "newPassword";
     this.newPassword.Size = new System.Drawing.Size(173, 20);
     this.newPassword.TabIndex = 5;
     this.newPassword.UseSystemPasswordChar = true;
     //
     // confirmPassword
     //
     this.confirmPassword.Dock = System.Windows.Forms.DockStyle.Fill;
     this.confirmPassword.Location = new System.Drawing.Point(106, 53);
     this.confirmPassword.MaxLength = 15;
     this.confirmPassword.Name = "confirmPassword";
     this.confirmPassword.Size = new System.Drawing.Size(173, 20);
     this.confirmPassword.TabIndex = 6;
     this.confirmPassword.UseSystemPasswordChar = true;
     //
     // Settings
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi;
     this.ClientSize = new System.Drawing.Size(608, 362);
     this.ControlBox = false;
     this.Controls.Add(this.tableLayoutPanel1);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
     this.Name = "Settings";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
     this.Text = "Options";
     this.tableLayoutPanel1.ResumeLayout(false);
     this.flowLayoutPanel1.ResumeLayout(false);
     this.OptionTabControl.ResumeLayout(false);
     this.GameTab.ResumeLayout(false);
     this.tableLayoutPanel2.ResumeLayout(false);
     this.groupBox2.ResumeLayout(false);
     this.tableLayoutPanel4.ResumeLayout(false);
     this.tableLayoutPanel8.ResumeLayout(false);
     this.tableLayoutPanel8.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.Antialias)).EndInit();
     this.tableLayoutPanel7.ResumeLayout(false);
     this.tableLayoutPanel7.PerformLayout();
     this.tableLayoutPanel3.ResumeLayout(false);
     this.groupBox1.ResumeLayout(false);
     this.tableLayoutPanel5.ResumeLayout(false);
     this.groupBox3.ResumeLayout(false);
     this.tableLayoutPanel6.ResumeLayout(false);
     this.tableLayoutPanel6.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.FontSize)).EndInit();
     this.groupBox4.ResumeLayout(false);
     this.tableLayoutPanel9.ResumeLayout(false);
     this.tableLayoutPanel9.PerformLayout();
     this.accountTab.ResumeLayout(false);
     this.tableLayoutPanel10.ResumeLayout(false);
     this.groupBox5.ResumeLayout(false);
     this.tableLayoutPanel11.ResumeLayout(false);
     this.tableLayoutPanel11.PerformLayout();
     this.flowLayoutPanel2.ResumeLayout(false);
     this.ResumeLayout(false);
 }
Example #37
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.Windows.Forms.FlowLayoutPanel _lytButtons;
			System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(SubscribeForm));
			this._applyButton = new System.Windows.Forms.Button();
			this._cancelButton = new System.Windows.Forms.Button();
			this._okButton = new System.Windows.Forms.Button();
			this._forumListView = new System.Windows.Forms.ListView();
			this._typeColumnHeader = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
			this._forumColumnHeader = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
			this._descriptionColumnHeader = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
			this._formImages = new System.Windows.Forms.ImageList(this.components);
			this._messageLabel = new System.Windows.Forms.Label();
			this._syncForumsButton = new System.Windows.Forms.Button();
			this._priority = new System.Windows.Forms.NumericUpDown();
			_lytButtons = new System.Windows.Forms.FlowLayoutPanel();
			_lytButtons.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this._priority)).BeginInit();
			this.SuspendLayout();
			// 
			// _lytButtons
			// 
			resources.ApplyResources(_lytButtons, "_lytButtons");
			_lytButtons.Controls.Add(this._applyButton);
			_lytButtons.Controls.Add(this._cancelButton);
			_lytButtons.Controls.Add(this._okButton);
			_lytButtons.Name = "_lytButtons";
			// 
			// _applyButton
			// 
			resources.ApplyResources(this._applyButton, "_applyButton");
			this._applyButton.Name = "_applyButton";
			this._applyButton.Click += new System.EventHandler(this.BtnApplyClick);
			// 
			// _cancelButton
			// 
			resources.ApplyResources(this._cancelButton, "_cancelButton");
			this._cancelButton.DialogResult = System.Windows.Forms.DialogResult.Cancel;
			this._cancelButton.Name = "_cancelButton";
			// 
			// _okButton
			// 
			resources.ApplyResources(this._okButton, "_okButton");
			this._okButton.DialogResult = System.Windows.Forms.DialogResult.OK;
			this._okButton.Name = "_okButton";
			this._okButton.Click += new System.EventHandler(this.BtnOkClick);
			// 
			// _forumListView
			// 
			resources.ApplyResources(this._forumListView, "_forumListView");
			this._forumListView.CheckBoxes = true;
			this._forumListView.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
			this._typeColumnHeader,
			this._forumColumnHeader,
			this._descriptionColumnHeader});
			this._forumListView.FullRowSelect = true;
			this._forumListView.GridLines = true;
			this._forumListView.HideSelection = false;
			this._forumListView.Name = "_forumListView";
			this._forumListView.SmallImageList = this._formImages;
			this._forumListView.UseCompatibleStateImageBehavior = false;
			this._forumListView.View = System.Windows.Forms.View.Details;
			this._forumListView.ColumnClick += new System.Windows.Forms.ColumnClickEventHandler(this.ForumListViewColumnClick);
			this._forumListView.SelectedIndexChanged += new System.EventHandler(this.ForumListViewSelectedIndexChanged);
			// 
			// _typeColumnHeader
			// 
			resources.ApplyResources(this._typeColumnHeader, "_typeColumnHeader");
			// 
			// _forumColumnHeader
			// 
			resources.ApplyResources(this._forumColumnHeader, "_forumColumnHeader");
			// 
			// _descriptionColumnHeader
			// 
			resources.ApplyResources(this._descriptionColumnHeader, "_descriptionColumnHeader");
			// 
			// _formImages
			// 
			this._formImages.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("_formImages.ImageStream")));
			this._formImages.TransparentColor = System.Drawing.Color.Transparent;
			this._formImages.Images.SetKeyName(0, "");
			this._formImages.Images.SetKeyName(1, "");
			// 
			// _messageLabel
			// 
			resources.ApplyResources(this._messageLabel, "_messageLabel");
			this._messageLabel.Name = "_messageLabel";
			// 
			// _syncForumsButton
			// 
			resources.ApplyResources(this._syncForumsButton, "_syncForumsButton");
			this._syncForumsButton.Name = "_syncForumsButton";
			this._syncForumsButton.Click += new System.EventHandler(this.BtnSyncForumsClick);
			// 
			// _priority
			// 
			resources.ApplyResources(this._priority, "_priority");
			this._priority.Maximum = new decimal(new int[] {
			9,
			0,
			0,
			0});
			this._priority.Name = "_priority";
			this._priority.ValueChanged += new System.EventHandler(this.PriorityValueChanged);
			// 
			// SubscribeForm
			// 
			this.AcceptButton = this._okButton;
			resources.ApplyResources(this, "$this");
			this.CancelButton = this._cancelButton;
			this.Controls.Add(_lytButtons);
			this.Controls.Add(this._priority);
			this.Controls.Add(this._syncForumsButton);
			this.Controls.Add(this._messageLabel);
			this.Controls.Add(this._forumListView);
			this.MaximizeBox = false;
			this.MinimizeBox = false;
			this.Name = "SubscribeForm";
			this.ShowInTaskbar = false;
			_lytButtons.ResumeLayout(false);
			_lytButtons.PerformLayout();
			((System.ComponentModel.ISupportInitialize)(this._priority)).EndInit();
			this.ResumeLayout(false);
			this.PerformLayout();
		}
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 protected override void InitializeComponent()
 {
     _buttomControlLayoutpanel = new System.Windows.Forms.FlowLayoutPanel();
     _addButton    = new System.Windows.Forms.Button();
     _cancelButton = new System.Windows.Forms.Button();
     _divider      = new DialogDivider();
     _userInputTableLayoutPanel   = new System.Windows.Forms.TableLayoutPanel();
     _dateTimePicker              = new System.Windows.Forms.DateTimePicker();
     _requestedLocationTextBox    = new System.Windows.Forms.TextBox();
     _signatureAppliedByDateLabel = new System.Windows.Forms.Label();
     _requestSignerNameLabel      = new System.Windows.Forms.Label();
     _requestLocationLabel        = new System.Windows.Forms.Label();
     _requestedSignerNameTextBox  = new System.Windows.Forms.TextBox();
     _intentLabel                = new System.Windows.Forms.Label();
     _intentComboBox             = new System.Windows.Forms.ComboBox();
     _mainDialogTableLayoutPanel = new System.Windows.Forms.TableLayoutPanel();
     _buttomControlLayoutpanel.SuspendLayout();
     _userInputTableLayoutPanel.SuspendLayout();
     _mainDialogTableLayoutPanel.SuspendLayout();
     SuspendLayout();
     //
     // _buttomControlLayoutpanel
     //
     _buttomControlLayoutpanel.Anchor       = System.Windows.Forms.AnchorStyles.Right;
     _buttomControlLayoutpanel.AutoSize     = true;
     _buttomControlLayoutpanel.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
     _buttomControlLayoutpanel.Controls.Add(_cancelButton);
     _buttomControlLayoutpanel.Controls.Add(_addButton);
     _buttomControlLayoutpanel.FlowDirection = System.Windows.Forms.FlowDirection.RightToLeft;
     _buttomControlLayoutpanel.Location      = new System.Drawing.Point(374, 246);
     _buttomControlLayoutpanel.Margin        = new System.Windows.Forms.Padding(10, 2, 0, 0);
     _buttomControlLayoutpanel.Name          = "_buttomControlLayoutpanel";
     _buttomControlLayoutpanel.Size          = new System.Drawing.Size(56, 24);
     //
     // _addButton
     //
     _addButton.AutoSize     = true;
     _addButton.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
     _addButton.Name         = "_addButton";
     _addButton.Padding      = new System.Windows.Forms.Padding(20, 0, 20, 0);
     _addButton.Size         = new System.Drawing.Size(65, 6);
     _addButton.TabIndex     = 4;
     _addButton.Click       += new System.EventHandler(_addButton_Click);
     //
     // _cancelButton
     //
     _cancelButton.AutoSize     = true;
     _cancelButton.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
     _cancelButton.Name         = "_cancelButton";
     _cancelButton.Padding      = new System.Windows.Forms.Padding(20, 0, 20, 0);
     _cancelButton.Size         = new System.Drawing.Size(65, 6);
     _cancelButton.TabIndex     = 5;
     //
     // _divider
     //
     _divider.Anchor = System.Windows.Forms.AnchorStyles.Left;
     _divider.Margin = new System.Windows.Forms.Padding(0, 20, 0, 5);
     _divider.Name   = "_divider";
     //
     // _userInputTableLayoutPanel
     //
     _userInputTableLayoutPanel.AutoSize     = true;
     _userInputTableLayoutPanel.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
     _userInputTableLayoutPanel.ColumnCount  = 1;
     _userInputTableLayoutPanel.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle());
     _userInputTableLayoutPanel.Controls.Add(_dateTimePicker, 0, 7);
     _userInputTableLayoutPanel.Controls.Add(_requestedLocationTextBox, 0, 5);
     _userInputTableLayoutPanel.Controls.Add(_signatureAppliedByDateLabel, 0, 6);
     _userInputTableLayoutPanel.Controls.Add(_requestSignerNameLabel, 0, 0);
     _userInputTableLayoutPanel.Controls.Add(_requestLocationLabel, 0, 4);
     _userInputTableLayoutPanel.Controls.Add(_requestedSignerNameTextBox, 0, 1);
     _userInputTableLayoutPanel.Controls.Add(_intentLabel, 0, 2);
     _userInputTableLayoutPanel.Controls.Add(_intentComboBox, 0, 3);
     _userInputTableLayoutPanel.Location = new System.Drawing.Point(10, 23);
     _userInputTableLayoutPanel.Margin   = new System.Windows.Forms.Padding(0);
     _userInputTableLayoutPanel.Name     = "_userInputTableLayoutPanel";
     _userInputTableLayoutPanel.RowCount = 8;
     _userInputTableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle());
     _userInputTableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle());
     _userInputTableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle());
     _userInputTableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle());
     _userInputTableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle());
     _userInputTableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle());
     _userInputTableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle());
     _userInputTableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle());
     _userInputTableLayoutPanel.Size = new System.Drawing.Size(407, 197);
     //
     // _dateTimePicker
     //
     _dateTimePicker.Anchor   = System.Windows.Forms.AnchorStyles.Left;
     _dateTimePicker.Location = new System.Drawing.Point(3, 174);
     _dateTimePicker.Name     = "_dateTimePicker";
     _dateTimePicker.Size     = new System.Drawing.Size(245, 20);
     _dateTimePicker.TabIndex = 3;
     // This mirrors the control if and only if the RightToLeft property (which is
     // retrieved from the parent control) is also set to Yes.
     _dateTimePicker.RightToLeftLayout = true;
     //
     // _requestedLocationTextBox
     //
     _requestedLocationTextBox.Anchor    = System.Windows.Forms.AnchorStyles.Left;
     _requestedLocationTextBox.Location  = new System.Drawing.Point(3, 125);
     _requestedLocationTextBox.MaxLength = _maxLocationLength;
     _requestedLocationTextBox.Name      = "_requestedLocationTextBox";
     _requestedLocationTextBox.Size      = new System.Drawing.Size(401, 20);
     _requestedLocationTextBox.TabIndex  = 2;
     //
     // _signatureAppliedByDateLabel
     //
     _signatureAppliedByDateLabel.Anchor   = System.Windows.Forms.AnchorStyles.Left;
     _signatureAppliedByDateLabel.AutoSize = true;
     _signatureAppliedByDateLabel.Location = new System.Drawing.Point(3, 158);
     _signatureAppliedByDateLabel.Margin   = new System.Windows.Forms.Padding(3, 10, 3, 0);
     _signatureAppliedByDateLabel.Name     = "_signatureAppliedByDateLabel";
     _signatureAppliedByDateLabel.Size     = new System.Drawing.Size(17, 13);
     //
     // _requestSignerNameLabel
     //
     _requestSignerNameLabel.Anchor   = System.Windows.Forms.AnchorStyles.Left;
     _requestSignerNameLabel.AutoSize = true;
     _requestSignerNameLabel.Location = new System.Drawing.Point(3, 10);
     _requestSignerNameLabel.Margin   = new System.Windows.Forms.Padding(3, 10, 3, 0);
     _requestSignerNameLabel.Name     = "_requestSignerNameLabel";
     _requestSignerNameLabel.Size     = new System.Drawing.Size(17, 13);
     //
     // _requestLocationLabel
     //
     _requestLocationLabel.Anchor   = System.Windows.Forms.AnchorStyles.Left;
     _requestLocationLabel.AutoSize = true;
     _requestLocationLabel.Location = new System.Drawing.Point(3, 109);
     _requestLocationLabel.Margin   = new System.Windows.Forms.Padding(3, 10, 3, 0);
     _requestLocationLabel.Name     = "_requestLocationLabel";
     _requestLocationLabel.Size     = new System.Drawing.Size(17, 13);
     //
     // _requestedSignerNameTextBox
     //
     _requestedSignerNameTextBox.Anchor    = System.Windows.Forms.AnchorStyles.Left;
     _requestedSignerNameTextBox.Location  = new System.Drawing.Point(3, 26);
     _requestedSignerNameTextBox.MaxLength = _maxNameLength;
     _requestedSignerNameTextBox.Name      = "_requestedSignerNameTextBox";
     _requestedSignerNameTextBox.Size      = new System.Drawing.Size(401, 20);
     _requestedSignerNameTextBox.TabIndex  = 0;
     //
     // _intentLabel
     //
     _intentLabel.Anchor   = System.Windows.Forms.AnchorStyles.Left;
     _intentLabel.AutoSize = true;
     _intentLabel.Location = new System.Drawing.Point(3, 59);
     _intentLabel.Margin   = new System.Windows.Forms.Padding(3, 10, 3, 0);
     _intentLabel.Name     = "_intentLabel";
     _intentLabel.Size     = new System.Drawing.Size(17, 13);
     //
     // _intentComboBox
     //
     _intentComboBox.Anchor            = System.Windows.Forms.AnchorStyles.Left;
     _intentComboBox.FormattingEnabled = true;
     _intentComboBox.Location          = new System.Drawing.Point(3, 75);
     _intentComboBox.MaxLength         = _maxIntentLength;
     _intentComboBox.Name     = "_intentComboBox";
     _intentComboBox.Size     = new System.Drawing.Size(401, 21);
     _intentComboBox.TabIndex = 1;
     //
     // _mainDialogTableLayoutPanel
     //
     _mainDialogTableLayoutPanel.AutoSize     = true;
     _mainDialogTableLayoutPanel.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
     _mainDialogTableLayoutPanel.ColumnCount  = 1;
     _mainDialogTableLayoutPanel.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle());
     _mainDialogTableLayoutPanel.Controls.Add(_userInputTableLayoutPanel, 0, 0);
     _mainDialogTableLayoutPanel.Controls.Add(_divider, 0, 1);
     _mainDialogTableLayoutPanel.Controls.Add(_buttomControlLayoutpanel, 0, 2);
     _mainDialogTableLayoutPanel.Location = new System.Drawing.Point(9, 9);
     _mainDialogTableLayoutPanel.Margin   = new System.Windows.Forms.Padding(10);
     _mainDialogTableLayoutPanel.Name     = "_mainDialogTableLayoutPanel";
     _mainDialogTableLayoutPanel.RowCount = 2;
     _mainDialogTableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle());
     _mainDialogTableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle());
     _mainDialogTableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle());
     _mainDialogTableLayoutPanel.Size = new System.Drawing.Size(433, 273);
     //
     // RequestedSignatureDialog
     //
     AcceptButton        = _addButton;
     AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     AutoSize            = true;
     AutoSizeMode        = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
     ClientSize          = new System.Drawing.Size(451, 282);
     Controls.Add(_mainDialogTableLayoutPanel);
     FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
     MaximizeBox     = false;
     MinimizeBox     = false;
     CancelButton    = _cancelButton;
     Name            = "RequestedSignatureDialog";
     StartPosition   = System.Windows.Forms.FormStartPosition.CenterParent;
     _buttomControlLayoutpanel.ResumeLayout(false);
     _buttomControlLayoutpanel.PerformLayout();
     _userInputTableLayoutPanel.ResumeLayout(false);
     _userInputTableLayoutPanel.PerformLayout();
     _mainDialogTableLayoutPanel.ResumeLayout(false);
     _mainDialogTableLayoutPanel.PerformLayout();
     ResumeLayout(false);
     PerformLayout();
 }
        /// <summary>
        /// Required method for Designer support - do not modify
        /// the contents of this method with the code editor.
        /// </summary>
        private void InitializeComponent()
        {
            System.Windows.Forms.TableLayoutPanel tableLayoutPanel1;
            System.Windows.Forms.GroupBox groupBox1;
            System.Windows.Forms.FlowLayoutPanel flowLayoutPanel1;
            System.Windows.Forms.Label label1;
            System.Windows.Forms.Label label2;
            System.Windows.Forms.FlowLayoutPanel flowLayoutPanel2;
            System.Windows.Forms.FlowLayoutPanel flowLayoutPanel3;
            System.Windows.Forms.Label label3;
            System.Windows.Forms.Label label4;
            System.Windows.Forms.Label label5;
            System.Windows.Forms.FlowLayoutPanel flowLayoutPanel6;
            System.Windows.Forms.FlowLayoutPanel flowLayoutPanel4;
            System.Windows.Forms.FlowLayoutPanel flowLayoutPanel5;
            System.Windows.Forms.GroupBox groupBox2;
            System.Windows.Forms.Button browse;
            this.fileFormat = new System.Windows.Forms.ComboBox();
            this.jpegCompression = new System.Windows.Forms.NumericUpDown();
            this.ok = new System.Windows.Forms.Button();
            this.cancel = new System.Windows.Forms.Button();
            this.alphaLDRGroup = new System.Windows.Forms.GroupBox();
            this.alphaMap = new System.Windows.Forms.ComboBox();
            this.alphaCol = new System.Windows.Forms.Button();
            this.blackPoint = new System.Windows.Forms.TextBox();
            this.whitePoint = new System.Windows.Forms.TextBox();
            this.sliceGroup = new System.Windows.Forms.GroupBox();
            this.exportAllSlices = new System.Windows.Forms.CheckBox();
            this.oneSlice = new System.Windows.Forms.CheckBox();
            this.sliceSelect = new System.Windows.Forms.ComboBox();
            this.mapSlicesToGrid = new System.Windows.Forms.CheckBox();
            this.gridWidth = new System.Windows.Forms.NumericUpDown();
            this.cubeCruciform = new System.Windows.Forms.CheckBox();
            this.mipGroup = new System.Windows.Forms.GroupBox();
            this.exportAllMips = new System.Windows.Forms.CheckBox();
            this.oneMip = new System.Windows.Forms.CheckBox();
            this.mipSelect = new System.Windows.Forms.ComboBox();
            this.sampleGroup = new System.Windows.Forms.GroupBox();
            this.oneSample = new System.Windows.Forms.CheckBox();
            this.sampleSelect = new System.Windows.Forms.ComboBox();
            this.mapSampleArray = new System.Windows.Forms.CheckBox();
            this.colorDialog = new System.Windows.Forms.ColorDialog();
            this.resolveSamples = new System.Windows.Forms.CheckBox();
            this.filename = new System.Windows.Forms.TextBox();
            this.saveTexDialog = new System.Windows.Forms.SaveFileDialog();
            tableLayoutPanel1 = new System.Windows.Forms.TableLayoutPanel();
            groupBox1 = new System.Windows.Forms.GroupBox();
            flowLayoutPanel1 = new System.Windows.Forms.FlowLayoutPanel();
            label1 = new System.Windows.Forms.Label();
            label2 = new System.Windows.Forms.Label();
            flowLayoutPanel2 = new System.Windows.Forms.FlowLayoutPanel();
            flowLayoutPanel3 = new System.Windows.Forms.FlowLayoutPanel();
            label3 = new System.Windows.Forms.Label();
            label4 = new System.Windows.Forms.Label();
            label5 = new System.Windows.Forms.Label();
            flowLayoutPanel6 = new System.Windows.Forms.FlowLayoutPanel();
            flowLayoutPanel4 = new System.Windows.Forms.FlowLayoutPanel();
            flowLayoutPanel5 = new System.Windows.Forms.FlowLayoutPanel();
            groupBox2 = new System.Windows.Forms.GroupBox();
            browse = new System.Windows.Forms.Button();
            tableLayoutPanel1.SuspendLayout();
            groupBox1.SuspendLayout();
            flowLayoutPanel1.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.jpegCompression)).BeginInit();
            flowLayoutPanel2.SuspendLayout();
            this.alphaLDRGroup.SuspendLayout();
            flowLayoutPanel3.SuspendLayout();
            this.sliceGroup.SuspendLayout();
            flowLayoutPanel6.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.gridWidth)).BeginInit();
            this.mipGroup.SuspendLayout();
            flowLayoutPanel4.SuspendLayout();
            this.sampleGroup.SuspendLayout();
            flowLayoutPanel5.SuspendLayout();
            groupBox2.SuspendLayout();
            this.SuspendLayout();
            // 
            // tableLayoutPanel1
            // 
            tableLayoutPanel1.AutoSize = true;
            tableLayoutPanel1.ColumnCount = 1;
            tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F));
            tableLayoutPanel1.Controls.Add(groupBox1, 0, 1);
            tableLayoutPanel1.Controls.Add(flowLayoutPanel2, 0, 6);
            tableLayoutPanel1.Controls.Add(this.alphaLDRGroup, 0, 5);
            tableLayoutPanel1.Controls.Add(this.sliceGroup, 0, 4);
            tableLayoutPanel1.Controls.Add(this.mipGroup, 0, 2);
            tableLayoutPanel1.Controls.Add(this.sampleGroup, 0, 3);
            tableLayoutPanel1.Controls.Add(groupBox2, 0, 0);
            tableLayoutPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
            tableLayoutPanel1.Location = new System.Drawing.Point(0, 0);
            tableLayoutPanel1.Name = "tableLayoutPanel1";
            tableLayoutPanel1.RowCount = 7;
            tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 50F));
            tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle());
            tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle());
            tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle());
            tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle());
            tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle());
            tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle());
            tableLayoutPanel1.Size = new System.Drawing.Size(375, 521);
            tableLayoutPanel1.TabIndex = 0;
            // 
            // groupBox1
            // 
            groupBox1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 
            | System.Windows.Forms.AnchorStyles.Right)));
            groupBox1.AutoSize = true;
            groupBox1.Controls.Add(flowLayoutPanel1);
            groupBox1.Location = new System.Drawing.Point(3, 53);
            groupBox1.Name = "groupBox1";
            groupBox1.Size = new System.Drawing.Size(369, 72);
            groupBox1.TabIndex = 0;
            groupBox1.TabStop = false;
            groupBox1.Text = "File Format";
            // 
            // flowLayoutPanel1
            // 
            flowLayoutPanel1.AutoSize = true;
            flowLayoutPanel1.Controls.Add(label1);
            flowLayoutPanel1.Controls.Add(this.fileFormat);
            flowLayoutPanel1.Controls.Add(label2);
            flowLayoutPanel1.Controls.Add(this.jpegCompression);
            flowLayoutPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
            flowLayoutPanel1.Location = new System.Drawing.Point(3, 16);
            flowLayoutPanel1.Name = "flowLayoutPanel1";
            flowLayoutPanel1.Size = new System.Drawing.Size(363, 53);
            flowLayoutPanel1.TabIndex = 0;
            // 
            // label1
            // 
            label1.Anchor = System.Windows.Forms.AnchorStyles.Right;
            label1.AutoSize = true;
            label1.Location = new System.Drawing.Point(3, 7);
            label1.MinimumSize = new System.Drawing.Size(150, 0);
            label1.Name = "label1";
            label1.Size = new System.Drawing.Size(150, 13);
            label1.TabIndex = 1;
            label1.Text = "File Format:";
            label1.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
            // 
            // fileFormat
            // 
            this.fileFormat.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
            flowLayoutPanel1.SetFlowBreak(this.fileFormat, true);
            this.fileFormat.FormattingEnabled = true;
            this.fileFormat.Location = new System.Drawing.Point(159, 3);
            this.fileFormat.Name = "fileFormat";
            this.fileFormat.Size = new System.Drawing.Size(121, 21);
            this.fileFormat.TabIndex = 0;
            this.fileFormat.SelectedIndexChanged += new System.EventHandler(this.fileFormat_SelectedIndexChanged);
            // 
            // label2
            // 
            label2.Anchor = System.Windows.Forms.AnchorStyles.Right;
            label2.AutoSize = true;
            label2.Location = new System.Drawing.Point(3, 33);
            label2.MinimumSize = new System.Drawing.Size(150, 0);
            label2.Name = "label2";
            label2.Size = new System.Drawing.Size(150, 13);
            label2.TabIndex = 2;
            label2.Text = "JPEG Compression:";
            label2.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
            // 
            // jpegCompression
            // 
            this.jpegCompression.Location = new System.Drawing.Point(159, 30);
            this.jpegCompression.Name = "jpegCompression";
            this.jpegCompression.Size = new System.Drawing.Size(120, 20);
            this.jpegCompression.TabIndex = 3;
            this.jpegCompression.ValueChanged += new System.EventHandler(this.jpegCompression_ValueChanged);
            // 
            // flowLayoutPanel2
            // 
            flowLayoutPanel2.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
            flowLayoutPanel2.AutoSize = true;
            flowLayoutPanel2.Controls.Add(this.ok);
            flowLayoutPanel2.Controls.Add(this.cancel);
            flowLayoutPanel2.Location = new System.Drawing.Point(210, 513);
            flowLayoutPanel2.Name = "flowLayoutPanel2";
            flowLayoutPanel2.Size = new System.Drawing.Size(162, 29);
            flowLayoutPanel2.TabIndex = 1;
            // 
            // ok
            // 
            this.ok.DialogResult = System.Windows.Forms.DialogResult.OK;
            this.ok.Location = new System.Drawing.Point(3, 3);
            this.ok.Name = "ok";
            this.ok.Size = new System.Drawing.Size(75, 23);
            this.ok.TabIndex = 1;
            this.ok.Text = "Save";
            this.ok.UseVisualStyleBackColor = true;
            this.ok.Click += new System.EventHandler(this.ok_Click);
            // 
            // cancel
            // 
            this.cancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
            this.cancel.Location = new System.Drawing.Point(84, 3);
            this.cancel.Name = "cancel";
            this.cancel.Size = new System.Drawing.Size(75, 23);
            this.cancel.TabIndex = 0;
            this.cancel.Text = "Cancel";
            this.cancel.UseVisualStyleBackColor = true;
            // 
            // alphaLDRGroup
            // 
            this.alphaLDRGroup.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 
            | System.Windows.Forms.AnchorStyles.Right)));
            this.alphaLDRGroup.AutoSize = true;
            this.alphaLDRGroup.Controls.Add(flowLayoutPanel3);
            this.alphaLDRGroup.Location = new System.Drawing.Point(3, 428);
            this.alphaLDRGroup.Name = "alphaLDRGroup";
            this.alphaLDRGroup.Size = new System.Drawing.Size(369, 79);
            this.alphaLDRGroup.TabIndex = 2;
            this.alphaLDRGroup.TabStop = false;
            this.alphaLDRGroup.Text = "Alpha Handling";
            // 
            // flowLayoutPanel3
            // 
            flowLayoutPanel3.AutoSize = true;
            flowLayoutPanel3.Controls.Add(label3);
            flowLayoutPanel3.Controls.Add(this.alphaMap);
            flowLayoutPanel3.Controls.Add(this.alphaCol);
            flowLayoutPanel3.Controls.Add(label4);
            flowLayoutPanel3.Controls.Add(this.blackPoint);
            flowLayoutPanel3.Controls.Add(label5);
            flowLayoutPanel3.Controls.Add(this.whitePoint);
            flowLayoutPanel3.Dock = System.Windows.Forms.DockStyle.Fill;
            flowLayoutPanel3.Location = new System.Drawing.Point(3, 16);
            flowLayoutPanel3.Name = "flowLayoutPanel3";
            flowLayoutPanel3.Size = new System.Drawing.Size(363, 60);
            flowLayoutPanel3.TabIndex = 0;
            // 
            // label3
            // 
            label3.Anchor = System.Windows.Forms.AnchorStyles.Right;
            label3.AutoSize = true;
            label3.Location = new System.Drawing.Point(3, 7);
            label3.Name = "label3";
            label3.Size = new System.Drawing.Size(80, 13);
            label3.TabIndex = 1;
            label3.Text = "Alpha mapping:";
            label3.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // alphaMap
            // 
            this.alphaMap.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
            this.alphaMap.FormattingEnabled = true;
            this.alphaMap.Items.AddRange(new object[] {
            "Discard",
            "Blend to Colour",
            "Blend to Checkerboard"});
            this.alphaMap.Location = new System.Drawing.Point(89, 3);
            this.alphaMap.Name = "alphaMap";
            this.alphaMap.Size = new System.Drawing.Size(148, 21);
            this.alphaMap.TabIndex = 0;
            this.alphaMap.SelectedIndexChanged += new System.EventHandler(this.alphaMap_SelectedIndexChanged);
            // 
            // alphaCol
            // 
            flowLayoutPanel3.SetFlowBreak(this.alphaCol, true);
            this.alphaCol.Location = new System.Drawing.Point(243, 3);
            this.alphaCol.Name = "alphaCol";
            this.alphaCol.Size = new System.Drawing.Size(110, 21);
            this.alphaCol.TabIndex = 2;
            this.alphaCol.Text = "Background Colour";
            this.alphaCol.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageBeforeText;
            this.alphaCol.UseVisualStyleBackColor = true;
            this.alphaCol.Click += new System.EventHandler(this.alphaCol_Click);
            // 
            // label4
            // 
            label4.Anchor = System.Windows.Forms.AnchorStyles.Right;
            label4.AutoSize = true;
            label4.Location = new System.Drawing.Point(3, 40);
            label4.Margin = new System.Windows.Forms.Padding(3, 7, 3, 0);
            label4.Name = "label4";
            label4.Size = new System.Drawing.Size(64, 13);
            label4.TabIndex = 3;
            label4.Text = "Black Point:";
            label4.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // blackPoint
            // 
            this.blackPoint.Location = new System.Drawing.Point(73, 37);
            this.blackPoint.Margin = new System.Windows.Forms.Padding(3, 10, 3, 3);
            this.blackPoint.Name = "blackPoint";
            this.blackPoint.Size = new System.Drawing.Size(100, 20);
            this.blackPoint.TabIndex = 5;
            this.blackPoint.TextChanged += new System.EventHandler(this.blackPoint_TextChanged);
            // 
            // label5
            // 
            label5.Anchor = System.Windows.Forms.AnchorStyles.Right;
            label5.AutoSize = true;
            label5.Location = new System.Drawing.Point(179, 40);
            label5.Margin = new System.Windows.Forms.Padding(3, 7, 3, 0);
            label5.Name = "label5";
            label5.Size = new System.Drawing.Size(65, 13);
            label5.TabIndex = 4;
            label5.Text = "White Point:";
            label5.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // whitePoint
            // 
            this.whitePoint.Location = new System.Drawing.Point(250, 37);
            this.whitePoint.Margin = new System.Windows.Forms.Padding(3, 10, 3, 3);
            this.whitePoint.Name = "whitePoint";
            this.whitePoint.Size = new System.Drawing.Size(100, 20);
            this.whitePoint.TabIndex = 6;
            this.whitePoint.TextChanged += new System.EventHandler(this.whitePoint_TextChanged);
            // 
            // sliceGroup
            // 
            this.sliceGroup.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 
            | System.Windows.Forms.AnchorStyles.Right)));
            this.sliceGroup.AutoSize = true;
            this.sliceGroup.Controls.Add(flowLayoutPanel6);
            this.sliceGroup.Location = new System.Drawing.Point(3, 304);
            this.sliceGroup.Name = "sliceGroup";
            this.sliceGroup.Size = new System.Drawing.Size(369, 118);
            this.sliceGroup.TabIndex = 5;
            this.sliceGroup.TabStop = false;
            this.sliceGroup.Text = "Array/Depth Slices";
            // 
            // flowLayoutPanel6
            // 
            flowLayoutPanel6.AutoSize = true;
            flowLayoutPanel6.Controls.Add(this.exportAllSlices);
            flowLayoutPanel6.Controls.Add(this.oneSlice);
            flowLayoutPanel6.Controls.Add(this.sliceSelect);
            flowLayoutPanel6.Controls.Add(this.mapSlicesToGrid);
            flowLayoutPanel6.Controls.Add(this.gridWidth);
            flowLayoutPanel6.Controls.Add(this.cubeCruciform);
            flowLayoutPanel6.Dock = System.Windows.Forms.DockStyle.Fill;
            flowLayoutPanel6.Location = new System.Drawing.Point(3, 16);
            flowLayoutPanel6.Name = "flowLayoutPanel6";
            flowLayoutPanel6.Size = new System.Drawing.Size(363, 99);
            flowLayoutPanel6.TabIndex = 0;
            // 
            // exportAllSlices
            // 
            this.exportAllSlices.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right)));
            flowLayoutPanel6.SetFlowBreak(this.exportAllSlices, true);
            this.exportAllSlices.Location = new System.Drawing.Point(3, 3);
            this.exportAllSlices.MinimumSize = new System.Drawing.Size(120, 0);
            this.exportAllSlices.Name = "exportAllSlices";
            this.exportAllSlices.Size = new System.Drawing.Size(120, 17);
            this.exportAllSlices.TabIndex = 0;
            this.exportAllSlices.Text = "Export All Slices";
            this.exportAllSlices.UseVisualStyleBackColor = true;
            this.exportAllSlices.CheckedChanged += new System.EventHandler(this.exportAllSlices_CheckedChanged);
            // 
            // oneSlice
            // 
            this.oneSlice.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right)));
            this.oneSlice.AutoSize = true;
            this.oneSlice.Location = new System.Drawing.Point(3, 28);
            this.oneSlice.MinimumSize = new System.Drawing.Size(120, 0);
            this.oneSlice.Name = "oneSlice";
            this.oneSlice.Size = new System.Drawing.Size(120, 17);
            this.oneSlice.TabIndex = 4;
            this.oneSlice.Text = "Select Slice:";
            this.oneSlice.UseVisualStyleBackColor = true;
            this.oneSlice.CheckedChanged += new System.EventHandler(this.oneSlice_CheckedChanged);
            // 
            // sliceSelect
            // 
            this.sliceSelect.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
            flowLayoutPanel6.SetFlowBreak(this.sliceSelect, true);
            this.sliceSelect.FormattingEnabled = true;
            this.sliceSelect.Location = new System.Drawing.Point(129, 26);
            this.sliceSelect.Name = "sliceSelect";
            this.sliceSelect.Size = new System.Drawing.Size(121, 21);
            this.sliceSelect.TabIndex = 5;
            this.sliceSelect.SelectedIndexChanged += new System.EventHandler(this.sliceSelect_SelectedIndexChanged);
            // 
            // mapSlicesToGrid
            // 
            this.mapSlicesToGrid.AutoSize = true;
            this.mapSlicesToGrid.Location = new System.Drawing.Point(3, 53);
            this.mapSlicesToGrid.Name = "mapSlicesToGrid";
            this.mapSlicesToGrid.Size = new System.Drawing.Size(179, 17);
            this.mapSlicesToGrid.TabIndex = 1;
            this.mapSlicesToGrid.Text = "Show Slices as Grid. Grid Width:";
            this.mapSlicesToGrid.UseVisualStyleBackColor = true;
            this.mapSlicesToGrid.CheckedChanged += new System.EventHandler(this.mapSlicesToGrid_CheckedChanged);
            // 
            // gridWidth
            // 
            this.gridWidth.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right)));
            flowLayoutPanel6.SetFlowBreak(this.gridWidth, true);
            this.gridWidth.Location = new System.Drawing.Point(188, 53);
            this.gridWidth.Minimum = new decimal(new int[] {
            1,
            0,
            0,
            0});
            this.gridWidth.Name = "gridWidth";
            this.gridWidth.Size = new System.Drawing.Size(49, 20);
            this.gridWidth.TabIndex = 3;
            this.gridWidth.Value = new decimal(new int[] {
            1,
            0,
            0,
            0});
            this.gridWidth.ValueChanged += new System.EventHandler(this.gridWidth_ValueChanged);
            // 
            // cubeCruciform
            // 
            this.cubeCruciform.AutoSize = true;
            this.cubeCruciform.Location = new System.Drawing.Point(3, 79);
            this.cubeCruciform.Name = "cubeCruciform";
            this.cubeCruciform.Size = new System.Drawing.Size(144, 17);
            this.cubeCruciform.TabIndex = 2;
            this.cubeCruciform.Text = "Show Cubemap as Cross";
            this.cubeCruciform.UseVisualStyleBackColor = true;
            this.cubeCruciform.CheckedChanged += new System.EventHandler(this.cubeCruciform_CheckedChanged);
            // 
            // mipGroup
            // 
            this.mipGroup.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 
            | System.Windows.Forms.AnchorStyles.Right)));
            this.mipGroup.AutoSize = true;
            this.mipGroup.Controls.Add(flowLayoutPanel4);
            this.mipGroup.Location = new System.Drawing.Point(3, 131);
            this.mipGroup.Name = "mipGroup";
            this.mipGroup.Size = new System.Drawing.Size(369, 69);
            this.mipGroup.TabIndex = 3;
            this.mipGroup.TabStop = false;
            this.mipGroup.Text = "Mips";
            // 
            // flowLayoutPanel4
            // 
            flowLayoutPanel4.AutoSize = true;
            flowLayoutPanel4.Controls.Add(this.exportAllMips);
            flowLayoutPanel4.Controls.Add(this.oneMip);
            flowLayoutPanel4.Controls.Add(this.mipSelect);
            flowLayoutPanel4.Dock = System.Windows.Forms.DockStyle.Fill;
            flowLayoutPanel4.Location = new System.Drawing.Point(3, 16);
            flowLayoutPanel4.Name = "flowLayoutPanel4";
            flowLayoutPanel4.Size = new System.Drawing.Size(363, 50);
            flowLayoutPanel4.TabIndex = 0;
            // 
            // exportAllMips
            // 
            this.exportAllMips.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right)));
            this.exportAllMips.AutoSize = true;
            flowLayoutPanel4.SetFlowBreak(this.exportAllMips, true);
            this.exportAllMips.Location = new System.Drawing.Point(3, 3);
            this.exportAllMips.MinimumSize = new System.Drawing.Size(120, 0);
            this.exportAllMips.Name = "exportAllMips";
            this.exportAllMips.Size = new System.Drawing.Size(120, 17);
            this.exportAllMips.TabIndex = 0;
            this.exportAllMips.Text = "Export All Mips";
            this.exportAllMips.UseVisualStyleBackColor = true;
            this.exportAllMips.CheckedChanged += new System.EventHandler(this.exportAllMips_CheckedChanged);
            // 
            // oneMip
            // 
            this.oneMip.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right)));
            this.oneMip.AutoSize = true;
            this.oneMip.Location = new System.Drawing.Point(3, 28);
            this.oneMip.MinimumSize = new System.Drawing.Size(120, 0);
            this.oneMip.Name = "oneMip";
            this.oneMip.Size = new System.Drawing.Size(120, 17);
            this.oneMip.TabIndex = 2;
            this.oneMip.Text = "Select Mip:";
            this.oneMip.UseVisualStyleBackColor = true;
            this.oneMip.CheckedChanged += new System.EventHandler(this.oneMip_CheckedChanged);
            // 
            // mipSelect
            // 
            this.mipSelect.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
            flowLayoutPanel4.SetFlowBreak(this.mipSelect, true);
            this.mipSelect.FormattingEnabled = true;
            this.mipSelect.Location = new System.Drawing.Point(129, 26);
            this.mipSelect.Name = "mipSelect";
            this.mipSelect.Size = new System.Drawing.Size(121, 21);
            this.mipSelect.TabIndex = 1;
            this.mipSelect.SelectedIndexChanged += new System.EventHandler(this.mipSelect_SelectedIndexChanged);
            // 
            // sampleGroup
            // 
            this.sampleGroup.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 
            | System.Windows.Forms.AnchorStyles.Right)));
            this.sampleGroup.AutoSize = true;
            this.sampleGroup.Controls.Add(flowLayoutPanel5);
            this.sampleGroup.Location = new System.Drawing.Point(3, 206);
            this.sampleGroup.Name = "sampleGroup";
            this.sampleGroup.Size = new System.Drawing.Size(369, 92);
            this.sampleGroup.TabIndex = 6;
            this.sampleGroup.TabStop = false;
            this.sampleGroup.Text = "MSAA Samples";
            // 
            // flowLayoutPanel5
            // 
            flowLayoutPanel5.AutoSize = true;
            flowLayoutPanel5.Controls.Add(this.mapSampleArray);
            flowLayoutPanel5.Controls.Add(this.resolveSamples);
            flowLayoutPanel5.Controls.Add(this.oneSample);
            flowLayoutPanel5.Controls.Add(this.sampleSelect);
            flowLayoutPanel5.Dock = System.Windows.Forms.DockStyle.Fill;
            flowLayoutPanel5.Location = new System.Drawing.Point(3, 16);
            flowLayoutPanel5.Name = "flowLayoutPanel5";
            flowLayoutPanel5.Size = new System.Drawing.Size(363, 73);
            flowLayoutPanel5.TabIndex = 0;
            // 
            // oneSample
            // 
            this.oneSample.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right)));
            this.oneSample.AutoSize = true;
            this.oneSample.Location = new System.Drawing.Point(3, 51);
            this.oneSample.MinimumSize = new System.Drawing.Size(120, 0);
            this.oneSample.Name = "oneSample";
            this.oneSample.Size = new System.Drawing.Size(120, 17);
            this.oneSample.TabIndex = 3;
            this.oneSample.Text = "Select Sample:";
            this.oneSample.UseVisualStyleBackColor = true;
            this.oneSample.CheckedChanged += new System.EventHandler(this.oneSample_CheckedChanged);
            // 
            // sampleSelect
            // 
            this.sampleSelect.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
            flowLayoutPanel5.SetFlowBreak(this.sampleSelect, true);
            this.sampleSelect.FormattingEnabled = true;
            this.sampleSelect.Location = new System.Drawing.Point(129, 49);
            this.sampleSelect.Name = "sampleSelect";
            this.sampleSelect.Size = new System.Drawing.Size(121, 21);
            this.sampleSelect.TabIndex = 2;
            this.sampleSelect.SelectedIndexChanged += new System.EventHandler(this.sampleSelect_SelectedIndexChanged);
            // 
            // mapSampleArray
            // 
            this.mapSampleArray.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right)));
            this.mapSampleArray.AutoSize = true;
            flowLayoutPanel5.SetFlowBreak(this.mapSampleArray, true);
            this.mapSampleArray.Location = new System.Drawing.Point(3, 3);
            this.mapSampleArray.Name = "mapSampleArray";
            this.mapSampleArray.Size = new System.Drawing.Size(162, 17);
            this.mapSampleArray.TabIndex = 1;
            this.mapSampleArray.Text = "Map Samples as Array Slices";
            this.mapSampleArray.UseVisualStyleBackColor = true;
            this.mapSampleArray.CheckedChanged += new System.EventHandler(this.mapSampleArray_CheckedChanged);
            // 
            // colorDialog
            // 
            this.colorDialog.AnyColor = true;
            // 
            // resolveSamples
            // 
            this.resolveSamples.AutoSize = true;
            flowLayoutPanel5.SetFlowBreak(this.resolveSamples, true);
            this.resolveSamples.Location = new System.Drawing.Point(3, 26);
            this.resolveSamples.Name = "resolveSamples";
            this.resolveSamples.Size = new System.Drawing.Size(108, 17);
            this.resolveSamples.TabIndex = 4;
            this.resolveSamples.Text = "Resolve Samples";
            this.resolveSamples.UseVisualStyleBackColor = true;
            this.resolveSamples.CheckedChanged += new System.EventHandler(this.resolveSamples_CheckedChanged);
            // 
            // groupBox2
            // 
            groupBox2.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 
            | System.Windows.Forms.AnchorStyles.Right)));
            groupBox2.Controls.Add(this.filename);
            groupBox2.Controls.Add(browse);
            groupBox2.Location = new System.Drawing.Point(3, 3);
            groupBox2.Name = "groupBox2";
            groupBox2.Size = new System.Drawing.Size(369, 44);
            groupBox2.TabIndex = 7;
            groupBox2.TabStop = false;
            groupBox2.Text = "Path";
            // 
            // browse
            // 
            browse.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
            browse.Location = new System.Drawing.Point(334, 15);
            browse.Name = "browse";
            browse.Size = new System.Drawing.Size(26, 23);
            browse.TabIndex = 0;
            browse.Text = "...";
            browse.UseVisualStyleBackColor = true;
            browse.Click += new System.EventHandler(this.browse_Click);
            // 
            // filename
            // 
            this.filename.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 
            | System.Windows.Forms.AnchorStyles.Right)));
            this.filename.Location = new System.Drawing.Point(9, 15);
            this.filename.Name = "filename";
            this.filename.Size = new System.Drawing.Size(319, 20);
            this.filename.TabIndex = 1;
            // 
            // saveTexDialog
            // 
            this.saveTexDialog.DefaultExt = "dds";
            this.saveTexDialog.Title = "Save Texture As";
            // 
            // TextureSaveDialog
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.AutoSize = true;
            this.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
            this.ClientSize = new System.Drawing.Size(375, 521);
            this.Controls.Add(tableLayoutPanel1);
            this.MaximizeBox = false;
            this.MinimizeBox = false;
            this.Name = "TextureSaveDialog";
            this.ShowIcon = false;
            this.ShowInTaskbar = false;
            this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
            this.Text = "Save Texture";
            this.Shown += new System.EventHandler(this.TextureSaveDialog_Shown);
            tableLayoutPanel1.ResumeLayout(false);
            tableLayoutPanel1.PerformLayout();
            groupBox1.ResumeLayout(false);
            groupBox1.PerformLayout();
            flowLayoutPanel1.ResumeLayout(false);
            flowLayoutPanel1.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.jpegCompression)).EndInit();
            flowLayoutPanel2.ResumeLayout(false);
            this.alphaLDRGroup.ResumeLayout(false);
            this.alphaLDRGroup.PerformLayout();
            flowLayoutPanel3.ResumeLayout(false);
            flowLayoutPanel3.PerformLayout();
            this.sliceGroup.ResumeLayout(false);
            this.sliceGroup.PerformLayout();
            flowLayoutPanel6.ResumeLayout(false);
            flowLayoutPanel6.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.gridWidth)).EndInit();
            this.mipGroup.ResumeLayout(false);
            this.mipGroup.PerformLayout();
            flowLayoutPanel4.ResumeLayout(false);
            flowLayoutPanel4.PerformLayout();
            this.sampleGroup.ResumeLayout(false);
            this.sampleGroup.PerformLayout();
            flowLayoutPanel5.ResumeLayout(false);
            flowLayoutPanel5.PerformLayout();
            groupBox2.ResumeLayout(false);
            groupBox2.PerformLayout();
            this.ResumeLayout(false);
            this.PerformLayout();

        }
 /// <summary>
 /// 设计器支持所需的方法 - 不要
 /// 使用主键编辑器修改此方法的内容。
 /// </summary>
 private void InitializeComponent()
 {
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle1 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle2 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle3 = new System.Windows.Forms.DataGridViewCellStyle();
     this.btnBatchDelete = new System.Windows.Forms.Button();
     this.btnEdit = new System.Windows.Forms.Button();
     this.btnClose = new System.Windows.Forms.Button();
     this.btnAdd = new System.Windows.Forms.Button();
     this.btnBatchSave = new System.Windows.Forms.Button();
     this.btnRoleUser = new System.Windows.Forms.Button();
     this.btnRolePermission = new System.Windows.Forms.Button();
     this.ucTableSort = new DotNet.WinForm.Common.WinControls.UCTableSort();
     this.grdRole = new System.Windows.Forms.DataGridView();
     this.colSelected = new System.Windows.Forms.DataGridViewCheckBoxColumn();
     this.colCode = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.colRealName = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.colEnabled = new System.Windows.Forms.DataGridViewCheckBoxColumn();
     this.colDescription = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.btnExport = new System.Windows.Forms.Button();
     this.lblContents = new System.Windows.Forms.Label();
     this.txtSearch = new System.Windows.Forms.TextBox();
     this.lblRoleCategories = new System.Windows.Forms.Label();
     this.cmbRoleCategory = new System.Windows.Forms.ComboBox();
     this.btnFrmRoleTableScope = new System.Windows.Forms.Button();
     this.btnBatchPermission = new System.Windows.Forms.Button();
     this.btnRoleUserBatchSet = new System.Windows.Forms.Button();
     this.btnFrmRoleAuthorizationScope = new System.Windows.Forms.Button();
     this.btnFrmRoleAdminScope = new System.Windows.Forms.Button();
     this.btnFrmTableColumnPermission = new System.Windows.Forms.Button();
     this.flowLayoutPanel1 = new System.Windows.Forms.FlowLayoutPanel();
     ((System.ComponentModel.ISupportInitialize)(this.grdRole)).BeginInit();
     this.flowLayoutPanel1.SuspendLayout();
     this.SuspendLayout();
     //
     // btnBatchDelete
     //
     this.btnBatchDelete.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.btnBatchDelete.Enabled = false;
     this.btnBatchDelete.Location = new System.Drawing.Point(682, 483);
     this.btnBatchDelete.Name = "btnBatchDelete";
     this.btnBatchDelete.Size = new System.Drawing.Size(75, 23);
     this.btnBatchDelete.TabIndex = 16;
     this.btnBatchDelete.Text = "删除(&D)";
     this.btnBatchDelete.UseVisualStyleBackColor = true;
     this.btnBatchDelete.Click += new System.EventHandler(this.btnBatchDelete_Click);
     //
     // btnEdit
     //
     this.btnEdit.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.btnEdit.Enabled = false;
     this.btnEdit.Location = new System.Drawing.Point(327, 483);
     this.btnEdit.Name = "btnEdit";
     this.btnEdit.Size = new System.Drawing.Size(80, 23);
     this.btnEdit.TabIndex = 12;
     this.btnEdit.Text = "编辑(&E)...";
     this.btnEdit.UseVisualStyleBackColor = true;
     this.btnEdit.Click += new System.EventHandler(this.btnEdit_Click);
     //
     // btnClose
     //
     this.btnClose.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.btnClose.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     this.btnClose.Location = new System.Drawing.Point(834, 483);
     this.btnClose.Name = "btnClose";
     this.btnClose.Size = new System.Drawing.Size(75, 23);
     this.btnClose.TabIndex = 18;
     this.btnClose.Text = "关闭";
     this.btnClose.UseVisualStyleBackColor = true;
     this.btnClose.Click += new System.EventHandler(this.btnClose_Click);
     //
     // btnAdd
     //
     this.btnAdd.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.btnAdd.Enabled = false;
     this.btnAdd.Location = new System.Drawing.Point(246, 483);
     this.btnAdd.Name = "btnAdd";
     this.btnAdd.Size = new System.Drawing.Size(80, 23);
     this.btnAdd.TabIndex = 11;
     this.btnAdd.Text = "添加(&A)...";
     this.btnAdd.UseVisualStyleBackColor = true;
     this.btnAdd.Click += new System.EventHandler(this.btnAdd_Click);
     //
     // btnBatchSave
     //
     this.btnBatchSave.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.btnBatchSave.Enabled = false;
     this.btnBatchSave.Location = new System.Drawing.Point(758, 483);
     this.btnBatchSave.Name = "btnBatchSave";
     this.btnBatchSave.Size = new System.Drawing.Size(75, 23);
     this.btnBatchSave.TabIndex = 17;
     this.btnBatchSave.Text = "保存(&S)";
     this.btnBatchSave.UseVisualStyleBackColor = true;
     this.btnBatchSave.Click += new System.EventHandler(this.btnBatchSave_Click);
     //
     // btnRoleUser
     //
     this.btnRoleUser.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.btnRoleUser.Enabled = false;
     this.btnRoleUser.Location = new System.Drawing.Point(408, 483);
     this.btnRoleUser.Name = "btnRoleUser";
     this.btnRoleUser.Size = new System.Drawing.Size(80, 23);
     this.btnRoleUser.TabIndex = 13;
     this.btnRoleUser.Text = "用户(&U)...";
     this.btnRoleUser.UseVisualStyleBackColor = true;
     this.btnRoleUser.Click += new System.EventHandler(this.btnRoleUser_Click);
     //
     // btnRolePermission
     //
     this.btnRolePermission.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.btnRolePermission.Enabled = false;
     this.btnRolePermission.Location = new System.Drawing.Point(489, 483);
     this.btnRolePermission.Name = "btnRolePermission";
     this.btnRolePermission.Size = new System.Drawing.Size(80, 23);
     this.btnRolePermission.TabIndex = 14;
     this.btnRolePermission.Text = "权限(&P)...";
     this.btnRolePermission.UseVisualStyleBackColor = true;
     this.btnRolePermission.Click += new System.EventHandler(this.btnPermission_Click);
     //
     // ucTableSort
     //
     this.ucTableSort.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.ucTableSort.Location = new System.Drawing.Point(7, 481);
     this.ucTableSort.Margin = new System.Windows.Forms.Padding(0);
     this.ucTableSort.Name = "ucTableSort";
     this.ucTableSort.OEntityId = null;
     this.ucTableSort.Padding = new System.Windows.Forms.Padding(1);
     this.ucTableSort.SetBottomEnabled = false;
     this.ucTableSort.SetDownEnabled = false;
     this.ucTableSort.SetTopEnabled = false;
     this.ucTableSort.SetUpEnabled = false;
     this.ucTableSort.Size = new System.Drawing.Size(99, 24);
     this.ucTableSort.TabIndex = 10;
     //
     // grdRole
     //
     this.grdRole.AllowUserToAddRows = false;
     this.grdRole.AllowUserToDeleteRows = false;
     this.grdRole.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
     | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.grdRole.BackgroundColor = System.Drawing.SystemColors.Control;
     dataGridViewCellStyle1.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
     dataGridViewCellStyle1.BackColor = System.Drawing.SystemColors.Control;
     dataGridViewCellStyle1.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel);
     dataGridViewCellStyle1.ForeColor = System.Drawing.SystemColors.WindowText;
     dataGridViewCellStyle1.SelectionBackColor = System.Drawing.SystemColors.Highlight;
     dataGridViewCellStyle1.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
     this.grdRole.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle1;
     this.grdRole.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.grdRole.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
     this.colSelected,
     this.colCode,
     this.colRealName,
     this.colEnabled,
     this.colDescription});
     this.grdRole.Location = new System.Drawing.Point(7, 65);
     this.grdRole.MultiSelect = false;
     this.grdRole.Name = "grdRole";
     this.grdRole.RowTemplate.Height = 23;
     this.grdRole.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
     this.grdRole.Size = new System.Drawing.Size(900, 411);
     this.grdRole.TabIndex = 9;
     this.grdRole.CellDoubleClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.grdRole_CellDoubleClick);
     this.grdRole.SelectionChanged += new System.EventHandler(this.grdRole_SelectionChanged);
     this.grdRole.Sorted += new System.EventHandler(this.grdRole_Sorted);
     //
     // colSelected
     //
     this.colSelected.DataPropertyName = "Selected";
     this.colSelected.Frozen = true;
     this.colSelected.HeaderText = "选择";
     this.colSelected.Name = "colSelected";
     this.colSelected.Width = 50;
     //
     // colCode
     //
     this.colCode.DataPropertyName = "Code";
     this.colCode.HeaderText = "编号";
     this.colCode.MaxInputLength = 200;
     this.colCode.Name = "colCode";
     this.colCode.ReadOnly = true;
     this.colCode.Width = 180;
     //
     // colRealName
     //
     this.colRealName.DataPropertyName = "RealName";
     this.colRealName.HeaderText = "名称";
     this.colRealName.MaxInputLength = 200;
     this.colRealName.Name = "colRealName";
     this.colRealName.ReadOnly = true;
     this.colRealName.Width = 220;
     //
     // colEnabled
     //
     this.colEnabled.DataPropertyName = "Enabled";
     dataGridViewCellStyle2.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
     dataGridViewCellStyle2.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(128)))));
     dataGridViewCellStyle2.NullValue = false;
     this.colEnabled.DefaultCellStyle = dataGridViewCellStyle2;
     this.colEnabled.FalseValue = "0";
     this.colEnabled.HeaderText = "有效";
     this.colEnabled.Name = "colEnabled";
     this.colEnabled.TrueValue = "1";
     this.colEnabled.Width = 80;
     //
     // colDescription
     //
     this.colDescription.DataPropertyName = "Description";
     dataGridViewCellStyle3.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(128)))));
     this.colDescription.DefaultCellStyle = dataGridViewCellStyle3;
     this.colDescription.HeaderText = "描述";
     this.colDescription.MaxInputLength = 200;
     this.colDescription.Name = "colDescription";
     this.colDescription.Width = 300;
     //
     // btnExport
     //
     this.btnExport.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.btnExport.Enabled = false;
     this.btnExport.Location = new System.Drawing.Point(570, 483);
     this.btnExport.Name = "btnExport";
     this.btnExport.Size = new System.Drawing.Size(111, 23);
     this.btnExport.TabIndex = 15;
     this.btnExport.Text = "导出Excel...";
     this.btnExport.UseVisualStyleBackColor = true;
     this.btnExport.Click += new System.EventHandler(this.btnExport_Click);
     //
     // lblContents
     //
     this.lblContents.Location = new System.Drawing.Point(30, 40);
     this.lblContents.Name = "lblContents";
     this.lblContents.Size = new System.Drawing.Size(89, 12);
     this.lblContents.TabIndex = 5;
     this.lblContents.Text = "查询内容(&C):";
     this.lblContents.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // txtSearch
     //
     this.txtSearch.Location = new System.Drawing.Point(124, 36);
     this.txtSearch.MaxLength = 20;
     this.txtSearch.Name = "txtSearch";
     this.txtSearch.Size = new System.Drawing.Size(157, 21);
     this.txtSearch.TabIndex = 6;
     this.txtSearch.TextChanged += new System.EventHandler(this.txtSearch_TextChanged);
     //
     // lblRoleCategories
     //
     this.lblRoleCategories.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.lblRoleCategories.Location = new System.Drawing.Point(672, 43);
     this.lblRoleCategories.Name = "lblRoleCategories";
     this.lblRoleCategories.Size = new System.Drawing.Size(110, 12);
     this.lblRoleCategories.TabIndex = 7;
     this.lblRoleCategories.Text = "角色分类:";
     this.lblRoleCategories.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // cmbRoleCategory
     //
     this.cmbRoleCategory.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.cmbRoleCategory.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.cmbRoleCategory.Location = new System.Drawing.Point(788, 39);
     this.cmbRoleCategory.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
     this.cmbRoleCategory.Name = "cmbRoleCategory";
     this.cmbRoleCategory.Size = new System.Drawing.Size(118, 20);
     this.cmbRoleCategory.TabIndex = 8;
     this.cmbRoleCategory.SelectedIndexChanged += new System.EventHandler(this.cmbRoleCategory_SelectedIndexChanged);
     //
     // btnFrmRoleTableScope
     //
     this.btnFrmRoleTableScope.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.btnFrmRoleTableScope.Enabled = false;
     this.btnFrmRoleTableScope.Location = new System.Drawing.Point(569, 3);
     this.btnFrmRoleTableScope.Name = "btnFrmRoleTableScope";
     this.btnFrmRoleTableScope.Size = new System.Drawing.Size(135, 23);
     this.btnFrmRoleTableScope.TabIndex = 2;
     this.btnFrmRoleTableScope.Text = "约束条件...";
     this.btnFrmRoleTableScope.UseVisualStyleBackColor = true;
     this.btnFrmRoleTableScope.Click += new System.EventHandler(this.btnFrmRoleOrganizeScope_Click);
     //
     // btnBatchPermission
     //
     this.btnBatchPermission.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.btnBatchPermission.Enabled = false;
     this.btnBatchPermission.Location = new System.Drawing.Point(146, 3);
     this.btnBatchPermission.Name = "btnBatchPermission";
     this.btnBatchPermission.Size = new System.Drawing.Size(135, 23);
     this.btnBatchPermission.TabIndex = 3;
     this.btnBatchPermission.Text = "批量设置权限...";
     this.btnBatchPermission.UseVisualStyleBackColor = true;
     this.btnBatchPermission.Visible = false;
     this.btnBatchPermission.Click += new System.EventHandler(this.btnBatchPermission_Click);
     //
     // btnRoleUserBatchSet
     //
     this.btnRoleUserBatchSet.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.btnRoleUserBatchSet.Enabled = false;
     this.btnRoleUserBatchSet.Location = new System.Drawing.Point(5, 3);
     this.btnRoleUserBatchSet.Name = "btnRoleUserBatchSet";
     this.btnRoleUserBatchSet.Size = new System.Drawing.Size(135, 23);
     this.btnRoleUserBatchSet.TabIndex = 4;
     this.btnRoleUserBatchSet.Text = "角色用户关联...";
     this.btnRoleUserBatchSet.UseVisualStyleBackColor = true;
     this.btnRoleUserBatchSet.Click += new System.EventHandler(this.btnRoleUserBatchSet_Click);
     //
     // btnFrmRoleAuthorizationScope
     //
     this.btnFrmRoleAuthorizationScope.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.btnFrmRoleAuthorizationScope.Enabled = false;
     this.btnFrmRoleAuthorizationScope.Location = new System.Drawing.Point(710, 3);
     this.btnFrmRoleAuthorizationScope.Name = "btnFrmRoleAuthorizationScope";
     this.btnFrmRoleAuthorizationScope.Size = new System.Drawing.Size(135, 23);
     this.btnFrmRoleAuthorizationScope.TabIndex = 0;
     this.btnFrmRoleAuthorizationScope.Text = "角色授权范围...";
     this.btnFrmRoleAuthorizationScope.UseVisualStyleBackColor = true;
     this.btnFrmRoleAuthorizationScope.Click += new System.EventHandler(this.btnFrmRoleAuthorizationScope_Click);
     //
     // btnFrmRoleAdminScope
     //
     this.btnFrmRoleAdminScope.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.btnFrmRoleAdminScope.Enabled = false;
     this.btnFrmRoleAdminScope.Location = new System.Drawing.Point(287, 3);
     this.btnFrmRoleAdminScope.Name = "btnFrmRoleAdminScope";
     this.btnFrmRoleAdminScope.Size = new System.Drawing.Size(135, 23);
     this.btnFrmRoleAdminScope.TabIndex = 1;
     this.btnFrmRoleAdminScope.Text = "角色管理范围...";
     this.btnFrmRoleAdminScope.UseVisualStyleBackColor = true;
     this.btnFrmRoleAdminScope.Click += new System.EventHandler(this.btnFrmRoleAdminScope_Click);
     //
     // btnFrmTableColumnPermission
     //
     this.btnFrmTableColumnPermission.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.btnFrmTableColumnPermission.Enabled = false;
     this.btnFrmTableColumnPermission.Location = new System.Drawing.Point(428, 3);
     this.btnFrmTableColumnPermission.Name = "btnFrmTableColumnPermission";
     this.btnFrmTableColumnPermission.Size = new System.Drawing.Size(135, 23);
     this.btnFrmTableColumnPermission.TabIndex = 19;
     this.btnFrmTableColumnPermission.Text = "表字段权限...";
     this.btnFrmTableColumnPermission.UseVisualStyleBackColor = true;
     this.btnFrmTableColumnPermission.Click += new System.EventHandler(this.btnFrmTableColumnPermission_Click);
     //
     // flowLayoutPanel1
     //
     this.flowLayoutPanel1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.flowLayoutPanel1.Controls.Add(this.btnFrmRoleAuthorizationScope);
     this.flowLayoutPanel1.Controls.Add(this.btnFrmRoleTableScope);
     this.flowLayoutPanel1.Controls.Add(this.btnFrmTableColumnPermission);
     this.flowLayoutPanel1.Controls.Add(this.btnFrmRoleAdminScope);
     this.flowLayoutPanel1.Controls.Add(this.btnBatchPermission);
     this.flowLayoutPanel1.Controls.Add(this.btnRoleUserBatchSet);
     this.flowLayoutPanel1.FlowDirection = System.Windows.Forms.FlowDirection.RightToLeft;
     this.flowLayoutPanel1.Location = new System.Drawing.Point(62, 3);
     this.flowLayoutPanel1.Name = "flowLayoutPanel1";
     this.flowLayoutPanel1.Size = new System.Drawing.Size(848, 29);
     this.flowLayoutPanel1.TabIndex = 20;
     //
     // FrmRolePermissionAdmin
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.CancelButton = this.btnClose;
     this.ClientSize = new System.Drawing.Size(915, 510);
     this.Controls.Add(this.flowLayoutPanel1);
     this.Controls.Add(this.cmbRoleCategory);
     this.Controls.Add(this.lblRoleCategories);
     this.Controls.Add(this.lblContents);
     this.Controls.Add(this.txtSearch);
     this.Controls.Add(this.btnExport);
     this.Controls.Add(this.ucTableSort);
     this.Controls.Add(this.btnBatchSave);
     this.Controls.Add(this.btnRolePermission);
     this.Controls.Add(this.btnRoleUser);
     this.Controls.Add(this.btnClose);
     this.Controls.Add(this.btnAdd);
     this.Controls.Add(this.grdRole);
     this.Controls.Add(this.btnEdit);
     this.Controls.Add(this.btnBatchDelete);
     this.Cursor = System.Windows.Forms.Cursors.Default;
     this.Name = "FrmRolePermissionAdmin";
     this.Padding = new System.Windows.Forms.Padding(8);
     this.Text = "角色权限管理";
     this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.FrmRoleAdmin_FormClosing);
     ((System.ComponentModel.ISupportInitialize)(this.grdRole)).EndInit();
     this.flowLayoutPanel1.ResumeLayout(false);
     this.ResumeLayout(false);
     this.PerformLayout();
 }
 /// <summary> 
 /// Required method for Designer support - do not modify 
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     this.groupChannelSelectorPanel = new System.Windows.Forms.FlowLayoutPanel();
     this.newGroupButton = new System.Windows.Forms.Button();
     this.rs232GroupSelector = new System.Windows.Forms.ComboBox();
     this.renameTextBox = new System.Windows.Forms.TextBox();
     this.renameButton = new System.Windows.Forms.Button();
     this.button1 = new System.Windows.Forms.Button();
     this.button2 = new System.Windows.Forms.Button();
     this.descBox = new System.Windows.Forms.TextBox();
     this.label1 = new System.Windows.Forms.Label();
     this.plus = new System.Windows.Forms.Button();
     this.minus = new System.Windows.Forms.Button();
     this.runOrderPanel = new System.Windows.Forms.Panel();
     this.label3 = new System.Windows.Forms.Label();
     this.label2 = new System.Windows.Forms.Label();
     this.toolTip1 = new System.Windows.Forms.ToolTip(this.components);
     this.replacementGroupSelector = new System.Windows.Forms.ComboBox();
     this.replaceGroupButton = new System.Windows.Forms.Button();
     this.button3 = new System.Windows.Forms.Button();
     this.waveformEditor1 = new WordGenerator.Controls.WaveformEditor();
     this.waveformGraphCollection1 = new WordGenerator.Controls.WaveformGraphCollection();
     this.runOrderPanel.SuspendLayout();
     this.SuspendLayout();
     //
     // groupChannelSelectorPanel
     //
     this.groupChannelSelectorPanel.AutoScroll = true;
     this.groupChannelSelectorPanel.Location = new System.Drawing.Point(3, 313);
     this.groupChannelSelectorPanel.Name = "groupChannelSelectorPanel";
     this.groupChannelSelectorPanel.Size = new System.Drawing.Size(306, 477);
     this.groupChannelSelectorPanel.TabIndex = 0;
     //
     // newGroupButton
     //
     this.newGroupButton.Location = new System.Drawing.Point(3, 56);
     this.newGroupButton.Name = "newGroupButton";
     this.newGroupButton.Size = new System.Drawing.Size(110, 26);
     this.newGroupButton.TabIndex = 3;
     this.newGroupButton.Text = "Create New Group";
     this.newGroupButton.UseVisualStyleBackColor = true;
     this.newGroupButton.Click += new System.EventHandler(this.button1_Click);
     //
     // rs232GroupSelector
     //
     this.rs232GroupSelector.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.rs232GroupSelector.FormattingEnabled = true;
     this.rs232GroupSelector.Location = new System.Drawing.Point(3, 3);
     this.rs232GroupSelector.Name = "rs232GroupSelector";
     this.rs232GroupSelector.Size = new System.Drawing.Size(110, 21);
     this.rs232GroupSelector.TabIndex = 6;
     this.rs232GroupSelector.SelectedIndexChanged += new System.EventHandler(this.comboBox1_SelectedIndexChanged);
     this.rs232GroupSelector.DropDownClosed += new System.EventHandler(this.rs232GroupSelector_DropDownClosed);
     this.rs232GroupSelector.DropDown += new System.EventHandler(this.comboBox1_DropDown);
     //
     // renameTextBox
     //
     this.renameTextBox.Location = new System.Drawing.Point(3, 30);
     this.renameTextBox.Name = "renameTextBox";
     this.renameTextBox.Size = new System.Drawing.Size(92, 20);
     this.renameTextBox.TabIndex = 7;
     this.renameTextBox.TextChanged += new System.EventHandler(this.renameTextBox_TextChanged);
     //
     // renameButton
     //
     this.renameButton.Location = new System.Drawing.Point(101, 29);
     this.renameButton.Name = "renameButton";
     this.renameButton.Size = new System.Drawing.Size(66, 21);
     this.renameButton.TabIndex = 8;
     this.renameButton.Text = "Rename";
     this.renameButton.UseVisualStyleBackColor = true;
     this.renameButton.Click += new System.EventHandler(this.renameButton_Click);
     //
     // button1
     //
     this.button1.Location = new System.Drawing.Point(3, 88);
     this.button1.Name = "button1";
     this.button1.Size = new System.Drawing.Size(110, 27);
     this.button1.TabIndex = 9;
     this.button1.Text = "Delete This Group";
     this.button1.UseVisualStyleBackColor = true;
     this.button1.Click += new System.EventHandler(this.button1_Click_1);
     //
     // button2
     //
     this.button2.Location = new System.Drawing.Point(3, 121);
     this.button2.Name = "button2";
     this.button2.Size = new System.Drawing.Size(110, 27);
     this.button2.TabIndex = 10;
     this.button2.Text = "Output Now";
     this.button2.UseVisualStyleBackColor = true;
     this.button2.Click += new System.EventHandler(this.button2_Click);
     //
     // descBox
     //
     this.descBox.Location = new System.Drawing.Point(3, 177);
     this.descBox.Multiline = true;
     this.descBox.Name = "descBox";
     this.descBox.Size = new System.Drawing.Size(164, 110);
     this.descBox.TabIndex = 11;
     this.descBox.TextChanged += new System.EventHandler(this.descBox_TextChanged);
     //
     // label1
     //
     this.label1.AutoSize = true;
     this.label1.Location = new System.Drawing.Point(3, 161);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(63, 13);
     this.label1.TabIndex = 12;
     this.label1.Text = "Description:";
     //
     // plus
     //
     this.plus.Location = new System.Drawing.Point(119, 3);
     this.plus.Name = "plus";
     this.plus.Size = new System.Drawing.Size(22, 22);
     this.plus.TabIndex = 13;
     this.plus.Text = "+";
     this.plus.UseVisualStyleBackColor = true;
     this.plus.Click += new System.EventHandler(this.plus_Click);
     //
     // minus
     //
     this.minus.Location = new System.Drawing.Point(147, 3);
     this.minus.Name = "minus";
     this.minus.Size = new System.Drawing.Size(22, 22);
     this.minus.TabIndex = 14;
     this.minus.Text = "-";
     this.minus.UseVisualStyleBackColor = true;
     this.minus.Click += new System.EventHandler(this.minus_Click);
     //
     // runOrderPanel
     //
     this.runOrderPanel.AutoScroll = true;
     this.runOrderPanel.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
     this.runOrderPanel.Controls.Add(this.label3);
     this.runOrderPanel.Controls.Add(this.label2);
     this.runOrderPanel.Location = new System.Drawing.Point(6, 796);
     this.runOrderPanel.Name = "runOrderPanel";
     this.runOrderPanel.Size = new System.Drawing.Size(1234, 73);
     this.runOrderPanel.TabIndex = 19;
     //
     // label3
     //
     this.label3.AutoSize = true;
     this.label3.Location = new System.Drawing.Point(2, 28);
     this.label3.Name = "label3";
     this.label3.Size = new System.Drawing.Size(118, 13);
     this.label3.TabIndex = 1;
     this.label3.Text = "(click to be transported)";
     //
     // label2
     //
     this.label2.AutoSize = true;
     this.label2.Location = new System.Drawing.Point(3, 8);
     this.label2.Name = "label2";
     this.label2.Size = new System.Drawing.Size(127, 13);
     this.label2.TabIndex = 0;
     this.label2.Text = "RS232 Group Run Order:";
     //
     // replacementGroupSelector
     //
     this.replacementGroupSelector.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.replacementGroupSelector.Enabled = false;
     this.replacementGroupSelector.FormattingEnabled = true;
     this.replacementGroupSelector.Location = new System.Drawing.Point(101, 289);
     this.replacementGroupSelector.MaxDropDownItems = 100;
     this.replacementGroupSelector.Name = "replacementGroupSelector";
     this.replacementGroupSelector.Size = new System.Drawing.Size(122, 21);
     this.replacementGroupSelector.TabIndex = 22;
     this.replacementGroupSelector.SelectedValueChanged += new System.EventHandler(this.replacementGroupSelector_SelectedValueChanged);
     this.replacementGroupSelector.DropDown += new System.EventHandler(this.replacementSelector_DropDown_1);
     //
     // replaceGroupButton
     //
     this.replaceGroupButton.Enabled = false;
     this.replaceGroupButton.Location = new System.Drawing.Point(3, 289);
     this.replaceGroupButton.Name = "replaceGroupButton";
     this.replaceGroupButton.Size = new System.Drawing.Size(92, 22);
     this.replaceGroupButton.TabIndex = 21;
     this.replaceGroupButton.Text = "Replace Group";
     this.replaceGroupButton.UseVisualStyleBackColor = true;
     this.replaceGroupButton.Click += new System.EventHandler(this.replaceGroupButton_Click);
     //
     // button3
     //
     this.button3.Font = new System.Drawing.Font("Microsoft Sans Serif", 6.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.button3.Location = new System.Drawing.Point(119, 56);
     this.button3.Name = "button3";
     this.button3.Size = new System.Drawing.Size(76, 34);
     this.button3.TabIndex = 23;
     this.button3.Text = "Delete Unused Groups";
     this.button3.UseVisualStyleBackColor = true;
     this.button3.Click += new System.EventHandler(this.button3_Click);
     //
     // waveformEditor1
     //
     this.waveformEditor1.AutoScroll = true;
     this.waveformEditor1.Enabled = false;
     this.waveformEditor1.Location = new System.Drawing.Point(224, 0);
     this.waveformEditor1.Name = "waveformEditor1";
     this.waveformEditor1.Size = new System.Drawing.Size(269, 790);
     this.waveformEditor1.TabIndex = 2;
     //
     // waveformGraphCollection1
     //
     this.waveformGraphCollection1.AutoScroll = true;
     this.waveformGraphCollection1.Location = new System.Drawing.Point(493, 1);
     this.waveformGraphCollection1.Name = "waveformGraphCollection1";
     this.waveformGraphCollection1.Size = new System.Drawing.Size(767, 750);
     this.waveformGraphCollection1.TabIndex = 1;
     //
     // RS232GroupEditor
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.Controls.Add(this.button3);
     this.Controls.Add(this.replacementGroupSelector);
     this.Controls.Add(this.replaceGroupButton);
     this.Controls.Add(this.runOrderPanel);
     this.Controls.Add(this.minus);
     this.Controls.Add(this.plus);
     this.Controls.Add(this.label1);
     this.Controls.Add(this.descBox);
     this.Controls.Add(this.button2);
     this.Controls.Add(this.button1);
     this.Controls.Add(this.renameButton);
     this.Controls.Add(this.renameTextBox);
     this.Controls.Add(this.rs232GroupSelector);
     this.Controls.Add(this.newGroupButton);
     this.Controls.Add(this.waveformEditor1);
     this.Controls.Add(this.waveformGraphCollection1);
     this.Controls.Add(this.groupChannelSelectorPanel);
     this.Name = "RS232GroupEditor";
     this.Size = new System.Drawing.Size(1264, 918);
     this.VisibleChanged += new System.EventHandler(this.RS232GroupEditor_VisibleChanged);
     this.runOrderPanel.ResumeLayout(false);
     this.runOrderPanel.PerformLayout();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FrmRoleTreeResourcePermission));
     this.imageList = new System.Windows.Forms.ImageList(this.components);
     this.tvTargetTreeResource = new System.Windows.Forms.TreeView();
     this.splitContainer1 = new System.Windows.Forms.SplitContainer();
     this.tcRole = new System.Windows.Forms.TabControl();
     this.tpRole = new System.Windows.Forms.TabPage();
     this.lstRole = new System.Windows.Forms.ListBox();
     this.pnlUserSearch = new System.Windows.Forms.Panel();
     this.txtSearch = new System.Windows.Forms.TextBox();
     this.lblContents = new System.Windows.Forms.Label();
     this.tcTargetTreeResource = new System.Windows.Forms.TabControl();
     this.tpTargetTreeResource = new System.Windows.Forms.TabPage();
     this.flowLayoutPanel1 = new System.Windows.Forms.FlowLayoutPanel();
     this.btnClearPermission = new System.Windows.Forms.Button();
     this.btnPaste = new System.Windows.Forms.Button();
     this.btnCopy = new System.Windows.Forms.Button();
     ((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).BeginInit();
     this.splitContainer1.Panel1.SuspendLayout();
     this.splitContainer1.Panel2.SuspendLayout();
     this.splitContainer1.SuspendLayout();
     this.tcRole.SuspendLayout();
     this.tpRole.SuspendLayout();
     this.pnlUserSearch.SuspendLayout();
     this.tcTargetTreeResource.SuspendLayout();
     this.tpTargetTreeResource.SuspendLayout();
     this.flowLayoutPanel1.SuspendLayout();
     this.SuspendLayout();
     //
     // imageList
     //
     this.imageList.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageList.ImageStream")));
     this.imageList.TransparentColor = System.Drawing.Color.Transparent;
     this.imageList.Images.SetKeyName(0, "");
     this.imageList.Images.SetKeyName(1, "");
     this.imageList.Images.SetKeyName(2, "");
     this.imageList.Images.SetKeyName(3, "");
     this.imageList.Images.SetKeyName(4, "");
     this.imageList.Images.SetKeyName(5, "");
     this.imageList.Images.SetKeyName(6, "");
     this.imageList.Images.SetKeyName(7, "");
     this.imageList.Images.SetKeyName(8, "");
     this.imageList.Images.SetKeyName(9, "");
     this.imageList.Images.SetKeyName(10, "");
     this.imageList.Images.SetKeyName(11, "");
     this.imageList.Images.SetKeyName(12, "");
     this.imageList.Images.SetKeyName(13, "");
     this.imageList.Images.SetKeyName(14, "");
     this.imageList.Images.SetKeyName(15, "icon_messenger1.gif");
     this.imageList.Images.SetKeyName(16, "icon_messenger0.gif");
     this.imageList.Images.SetKeyName(17, "icon_messenger2.gif");
     this.imageList.Images.SetKeyName(18, "icon_messenger3.gif");
     this.imageList.Images.SetKeyName(19, "icon_messenger4.gif");
     this.imageList.Images.SetKeyName(20, "icon_messenger5.gif");
     this.imageList.Images.SetKeyName(21, "icon_messenger6.gif");
     //
     // tvTargetTreeResource
     //
     this.tvTargetTreeResource.AllowDrop = true;
     this.tvTargetTreeResource.CheckBoxes = true;
     this.tvTargetTreeResource.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tvTargetTreeResource.Enabled = false;
     this.tvTargetTreeResource.HotTracking = true;
     this.tvTargetTreeResource.ImageIndex = 0;
     this.tvTargetTreeResource.ImageList = this.imageList;
     this.tvTargetTreeResource.Location = new System.Drawing.Point(3, 3);
     this.tvTargetTreeResource.Margin = new System.Windows.Forms.Padding(0, 3, 0, 3);
     this.tvTargetTreeResource.Name = "tvTargetTreeResource";
     this.tvTargetTreeResource.SelectedImageIndex = 0;
     this.tvTargetTreeResource.Size = new System.Drawing.Size(326, 410);
     this.tvTargetTreeResource.TabIndex = 1;
     this.tvTargetTreeResource.AfterCheck += new System.Windows.Forms.TreeViewEventHandler(this.tvTargetTreeResource_AfterCheck);
     this.tvTargetTreeResource.NodeMouseClick += new System.Windows.Forms.TreeNodeMouseClickEventHandler(this.tvTargetTreeResource_NodeMouseClick);
     //
     // splitContainer1
     //
     this.splitContainer1.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
     | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.splitContainer1.Location = new System.Drawing.Point(5, 41);
     this.splitContainer1.Name = "splitContainer1";
     //
     // splitContainer1.Panel1
     //
     this.splitContainer1.Panel1.Controls.Add(this.tcRole);
     //
     // splitContainer1.Panel2
     //
     this.splitContainer1.Panel2.Controls.Add(this.tcTargetTreeResource);
     this.splitContainer1.Size = new System.Drawing.Size(574, 442);
     this.splitContainer1.SplitterDistance = 230;
     this.splitContainer1.TabIndex = 11;
     //
     // tcRole
     //
     this.tcRole.Controls.Add(this.tpRole);
     this.tcRole.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tcRole.Location = new System.Drawing.Point(0, 0);
     this.tcRole.Name = "tcRole";
     this.tcRole.SelectedIndex = 0;
     this.tcRole.Size = new System.Drawing.Size(230, 442);
     this.tcRole.TabIndex = 9;
     //
     // tpRole
     //
     this.tpRole.Controls.Add(this.lstRole);
     this.tpRole.Controls.Add(this.pnlUserSearch);
     this.tpRole.Location = new System.Drawing.Point(4, 22);
     this.tpRole.Name = "tpRole";
     this.tpRole.Padding = new System.Windows.Forms.Padding(3);
     this.tpRole.Size = new System.Drawing.Size(222, 416);
     this.tpRole.TabIndex = 0;
     this.tpRole.Text = "角色";
     this.tpRole.UseVisualStyleBackColor = true;
     //
     // lstRole
     //
     this.lstRole.Dock = System.Windows.Forms.DockStyle.Fill;
     this.lstRole.FormattingEnabled = true;
     this.lstRole.ItemHeight = 12;
     this.lstRole.Location = new System.Drawing.Point(3, 44);
     this.lstRole.Name = "lstRole";
     this.lstRole.Size = new System.Drawing.Size(216, 369);
     this.lstRole.TabIndex = 0;
     this.lstRole.SelectedIndexChanged += new System.EventHandler(this.lstRole_SelectedIndexChanged);
     //
     // pnlUserSearch
     //
     this.pnlUserSearch.Controls.Add(this.txtSearch);
     this.pnlUserSearch.Controls.Add(this.lblContents);
     this.pnlUserSearch.Dock = System.Windows.Forms.DockStyle.Top;
     this.pnlUserSearch.Location = new System.Drawing.Point(3, 3);
     this.pnlUserSearch.Name = "pnlUserSearch";
     this.pnlUserSearch.Size = new System.Drawing.Size(216, 41);
     this.pnlUserSearch.TabIndex = 5;
     //
     // txtSearch
     //
     this.txtSearch.Location = new System.Drawing.Point(85, 14);
     this.txtSearch.MaxLength = 20;
     this.txtSearch.Name = "txtSearch";
     this.txtSearch.Size = new System.Drawing.Size(118, 21);
     this.txtSearch.TabIndex = 3;
     this.txtSearch.TextChanged += new System.EventHandler(this.txtSearch_TextChanged);
     //
     // lblContents
     //
     this.lblContents.Location = new System.Drawing.Point(3, 17);
     this.lblContents.Name = "lblContents";
     this.lblContents.Size = new System.Drawing.Size(87, 12);
     this.lblContents.TabIndex = 2;
     this.lblContents.Text = "查询内容(&C):";
     this.lblContents.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // tcTargetTreeResource
     //
     this.tcTargetTreeResource.Controls.Add(this.tpTargetTreeResource);
     this.tcTargetTreeResource.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tcTargetTreeResource.Location = new System.Drawing.Point(0, 0);
     this.tcTargetTreeResource.Name = "tcTargetTreeResource";
     this.tcTargetTreeResource.SelectedIndex = 0;
     this.tcTargetTreeResource.Size = new System.Drawing.Size(340, 442);
     this.tcTargetTreeResource.TabIndex = 9;
     //
     // tpTargetTreeResource
     //
     this.tpTargetTreeResource.Controls.Add(this.tvTargetTreeResource);
     this.tpTargetTreeResource.Location = new System.Drawing.Point(4, 22);
     this.tpTargetTreeResource.Name = "tpTargetTreeResource";
     this.tpTargetTreeResource.Padding = new System.Windows.Forms.Padding(3);
     this.tpTargetTreeResource.Size = new System.Drawing.Size(332, 416);
     this.tpTargetTreeResource.TabIndex = 0;
     this.tpTargetTreeResource.Text = "目标资源";
     this.tpTargetTreeResource.UseVisualStyleBackColor = true;
     //
     // flowLayoutPanel1
     //
     this.flowLayoutPanel1.Controls.Add(this.btnClearPermission);
     this.flowLayoutPanel1.Controls.Add(this.btnPaste);
     this.flowLayoutPanel1.Controls.Add(this.btnCopy);
     this.flowLayoutPanel1.FlowDirection = System.Windows.Forms.FlowDirection.RightToLeft;
     this.flowLayoutPanel1.Location = new System.Drawing.Point(246, 4);
     this.flowLayoutPanel1.Name = "flowLayoutPanel1";
     this.flowLayoutPanel1.Size = new System.Drawing.Size(333, 31);
     this.flowLayoutPanel1.TabIndex = 33;
     //
     // btnClearPermission
     //
     this.btnClearPermission.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.btnClearPermission.AutoSize = true;
     this.btnClearPermission.Enabled = false;
     this.btnClearPermission.Location = new System.Drawing.Point(228, 3);
     this.btnClearPermission.Name = "btnClearPermission";
     this.btnClearPermission.Size = new System.Drawing.Size(102, 23);
     this.btnClearPermission.TabIndex = 35;
     this.btnClearPermission.Text = "清除权限(&C)";
     this.btnClearPermission.UseVisualStyleBackColor = true;
     //
     // btnPaste
     //
     this.btnPaste.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.btnPaste.AutoSize = true;
     this.btnPaste.Enabled = false;
     this.btnPaste.Location = new System.Drawing.Point(120, 3);
     this.btnPaste.Name = "btnPaste";
     this.btnPaste.Size = new System.Drawing.Size(102, 23);
     this.btnPaste.TabIndex = 34;
     this.btnPaste.Text = "粘贴权限";
     this.btnPaste.UseVisualStyleBackColor = true;
     //
     // btnCopy
     //
     this.btnCopy.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.btnCopy.AutoSize = true;
     this.btnCopy.Enabled = false;
     this.btnCopy.Location = new System.Drawing.Point(12, 3);
     this.btnCopy.Name = "btnCopy";
     this.btnCopy.Size = new System.Drawing.Size(102, 23);
     this.btnCopy.TabIndex = 33;
     this.btnCopy.Text = "复制权限";
     this.btnCopy.UseVisualStyleBackColor = true;
     //
     // FrmRoleTreeResourcePermission
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(584, 487);
     this.Controls.Add(this.flowLayoutPanel1);
     this.Controls.Add(this.splitContainer1);
     this.Name = "FrmRoleTreeResourcePermission";
     this.Text = "角色权限批量设置";
     this.splitContainer1.Panel1.ResumeLayout(false);
     this.splitContainer1.Panel2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).EndInit();
     this.splitContainer1.ResumeLayout(false);
     this.tcRole.ResumeLayout(false);
     this.tpRole.ResumeLayout(false);
     this.pnlUserSearch.ResumeLayout(false);
     this.pnlUserSearch.PerformLayout();
     this.tcTargetTreeResource.ResumeLayout(false);
     this.tpTargetTreeResource.ResumeLayout(false);
     this.flowLayoutPanel1.ResumeLayout(false);
     this.flowLayoutPanel1.PerformLayout();
     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();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FrmChuongTrinh));
     DevExpress.Utils.SerializableAppearanceObject serializableAppearanceObject1 = new DevExpress.Utils.SerializableAppearanceObject();
     DevExpress.Utils.SerializableAppearanceObject serializableAppearanceObject2 = new DevExpress.Utils.SerializableAppearanceObject();
     DevExpress.Utils.SerializableAppearanceObject serializableAppearanceObject3 = new DevExpress.Utils.SerializableAppearanceObject();
     DevExpress.Utils.SerializableAppearanceObject serializableAppearanceObject4 = new DevExpress.Utils.SerializableAppearanceObject();
     DevExpress.Utils.SerializableAppearanceObject serializableAppearanceObject5 = new DevExpress.Utils.SerializableAppearanceObject();
     this.flowLayoutPanel1 = new System.Windows.Forms.FlowLayoutPanel();
     this.btnClose = new DevExpress.XtraEditors.SimpleButton();
     this.btnDelete = new DevExpress.XtraEditors.SimpleButton();
     this.btnDeleteRealy = new DevExpress.XtraEditors.SimpleButton();
     this.btnRestore = new DevExpress.XtraEditors.SimpleButton();
     this.btnSave = new DevExpress.XtraEditors.SimpleButton();
     this.InPhieu = new DevExpress.XtraEditors.DropDownButton();
     this.ctMnuInPhieu = new System.Windows.Forms.ContextMenuStrip(this.components);
     this.NghiepVu = new DevExpress.XtraEditors.DropDownButton();
     this.ctMnuNghiepVu = new System.Windows.Forms.ContextMenuStrip(this.components);
     this.Duyet = new ProtocolVN.Framework.Win.PLDuyetCombobox();
     this.flowLayoutPanel2 = new System.Windows.Forms.FlowLayoutPanel();
     this.label7 = new DevExpress.XtraEditors.LabelControl();
     this.label8 = new DevExpress.XtraEditors.LabelControl();
     this.KyHieuPhanLoai = new DevExpress.XtraEditors.TextEdit();
     this.label21 = new DevExpress.XtraEditors.LabelControl();
     this.label22 = new DevExpress.XtraEditors.LabelControl();
     this.label2 = new DevExpress.XtraEditors.LabelControl();
     this.label4 = new DevExpress.XtraEditors.LabelControl();
     this.label5 = new DevExpress.XtraEditors.LabelControl();
     this.label15 = new DevExpress.XtraEditors.LabelControl();
     this.lblTitle = new DevExpress.XtraEditors.LabelControl();
     this.KyHieuXepKho_KHPL = new DevExpress.XtraEditors.TextEdit();
     this.groupControlThongTinPhatSong = new DevExpress.XtraEditors.GroupControl();
     this.ReleaseDate = new DevExpress.XtraEditors.DateEdit();
     this.SoRunConlai = new DevExpress.XtraEditors.SpinEdit();
     this.ReleaseRun = new DevExpress.XtraEditors.SpinEdit();
     this.Release = new DevExpress.XtraEditors.SpinEdit();
     this.SoDaRun = new DevExpress.XtraEditors.SpinEdit();
     this.gridControlPhatSongKhac = new DevExpress.XtraGrid.GridControl();
     this.gridviewPhatSongKhac = new DevExpress.XtraGrid.Views.Grid.PLGridView();
     this.ColPSK_Kenh = new DevExpress.XtraGrid.Columns.GridColumn();
     this.ColPSK_TuNgay = new DevExpress.XtraGrid.Columns.GridColumn();
     this.ColPSK_DenNgay = new DevExpress.XtraGrid.Columns.GridColumn();
     this.ColPSK_LanPhat = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridControlNgayPhatDauTien = new DevExpress.XtraGrid.GridControl();
     this.gridViewNgayPhatDauTien = new DevExpress.XtraGrid.Views.Grid.PLGridView();
     this.ColKenhPhatSong = new DevExpress.XtraGrid.Columns.GridColumn();
     this.ColIsPhatLai = new DevExpress.XtraGrid.Columns.GridColumn();
     this.ColNgayPhatStart = new DevExpress.XtraGrid.Columns.GridColumn();
     this.ColNgayPhatEnd = new DevExpress.XtraGrid.Columns.GridColumn();
     this.ColTimeSlot = new DevExpress.XtraGrid.Columns.GridColumn();
     this.ColLanPhat = new DevExpress.XtraGrid.Columns.GridColumn();
     this.labelControl8 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl9 = new DevExpress.XtraEditors.LabelControl();
     this.RunThu = new DevExpress.XtraEditors.SpinEdit();
     this.TongSoRun = new DevExpress.XtraEditors.SpinEdit();
     this.labelControl20 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl19 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl6 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl24 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl21 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl15 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl10 = new DevExpress.XtraEditors.LabelControl();
     this.ReleaseRule = new DevExpress.XtraEditors.MemoEdit();
     this.MuaKem = new DevExpress.XtraEditors.MemoEdit();
     this.Rating = new DevExpress.XtraEditors.CalcEdit();
     this.DoiTuongKhanGia = new ProtocolVN.Framework.Win.PLMultiCombobox();
     this.label14 = new DevExpress.XtraEditors.LabelControl();
     this.groupControlNguonGoc = new DevExpress.XtraEditors.GroupControl();
     this.NoteBQ = new DevExpress.XtraEditors.MemoEdit();
     this.gridControlThongTinBan = new DevExpress.XtraGrid.GridControl();
     this.gridViewThongTinBan = new DevExpress.XtraGrid.Views.Grid.PLGridView();
     this.ColKenhBan = new DevExpress.XtraGrid.Columns.GridColumn();
     this.ColNgayBanTu = new DevExpress.XtraGrid.Columns.GridColumn();
     this.ColNgayBanDen = new DevExpress.XtraGrid.Columns.GridColumn();
     this.groupControl7 = new DevExpress.XtraEditors.GroupControl();
     this.DonViHauKy = new ProtocolVN.App.VideoLibrary.PLTextEditAutocomplete();
     this.HangSanXuat = new ProtocolVN.Framework.Win.PLDMGrid();
     this.DonViSoHuu = new ProtocolVN.Framework.Win.PLDMGrid();
     this.NamSanXuat = new DevExpress.XtraEditors.PLSpinEdit();
     this.labelControl33 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl32 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl4 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl7 = new DevExpress.XtraEditors.LabelControl();
     this.QuocGia = new ProtocolVN.Framework.Win.PLMultiCombobox();
     this.label25 = new DevExpress.XtraEditors.LabelControl();
     this.KenhHanCheBan = new ProtocolVN.Framework.Win.PLMultiCombobox();
     this.DonViCungCap = new ProtocolVN.Framework.Win.PLDMGrid();
     this.labelControl17 = new DevExpress.XtraEditors.LabelControl();
     this.groupControl1 = new DevExpress.XtraEditors.GroupControl();
     this.BanQuyenHTV = new DevExpress.XtraEditors.DateEdit();
     this.BanQuyenDIDEnd = new DevExpress.XtraEditors.DateEdit();
     this.BanQuyenDTNNEnd = new DevExpress.XtraEditors.DateEdit();
     this.BanQuyenDIDStart = new DevExpress.XtraEditors.DateEdit();
     this.BanQuyenDTNNStart = new DevExpress.XtraEditors.DateEdit();
     this.ChanelRight = new ProtocolVN.Framework.Win.PLMultiCombobox();
     this.labelControl25 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl26 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl27 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl28 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl29 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl30 = new DevExpress.XtraEditors.LabelControl();
     this.BanQuyenThuoc = new ProtocolVN.Framework.Win.PLDMGrid();
     this.labelControl31 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl14 = new DevExpress.XtraEditors.LabelControl();
     this.DaoDien = new ProtocolVN.Framework.Win.PLMultiCombobox();
     this.groupControlThongTin = new DevExpress.XtraEditors.GroupControl();
     this.gridControlGhiChu = new DevExpress.XtraGrid.GridControl();
     this.gridViewGhiChu = new DevExpress.XtraGrid.Views.Grid.PLGridView();
     this.colLoaiGhiChu = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colNoiDungGhiChu = new DevExpress.XtraGrid.Columns.GridColumn();
     this.labelControl34 = new DevExpress.XtraEditors.LabelControl();
     this.PhanLoaiDrama = new ProtocolVN.App.VideoLibrary.PLTextEditAutocomplete();
     this.barManager1 = new DevExpress.XtraBars.BarManager(this.components);
     this.barDockControlTop = new DevExpress.XtraBars.BarDockControl();
     this.barDockControlBottom = new DevExpress.XtraBars.BarDockControl();
     this.barDockControlLeft = new DevExpress.XtraBars.BarDockControl();
     this.barDockControlRight = new DevExpress.XtraBars.BarDockControl();
     this.labelControl18 = new DevExpress.XtraEditors.LabelControl();
     this.NguonTrading = new ProtocolVN.App.VideoLibrary.PLTextEditAutocomplete();
     this.ClassName = new ProtocolVN.App.VideoLibrary.PLTextEditAutocomplete();
     this.labelControl23 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl13 = new DevExpress.XtraEditors.LabelControl();
     this.Code = new DevExpress.XtraEditors.TextEdit();
     this.TenGoc = new ProtocolVN.App.VideoLibrary.PLTextEditAutocomplete();
     this.NoiDung = new ProtocolVN.App.VideoLibrary.PLTextEditAutocomplete();
     this.Period = new ProtocolVN.App.VideoLibrary.PLTextEditAutocomplete();
     this.Category = new ProtocolVN.App.VideoLibrary.PLTextEditAutocomplete();
     this.TrailerGoc = new DevExpress.XtraEditors.CheckEdit();
     this.Photos = new DevExpress.XtraEditors.CheckEdit();
     this.Script = new DevExpress.XtraEditors.CheckEdit();
     this.ckcMoiTrenThiTruong = new DevExpress.XtraEditors.CheckEdit();
     this.ckcTrongKho = new DevExpress.XtraEditors.CheckEdit();
     this.ThanhLy = new DevExpress.XtraEditors.CheckEdit();
     this.groupControl8 = new DevExpress.XtraEditors.GroupControl();
     this.KyHieuXepKho_NoiDung = new DevExpress.XtraEditors.TextEdit();
     this.textEdit1 = new DevExpress.XtraEditors.TextEdit();
     this.Ranking = new ProtocolVN.Framework.Win.PLDMGrid();
     this.DienVien = new ProtocolVN.Framework.Win.PLMultiCombobox();
     this.labelControl22 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl16 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl12 = new DevExpress.XtraEditors.LabelControl();
     this.label24 = new DevExpress.XtraEditors.LabelControl();
     this.TuKhoaSelect = new ProtocolVN.Framework.Win.PLMultiCombobox();
     this.labelControl11 = new DevExpress.XtraEditors.LabelControl();
     this.NgayAWB = new DevExpress.XtraEditors.DateEdit();
     this.TomTatNoiDung = new DevExpress.XtraEditors.MemoEdit();
     this.GhiChu = new DevExpress.XtraEditors.MemoEdit();
     this.TuKhoaText = new DevExpress.XtraEditors.MemoEdit();
     this.label20 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl2 = new DevExpress.XtraEditors.LabelControl();
     this.label33 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl5 = new DevExpress.XtraEditors.LabelControl();
     this.label36 = new DevExpress.XtraEditors.LabelControl();
     this.Info = new ProtocolVN.Framework.Win.PLInfoBoxEtx();
     this.TinhTrangBang = new ProtocolVN.Framework.Win.PLDMGrid();
     this.TietMuc = new ProtocolVN.Framework.Win.PLDMGrid();
     this.labelControl3 = new DevExpress.XtraEditors.LabelControl();
     this.MaChuongTrinh = new DevExpress.XtraEditors.TextEdit();
     this.label42 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl1 = new DevExpress.XtraEditors.LabelControl();
     this.xtraTabControlMain = new DevExpress.XtraTab.XtraTabControl();
     this.xtraTabPageChuongTrinh = new DevExpress.XtraTab.XtraTabPage();
     this.xtraScrollableControl1 = new DevExpress.XtraEditors.XtraScrollableControl();
     this.xtraTabPageAdd = new DevExpress.XtraTab.XtraTabPage();
     this.popupMenuTab = new DevExpress.XtraBars.PopupMenu(this.components);
     this.barButtonItem1 = new DevExpress.XtraBars.BarButtonItem();
     this.flowLayoutPanel1.SuspendLayout();
     this.flowLayoutPanel2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.KyHieuPhanLoai.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.KyHieuXepKho_KHPL.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControlThongTinPhatSong)).BeginInit();
     this.groupControlThongTinPhatSong.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.ReleaseDate.Properties.VistaTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ReleaseDate.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.SoRunConlai.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ReleaseRun.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.Release.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.SoDaRun.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridControlPhatSongKhac)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridviewPhatSongKhac)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridControlNgayPhatDauTien)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewNgayPhatDauTien)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.RunThu.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.TongSoRun.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ReleaseRule.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.MuaKem.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.Rating.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.DoiTuongKhanGia.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControlNguonGoc)).BeginInit();
     this.groupControlNguonGoc.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.NoteBQ.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridControlThongTinBan)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewThongTinBan)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl7)).BeginInit();
     this.groupControl7.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.DonViHauKy.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.NamSanXuat.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.QuocGia.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.KenhHanCheBan.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).BeginInit();
     this.groupControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.BanQuyenHTV.Properties.VistaTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.BanQuyenHTV.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.BanQuyenDIDEnd.Properties.VistaTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.BanQuyenDIDEnd.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.BanQuyenDTNNEnd.Properties.VistaTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.BanQuyenDTNNEnd.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.BanQuyenDIDStart.Properties.VistaTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.BanQuyenDIDStart.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.BanQuyenDTNNStart.Properties.VistaTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.BanQuyenDTNNStart.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ChanelRight.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.DaoDien.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControlThongTin)).BeginInit();
     this.groupControlThongTin.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridControlGhiChu)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewGhiChu)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.PhanLoaiDrama.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.barManager1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.NguonTrading.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ClassName.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.Code.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.TenGoc.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.NoiDung.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.Period.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.Category.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.TrailerGoc.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.Photos.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.Script.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ckcMoiTrenThiTruong.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ckcTrongKho.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ThanhLy.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl8)).BeginInit();
     this.groupControl8.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.KyHieuXepKho_NoiDung.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.textEdit1.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.DienVien.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.TuKhoaSelect.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.NgayAWB.Properties.VistaTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.NgayAWB.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.TomTatNoiDung.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.GhiChu.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.TuKhoaText.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.MaChuongTrinh.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.xtraTabControlMain)).BeginInit();
     this.xtraTabControlMain.SuspendLayout();
     this.xtraTabPageChuongTrinh.SuspendLayout();
     this.xtraScrollableControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.popupMenuTab)).BeginInit();
     this.SuspendLayout();
     //
     // flowLayoutPanel1
     //
     this.flowLayoutPanel1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.flowLayoutPanel1.Controls.Add(this.btnClose);
     this.flowLayoutPanel1.Controls.Add(this.btnDelete);
     this.flowLayoutPanel1.Controls.Add(this.btnDeleteRealy);
     this.flowLayoutPanel1.Controls.Add(this.btnRestore);
     this.flowLayoutPanel1.Controls.Add(this.btnSave);
     this.flowLayoutPanel1.FlowDirection = System.Windows.Forms.FlowDirection.RightToLeft;
     this.flowLayoutPanel1.Location = new System.Drawing.Point(626, 716);
     this.flowLayoutPanel1.Name = "flowLayoutPanel1";
     this.flowLayoutPanel1.Size = new System.Drawing.Size(415, 31);
     this.flowLayoutPanel1.TabIndex = 4;
     //
     // btnClose
     //
     this.btnClose.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.btnClose.Location = new System.Drawing.Point(337, 3);
     this.btnClose.Name = "btnClose";
     this.btnClose.Size = new System.Drawing.Size(75, 23);
     this.btnClose.TabIndex = 2;
     this.btnClose.Text = "Đ&óng";
     this.btnClose.Click += new System.EventHandler(this.btnClose_Click);
     //
     // btnDelete
     //
     this.btnDelete.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.btnDelete.Location = new System.Drawing.Point(256, 3);
     this.btnDelete.Name = "btnDelete";
     this.btnDelete.Size = new System.Drawing.Size(75, 23);
     this.btnDelete.TabIndex = 1;
     this.btnDelete.Text = "&Xóa";
     this.btnDelete.Click += new System.EventHandler(this.btnDelete_Click);
     //
     // btnDeleteRealy
     //
     this.btnDeleteRealy.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.btnDeleteRealy.Location = new System.Drawing.Point(175, 3);
     this.btnDeleteRealy.Name = "btnDeleteRealy";
     this.btnDeleteRealy.Size = new System.Drawing.Size(75, 23);
     this.btnDeleteRealy.TabIndex = 1;
     this.btnDeleteRealy.Text = "&Xóa hẳn";
     this.btnDeleteRealy.Visible = false;
     this.btnDeleteRealy.Click += new System.EventHandler(this.btnDeleteRealy_Click);
     //
     // btnRestore
     //
     this.btnRestore.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.btnRestore.Location = new System.Drawing.Point(94, 3);
     this.btnRestore.Name = "btnRestore";
     this.btnRestore.Size = new System.Drawing.Size(75, 23);
     this.btnRestore.TabIndex = 1;
     this.btnRestore.Text = "&Phục hồi";
     this.btnRestore.Visible = false;
     this.btnRestore.Click += new System.EventHandler(this.btnRestore_Click);
     //
     // btnSave
     //
     this.btnSave.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.btnSave.Location = new System.Drawing.Point(13, 3);
     this.btnSave.Name = "btnSave";
     this.btnSave.Size = new System.Drawing.Size(75, 23);
     this.btnSave.TabIndex = 0;
     this.btnSave.Text = "&Lưu";
     this.btnSave.Click += new System.EventHandler(this.btnSave_Click);
     //
     // InPhieu
     //
     this.InPhieu.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.InPhieu.Location = new System.Drawing.Point(30, 3);
     this.InPhieu.Name = "InPhieu";
     this.InPhieu.Size = new System.Drawing.Size(81, 23);
     this.InPhieu.TabIndex = 1;
     this.InPhieu.Text = "&In nhãn";
     //
     // ctMnuInPhieu
     //
     this.ctMnuInPhieu.Name = "contextMenuStrip2";
     this.ctMnuInPhieu.Size = new System.Drawing.Size(61, 4);
     //
     // NghiepVu
     //
     this.NghiepVu.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.NghiepVu.Location = new System.Drawing.Point(117, 3);
     this.NghiepVu.Name = "NghiepVu";
     this.NghiepVu.Size = new System.Drawing.Size(81, 23);
     this.NghiepVu.TabIndex = 2;
     this.NghiepVu.Text = "Nghiệp vụ";
     this.NghiepVu.Visible = false;
     //
     // ctMnuNghiepVu
     //
     this.ctMnuNghiepVu.Name = "contextMenuStrip3";
     this.ctMnuNghiepVu.Size = new System.Drawing.Size(61, 4);
     //
     // Duyet
     //
     this.Duyet.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.Duyet.Enabled = false;
     this.Duyet.Location = new System.Drawing.Point(3, 6);
     this.Duyet.Name = "Duyet";
     this.Duyet.Size = new System.Drawing.Size(21, 20);
     this.Duyet.TabIndex = 0;
     this.Duyet.Visible = false;
     //
     // flowLayoutPanel2
     //
     this.flowLayoutPanel2.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.flowLayoutPanel2.Controls.Add(this.Duyet);
     this.flowLayoutPanel2.Controls.Add(this.InPhieu);
     this.flowLayoutPanel2.Controls.Add(this.NghiepVu);
     this.flowLayoutPanel2.Location = new System.Drawing.Point(6, 716);
     this.flowLayoutPanel2.Name = "flowLayoutPanel2";
     this.flowLayoutPanel2.Size = new System.Drawing.Size(218, 31);
     this.flowLayoutPanel2.TabIndex = 3;
     //
     // label7
     //
     this.label7.Location = new System.Drawing.Point(638, 52);
     this.label7.Name = "label7";
     this.label7.Size = new System.Drawing.Size(40, 13);
     this.label7.TabIndex = 0;
     this.label7.Text = "Tiết mục";
     //
     // label8
     //
     this.label8.Location = new System.Drawing.Point(9, 76);
     this.label8.Name = "label8";
     this.label8.Size = new System.Drawing.Size(82, 13);
     this.label8.TabIndex = 0;
     this.label8.Text = "Tên chương trình";
     //
     // KyHieuPhanLoai
     //
     this.KyHieuPhanLoai.Location = new System.Drawing.Point(405, 165);
     this.KyHieuPhanLoai.Name = "KyHieuPhanLoai";
     this.KyHieuPhanLoai.Properties.Appearance.Options.UseTextOptions = true;
     this.KyHieuPhanLoai.Properties.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.KyHieuPhanLoai.Size = new System.Drawing.Size(227, 20);
     this.KyHieuPhanLoai.TabIndex = 11;
     this.KyHieuPhanLoai.Validated += new System.EventHandler(this.KyHieuPhanLoai_Validated);
     //
     // label21
     //
     this.label21.Location = new System.Drawing.Point(343, 168);
     this.label21.Name = "label21";
     this.label21.Size = new System.Drawing.Size(24, 13);
     this.label21.TabIndex = 0;
     this.label21.Text = "KHPL";
     this.label21.ToolTip = "Ký hiệu phân loại";
     //
     // label22
     //
     this.label22.Appearance.ForeColor = System.Drawing.Color.Blue;
     this.label22.Appearance.Options.UseForeColor = true;
     this.label22.Location = new System.Drawing.Point(345, 191);
     this.label22.Name = "label22";
     this.label22.Size = new System.Drawing.Size(25, 13);
     this.label22.TabIndex = 0;
     this.label22.Text = "KHXK";
     this.label22.ToolTip = "Ký hiệu xếp kho";
     //
     // label2
     //
     this.label2.Location = new System.Drawing.Point(5, 33);
     this.label2.Name = "label2";
     this.label2.Size = new System.Drawing.Size(67, 13);
     this.label2.TabIndex = 0;
     this.label2.Text = "Đơn vị sở hữu";
     //
     // label4
     //
     this.label4.Location = new System.Drawing.Point(5, 10);
     this.label4.Name = "label4";
     this.label4.Size = new System.Drawing.Size(77, 13);
     this.label4.TabIndex = 0;
     this.label4.Text = "Đơn vị cung cấp";
     //
     // label5
     //
     this.label5.Location = new System.Drawing.Point(9, 100);
     this.label5.Name = "label5";
     this.label5.Size = new System.Drawing.Size(43, 13);
     this.label5.TabIndex = 0;
     this.label5.Text = "Đạo diễn";
     //
     // label15
     //
     this.label15.Location = new System.Drawing.Point(639, 122);
     this.label15.Name = "label15";
     this.label15.Size = new System.Drawing.Size(46, 13);
     this.label15.TabIndex = 0;
     this.label15.Text = "Rating TB";
     this.label15.ToolTip = "Rating trung bình";
     //
     // lblTitle
     //
     this.lblTitle.Appearance.Font = new System.Drawing.Font("Tahoma", 18F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblTitle.Appearance.Options.UseFont = true;
     this.lblTitle.Appearance.Options.UseTextOptions = true;
     this.lblTitle.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.lblTitle.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.lblTitle.Dock = System.Windows.Forms.DockStyle.Top;
     this.lblTitle.Location = new System.Drawing.Point(0, 0);
     this.lblTitle.Name = "lblTitle";
     this.lblTitle.Size = new System.Drawing.Size(1049, 38);
     this.lblTitle.TabIndex = 0;
     this.lblTitle.Text = "CHƯƠNG TRÌNH";
     //
     // KyHieuXepKho_KHPL
     //
     this.KyHieuXepKho_KHPL.Location = new System.Drawing.Point(3, 1);
     this.KyHieuXepKho_KHPL.Name = "KyHieuXepKho_KHPL";
     this.KyHieuXepKho_KHPL.Properties.AppearanceReadOnly.Options.UseTextOptions = true;
     this.KyHieuXepKho_KHPL.Properties.AppearanceReadOnly.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.KyHieuXepKho_KHPL.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.KyHieuXepKho_KHPL.Properties.ReadOnly = true;
     this.KyHieuXepKho_KHPL.Size = new System.Drawing.Size(221, 18);
     this.KyHieuXepKho_KHPL.TabIndex = 0;
     this.KyHieuXepKho_KHPL.TabStop = false;
     //
     // groupControlThongTinPhatSong
     //
     this.groupControlThongTinPhatSong.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.groupControlThongTinPhatSong.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.groupControlThongTinPhatSong.AppearanceCaption.Options.UseFont = true;
     this.groupControlThongTinPhatSong.Controls.Add(this.ReleaseDate);
     this.groupControlThongTinPhatSong.Controls.Add(this.SoRunConlai);
     this.groupControlThongTinPhatSong.Controls.Add(this.ReleaseRun);
     this.groupControlThongTinPhatSong.Controls.Add(this.Release);
     this.groupControlThongTinPhatSong.Controls.Add(this.SoDaRun);
     this.groupControlThongTinPhatSong.Controls.Add(this.gridControlPhatSongKhac);
     this.groupControlThongTinPhatSong.Controls.Add(this.gridControlNgayPhatDauTien);
     this.groupControlThongTinPhatSong.Controls.Add(this.labelControl8);
     this.groupControlThongTinPhatSong.Controls.Add(this.labelControl9);
     this.groupControlThongTinPhatSong.Controls.Add(this.RunThu);
     this.groupControlThongTinPhatSong.Controls.Add(this.TongSoRun);
     this.groupControlThongTinPhatSong.Controls.Add(this.labelControl20);
     this.groupControlThongTinPhatSong.Controls.Add(this.labelControl19);
     this.groupControlThongTinPhatSong.Controls.Add(this.labelControl6);
     this.groupControlThongTinPhatSong.Controls.Add(this.labelControl24);
     this.groupControlThongTinPhatSong.Controls.Add(this.labelControl21);
     this.groupControlThongTinPhatSong.Controls.Add(this.labelControl15);
     this.groupControlThongTinPhatSong.Controls.Add(this.labelControl10);
     this.groupControlThongTinPhatSong.Controls.Add(this.ReleaseRule);
     this.groupControlThongTinPhatSong.Controls.Add(this.MuaKem);
     this.groupControlThongTinPhatSong.Location = new System.Drawing.Point(3, 672);
     this.groupControlThongTinPhatSong.Name = "groupControlThongTinPhatSong";
     this.groupControlThongTinPhatSong.Size = new System.Drawing.Size(1000, 351);
     this.groupControlThongTinPhatSong.TabIndex = 2;
     this.groupControlThongTinPhatSong.Text = "Thông tin phát sóng";
     //
     // ReleaseDate
     //
     this.ReleaseDate.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.ReleaseDate.EditValue = null;
     this.ReleaseDate.Location = new System.Drawing.Point(840, 150);
     this.ReleaseDate.Name = "ReleaseDate";
     this.ReleaseDate.Properties.AllowNullInput = DevExpress.Utils.DefaultBoolean.True;
     this.ReleaseDate.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.ReleaseDate.Properties.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.ReleaseDate.Size = new System.Drawing.Size(155, 20);
     this.ReleaseDate.TabIndex = 5;
     //
     // SoRunConlai
     //
     this.SoRunConlai.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.SoRunConlai.EditValue = new decimal(new int[] {
     0,
     0,
     0,
     0});
     this.SoRunConlai.Location = new System.Drawing.Point(840, 102);
     this.SoRunConlai.Name = "SoRunConlai";
     this.SoRunConlai.Properties.AllowNullInput = DevExpress.Utils.DefaultBoolean.True;
     this.SoRunConlai.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.SoRunConlai.Properties.ReadOnly = true;
     this.SoRunConlai.Size = new System.Drawing.Size(155, 20);
     this.SoRunConlai.TabIndex = 4;
     this.SoRunConlai.TabStop = false;
     //
     // ReleaseRun
     //
     this.ReleaseRun.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.ReleaseRun.EditValue = new decimal(new int[] {
     0,
     0,
     0,
     0});
     this.ReleaseRun.Location = new System.Drawing.Point(841, 175);
     this.ReleaseRun.Name = "ReleaseRun";
     this.ReleaseRun.Properties.AllowNullInput = DevExpress.Utils.DefaultBoolean.True;
     this.ReleaseRun.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.ReleaseRun.Size = new System.Drawing.Size(154, 20);
     this.ReleaseRun.TabIndex = 5;
     //
     // Release
     //
     this.Release.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.Release.EditValue = new decimal(new int[] {
     0,
     0,
     0,
     0});
     this.Release.Location = new System.Drawing.Point(840, 125);
     this.Release.Name = "Release";
     this.Release.Properties.AllowNullInput = DevExpress.Utils.DefaultBoolean.True;
     this.Release.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.Release.Size = new System.Drawing.Size(155, 20);
     this.Release.TabIndex = 5;
     //
     // SoDaRun
     //
     this.SoDaRun.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.SoDaRun.EditValue = new decimal(new int[] {
     0,
     0,
     0,
     0});
     this.SoDaRun.Location = new System.Drawing.Point(840, 78);
     this.SoDaRun.Name = "SoDaRun";
     this.SoDaRun.Properties.AllowNullInput = DevExpress.Utils.DefaultBoolean.True;
     this.SoDaRun.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.SoDaRun.Size = new System.Drawing.Size(155, 20);
     this.SoDaRun.TabIndex = 3;
     this.SoDaRun.TabStop = false;
     this.SoDaRun.EditValueChanged += new System.EventHandler(this.TongSoRun_EditValueChanged);
     //
     // gridControlPhatSongKhac
     //
     this.gridControlPhatSongKhac.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.gridControlPhatSongKhac.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("gridControlPhatSongKhac.BackgroundImage")));
     this.gridControlPhatSongKhac.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
     this.gridControlPhatSongKhac.Location = new System.Drawing.Point(450, 32);
     this.gridControlPhatSongKhac.MainView = this.gridviewPhatSongKhac;
     this.gridControlPhatSongKhac.Name = "gridControlPhatSongKhac";
     this.gridControlPhatSongKhac.Size = new System.Drawing.Size(305, 314);
     this.gridControlPhatSongKhac.TabIndex = 1;
     this.gridControlPhatSongKhac.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridviewPhatSongKhac});
     //
     // gridviewPhatSongKhac
     //
     this.gridviewPhatSongKhac.Appearance.HeaderPanel.Options.UseTextOptions = true;
     this.gridviewPhatSongKhac.Appearance.HeaderPanel.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridviewPhatSongKhac.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.ColPSK_Kenh,
     this.ColPSK_TuNgay,
     this.ColPSK_DenNgay,
     this.ColPSK_LanPhat});
     this.gridviewPhatSongKhac.GridControl = this.gridControlPhatSongKhac;
     this.gridviewPhatSongKhac.GroupCount = 1;
     this.gridviewPhatSongKhac.IndicatorWidth = 40;
     this.gridviewPhatSongKhac.Name = "gridviewPhatSongKhac";
     this.gridviewPhatSongKhac.OptionsLayout.Columns.AddNewColumns = false;
     this.gridviewPhatSongKhac.OptionsNavigation.AutoFocusNewRow = true;
     this.gridviewPhatSongKhac.OptionsNavigation.EnterMoveNextColumn = true;
     this.gridviewPhatSongKhac.OptionsPrint.UsePrintStyles = true;
     this.gridviewPhatSongKhac.OptionsView.EnableAppearanceEvenRow = true;
     this.gridviewPhatSongKhac.OptionsView.EnableAppearanceOddRow = true;
     this.gridviewPhatSongKhac.OptionsView.NewItemRowPosition = DevExpress.XtraGrid.Views.Grid.NewItemRowPosition.Top;
     this.gridviewPhatSongKhac.OptionsView.ShowFilterPanelMode = DevExpress.XtraGrid.Views.Base.ShowFilterPanelMode.Never;
     this.gridviewPhatSongKhac.OptionsView.ShowFooter = true;
     this.gridviewPhatSongKhac.OptionsView.ShowGroupedColumns = true;
     this.gridviewPhatSongKhac.OptionsView.ShowGroupPanel = false;
     this.gridviewPhatSongKhac.OptionsView.ShowIndicator = false;
     this.gridviewPhatSongKhac.OptionsView.ShowViewCaption = true;
     this.gridviewPhatSongKhac.SortInfo.AddRange(new DevExpress.XtraGrid.Columns.GridColumnSortInfo[] {
     new DevExpress.XtraGrid.Columns.GridColumnSortInfo(this.ColPSK_Kenh, DevExpress.Data.ColumnSortOrder.Ascending)});
     this.gridviewPhatSongKhac.ViewCaption = "Thời gian phát sóng trên các kênh khác";
     this.gridviewPhatSongKhac.ValidateRow += new DevExpress.XtraGrid.Views.Base.ValidateRowEventHandler(this.gridViewPhatSongKhac_ValidateRow);
     //
     // ColPSK_Kenh
     //
     this.ColPSK_Kenh.Caption = "Kênh phát sóng";
     this.ColPSK_Kenh.Name = "ColPSK_Kenh";
     this.ColPSK_Kenh.SummaryItem.DisplayFormat = "Số lần đã phát {0}";
     this.ColPSK_Kenh.SummaryItem.SummaryType = DevExpress.Data.SummaryItemType.Count;
     this.ColPSK_Kenh.Visible = true;
     this.ColPSK_Kenh.VisibleIndex = 0;
     this.ColPSK_Kenh.Width = 100;
     //
     // ColPSK_TuNgay
     //
     this.ColPSK_TuNgay.Caption = "Từ ngày";
     this.ColPSK_TuNgay.Name = "ColPSK_TuNgay";
     this.ColPSK_TuNgay.Visible = true;
     this.ColPSK_TuNgay.VisibleIndex = 1;
     this.ColPSK_TuNgay.Width = 52;
     //
     // ColPSK_DenNgay
     //
     this.ColPSK_DenNgay.Caption = "Đến ngày";
     this.ColPSK_DenNgay.Name = "ColPSK_DenNgay";
     this.ColPSK_DenNgay.Visible = true;
     this.ColPSK_DenNgay.VisibleIndex = 2;
     this.ColPSK_DenNgay.Width = 59;
     //
     // ColPSK_LanPhat
     //
     this.ColPSK_LanPhat.Caption = "Run thứ";
     this.ColPSK_LanPhat.Name = "ColPSK_LanPhat";
     this.ColPSK_LanPhat.SummaryItem.DisplayFormat = "Run thứ:{0}";
     this.ColPSK_LanPhat.SummaryItem.SummaryType = DevExpress.Data.SummaryItemType.Sum;
     this.ColPSK_LanPhat.Visible = true;
     this.ColPSK_LanPhat.VisibleIndex = 3;
     this.ColPSK_LanPhat.Width = 52;
     //
     // gridControlNgayPhatDauTien
     //
     this.gridControlNgayPhatDauTien.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.gridControlNgayPhatDauTien.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("gridControlNgayPhatDauTien.BackgroundImage")));
     this.gridControlNgayPhatDauTien.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
     this.gridControlNgayPhatDauTien.Location = new System.Drawing.Point(6, 32);
     this.gridControlNgayPhatDauTien.MainView = this.gridViewNgayPhatDauTien;
     this.gridControlNgayPhatDauTien.Name = "gridControlNgayPhatDauTien";
     this.gridControlNgayPhatDauTien.Size = new System.Drawing.Size(436, 314);
     this.gridControlNgayPhatDauTien.TabIndex = 0;
     this.gridControlNgayPhatDauTien.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridViewNgayPhatDauTien});
     //
     // gridViewNgayPhatDauTien
     //
     this.gridViewNgayPhatDauTien.Appearance.HeaderPanel.Options.UseTextOptions = true;
     this.gridViewNgayPhatDauTien.Appearance.HeaderPanel.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridViewNgayPhatDauTien.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.ColKenhPhatSong,
     this.ColIsPhatLai,
     this.ColNgayPhatStart,
     this.ColNgayPhatEnd,
     this.ColTimeSlot,
     this.ColLanPhat});
     this.gridViewNgayPhatDauTien.GridControl = this.gridControlNgayPhatDauTien;
     this.gridViewNgayPhatDauTien.GroupCount = 1;
     this.gridViewNgayPhatDauTien.IndicatorWidth = 40;
     this.gridViewNgayPhatDauTien.Name = "gridViewNgayPhatDauTien";
     this.gridViewNgayPhatDauTien.OptionsLayout.Columns.AddNewColumns = false;
     this.gridViewNgayPhatDauTien.OptionsMenu.EnableFooterMenu = false;
     this.gridViewNgayPhatDauTien.OptionsNavigation.AutoFocusNewRow = true;
     this.gridViewNgayPhatDauTien.OptionsNavigation.EnterMoveNextColumn = true;
     this.gridViewNgayPhatDauTien.OptionsPrint.UsePrintStyles = true;
     this.gridViewNgayPhatDauTien.OptionsView.EnableAppearanceEvenRow = true;
     this.gridViewNgayPhatDauTien.OptionsView.EnableAppearanceOddRow = true;
     this.gridViewNgayPhatDauTien.OptionsView.NewItemRowPosition = DevExpress.XtraGrid.Views.Grid.NewItemRowPosition.Top;
     this.gridViewNgayPhatDauTien.OptionsView.ShowFilterPanelMode = DevExpress.XtraGrid.Views.Base.ShowFilterPanelMode.Never;
     this.gridViewNgayPhatDauTien.OptionsView.ShowFooter = true;
     this.gridViewNgayPhatDauTien.OptionsView.ShowGroupedColumns = true;
     this.gridViewNgayPhatDauTien.OptionsView.ShowGroupPanel = false;
     this.gridViewNgayPhatDauTien.OptionsView.ShowIndicator = false;
     this.gridViewNgayPhatDauTien.OptionsView.ShowViewCaption = true;
     this.gridViewNgayPhatDauTien.SortInfo.AddRange(new DevExpress.XtraGrid.Columns.GridColumnSortInfo[] {
     new DevExpress.XtraGrid.Columns.GridColumnSortInfo(this.ColKenhPhatSong, DevExpress.Data.ColumnSortOrder.Ascending)});
     this.gridViewNgayPhatDauTien.ViewCaption = "Ngày phát sóng đầu tiên";
     this.gridViewNgayPhatDauTien.CustomDrawGroupRow += new DevExpress.XtraGrid.Views.Base.RowObjectCustomDrawEventHandler(this.gridViewNgayPhatDauTien_CustomDrawGroupRow);
     this.gridViewNgayPhatDauTien.RowUpdated += new DevExpress.XtraGrid.Views.Base.RowObjectEventHandler(this.gridViewNgayPhatDauTien_RowUpdated);
     this.gridViewNgayPhatDauTien.ValidateRow += new DevExpress.XtraGrid.Views.Base.ValidateRowEventHandler(this.gridViewNgayPhatDauTien_ValidateRow);
     //
     // ColKenhPhatSong
     //
     this.ColKenhPhatSong.Caption = "Kênh";
     this.ColKenhPhatSong.Name = "ColKenhPhatSong";
     this.ColKenhPhatSong.SummaryItem.DisplayFormat = "Phát chính: {0} lần";
     this.ColKenhPhatSong.SummaryItem.SummaryType = DevExpress.Data.SummaryItemType.Count;
     this.ColKenhPhatSong.Visible = true;
     this.ColKenhPhatSong.VisibleIndex = 0;
     this.ColKenhPhatSong.Width = 83;
     //
     // ColIsPhatLai
     //
     this.ColIsPhatLai.Caption = "Phát lại";
     this.ColIsPhatLai.Name = "ColIsPhatLai";
     this.ColIsPhatLai.SummaryItem.DisplayFormat = "Phát lại: {0} lần";
     this.ColIsPhatLai.SummaryItem.SummaryType = DevExpress.Data.SummaryItemType.Count;
     this.ColIsPhatLai.Visible = true;
     this.ColIsPhatLai.VisibleIndex = 1;
     this.ColIsPhatLai.Width = 68;
     //
     // ColNgayPhatStart
     //
     this.ColNgayPhatStart.Caption = "Từ ngày";
     this.ColNgayPhatStart.Name = "ColNgayPhatStart";
     this.ColNgayPhatStart.Visible = true;
     this.ColNgayPhatStart.VisibleIndex = 2;
     this.ColNgayPhatStart.Width = 52;
     //
     // ColNgayPhatEnd
     //
     this.ColNgayPhatEnd.Caption = "Đến ngày";
     this.ColNgayPhatEnd.Name = "ColNgayPhatEnd";
     this.ColNgayPhatEnd.Visible = true;
     this.ColNgayPhatEnd.VisibleIndex = 3;
     this.ColNgayPhatEnd.Width = 59;
     //
     // ColTimeSlot
     //
     this.ColTimeSlot.Caption = "Timeslot";
     this.ColTimeSlot.Name = "ColTimeSlot";
     this.ColTimeSlot.Visible = true;
     this.ColTimeSlot.VisibleIndex = 4;
     this.ColTimeSlot.Width = 51;
     //
     // ColLanPhat
     //
     this.ColLanPhat.Caption = "Run thứ";
     this.ColLanPhat.Name = "ColLanPhat";
     this.ColLanPhat.SummaryItem.DisplayFormat = "Run thứ:{0}";
     this.ColLanPhat.SummaryItem.SummaryType = DevExpress.Data.SummaryItemType.Sum;
     this.ColLanPhat.Visible = true;
     this.ColLanPhat.VisibleIndex = 5;
     this.ColLanPhat.Width = 52;
     //
     // labelControl8
     //
     this.labelControl8.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.labelControl8.Location = new System.Drawing.Point(760, 105);
     this.labelControl8.Name = "labelControl8";
     this.labelControl8.Size = new System.Drawing.Size(52, 13);
     this.labelControl8.TabIndex = 137;
     this.labelControl8.Text = "Run còn lại";
     //
     // labelControl9
     //
     this.labelControl9.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.labelControl9.Location = new System.Drawing.Point(760, 81);
     this.labelControl9.Name = "labelControl9";
     this.labelControl9.Size = new System.Drawing.Size(49, 13);
     this.labelControl9.TabIndex = 137;
     this.labelControl9.Text = "Số đã Run";
     //
     // RunThu
     //
     this.RunThu.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.RunThu.EditValue = new decimal(new int[] {
     0,
     0,
     0,
     0});
     this.RunThu.Location = new System.Drawing.Point(840, 32);
     this.RunThu.Name = "RunThu";
     this.RunThu.Properties.AllowNullInput = DevExpress.Utils.DefaultBoolean.True;
     this.RunThu.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.RunThu.Size = new System.Drawing.Size(155, 20);
     this.RunThu.TabIndex = 2;
     this.RunThu.EditValueChanged += new System.EventHandler(this.TongSoRun_EditValueChanged);
     //
     // TongSoRun
     //
     this.TongSoRun.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.TongSoRun.EditValue = new decimal(new int[] {
     0,
     0,
     0,
     0});
     this.TongSoRun.Location = new System.Drawing.Point(840, 55);
     this.TongSoRun.Name = "TongSoRun";
     this.TongSoRun.Properties.AllowNullInput = DevExpress.Utils.DefaultBoolean.True;
     this.TongSoRun.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.TongSoRun.Size = new System.Drawing.Size(155, 20);
     this.TongSoRun.TabIndex = 2;
     this.TongSoRun.EditValueChanged += new System.EventHandler(this.TongSoRun_EditValueChanged);
     //
     // labelControl20
     //
     this.labelControl20.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.labelControl20.Location = new System.Drawing.Point(760, 178);
     this.labelControl20.Name = "labelControl20";
     this.labelControl20.Size = new System.Drawing.Size(57, 13);
     this.labelControl20.TabIndex = 129;
     this.labelControl20.Text = "Release run";
     //
     // labelControl19
     //
     this.labelControl19.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.labelControl19.Location = new System.Drawing.Point(760, 151);
     this.labelControl19.Name = "labelControl19";
     this.labelControl19.Size = new System.Drawing.Size(63, 13);
     this.labelControl19.TabIndex = 129;
     this.labelControl19.Text = "Release date";
     //
     // labelControl6
     //
     this.labelControl6.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.labelControl6.Location = new System.Drawing.Point(760, 127);
     this.labelControl6.Name = "labelControl6";
     this.labelControl6.Size = new System.Drawing.Size(74, 13);
     this.labelControl6.TabIndex = 129;
     this.labelControl6.Text = "Release (Ngày)";
     //
     // labelControl24
     //
     this.labelControl24.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.labelControl24.Location = new System.Drawing.Point(760, 205);
     this.labelControl24.Name = "labelControl24";
     this.labelControl24.Size = new System.Drawing.Size(53, 13);
     this.labelControl24.TabIndex = 137;
     this.labelControl24.Text = "Realse rule";
     //
     // labelControl21
     //
     this.labelControl21.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.labelControl21.Location = new System.Drawing.Point(760, 276);
     this.labelControl21.Name = "labelControl21";
     this.labelControl21.Size = new System.Drawing.Size(42, 13);
     this.labelControl21.TabIndex = 137;
     this.labelControl21.Text = "Mua kèm";
     //
     // labelControl15
     //
     this.labelControl15.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.labelControl15.Location = new System.Drawing.Point(760, 36);
     this.labelControl15.Name = "labelControl15";
     this.labelControl15.Size = new System.Drawing.Size(39, 13);
     this.labelControl15.TabIndex = 137;
     this.labelControl15.Text = "Run thứ";
     //
     // labelControl10
     //
     this.labelControl10.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.labelControl10.Location = new System.Drawing.Point(760, 57);
     this.labelControl10.Name = "labelControl10";
     this.labelControl10.Size = new System.Drawing.Size(60, 13);
     this.labelControl10.TabIndex = 137;
     this.labelControl10.Text = "Tổng số Run";
     //
     // ReleaseRule
     //
     this.ReleaseRule.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.ReleaseRule.Location = new System.Drawing.Point(841, 201);
     this.ReleaseRule.Name = "ReleaseRule";
     this.ReleaseRule.Size = new System.Drawing.Size(152, 70);
     this.ReleaseRule.TabIndex = 6;
     //
     // MuaKem
     //
     this.MuaKem.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.MuaKem.Location = new System.Drawing.Point(841, 277);
     this.MuaKem.Name = "MuaKem";
     this.MuaKem.Size = new System.Drawing.Size(155, 69);
     this.MuaKem.TabIndex = 6;
     //
     // Rating
     //
     this.Rating.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.Rating.Location = new System.Drawing.Point(690, 120);
     this.Rating.Name = "Rating";
     this.Rating.Properties.AllowNullInput = DevExpress.Utils.DefaultBoolean.True;
     this.Rating.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.Rating.Size = new System.Drawing.Size(303, 20);
     this.Rating.TabIndex = 12;
     //
     // DoiTuongKhanGia
     //
     this.DoiTuongKhanGia.DataSource = null;
     this.DoiTuongKhanGia.DisplayField = null;
     this.DoiTuongKhanGia.EditValue = "";
     this.DoiTuongKhanGia.Location = new System.Drawing.Point(93, 120);
     this.DoiTuongKhanGia.Name = "DoiTuongKhanGia";
     this.DoiTuongKhanGia.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.DoiTuongKhanGia.Size = new System.Drawing.Size(241, 20);
     this.DoiTuongKhanGia.TabIndex = 10;
     this.DoiTuongKhanGia.ValueField = null;
     //
     // label14
     //
     this.label14.Location = new System.Drawing.Point(9, 124);
     this.label14.Name = "label14";
     this.label14.Size = new System.Drawing.Size(57, 13);
     this.label14.TabIndex = 0;
     this.label14.Text = "ĐT khán giả";
     //
     // groupControlNguonGoc
     //
     this.groupControlNguonGoc.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.groupControlNguonGoc.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.groupControlNguonGoc.AppearanceCaption.Options.UseFont = true;
     this.groupControlNguonGoc.Controls.Add(this.NoteBQ);
     this.groupControlNguonGoc.Controls.Add(this.gridControlThongTinBan);
     this.groupControlNguonGoc.Controls.Add(this.groupControl7);
     this.groupControlNguonGoc.Controls.Add(this.labelControl17);
     this.groupControlNguonGoc.Controls.Add(this.groupControl1);
     this.groupControlNguonGoc.Controls.Add(this.labelControl14);
     this.groupControlNguonGoc.Location = new System.Drawing.Point(4, 425);
     this.groupControlNguonGoc.Name = "groupControlNguonGoc";
     this.groupControlNguonGoc.Size = new System.Drawing.Size(999, 228);
     this.groupControlNguonGoc.TabIndex = 1;
     this.groupControlNguonGoc.Text = "Nguồn gốc - bản quyền";
     //
     // NoteBQ
     //
     this.NoteBQ.Location = new System.Drawing.Point(95, 180);
     this.NoteBQ.Name = "NoteBQ";
     this.NoteBQ.Size = new System.Drawing.Size(539, 43);
     this.NoteBQ.TabIndex = 136;
     //
     // gridControlThongTinBan
     //
     this.gridControlThongTinBan.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.gridControlThongTinBan.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("gridControlThongTinBan.BackgroundImage")));
     this.gridControlThongTinBan.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
     this.gridControlThongTinBan.Location = new System.Drawing.Point(645, 29);
     this.gridControlThongTinBan.MainView = this.gridViewThongTinBan;
     this.gridControlThongTinBan.Name = "gridControlThongTinBan";
     this.gridControlThongTinBan.Size = new System.Drawing.Size(350, 194);
     this.gridControlThongTinBan.TabIndex = 2;
     this.gridControlThongTinBan.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridViewThongTinBan});
     //
     // gridViewThongTinBan
     //
     this.gridViewThongTinBan.Appearance.HeaderPanel.Options.UseTextOptions = true;
     this.gridViewThongTinBan.Appearance.HeaderPanel.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridViewThongTinBan.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.ColKenhBan,
     this.ColNgayBanTu,
     this.ColNgayBanDen});
     this.gridViewThongTinBan.GridControl = this.gridControlThongTinBan;
     this.gridViewThongTinBan.GroupCount = 1;
     this.gridViewThongTinBan.IndicatorWidth = 40;
     this.gridViewThongTinBan.Name = "gridViewThongTinBan";
     this.gridViewThongTinBan.OptionsLayout.Columns.AddNewColumns = false;
     this.gridViewThongTinBan.OptionsNavigation.AutoFocusNewRow = true;
     this.gridViewThongTinBan.OptionsNavigation.EnterMoveNextColumn = true;
     this.gridViewThongTinBan.OptionsPrint.UsePrintStyles = true;
     this.gridViewThongTinBan.OptionsView.EnableAppearanceEvenRow = true;
     this.gridViewThongTinBan.OptionsView.EnableAppearanceOddRow = true;
     this.gridViewThongTinBan.OptionsView.NewItemRowPosition = DevExpress.XtraGrid.Views.Grid.NewItemRowPosition.Top;
     this.gridViewThongTinBan.OptionsView.ShowFilterPanelMode = DevExpress.XtraGrid.Views.Base.ShowFilterPanelMode.Never;
     this.gridViewThongTinBan.OptionsView.ShowGroupedColumns = true;
     this.gridViewThongTinBan.OptionsView.ShowGroupPanel = false;
     this.gridViewThongTinBan.OptionsView.ShowIndicator = false;
     this.gridViewThongTinBan.OptionsView.ShowViewCaption = true;
     this.gridViewThongTinBan.SortInfo.AddRange(new DevExpress.XtraGrid.Columns.GridColumnSortInfo[] {
     new DevExpress.XtraGrid.Columns.GridColumnSortInfo(this.ColKenhBan, DevExpress.Data.ColumnSortOrder.Ascending)});
     this.gridViewThongTinBan.ViewCaption = "Thông tin bán";
     this.gridViewThongTinBan.CustomDrawGroupRow += new DevExpress.XtraGrid.Views.Base.RowObjectCustomDrawEventHandler(this.gridViewThongTinBan_CustomDrawGroupRow);
     this.gridViewThongTinBan.ValidateRow += new DevExpress.XtraGrid.Views.Base.ValidateRowEventHandler(this.gridViewThongTinBan_ValidateRow);
     //
     // ColKenhBan
     //
     this.ColKenhBan.Caption = "Kênh bán";
     this.ColKenhBan.Name = "ColKenhBan";
     this.ColKenhBan.SummaryItem.DisplayFormat = "Tồng số lần đã bán {0}";
     this.ColKenhBan.SummaryItem.SummaryType = DevExpress.Data.SummaryItemType.Count;
     this.ColKenhBan.Visible = true;
     this.ColKenhBan.VisibleIndex = 0;
     this.ColKenhBan.Width = 70;
     //
     // ColNgayBanTu
     //
     this.ColNgayBanTu.Caption = "Từ ngày";
     this.ColNgayBanTu.Name = "ColNgayBanTu";
     this.ColNgayBanTu.Visible = true;
     this.ColNgayBanTu.VisibleIndex = 1;
     this.ColNgayBanTu.Width = 52;
     //
     // ColNgayBanDen
     //
     this.ColNgayBanDen.Caption = "Đên ngày";
     this.ColNgayBanDen.Name = "ColNgayBanDen";
     this.ColNgayBanDen.Visible = true;
     this.ColNgayBanDen.VisibleIndex = 2;
     this.ColNgayBanDen.Width = 59;
     //
     // groupControl7
     //
     this.groupControl7.Controls.Add(this.DonViHauKy);
     this.groupControl7.Controls.Add(this.HangSanXuat);
     this.groupControl7.Controls.Add(this.DonViSoHuu);
     this.groupControl7.Controls.Add(this.NamSanXuat);
     this.groupControl7.Controls.Add(this.label4);
     this.groupControl7.Controls.Add(this.label2);
     this.groupControl7.Controls.Add(this.labelControl33);
     this.groupControl7.Controls.Add(this.labelControl32);
     this.groupControl7.Controls.Add(this.labelControl4);
     this.groupControl7.Controls.Add(this.labelControl7);
     this.groupControl7.Controls.Add(this.QuocGia);
     this.groupControl7.Controls.Add(this.label25);
     this.groupControl7.Controls.Add(this.KenhHanCheBan);
     this.groupControl7.Controls.Add(this.DonViCungCap);
     this.groupControl7.Location = new System.Drawing.Point(2, 29);
     this.groupControl7.Name = "groupControl7";
     this.groupControl7.ShowCaption = false;
     this.groupControl7.Size = new System.Drawing.Size(338, 147);
     this.groupControl7.TabIndex = 0;
     this.groupControl7.Text = "groupControl7";
     //
     // DonViHauKy
     //
     this.DonViHauKy._DataSource = null;
     this.DonViHauKy._GetField = null;
     this.DonViHauKy.Location = new System.Drawing.Point(92, 53);
     this.DonViHauKy.Name = "DonViHauKy";
     this.DonViHauKy.Properties.CloseUpKey = new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None);
     this.DonViHauKy.Size = new System.Drawing.Size(241, 20);
     this.DonViHauKy.TabIndex = 133;
     //
     // HangSanXuat
     //
     this.HangSanXuat.Location = new System.Drawing.Point(92, 78);
     this.HangSanXuat.Name = "HangSanXuat";
     this.HangSanXuat.Size = new System.Drawing.Size(241, 20);
     this.HangSanXuat.TabIndex = 1;
     this.HangSanXuat.ZZZWidthFactor = 2F;
     //
     // DonViSoHuu
     //
     this.DonViSoHuu.Location = new System.Drawing.Point(92, 31);
     this.DonViSoHuu.Name = "DonViSoHuu";
     this.DonViSoHuu.Size = new System.Drawing.Size(241, 20);
     this.DonViSoHuu.TabIndex = 1;
     this.DonViSoHuu.ZZZWidthFactor = 2F;
     //
     // NamSanXuat
     //
     this.NamSanXuat.EditValue = new decimal(new int[] {
     1999,
     0,
     0,
     0});
     this.NamSanXuat.Location = new System.Drawing.Point(278, 101);
     this.NamSanXuat.Name = "NamSanXuat";
     this.NamSanXuat.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.NamSanXuat.Properties.Mask.EditMask = "n0";
     this.NamSanXuat.Properties.Mask.UseMaskAsDisplayFormat = true;
     this.NamSanXuat.Properties.MaxValue = new decimal(new int[] {
     -1530494977,
     232830,
     0,
     0});
     this.NamSanXuat.Size = new System.Drawing.Size(55, 20);
     this.NamSanXuat.TabIndex = 3;
     //
     // labelControl33
     //
     this.labelControl33.Location = new System.Drawing.Point(6, 81);
     this.labelControl33.Name = "labelControl33";
     this.labelControl33.Size = new System.Drawing.Size(70, 13);
     this.labelControl33.TabIndex = 0;
     this.labelControl33.Text = "Hãng sản xuất";
     //
     // labelControl32
     //
     this.labelControl32.Location = new System.Drawing.Point(5, 55);
     this.labelControl32.Name = "labelControl32";
     this.labelControl32.Size = new System.Drawing.Size(66, 13);
     this.labelControl32.TabIndex = 0;
     this.labelControl32.Text = "Đơn vị hậu kỳ";
     //
     // labelControl4
     //
     this.labelControl4.Location = new System.Drawing.Point(5, 104);
     this.labelControl4.Name = "labelControl4";
     this.labelControl4.Size = new System.Drawing.Size(70, 13);
     this.labelControl4.TabIndex = 0;
     this.labelControl4.Text = "Nước sản xuất";
     //
     // labelControl7
     //
     this.labelControl7.Location = new System.Drawing.Point(5, 127);
     this.labelControl7.Name = "labelControl7";
     this.labelControl7.Size = new System.Drawing.Size(86, 13);
     this.labelControl7.TabIndex = 0;
     this.labelControl7.Text = "Kênh hạn chế bán";
     //
     // QuocGia
     //
     this.QuocGia.DataSource = null;
     this.QuocGia.DisplayField = null;
     this.QuocGia.EditValue = "";
     this.QuocGia.Location = new System.Drawing.Point(92, 101);
     this.QuocGia.Name = "QuocGia";
     this.QuocGia.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.QuocGia.Size = new System.Drawing.Size(137, 20);
     this.QuocGia.TabIndex = 2;
     this.QuocGia.ValueField = null;
     //
     // label25
     //
     this.label25.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label25.Appearance.ForeColor = System.Drawing.Color.Black;
     this.label25.Appearance.Options.UseFont = true;
     this.label25.Appearance.Options.UseForeColor = true;
     this.label25.Location = new System.Drawing.Point(236, 104);
     this.label25.Name = "label25";
     this.label25.Size = new System.Drawing.Size(36, 13);
     this.label25.TabIndex = 0;
     this.label25.Text = "Năm SX";
     //
     // KenhHanCheBan
     //
     this.KenhHanCheBan.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.KenhHanCheBan.DataSource = null;
     this.KenhHanCheBan.DisplayField = null;
     this.KenhHanCheBan.EditValue = "";
     this.KenhHanCheBan.Location = new System.Drawing.Point(92, 123);
     this.KenhHanCheBan.Name = "KenhHanCheBan";
     this.KenhHanCheBan.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.KenhHanCheBan.Size = new System.Drawing.Size(241, 20);
     this.KenhHanCheBan.TabIndex = 4;
     this.KenhHanCheBan.ValueField = null;
     //
     // DonViCungCap
     //
     this.DonViCungCap.Location = new System.Drawing.Point(92, 8);
     this.DonViCungCap.Name = "DonViCungCap";
     this.DonViCungCap.Size = new System.Drawing.Size(241, 20);
     this.DonViCungCap.TabIndex = 0;
     this.DonViCungCap.ZZZWidthFactor = 2F;
     //
     // labelControl17
     //
     this.labelControl17.Location = new System.Drawing.Point(436, 23);
     this.labelControl17.Name = "labelControl17";
     this.labelControl17.Size = new System.Drawing.Size(95, 13);
     this.labelControl17.TabIndex = 0;
     this.labelControl17.Text = "Thời hạn bản quyền";
     //
     // groupControl1
     //
     this.groupControl1.Controls.Add(this.BanQuyenHTV);
     this.groupControl1.Controls.Add(this.BanQuyenDIDEnd);
     this.groupControl1.Controls.Add(this.BanQuyenDTNNEnd);
     this.groupControl1.Controls.Add(this.BanQuyenDIDStart);
     this.groupControl1.Controls.Add(this.BanQuyenDTNNStart);
     this.groupControl1.Controls.Add(this.ChanelRight);
     this.groupControl1.Controls.Add(this.labelControl25);
     this.groupControl1.Controls.Add(this.labelControl26);
     this.groupControl1.Controls.Add(this.labelControl27);
     this.groupControl1.Controls.Add(this.labelControl28);
     this.groupControl1.Controls.Add(this.labelControl29);
     this.groupControl1.Controls.Add(this.labelControl30);
     this.groupControl1.Controls.Add(this.BanQuyenThuoc);
     this.groupControl1.Controls.Add(this.labelControl31);
     this.groupControl1.Location = new System.Drawing.Point(345, 29);
     this.groupControl1.Name = "groupControl1";
     this.groupControl1.ShowCaption = false;
     this.groupControl1.Size = new System.Drawing.Size(289, 145);
     this.groupControl1.TabIndex = 1;
     this.groupControl1.Text = "groupControl5";
     //
     // BanQuyenHTV
     //
     this.BanQuyenHTV.EditValue = null;
     this.BanQuyenHTV.Location = new System.Drawing.Point(72, 83);
     this.BanQuyenHTV.Name = "BanQuyenHTV";
     this.BanQuyenHTV.Properties.AllowNullInput = DevExpress.Utils.DefaultBoolean.True;
     this.BanQuyenHTV.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.BanQuyenHTV.Properties.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.BanQuyenHTV.Size = new System.Drawing.Size(213, 20);
     this.BanQuyenHTV.TabIndex = 5;
     //
     // BanQuyenDIDEnd
     //
     this.BanQuyenDIDEnd.EditValue = null;
     this.BanQuyenDIDEnd.Location = new System.Drawing.Point(192, 38);
     this.BanQuyenDIDEnd.Name = "BanQuyenDIDEnd";
     this.BanQuyenDIDEnd.Properties.AllowNullInput = DevExpress.Utils.DefaultBoolean.True;
     this.BanQuyenDIDEnd.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.BanQuyenDIDEnd.Properties.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.BanQuyenDIDEnd.Size = new System.Drawing.Size(94, 20);
     this.BanQuyenDIDEnd.TabIndex = 2;
     this.BanQuyenDIDEnd.ToolTip = "Bản quyền đối với đối tác trong nước End";
     //
     // BanQuyenDTNNEnd
     //
     this.BanQuyenDTNNEnd.EditValue = null;
     this.BanQuyenDTNNEnd.Location = new System.Drawing.Point(192, 60);
     this.BanQuyenDTNNEnd.Name = "BanQuyenDTNNEnd";
     this.BanQuyenDTNNEnd.Properties.AllowNullInput = DevExpress.Utils.DefaultBoolean.True;
     this.BanQuyenDTNNEnd.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.BanQuyenDTNNEnd.Properties.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.BanQuyenDTNNEnd.Size = new System.Drawing.Size(94, 20);
     this.BanQuyenDTNNEnd.TabIndex = 4;
     this.BanQuyenDTNNEnd.ToolTip = "Bản quyền với đối tác nước ngoài end";
     //
     // BanQuyenDIDStart
     //
     this.BanQuyenDIDStart.EditValue = null;
     this.BanQuyenDIDStart.Location = new System.Drawing.Point(71, 38);
     this.BanQuyenDIDStart.Name = "BanQuyenDIDStart";
     this.BanQuyenDIDStart.Properties.AllowNullInput = DevExpress.Utils.DefaultBoolean.True;
     this.BanQuyenDIDStart.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.BanQuyenDIDStart.Properties.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.BanQuyenDIDStart.Size = new System.Drawing.Size(91, 20);
     this.BanQuyenDIDStart.TabIndex = 1;
     this.BanQuyenDIDStart.ToolTip = "Bản quyền đối với đối tác trong nước start";
     //
     // BanQuyenDTNNStart
     //
     this.BanQuyenDTNNStart.EditValue = null;
     this.BanQuyenDTNNStart.Location = new System.Drawing.Point(71, 60);
     this.BanQuyenDTNNStart.Name = "BanQuyenDTNNStart";
     this.BanQuyenDTNNStart.Properties.AllowNullInput = DevExpress.Utils.DefaultBoolean.True;
     this.BanQuyenDTNNStart.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.BanQuyenDTNNStart.Properties.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.BanQuyenDTNNStart.Size = new System.Drawing.Size(90, 20);
     this.BanQuyenDTNNStart.TabIndex = 3;
     //
     // ChanelRight
     //
     this.ChanelRight.DataSource = null;
     this.ChanelRight.DisplayField = null;
     this.ChanelRight.EditValue = "";
     this.ChanelRight.Location = new System.Drawing.Point(72, 106);
     this.ChanelRight.Name = "ChanelRight";
     this.ChanelRight.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.ChanelRight.Size = new System.Drawing.Size(213, 20);
     this.ChanelRight.TabIndex = 11;
     this.ChanelRight.ValueField = null;
     //
     // labelControl25
     //
     this.labelControl25.Location = new System.Drawing.Point(2, 110);
     this.labelControl25.Name = "labelControl25";
     this.labelControl25.Size = new System.Drawing.Size(64, 13);
     this.labelControl25.TabIndex = 0;
     this.labelControl25.Text = "Channel right";
     //
     // labelControl26
     //
     this.labelControl26.Location = new System.Drawing.Point(3, 20);
     this.labelControl26.Name = "labelControl26";
     this.labelControl26.Size = new System.Drawing.Size(44, 13);
     this.labelControl26.TabIndex = 0;
     this.labelControl26.Text = "BQ thuộc";
     this.labelControl26.ToolTip = "Bản quyền thuộc";
     //
     // labelControl27
     //
     this.labelControl27.Location = new System.Drawing.Point(3, 87);
     this.labelControl27.Name = "labelControl27";
     this.labelControl27.Size = new System.Drawing.Size(19, 13);
     this.labelControl27.TabIndex = 0;
     this.labelControl27.Text = "HTV";
     this.labelControl27.ToolTip = "Bản quyền HTV";
     //
     // labelControl28
     //
     this.labelControl28.Location = new System.Drawing.Point(3, 64);
     this.labelControl28.Name = "labelControl28";
     this.labelControl28.Size = new System.Drawing.Size(54, 13);
     this.labelControl28.TabIndex = 0;
     this.labelControl28.Text = "DTNN Start";
     this.labelControl28.ToolTip = "Bản quyền với đối tác nước ngoài Start";
     //
     // labelControl29
     //
     this.labelControl29.Location = new System.Drawing.Point(3, 42);
     this.labelControl29.Name = "labelControl29";
     this.labelControl29.Size = new System.Drawing.Size(53, 13);
     this.labelControl29.TabIndex = 0;
     this.labelControl29.Text = "DTTN Start";
     //
     // labelControl30
     //
     this.labelControl30.Location = new System.Drawing.Point(169, 64);
     this.labelControl30.Name = "labelControl30";
     this.labelControl30.Size = new System.Drawing.Size(18, 13);
     this.labelControl30.TabIndex = 0;
     this.labelControl30.Text = "End";
     //
     // BanQuyenThuoc
     //
     this.BanQuyenThuoc.Location = new System.Drawing.Point(71, 16);
     this.BanQuyenThuoc.Name = "BanQuyenThuoc";
     this.BanQuyenThuoc.Size = new System.Drawing.Size(217, 20);
     this.BanQuyenThuoc.TabIndex = 0;
     this.BanQuyenThuoc.ZZZWidthFactor = 2F;
     //
     // labelControl31
     //
     this.labelControl31.Location = new System.Drawing.Point(169, 42);
     this.labelControl31.Name = "labelControl31";
     this.labelControl31.Size = new System.Drawing.Size(18, 13);
     this.labelControl31.TabIndex = 0;
     this.labelControl31.Text = "End";
     //
     // labelControl14
     //
     this.labelControl14.Location = new System.Drawing.Point(6, 182);
     this.labelControl14.Name = "labelControl14";
     this.labelControl14.Size = new System.Drawing.Size(40, 13);
     this.labelControl14.TabIndex = 0;
     this.labelControl14.Text = "Note BQ";
     //
     // DaoDien
     //
     this.DaoDien.DataSource = null;
     this.DaoDien.DisplayField = null;
     this.DaoDien.EditValue = "";
     this.DaoDien.Location = new System.Drawing.Point(93, 96);
     this.DaoDien.Name = "DaoDien";
     this.DaoDien.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.DaoDien.Size = new System.Drawing.Size(239, 20);
     this.DaoDien.TabIndex = 7;
     this.DaoDien.ValueField = null;
     //
     // groupControlThongTin
     //
     this.groupControlThongTin.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.groupControlThongTin.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.groupControlThongTin.AppearanceCaption.Options.UseFont = true;
     this.groupControlThongTin.Controls.Add(this.gridControlGhiChu);
     this.groupControlThongTin.Controls.Add(this.labelControl34);
     this.groupControlThongTin.Controls.Add(this.PhanLoaiDrama);
     this.groupControlThongTin.Controls.Add(this.labelControl18);
     this.groupControlThongTin.Controls.Add(this.NguonTrading);
     this.groupControlThongTin.Controls.Add(this.ClassName);
     this.groupControlThongTin.Controls.Add(this.labelControl23);
     this.groupControlThongTin.Controls.Add(this.labelControl13);
     this.groupControlThongTin.Controls.Add(this.Code);
     this.groupControlThongTin.Controls.Add(this.TenGoc);
     this.groupControlThongTin.Controls.Add(this.NoiDung);
     this.groupControlThongTin.Controls.Add(this.Period);
     this.groupControlThongTin.Controls.Add(this.Category);
     this.groupControlThongTin.Controls.Add(this.TrailerGoc);
     this.groupControlThongTin.Controls.Add(this.Photos);
     this.groupControlThongTin.Controls.Add(this.Script);
     this.groupControlThongTin.Controls.Add(this.ckcMoiTrenThiTruong);
     this.groupControlThongTin.Controls.Add(this.ckcTrongKho);
     this.groupControlThongTin.Controls.Add(this.ThanhLy);
     this.groupControlThongTin.Controls.Add(this.groupControl8);
     this.groupControlThongTin.Controls.Add(this.label22);
     this.groupControlThongTin.Controls.Add(this.Ranking);
     this.groupControlThongTin.Controls.Add(this.Rating);
     this.groupControlThongTin.Controls.Add(this.DienVien);
     this.groupControlThongTin.Controls.Add(this.DaoDien);
     this.groupControlThongTin.Controls.Add(this.KyHieuPhanLoai);
     this.groupControlThongTin.Controls.Add(this.labelControl22);
     this.groupControlThongTin.Controls.Add(this.labelControl16);
     this.groupControlThongTin.Controls.Add(this.label21);
     this.groupControlThongTin.Controls.Add(this.labelControl12);
     this.groupControlThongTin.Controls.Add(this.label15);
     this.groupControlThongTin.Controls.Add(this.label5);
     this.groupControlThongTin.Controls.Add(this.label24);
     this.groupControlThongTin.Controls.Add(this.TuKhoaSelect);
     this.groupControlThongTin.Controls.Add(this.DoiTuongKhanGia);
     this.groupControlThongTin.Controls.Add(this.labelControl11);
     this.groupControlThongTin.Controls.Add(this.label14);
     this.groupControlThongTin.Controls.Add(this.NgayAWB);
     this.groupControlThongTin.Controls.Add(this.TomTatNoiDung);
     this.groupControlThongTin.Controls.Add(this.GhiChu);
     this.groupControlThongTin.Controls.Add(this.TuKhoaText);
     this.groupControlThongTin.Controls.Add(this.label20);
     this.groupControlThongTin.Controls.Add(this.labelControl2);
     this.groupControlThongTin.Controls.Add(this.label33);
     this.groupControlThongTin.Controls.Add(this.labelControl5);
     this.groupControlThongTin.Controls.Add(this.label36);
     this.groupControlThongTin.Controls.Add(this.Info);
     this.groupControlThongTin.Controls.Add(this.TinhTrangBang);
     this.groupControlThongTin.Controls.Add(this.TietMuc);
     this.groupControlThongTin.Controls.Add(this.labelControl3);
     this.groupControlThongTin.Controls.Add(this.MaChuongTrinh);
     this.groupControlThongTin.Controls.Add(this.label7);
     this.groupControlThongTin.Controls.Add(this.label42);
     this.groupControlThongTin.Controls.Add(this.labelControl1);
     this.groupControlThongTin.Controls.Add(this.label8);
     this.groupControlThongTin.Location = new System.Drawing.Point(3, 0);
     this.groupControlThongTin.Name = "groupControlThongTin";
     this.groupControlThongTin.Size = new System.Drawing.Size(1000, 410);
     this.groupControlThongTin.TabIndex = 0;
     this.groupControlThongTin.Text = "Thông tin chính";
     //
     // gridControlGhiChu
     //
     this.gridControlGhiChu.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.gridControlGhiChu.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("gridControlGhiChu.BackgroundImage")));
     this.gridControlGhiChu.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
     this.gridControlGhiChu.Location = new System.Drawing.Point(405, 241);
     this.gridControlGhiChu.MainView = this.gridViewGhiChu;
     this.gridControlGhiChu.Name = "gridControlGhiChu";
     this.gridControlGhiChu.Size = new System.Drawing.Size(588, 152);
     this.gridControlGhiChu.TabIndex = 138;
     this.gridControlGhiChu.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridViewGhiChu});
     //
     // gridViewGhiChu
     //
     this.gridViewGhiChu.Appearance.HeaderPanel.Options.UseTextOptions = true;
     this.gridViewGhiChu.Appearance.HeaderPanel.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridViewGhiChu.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.colLoaiGhiChu,
     this.colNoiDungGhiChu});
     this.gridViewGhiChu.GridControl = this.gridControlGhiChu;
     this.gridViewGhiChu.IndicatorWidth = 40;
     this.gridViewGhiChu.Name = "gridViewGhiChu";
     this.gridViewGhiChu.OptionsLayout.Columns.AddNewColumns = false;
     this.gridViewGhiChu.OptionsNavigation.AutoFocusNewRow = true;
     this.gridViewGhiChu.OptionsNavigation.EnterMoveNextColumn = true;
     this.gridViewGhiChu.OptionsPrint.UsePrintStyles = true;
     this.gridViewGhiChu.OptionsView.EnableAppearanceEvenRow = true;
     this.gridViewGhiChu.OptionsView.EnableAppearanceOddRow = true;
     this.gridViewGhiChu.OptionsView.NewItemRowPosition = DevExpress.XtraGrid.Views.Grid.NewItemRowPosition.Top;
     this.gridViewGhiChu.OptionsView.ShowFilterPanelMode = DevExpress.XtraGrid.Views.Base.ShowFilterPanelMode.Never;
     this.gridViewGhiChu.OptionsView.ShowGroupedColumns = true;
     this.gridViewGhiChu.OptionsView.ShowGroupPanel = false;
     this.gridViewGhiChu.OptionsView.ShowIndicator = false;
     this.gridViewGhiChu.ViewCaption = "Thông tin bán";
     //
     // colLoaiGhiChu
     //
     this.colLoaiGhiChu.Caption = "Loại ghi chú";
     this.colLoaiGhiChu.Name = "colLoaiGhiChu";
     this.colLoaiGhiChu.SummaryItem.DisplayFormat = "Tồng số lần đã bán {0}";
     this.colLoaiGhiChu.SummaryItem.SummaryType = DevExpress.Data.SummaryItemType.Count;
     this.colLoaiGhiChu.Visible = true;
     this.colLoaiGhiChu.VisibleIndex = 0;
     this.colLoaiGhiChu.Width = 68;
     //
     // colNoiDungGhiChu
     //
     this.colNoiDungGhiChu.Caption = "Nội dung";
     this.colNoiDungGhiChu.Name = "colNoiDungGhiChu";
     this.colNoiDungGhiChu.Visible = true;
     this.colNoiDungGhiChu.VisibleIndex = 1;
     this.colNoiDungGhiChu.Width = 54;
     //
     // labelControl34
     //
     this.labelControl34.Location = new System.Drawing.Point(342, 245);
     this.labelControl34.Name = "labelControl34";
     this.labelControl34.Size = new System.Drawing.Size(60, 13);
     this.labelControl34.TabIndex = 139;
     this.labelControl34.Text = "Ghi chú khác";
     //
     // PhanLoaiDrama
     //
     this.PhanLoaiDrama._DataSource = null;
     this.PhanLoaiDrama._GetField = null;
     this.PhanLoaiDrama.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.PhanLoaiDrama.Location = new System.Drawing.Point(690, 142);
     this.PhanLoaiDrama.MenuManager = this.barManager1;
     this.PhanLoaiDrama.Name = "PhanLoaiDrama";
     this.PhanLoaiDrama.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo, "", 0, true, false, false, DevExpress.XtraEditors.ImageLocation.Default, null, new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None), serializableAppearanceObject1, "", null, null, false)});
     this.PhanLoaiDrama.Properties.CloseUpKey = new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None);
     this.PhanLoaiDrama.Size = new System.Drawing.Size(303, 20);
     this.PhanLoaiDrama.TabIndex = 137;
     //
     // barManager1
     //
     this.barManager1.DockControls.Add(this.barDockControlTop);
     this.barManager1.DockControls.Add(this.barDockControlBottom);
     this.barManager1.DockControls.Add(this.barDockControlLeft);
     this.barManager1.DockControls.Add(this.barDockControlRight);
     this.barManager1.Form = this;
     this.barManager1.MaxItemId = 2;
     //
     // barDockControlTop
     //
     this.barDockControlTop.Dock = System.Windows.Forms.DockStyle.Top;
     this.barDockControlTop.Location = new System.Drawing.Point(0, 0);
     this.barDockControlTop.Size = new System.Drawing.Size(1049, 0);
     //
     // barDockControlBottom
     //
     this.barDockControlBottom.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.barDockControlBottom.Location = new System.Drawing.Point(0, 750);
     this.barDockControlBottom.Size = new System.Drawing.Size(1049, 0);
     //
     // barDockControlLeft
     //
     this.barDockControlLeft.Dock = System.Windows.Forms.DockStyle.Left;
     this.barDockControlLeft.Location = new System.Drawing.Point(0, 0);
     this.barDockControlLeft.Size = new System.Drawing.Size(0, 750);
     //
     // barDockControlRight
     //
     this.barDockControlRight.Dock = System.Windows.Forms.DockStyle.Right;
     this.barDockControlRight.Location = new System.Drawing.Point(1049, 0);
     this.barDockControlRight.Size = new System.Drawing.Size(0, 750);
     //
     // labelControl18
     //
     this.labelControl18.Location = new System.Drawing.Point(639, 144);
     this.labelControl18.Name = "labelControl18";
     this.labelControl18.Size = new System.Drawing.Size(49, 13);
     this.labelControl18.TabIndex = 136;
     this.labelControl18.Text = "P/L Drama";
     this.labelControl18.ToolTip = "Phân loại Drama";
     //
     // NguonTrading
     //
     this.NguonTrading._DataSource = null;
     this.NguonTrading._GetField = null;
     this.NguonTrading.Location = new System.Drawing.Point(93, 191);
     this.NguonTrading.Name = "NguonTrading";
     this.NguonTrading.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo, "", 0, true, false, false, DevExpress.XtraEditors.ImageLocation.Default, null, new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None), serializableAppearanceObject2, "", null, null, false)});
     this.NguonTrading.Properties.CloseUpKey = new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None);
     this.NguonTrading.Size = new System.Drawing.Size(239, 20);
     this.NguonTrading.TabIndex = 135;
     //
     // ClassName
     //
     this.ClassName._DataSource = null;
     this.ClassName._GetField = null;
     this.ClassName.Location = new System.Drawing.Point(405, 119);
     this.ClassName.MenuManager = this.barManager1;
     this.ClassName.Name = "ClassName";
     this.ClassName.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo, "", 0, true, false, false, DevExpress.XtraEditors.ImageLocation.Default, null, new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None), serializableAppearanceObject3, "", null, null, false)});
     this.ClassName.Properties.CloseUpKey = new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None);
     this.ClassName.Size = new System.Drawing.Size(227, 20);
     this.ClassName.TabIndex = 135;
     //
     // labelControl23
     //
     this.labelControl23.Location = new System.Drawing.Point(8, 192);
     this.labelControl23.Name = "labelControl23";
     this.labelControl23.Size = new System.Drawing.Size(70, 13);
     this.labelControl23.TabIndex = 134;
     this.labelControl23.Text = "Nguồn Trading";
     //
     // labelControl13
     //
     this.labelControl13.Location = new System.Drawing.Point(9, 170);
     this.labelControl13.Name = "labelControl13";
     this.labelControl13.Size = new System.Drawing.Size(41, 13);
     this.labelControl13.TabIndex = 134;
     this.labelControl13.Text = "Code CT";
     this.labelControl13.ToolTip = "Mã code kế toán";
     //
     // Code
     //
     this.Code.Location = new System.Drawing.Point(93, 168);
     this.Code.MenuManager = this.barManager1;
     this.Code.Name = "Code";
     this.Code.Size = new System.Drawing.Size(239, 20);
     this.Code.TabIndex = 133;
     //
     // TenGoc
     //
     this.TenGoc._DataSource = null;
     this.TenGoc._GetField = null;
     this.TenGoc.Location = new System.Drawing.Point(405, 73);
     this.TenGoc.Name = "TenGoc";
     this.TenGoc.Properties.CloseUpKey = new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None);
     this.TenGoc.Size = new System.Drawing.Size(227, 20);
     this.TenGoc.TabIndex = 132;
     //
     // NoiDung
     //
     this.NoiDung._DataSource = null;
     this.NoiDung._GetField = null;
     this.NoiDung.Location = new System.Drawing.Point(93, 73);
     this.NoiDung.Name = "NoiDung";
     this.NoiDung.Properties.CloseUpKey = new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None);
     this.NoiDung.Size = new System.Drawing.Size(240, 20);
     this.NoiDung.TabIndex = 132;
     this.NoiDung.Validated += new System.EventHandler(this.KyHieuPhanLoai_Validated);
     //
     // Period
     //
     this.Period._DataSource = null;
     this.Period._GetField = null;
     this.Period.Location = new System.Drawing.Point(405, 142);
     this.Period.Name = "Period";
     this.Period.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo, "", 0, true, false, false, DevExpress.XtraEditors.ImageLocation.Default, null, new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None), serializableAppearanceObject4, "", null, null, false)});
     this.Period.Properties.CloseUpKey = new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None);
     this.Period.Size = new System.Drawing.Size(228, 20);
     this.Period.TabIndex = 6;
     //
     // Category
     //
     this.Category._DataSource = null;
     this.Category._GetField = null;
     this.Category.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.Category.Location = new System.Drawing.Point(690, 72);
     this.Category.MenuManager = this.barManager1;
     this.Category.Name = "Category";
     this.Category.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo, "", 0, true, false, false, DevExpress.XtraEditors.ImageLocation.Default, null, new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None), serializableAppearanceObject5, "", null, null, false)});
     this.Category.Properties.CloseUpKey = new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None);
     this.Category.Size = new System.Drawing.Size(303, 20);
     this.Category.TabIndex = 6;
     //
     // TrailerGoc
     //
     this.TrailerGoc.Location = new System.Drawing.Point(260, 215);
     this.TrailerGoc.Name = "TrailerGoc";
     this.TrailerGoc.Properties.Caption = "Trailer gốc";
     this.TrailerGoc.Size = new System.Drawing.Size(72, 19);
     this.TrailerGoc.TabIndex = 16;
     //
     // Photos
     //
     this.Photos.Location = new System.Drawing.Point(174, 215);
     this.Photos.Name = "Photos";
     this.Photos.Properties.Caption = "Photo";
     this.Photos.Size = new System.Drawing.Size(56, 19);
     this.Photos.TabIndex = 15;
     //
     // Script
     //
     this.Script.Location = new System.Drawing.Point(93, 215);
     this.Script.MenuManager = this.barManager1;
     this.Script.Name = "Script";
     this.Script.Properties.Caption = "Script";
     this.Script.Size = new System.Drawing.Size(48, 19);
     this.Script.TabIndex = 14;
     //
     // ckcMoiTrenThiTruong
     //
     this.ckcMoiTrenThiTruong.Location = new System.Drawing.Point(313, 25);
     this.ckcMoiTrenThiTruong.Name = "ckcMoiTrenThiTruong";
     this.ckcMoiTrenThiTruong.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.ckcMoiTrenThiTruong.Properties.Appearance.ForeColor = System.Drawing.Color.Red;
     this.ckcMoiTrenThiTruong.Properties.Appearance.Options.UseFont = true;
     this.ckcMoiTrenThiTruong.Properties.Appearance.Options.UseForeColor = true;
     this.ckcMoiTrenThiTruong.Properties.Caption = "Mới trên thị trường";
     this.ckcMoiTrenThiTruong.Size = new System.Drawing.Size(142, 19);
     this.ckcMoiTrenThiTruong.TabIndex = 0;
     //
     // ckcTrongKho
     //
     this.ckcTrongKho.Location = new System.Drawing.Point(204, 24);
     this.ckcTrongKho.Name = "ckcTrongKho";
     this.ckcTrongKho.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.ckcTrongKho.Properties.Appearance.ForeColor = System.Drawing.Color.Red;
     this.ckcTrongKho.Properties.Appearance.Options.UseFont = true;
     this.ckcTrongKho.Properties.Appearance.Options.UseForeColor = true;
     this.ckcTrongKho.Properties.Caption = "Có trong kho";
     this.ckcTrongKho.Size = new System.Drawing.Size(98, 19);
     this.ckcTrongKho.TabIndex = 0;
     //
     // ThanhLy
     //
     this.ThanhLy.Location = new System.Drawing.Point(91, 24);
     this.ThanhLy.Name = "ThanhLy";
     this.ThanhLy.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.ThanhLy.Properties.Appearance.ForeColor = System.Drawing.Color.Red;
     this.ThanhLy.Properties.Appearance.Options.UseFont = true;
     this.ThanhLy.Properties.Appearance.Options.UseForeColor = true;
     this.ThanhLy.Properties.Caption = "Thanh lý";
     this.ThanhLy.Size = new System.Drawing.Size(88, 19);
     this.ThanhLy.TabIndex = 0;
     //
     // groupControl8
     //
     this.groupControl8.Controls.Add(this.KyHieuXepKho_KHPL);
     this.groupControl8.Controls.Add(this.KyHieuXepKho_NoiDung);
     this.groupControl8.Controls.Add(this.textEdit1);
     this.groupControl8.Location = new System.Drawing.Point(405, 188);
     this.groupControl8.Name = "groupControl8";
     this.groupControl8.ShowCaption = false;
     this.groupControl8.Size = new System.Drawing.Size(227, 46);
     this.groupControl8.TabIndex = 17;
     this.groupControl8.Text = "groupControl8";
     //
     // KyHieuXepKho_NoiDung
     //
     this.KyHieuXepKho_NoiDung.Location = new System.Drawing.Point(2, 26);
     this.KyHieuXepKho_NoiDung.Name = "KyHieuXepKho_NoiDung";
     this.KyHieuXepKho_NoiDung.Properties.AppearanceReadOnly.Options.UseTextOptions = true;
     this.KyHieuXepKho_NoiDung.Properties.AppearanceReadOnly.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.KyHieuXepKho_NoiDung.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.KyHieuXepKho_NoiDung.Properties.ReadOnly = true;
     this.KyHieuXepKho_NoiDung.Size = new System.Drawing.Size(220, 18);
     this.KyHieuXepKho_NoiDung.TabIndex = 2;
     this.KyHieuXepKho_NoiDung.TabStop = false;
     //
     // textEdit1
     //
     this.textEdit1.EditValue = "___________________";
     this.textEdit1.Location = new System.Drawing.Point(2, 9);
     this.textEdit1.Name = "textEdit1";
     this.textEdit1.Properties.AllowFocused = false;
     this.textEdit1.Properties.AppearanceReadOnly.Options.UseTextOptions = true;
     this.textEdit1.Properties.AppearanceReadOnly.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.textEdit1.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.textEdit1.Properties.ReadOnly = true;
     this.textEdit1.Size = new System.Drawing.Size(220, 18);
     this.textEdit1.TabIndex = 5;
     this.textEdit1.TabStop = false;
     //
     // Ranking
     //
     this.Ranking.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.Ranking.Location = new System.Drawing.Point(690, 96);
     this.Ranking.Name = "Ranking";
     this.Ranking.Size = new System.Drawing.Size(305, 20);
     this.Ranking.TabIndex = 9;
     this.Ranking.ZZZWidthFactor = 2F;
     //
     // DienVien
     //
     this.DienVien.DataSource = null;
     this.DienVien.DisplayField = null;
     this.DienVien.EditValue = "";
     this.DienVien.Location = new System.Drawing.Point(405, 96);
     this.DienVien.Name = "DienVien";
     this.DienVien.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.DienVien.Size = new System.Drawing.Size(227, 20);
     this.DienVien.TabIndex = 8;
     this.DienVien.ValueField = null;
     //
     // labelControl22
     //
     this.labelControl22.Location = new System.Drawing.Point(344, 122);
     this.labelControl22.Name = "labelControl22";
     this.labelControl22.Size = new System.Drawing.Size(24, 13);
     this.labelControl22.TabIndex = 0;
     this.labelControl22.Text = "Điểm";
     //
     // labelControl16
     //
     this.labelControl16.Location = new System.Drawing.Point(343, 145);
     this.labelControl16.Name = "labelControl16";
     this.labelControl16.Size = new System.Drawing.Size(30, 13);
     this.labelControl16.TabIndex = 0;
     this.labelControl16.Text = "Period";
     //
     // labelControl12
     //
     this.labelControl12.Location = new System.Drawing.Point(640, 98);
     this.labelControl12.Name = "labelControl12";
     this.labelControl12.Size = new System.Drawing.Size(38, 13);
     this.labelControl12.TabIndex = 0;
     this.labelControl12.Text = "Ranking";
     //
     // label24
     //
     this.label24.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.label24.Location = new System.Drawing.Point(968, 125);
     this.label24.Name = "label24";
     this.label24.Size = new System.Drawing.Size(19, 13);
     this.label24.TabIndex = 0;
     this.label24.Text = "(%)";
     //
     // TuKhoaSelect
     //
     this.TuKhoaSelect.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.TuKhoaSelect.DataSource = null;
     this.TuKhoaSelect.DisplayField = null;
     this.TuKhoaSelect.EditValue = "";
     this.TuKhoaSelect.Location = new System.Drawing.Point(690, 216);
     this.TuKhoaSelect.Name = "TuKhoaSelect";
     this.TuKhoaSelect.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.TuKhoaSelect.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.HideTextEditor;
     this.TuKhoaSelect.Size = new System.Drawing.Size(303, 19);
     this.TuKhoaSelect.TabIndex = 18;
     this.TuKhoaSelect.TabStop = false;
     this.TuKhoaSelect.ValueField = null;
     this.TuKhoaSelect.EditValueChanged += new System.EventHandler(this.TuKhoaSelect_EditValueChanged);
     this.TuKhoaSelect.CloseUp += new DevExpress.XtraEditors.Controls.CloseUpEventHandler(this.TuKhoaSelect_CloseUp);
     //
     // labelControl11
     //
     this.labelControl11.Location = new System.Drawing.Point(638, 74);
     this.labelControl11.Name = "labelControl11";
     this.labelControl11.Size = new System.Drawing.Size(45, 13);
     this.labelControl11.TabIndex = 0;
     this.labelControl11.Text = "Category";
     //
     // NgayAWB
     //
     this.NgayAWB.EditValue = null;
     this.NgayAWB.Location = new System.Drawing.Point(405, 48);
     this.NgayAWB.Name = "NgayAWB";
     this.NgayAWB.Properties.AllowNullInput = DevExpress.Utils.DefaultBoolean.True;
     this.NgayAWB.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.NgayAWB.Properties.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.NgayAWB.Size = new System.Drawing.Size(227, 20);
     this.NgayAWB.TabIndex = 2;
     //
     // TomTatNoiDung
     //
     this.TomTatNoiDung.Location = new System.Drawing.Point(93, 242);
     this.TomTatNoiDung.Name = "TomTatNoiDung";
     this.TomTatNoiDung.Size = new System.Drawing.Size(241, 80);
     this.TomTatNoiDung.TabIndex = 20;
     //
     // GhiChu
     //
     this.GhiChu.Location = new System.Drawing.Point(91, 326);
     this.GhiChu.Name = "GhiChu";
     this.GhiChu.Size = new System.Drawing.Size(243, 78);
     this.GhiChu.TabIndex = 21;
     this.GhiChu.EditValueChanged += new System.EventHandler(this.GhiChu_EditValueChanged);
     //
     // TuKhoaText
     //
     this.TuKhoaText.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.TuKhoaText.Location = new System.Drawing.Point(690, 167);
     this.TuKhoaText.Name = "TuKhoaText";
     this.TuKhoaText.Properties.ReadOnly = true;
     this.TuKhoaText.Size = new System.Drawing.Size(303, 50);
     this.TuKhoaText.TabIndex = 19;
     this.TuKhoaText.KeyDown += new System.Windows.Forms.KeyEventHandler(this.TuKhoaText_KeyDown);
     //
     // label20
     //
     this.label20.Location = new System.Drawing.Point(639, 169);
     this.label20.Name = "label20";
     this.label20.Size = new System.Drawing.Size(39, 13);
     this.label20.TabIndex = 131;
     this.label20.Text = "Từ khóa";
     //
     // labelControl2
     //
     this.labelControl2.Location = new System.Drawing.Point(343, 100);
     this.labelControl2.Name = "labelControl2";
     this.labelControl2.Size = new System.Drawing.Size(44, 13);
     this.labelControl2.TabIndex = 129;
     this.labelControl2.Text = "Diễn viên";
     //
     // label33
     //
     this.label33.Location = new System.Drawing.Point(343, 52);
     this.label33.Name = "label33";
     this.label33.Size = new System.Drawing.Size(51, 13);
     this.label33.TabIndex = 129;
     this.label33.Text = "Ngày AWB";
     //
     // labelControl5
     //
     this.labelControl5.Location = new System.Drawing.Point(8, 244);
     this.labelControl5.Name = "labelControl5";
     this.labelControl5.Size = new System.Drawing.Size(81, 13);
     this.labelControl5.TabIndex = 129;
     this.labelControl5.Text = "Tóm tắt nội dung";
     //
     // label36
     //
     this.label36.Location = new System.Drawing.Point(12, 329);
     this.label36.Name = "label36";
     this.label36.Size = new System.Drawing.Size(35, 13);
     this.label36.TabIndex = 129;
     this.label36.Text = "Ghi chú";
     //
     // Info
     //
     this.Info.Location = new System.Drawing.Point(308, 46);
     this.Info.Name = "Info";
     this.Info.Size = new System.Drawing.Size(24, 21);
     this.Info.TabIndex = 1;
     //
     // TinhTrangBang
     //
     this.TinhTrangBang.Location = new System.Drawing.Point(93, 144);
     this.TinhTrangBang.Name = "TinhTrangBang";
     this.TinhTrangBang.Size = new System.Drawing.Size(241, 20);
     this.TinhTrangBang.TabIndex = 13;
     this.TinhTrangBang.ZZZWidthFactor = 2F;
     //
     // TietMuc
     //
     this.TietMuc.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.TietMuc.Location = new System.Drawing.Point(690, 48);
     this.TietMuc.Name = "TietMuc";
     this.TietMuc.Size = new System.Drawing.Size(303, 20);
     this.TietMuc.TabIndex = 3;
     this.TietMuc.ZZZWidthFactor = 2F;
     //
     // labelControl3
     //
     this.labelControl3.Location = new System.Drawing.Point(9, 148);
     this.labelControl3.Name = "labelControl3";
     this.labelControl3.Size = new System.Drawing.Size(39, 13);
     this.labelControl3.TabIndex = 0;
     this.labelControl3.Text = "TT băng";
     this.labelControl3.ToolTip = "Tình trạng băng";
     //
     // MaChuongTrinh
     //
     this.MaChuongTrinh.Location = new System.Drawing.Point(93, 48);
     this.MaChuongTrinh.Name = "MaChuongTrinh";
     this.MaChuongTrinh.Properties.Appearance.BackColor = System.Drawing.Color.White;
     this.MaChuongTrinh.Properties.Appearance.Options.UseBackColor = true;
     this.MaChuongTrinh.Properties.MaxLength = 100;
     this.MaChuongTrinh.Properties.ReadOnly = true;
     this.MaChuongTrinh.Size = new System.Drawing.Size(209, 20);
     this.MaChuongTrinh.TabIndex = 1;
     this.MaChuongTrinh.TabStop = false;
     this.MaChuongTrinh.ToolTip = "Mã chương trình";
     //
     // label42
     //
     this.label42.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label42.Appearance.Options.UseFont = true;
     this.label42.Location = new System.Drawing.Point(342, 76);
     this.label42.Name = "label42";
     this.label42.Size = new System.Drawing.Size(38, 13);
     this.label42.TabIndex = 0;
     this.label42.Text = "Tên gốc";
     //
     // labelControl1
     //
     this.labelControl1.Location = new System.Drawing.Point(9, 52);
     this.labelControl1.Name = "labelControl1";
     this.labelControl1.Size = new System.Drawing.Size(78, 13);
     this.labelControl1.TabIndex = 0;
     this.labelControl1.Text = "Mã chương trình";
     //
     // xtraTabControlMain
     //
     this.xtraTabControlMain.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                 | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.xtraTabControlMain.AppearancePage.Header.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.xtraTabControlMain.AppearancePage.Header.Options.UseFont = true;
     this.xtraTabControlMain.AppearancePage.HeaderActive.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.xtraTabControlMain.AppearancePage.HeaderActive.ForeColor = System.Drawing.Color.Blue;
     this.xtraTabControlMain.AppearancePage.HeaderActive.Options.UseFont = true;
     this.xtraTabControlMain.AppearancePage.HeaderActive.Options.UseForeColor = true;
     this.xtraTabControlMain.ClosePageButtonShowMode = DevExpress.XtraTab.ClosePageButtonShowMode.InAllTabPageHeaders;
     this.xtraTabControlMain.Location = new System.Drawing.Point(6, 44);
     this.xtraTabControlMain.Name = "xtraTabControlMain";
     this.xtraTabControlMain.SelectedTabPage = this.xtraTabPageChuongTrinh;
     this.xtraTabControlMain.Size = new System.Drawing.Size(1043, 666);
     this.xtraTabControlMain.TabIndex = 130;
     this.xtraTabControlMain.TabPages.AddRange(new DevExpress.XtraTab.XtraTabPage[] {
     this.xtraTabPageChuongTrinh,
     this.xtraTabPageAdd});
     this.xtraTabControlMain.SelectedPageChanging += new DevExpress.XtraTab.TabPageChangingEventHandler(this.xtraTabControl1_SelectedPageChanging);
     this.xtraTabControlMain.CloseButtonClick += new System.EventHandler(this.xtraTabControlMain_CloseButtonClick);
     //
     // xtraTabPageChuongTrinh
     //
     this.xtraTabPageChuongTrinh.AutoScroll = true;
     this.xtraTabPageChuongTrinh.Controls.Add(this.xtraScrollableControl1);
     this.xtraTabPageChuongTrinh.FireScrollEventOnMouseWheel = true;
     this.xtraTabPageChuongTrinh.Name = "xtraTabPageChuongTrinh";
     this.xtraTabPageChuongTrinh.ShowCloseButton = DevExpress.Utils.DefaultBoolean.False;
     this.xtraTabPageChuongTrinh.Size = new System.Drawing.Size(1036, 637);
     this.xtraTabPageChuongTrinh.Text = "Thông tin chương trình";
     //
     // xtraScrollableControl1
     //
     this.xtraScrollableControl1.Controls.Add(this.groupControlThongTinPhatSong);
     this.xtraScrollableControl1.Controls.Add(this.groupControlNguonGoc);
     this.xtraScrollableControl1.Controls.Add(this.groupControlThongTin);
     this.xtraScrollableControl1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.xtraScrollableControl1.FireScrollEventOnMouseWheel = true;
     this.xtraScrollableControl1.Location = new System.Drawing.Point(0, 0);
     this.xtraScrollableControl1.Name = "xtraScrollableControl1";
     this.xtraScrollableControl1.Size = new System.Drawing.Size(1036, 637);
     this.xtraScrollableControl1.TabIndex = 130;
     //
     // xtraTabPageAdd
     //
     this.xtraTabPageAdd.Appearance.Header.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.xtraTabPageAdd.Appearance.Header.Options.UseFont = true;
     this.xtraTabPageAdd.Name = "xtraTabPageAdd";
     this.xtraTabPageAdd.ShowCloseButton = DevExpress.Utils.DefaultBoolean.False;
     this.xtraTabPageAdd.Size = new System.Drawing.Size(1036, 637);
     this.xtraTabPageAdd.Text = "+";
     //
     // popupMenuTab
     //
     this.popupMenuTab.Manager = this.barManager1;
     this.popupMenuTab.Name = "popupMenuTab";
     //
     // barButtonItem1
     //
     this.barButtonItem1.Caption = "Text";
     this.barButtonItem1.Id = 0;
     this.barButtonItem1.Name = "barButtonItem1";
     //
     // FrmChuongTrinh
     //
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.None;
     this.ClientSize = new System.Drawing.Size(1049, 750);
     this.Controls.Add(this.flowLayoutPanel1);
     this.Controls.Add(this.flowLayoutPanel2);
     this.Controls.Add(this.xtraTabControlMain);
     this.Controls.Add(this.lblTitle);
     this.Controls.Add(this.barDockControlLeft);
     this.Controls.Add(this.barDockControlRight);
     this.Controls.Add(this.barDockControlBottom);
     this.Controls.Add(this.barDockControlTop);
     this.Cursor = System.Windows.Forms.Cursors.Default;
     this.Name = "FrmChuongTrinh";
     this.Text = "Chương trình";
     this.WindowState = System.Windows.Forms.FormWindowState.Maximized;
     this.Load += new System.EventHandler(this.frmPhuongAnDeXuatTour_Load);
     this.flowLayoutPanel1.ResumeLayout(false);
     this.flowLayoutPanel2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.KyHieuPhanLoai.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.KyHieuXepKho_KHPL.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControlThongTinPhatSong)).EndInit();
     this.groupControlThongTinPhatSong.ResumeLayout(false);
     this.groupControlThongTinPhatSong.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.ReleaseDate.Properties.VistaTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ReleaseDate.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.SoRunConlai.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ReleaseRun.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.Release.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.SoDaRun.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridControlPhatSongKhac)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridviewPhatSongKhac)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridControlNgayPhatDauTien)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewNgayPhatDauTien)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.RunThu.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.TongSoRun.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ReleaseRule.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.MuaKem.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.Rating.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.DoiTuongKhanGia.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControlNguonGoc)).EndInit();
     this.groupControlNguonGoc.ResumeLayout(false);
     this.groupControlNguonGoc.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.NoteBQ.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridControlThongTinBan)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewThongTinBan)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl7)).EndInit();
     this.groupControl7.ResumeLayout(false);
     this.groupControl7.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.DonViHauKy.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.NamSanXuat.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.QuocGia.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.KenhHanCheBan.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).EndInit();
     this.groupControl1.ResumeLayout(false);
     this.groupControl1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.BanQuyenHTV.Properties.VistaTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.BanQuyenHTV.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.BanQuyenDIDEnd.Properties.VistaTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.BanQuyenDIDEnd.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.BanQuyenDTNNEnd.Properties.VistaTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.BanQuyenDTNNEnd.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.BanQuyenDIDStart.Properties.VistaTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.BanQuyenDIDStart.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.BanQuyenDTNNStart.Properties.VistaTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.BanQuyenDTNNStart.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ChanelRight.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.DaoDien.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControlThongTin)).EndInit();
     this.groupControlThongTin.ResumeLayout(false);
     this.groupControlThongTin.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridControlGhiChu)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewGhiChu)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.PhanLoaiDrama.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.barManager1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.NguonTrading.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ClassName.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.Code.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.TenGoc.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.NoiDung.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.Period.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.Category.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.TrailerGoc.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.Photos.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.Script.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ckcMoiTrenThiTruong.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ckcTrongKho.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ThanhLy.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl8)).EndInit();
     this.groupControl8.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.KyHieuXepKho_NoiDung.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.textEdit1.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.DienVien.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.TuKhoaSelect.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.NgayAWB.Properties.VistaTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.NgayAWB.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.TomTatNoiDung.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.GhiChu.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.TuKhoaText.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.MaChuongTrinh.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.xtraTabControlMain)).EndInit();
     this.xtraTabControlMain.ResumeLayout(false);
     this.xtraTabPageChuongTrinh.ResumeLayout(false);
     this.xtraScrollableControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.popupMenuTab)).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();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle1 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle2 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle3 = new System.Windows.Forms.DataGridViewCellStyle();
     this.codigoBusca = new System.Windows.Forms.TextBox();
     this.label1 = new System.Windows.Forms.Label();
     this.tabPage4 = new System.Windows.Forms.TabPage();
     this.groupBox9 = new System.Windows.Forms.GroupBox();
     this.dependenteGridView = new System.Windows.Forms.DataGridView();
     this.depParentesco = new System.Windows.Forms.DataGridViewComboBoxColumn();
     this.depNome = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.depIndCadastro = new System.Windows.Forms.DataGridViewCheckBoxColumn();
     this.depObservacao = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.tabPage3 = new System.Windows.Forms.TabPage();
     this.groupBox10 = new System.Windows.Forms.GroupBox();
     this.contatoGridView = new System.Windows.Forms.DataGridView();
     this.conTipoContato = new System.Windows.Forms.DataGridViewComboBoxColumn();
     this.conContato = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.conObservacao = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.tabPage2 = new System.Windows.Forms.TabPage();
     this.groupBox4 = new System.Windows.Forms.GroupBox();
     this.pispasep4 = new System.Windows.Forms.TextBox();
     this.label38 = new System.Windows.Forms.Label();
     this.pispasep3 = new System.Windows.Forms.TextBox();
     this.label40 = new System.Windows.Forms.Label();
     this.pispasep2 = new System.Windows.Forms.TextBox();
     this.label42 = new System.Windows.Forms.Label();
     this.label44 = new System.Windows.Forms.Label();
     this.label47 = new System.Windows.Forms.Label();
     this.pispasep1 = new System.Windows.Forms.TextBox();
     this.groupBox3 = new System.Windows.Forms.GroupBox();
     this.nit4 = new System.Windows.Forms.TextBox();
     this.label39 = new System.Windows.Forms.Label();
     this.nit3 = new System.Windows.Forms.TextBox();
     this.label41 = new System.Windows.Forms.Label();
     this.nit2 = new System.Windows.Forms.TextBox();
     this.label43 = new System.Windows.Forms.Label();
     this.label45 = new System.Windows.Forms.Label();
     this.label46 = new System.Windows.Forms.Label();
     this.nit1 = new System.Windows.Forms.TextBox();
     this.groupBox2 = new System.Windows.Forms.GroupBox();
     this.ctpsSerie5 = new System.Windows.Forms.TextBox();
     this.label34 = new System.Windows.Forms.Label();
     this.ctps5 = new System.Windows.Forms.TextBox();
     this.label35 = new System.Windows.Forms.Label();
     this.ctpsSerie4 = new System.Windows.Forms.TextBox();
     this.label32 = new System.Windows.Forms.Label();
     this.ctps4 = new System.Windows.Forms.TextBox();
     this.label33 = new System.Windows.Forms.Label();
     this.ctpsSerie3 = new System.Windows.Forms.TextBox();
     this.label30 = new System.Windows.Forms.Label();
     this.ctps3 = new System.Windows.Forms.TextBox();
     this.label31 = new System.Windows.Forms.Label();
     this.ctpsSerie2 = new System.Windows.Forms.TextBox();
     this.label29 = new System.Windows.Forms.Label();
     this.ctps2 = new System.Windows.Forms.TextBox();
     this.label28 = new System.Windows.Forms.Label();
     this.ctpsSerie1 = new System.Windows.Forms.TextBox();
     this.label27 = new System.Windows.Forms.Label();
     this.label26 = new System.Windows.Forms.Label();
     this.label25 = new System.Windows.Forms.Label();
     this.ctps1 = new System.Windows.Forms.TextBox();
     this.tabPage1 = new System.Windows.Forms.TabPage();
     this.enderecoCEP = new System.Windows.Forms.MaskedTextBox();
     this.label17 = new System.Windows.Forms.Label();
     this.enderecoUF = new System.Windows.Forms.ComboBox();
     this.label16 = new System.Windows.Forms.Label();
     this.label8 = new System.Windows.Forms.Label();
     this.dataFalecimento = new System.Windows.Forms.MaskedTextBox();
     this.nome = new System.Windows.Forms.TextBox();
     this.naturalidade = new System.Windows.Forms.TextBox();
     this.enderecoCidade = new System.Windows.Forms.TextBox();
     this.nacionalidade = new System.Windows.Forms.TextBox();
     this.enderecoBairro = new System.Windows.Forms.TextBox();
     this.enderecoComplemento = new System.Windows.Forms.TextBox();
     this.profissao = new System.Windows.Forms.TextBox();
     this.enderecoNumero = new System.Windows.Forms.TextBox();
     this.endereco = new System.Windows.Forms.TextBox();
     this.nomeMae = new System.Windows.Forms.TextBox();
     this.nomePai = new System.Windows.Forms.TextBox();
     this.indFalecido = new System.Windows.Forms.CheckBox();
     this.label10 = new System.Windows.Forms.Label();
     this.label2 = new System.Windows.Forms.Label();
     this.label3 = new System.Windows.Forms.Label();
     this.label4 = new System.Windows.Forms.Label();
     this.label15 = new System.Windows.Forms.Label();
     this.label5 = new System.Windows.Forms.Label();
     this.label14 = new System.Windows.Forms.Label();
     this.estadoCivil = new System.Windows.Forms.ComboBox();
     this.label6 = new System.Windows.Forms.Label();
     this.label13 = new System.Windows.Forms.Label();
     this.label7 = new System.Windows.Forms.Label();
     this.label12 = new System.Windows.Forms.Label();
     this.dataNascimento = new System.Windows.Forms.MaskedTextBox();
     this.label11 = new System.Windows.Forms.Label();
     this.label9 = new System.Windows.Forms.Label();
     this.groupBox5 = new System.Windows.Forms.GroupBox();
     this.groupBox12 = new System.Windows.Forms.GroupBox();
     this.rbPessoaJuridica = new System.Windows.Forms.RadioButton();
     this.rbPessoaFisica = new System.Windows.Forms.RadioButton();
     this.flowLayoutPanel1 = new System.Windows.Forms.FlowLayoutPanel();
     this.pnlCPF = new System.Windows.Forms.Panel();
     this.cpf = new System.Windows.Forms.MaskedTextBox();
     this.label18 = new System.Windows.Forms.Label();
     this.pnlRG = new System.Windows.Forms.Panel();
     this.rg = new System.Windows.Forms.TextBox();
     this.label19 = new System.Windows.Forms.Label();
     this.pnlOrgaoExpedidor = new System.Windows.Forms.Panel();
     this.orgaoExpedidorRG = new System.Windows.Forms.TextBox();
     this.label20 = new System.Windows.Forms.Label();
     this.pnlDataEmissao = new System.Windows.Forms.Panel();
     this.dataEmissaoRG = new System.Windows.Forms.MaskedTextBox();
     this.label21 = new System.Windows.Forms.Label();
     this.pnlTituloEleitor = new System.Windows.Forms.Panel();
     this.tituloEleitor = new System.Windows.Forms.TextBox();
     this.label22 = new System.Windows.Forms.Label();
     this.pnlZona = new System.Windows.Forms.Panel();
     this.zonaEleitoral = new System.Windows.Forms.TextBox();
     this.label23 = new System.Windows.Forms.Label();
     this.pnlSecao = new System.Windows.Forms.Panel();
     this.secaoEleitoral = new System.Windows.Forms.TextBox();
     this.label24 = new System.Windows.Forms.Label();
     this.pnlCNPJ = new System.Windows.Forms.Panel();
     this.cnpj = new System.Windows.Forms.MaskedTextBox();
     this.label37 = new System.Windows.Forms.Label();
     this.codigo = new System.Windows.Forms.TextBox();
     this.label67 = new System.Windows.Forms.Label();
     this.tabControl1 = new System.Windows.Forms.TabControl();
     this.tabPage5 = new System.Windows.Forms.TabPage();
     this.groupBox8 = new System.Windows.Forms.GroupBox();
     this.beneficiosGridView = new System.Windows.Forms.DataGridView();
     this.benTipoBeneficio = new System.Windows.Forms.DataGridViewComboBoxColumn();
     this.benNumero = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.benDIB = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.benSSCC = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.benDivisor = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.benMedia = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.benFP = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.benSB = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.benCC = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.benRMI = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.benTS = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.tabPage6 = new System.Windows.Forms.TabPage();
     this.grupoGridView = new System.Windows.Forms.DataGridView();
     this.grpNome = new System.Windows.Forms.DataGridViewComboBoxColumn();
     this.groupBox7 = new System.Windows.Forms.GroupBox();
     this.tabPage7 = new System.Windows.Forms.TabPage();
     this.groupBox1 = new System.Windows.Forms.GroupBox();
     this.colorComboBox1 = new VisaoControles.ColorComboBox();
     this.buttonBar = new TXTextControl.ButtonBar();
     this.txtAtendimento = new TXTextControl.TextControl();
     this.groupBox6 = new System.Windows.Forms.GroupBox();
     this.groupBox11 = new System.Windows.Forms.GroupBox();
     this.btnSair = new System.Windows.Forms.Button();
     this.btnCancelar = new System.Windows.Forms.Button();
     this.btnSalvar = new System.Windows.Forms.Button();
     this.btnPesquisar = new System.Windows.Forms.Button();
     this.btnLimpar = new System.Windows.Forms.Button();
     this.btnNovo = new System.Windows.Forms.Button();
     this.btnExcluir = new System.Windows.Forms.Button();
     this.btnPDF = new System.Windows.Forms.Button();
     this.menuGridView = new System.Windows.Forms.ContextMenuStrip(this.components);
     this.removerLinhaContextButton = new System.Windows.Forms.ToolStripMenuItem();
     this.tabPage4.SuspendLayout();
     this.groupBox9.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dependenteGridView)).BeginInit();
     this.tabPage3.SuspendLayout();
     this.groupBox10.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.contatoGridView)).BeginInit();
     this.tabPage2.SuspendLayout();
     this.groupBox4.SuspendLayout();
     this.groupBox3.SuspendLayout();
     this.groupBox2.SuspendLayout();
     this.tabPage1.SuspendLayout();
     this.groupBox5.SuspendLayout();
     this.groupBox12.SuspendLayout();
     this.flowLayoutPanel1.SuspendLayout();
     this.pnlCPF.SuspendLayout();
     this.pnlRG.SuspendLayout();
     this.pnlOrgaoExpedidor.SuspendLayout();
     this.pnlDataEmissao.SuspendLayout();
     this.pnlTituloEleitor.SuspendLayout();
     this.pnlZona.SuspendLayout();
     this.pnlSecao.SuspendLayout();
     this.pnlCNPJ.SuspendLayout();
     this.tabControl1.SuspendLayout();
     this.tabPage5.SuspendLayout();
     this.groupBox8.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.beneficiosGridView)).BeginInit();
     this.tabPage6.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.grupoGridView)).BeginInit();
     this.tabPage7.SuspendLayout();
     this.groupBox1.SuspendLayout();
     this.groupBox11.SuspendLayout();
     this.menuGridView.SuspendLayout();
     this.SuspendLayout();
     //
     // codigoBusca
     //
     this.codigoBusca.Location = new System.Drawing.Point(760, 29);
     this.codigoBusca.Name = "codigoBusca";
     this.codigoBusca.Size = new System.Drawing.Size(136, 20);
     this.codigoBusca.TabIndex = 0;
     this.codigoBusca.Visible = false;
     //
     // label1
     //
     this.label1.AutoSize = true;
     this.label1.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label1.Location = new System.Drawing.Point(648, 32);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(108, 15);
     this.label1.TabIndex = 0;
     this.label1.Text = "Código do Cliente:";
     this.label1.Visible = false;
     //
     // tabPage4
     //
     this.tabPage4.BackColor = System.Drawing.Color.AliceBlue;
     this.tabPage4.Controls.Add(this.groupBox9);
     this.tabPage4.Location = new System.Drawing.Point(4, 25);
     this.tabPage4.Name = "tabPage4";
     this.tabPage4.Padding = new System.Windows.Forms.Padding(3);
     this.tabPage4.Size = new System.Drawing.Size(1142, 517);
     this.tabPage4.TabIndex = 3;
     this.tabPage4.Text = "Dependentes";
     //
     // groupBox9
     //
     this.groupBox9.Controls.Add(this.dependenteGridView);
     this.groupBox9.Location = new System.Drawing.Point(7, 6);
     this.groupBox9.Name = "groupBox9";
     this.groupBox9.Size = new System.Drawing.Size(1005, 508);
     this.groupBox9.TabIndex = 48;
     this.groupBox9.TabStop = false;
     //
     // dependenteGridView
     //
     dataGridViewCellStyle1.BackColor = System.Drawing.Color.WhiteSmoke;
     this.dependenteGridView.AlternatingRowsDefaultCellStyle = dataGridViewCellStyle1;
     this.dependenteGridView.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.dependenteGridView.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
     this.depParentesco,
     this.depNome,
     this.depIndCadastro,
     this.depObservacao});
     this.dependenteGridView.EditMode = System.Windows.Forms.DataGridViewEditMode.EditOnEnter;
     this.dependenteGridView.Location = new System.Drawing.Point(6, 19);
     this.dependenteGridView.Name = "dependenteGridView";
     this.dependenteGridView.Size = new System.Drawing.Size(990, 483);
     this.dependenteGridView.TabIndex = 7;
     //
     // depParentesco
     //
     this.depParentesco.DataPropertyName = "GrauParentesco";
     this.depParentesco.HeaderText = "Parentesco";
     this.depParentesco.Name = "depParentesco";
     this.depParentesco.Width = 150;
     //
     // depNome
     //
     this.depNome.DataPropertyName = "Nome";
     this.depNome.HeaderText = "Nome";
     this.depNome.MinimumWidth = 350;
     this.depNome.Name = "depNome";
     this.depNome.Width = 350;
     //
     // depIndCadastro
     //
     this.depIndCadastro.DataPropertyName = "IndCadastro";
     this.depIndCadastro.HeaderText = "Cadastro";
     this.depIndCadastro.Name = "depIndCadastro";
     //
     // depObservacao
     //
     this.depObservacao.DataPropertyName = "Observacao";
     this.depObservacao.HeaderText = "Observação";
     this.depObservacao.MinimumWidth = 409;
     this.depObservacao.Name = "depObservacao";
     this.depObservacao.Width = 409;
     //
     // tabPage3
     //
     this.tabPage3.BackColor = System.Drawing.Color.AliceBlue;
     this.tabPage3.Controls.Add(this.groupBox10);
     this.tabPage3.Location = new System.Drawing.Point(4, 25);
     this.tabPage3.Name = "tabPage3";
     this.tabPage3.Padding = new System.Windows.Forms.Padding(3);
     this.tabPage3.Size = new System.Drawing.Size(1142, 517);
     this.tabPage3.TabIndex = 2;
     this.tabPage3.Text = "Contatos";
     //
     // groupBox10
     //
     this.groupBox10.Controls.Add(this.contatoGridView);
     this.groupBox10.Location = new System.Drawing.Point(7, 6);
     this.groupBox10.Name = "groupBox10";
     this.groupBox10.Size = new System.Drawing.Size(1002, 508);
     this.groupBox10.TabIndex = 99;
     this.groupBox10.TabStop = false;
     //
     // contatoGridView
     //
     dataGridViewCellStyle2.BackColor = System.Drawing.Color.WhiteSmoke;
     this.contatoGridView.AlternatingRowsDefaultCellStyle = dataGridViewCellStyle2;
     this.contatoGridView.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.contatoGridView.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
     this.conTipoContato,
     this.conContato,
     this.conObservacao});
     this.contatoGridView.EditMode = System.Windows.Forms.DataGridViewEditMode.EditOnEnter;
     this.contatoGridView.Location = new System.Drawing.Point(6, 19);
     this.contatoGridView.Name = "contatoGridView";
     this.contatoGridView.Size = new System.Drawing.Size(986, 483);
     this.contatoGridView.TabIndex = 98;
     //
     // conTipoContato
     //
     this.conTipoContato.DataPropertyName = "TipoContato";
     this.conTipoContato.HeaderText = "Tipo";
     this.conTipoContato.Items.AddRange(new object[] {
     "Telefone Residencial",
     "Telefone Celular",
     "Telefone Comercial",
     "E-Mail",
     "Fax",
     "Website"});
     this.conTipoContato.MinimumWidth = 160;
     this.conTipoContato.Name = "conTipoContato";
     this.conTipoContato.Resizable = System.Windows.Forms.DataGridViewTriState.True;
     this.conTipoContato.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
     this.conTipoContato.Width = 160;
     //
     // conContato
     //
     this.conContato.DataPropertyName = "Contato";
     this.conContato.HeaderText = "Telefone, E-Mail, etc";
     this.conContato.MinimumWidth = 200;
     this.conContato.Name = "conContato";
     this.conContato.Width = 200;
     //
     // conObservacao
     //
     this.conObservacao.DataPropertyName = "Observacao";
     this.conObservacao.HeaderText = "Observação";
     this.conObservacao.MinimumWidth = 490;
     this.conObservacao.Name = "conObservacao";
     this.conObservacao.Width = 490;
     //
     // tabPage2
     //
     this.tabPage2.BackColor = System.Drawing.Color.AliceBlue;
     this.tabPage2.Controls.Add(this.groupBox4);
     this.tabPage2.Controls.Add(this.groupBox3);
     this.tabPage2.Controls.Add(this.groupBox2);
     this.tabPage2.Location = new System.Drawing.Point(4, 25);
     this.tabPage2.Name = "tabPage2";
     this.tabPage2.Padding = new System.Windows.Forms.Padding(3);
     this.tabPage2.Size = new System.Drawing.Size(1142, 517);
     this.tabPage2.TabIndex = 1;
     this.tabPage2.Text = "Documentos Adicionais";
     //
     // groupBox4
     //
     this.groupBox4.Controls.Add(this.pispasep4);
     this.groupBox4.Controls.Add(this.label38);
     this.groupBox4.Controls.Add(this.pispasep3);
     this.groupBox4.Controls.Add(this.label40);
     this.groupBox4.Controls.Add(this.pispasep2);
     this.groupBox4.Controls.Add(this.label42);
     this.groupBox4.Controls.Add(this.label44);
     this.groupBox4.Controls.Add(this.label47);
     this.groupBox4.Controls.Add(this.pispasep1);
     this.groupBox4.Location = new System.Drawing.Point(568, 85);
     this.groupBox4.Name = "groupBox4";
     this.groupBox4.Size = new System.Drawing.Size(185, 188);
     this.groupBox4.TabIndex = 74;
     this.groupBox4.TabStop = false;
     //
     // pispasep4
     //
     this.pispasep4.Location = new System.Drawing.Point(38, 128);
     this.pispasep4.MaxLength = 12;
     this.pispasep4.Name = "pispasep4";
     this.pispasep4.Size = new System.Drawing.Size(113, 20);
     this.pispasep4.TabIndex = 63;
     //
     // label38
     //
     this.label38.AutoSize = true;
     this.label38.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label38.Location = new System.Drawing.Point(10, 131);
     this.label38.Name = "label38";
     this.label38.Size = new System.Drawing.Size(25, 13);
     this.label38.TabIndex = 62;
     this.label38.Text = "4 >";
     //
     // pispasep3
     //
     this.pispasep3.Location = new System.Drawing.Point(38, 102);
     this.pispasep3.MaxLength = 12;
     this.pispasep3.Name = "pispasep3";
     this.pispasep3.Size = new System.Drawing.Size(113, 20);
     this.pispasep3.TabIndex = 59;
     //
     // label40
     //
     this.label40.AutoSize = true;
     this.label40.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label40.Location = new System.Drawing.Point(10, 105);
     this.label40.Name = "label40";
     this.label40.Size = new System.Drawing.Size(25, 13);
     this.label40.TabIndex = 58;
     this.label40.Text = "3 >";
     //
     // pispasep2
     //
     this.pispasep2.Location = new System.Drawing.Point(38, 76);
     this.pispasep2.MaxLength = 12;
     this.pispasep2.Name = "pispasep2";
     this.pispasep2.Size = new System.Drawing.Size(113, 20);
     this.pispasep2.TabIndex = 55;
     //
     // label42
     //
     this.label42.AutoSize = true;
     this.label42.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label42.Location = new System.Drawing.Point(10, 79);
     this.label42.Name = "label42";
     this.label42.Size = new System.Drawing.Size(25, 13);
     this.label42.TabIndex = 54;
     this.label42.Text = "2 >";
     //
     // label44
     //
     this.label44.AutoSize = true;
     this.label44.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label44.Location = new System.Drawing.Point(10, 50);
     this.label44.Name = "label44";
     this.label44.Size = new System.Drawing.Size(25, 13);
     this.label44.TabIndex = 51;
     this.label44.Text = "1 >";
     //
     // label47
     //
     this.label47.AutoSize = true;
     this.label47.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label47.Location = new System.Drawing.Point(35, 16);
     this.label47.Name = "label47";
     this.label47.Size = new System.Drawing.Size(81, 13);
     this.label47.TabIndex = 50;
     this.label47.Text = "PIS / PASEP";
     //
     // pispasep1
     //
     this.pispasep1.Location = new System.Drawing.Point(38, 47);
     this.pispasep1.MaxLength = 12;
     this.pispasep1.Name = "pispasep1";
     this.pispasep1.Size = new System.Drawing.Size(113, 20);
     this.pispasep1.TabIndex = 50;
     //
     // groupBox3
     //
     this.groupBox3.Controls.Add(this.nit4);
     this.groupBox3.Controls.Add(this.label39);
     this.groupBox3.Controls.Add(this.nit3);
     this.groupBox3.Controls.Add(this.label41);
     this.groupBox3.Controls.Add(this.nit2);
     this.groupBox3.Controls.Add(this.label43);
     this.groupBox3.Controls.Add(this.label45);
     this.groupBox3.Controls.Add(this.label46);
     this.groupBox3.Controls.Add(this.nit1);
     this.groupBox3.Location = new System.Drawing.Point(349, 85);
     this.groupBox3.Name = "groupBox3";
     this.groupBox3.Size = new System.Drawing.Size(211, 188);
     this.groupBox3.TabIndex = 73;
     this.groupBox3.TabStop = false;
     //
     // nit4
     //
     this.nit4.Location = new System.Drawing.Point(38, 128);
     this.nit4.MaxLength = 12;
     this.nit4.Name = "nit4";
     this.nit4.Size = new System.Drawing.Size(141, 20);
     this.nit4.TabIndex = 63;
     //
     // label39
     //
     this.label39.AutoSize = true;
     this.label39.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label39.Location = new System.Drawing.Point(10, 131);
     this.label39.Name = "label39";
     this.label39.Size = new System.Drawing.Size(25, 13);
     this.label39.TabIndex = 62;
     this.label39.Text = "4 >";
     //
     // nit3
     //
     this.nit3.Location = new System.Drawing.Point(38, 102);
     this.nit3.MaxLength = 12;
     this.nit3.Name = "nit3";
     this.nit3.Size = new System.Drawing.Size(141, 20);
     this.nit3.TabIndex = 59;
     //
     // label41
     //
     this.label41.AutoSize = true;
     this.label41.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label41.Location = new System.Drawing.Point(10, 105);
     this.label41.Name = "label41";
     this.label41.Size = new System.Drawing.Size(25, 13);
     this.label41.TabIndex = 58;
     this.label41.Text = "3 >";
     //
     // nit2
     //
     this.nit2.Location = new System.Drawing.Point(38, 76);
     this.nit2.MaxLength = 12;
     this.nit2.Name = "nit2";
     this.nit2.Size = new System.Drawing.Size(141, 20);
     this.nit2.TabIndex = 55;
     //
     // label43
     //
     this.label43.AutoSize = true;
     this.label43.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label43.Location = new System.Drawing.Point(10, 79);
     this.label43.Name = "label43";
     this.label43.Size = new System.Drawing.Size(25, 13);
     this.label43.TabIndex = 54;
     this.label43.Text = "2 >";
     //
     // label45
     //
     this.label45.AutoSize = true;
     this.label45.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label45.Location = new System.Drawing.Point(10, 50);
     this.label45.Name = "label45";
     this.label45.Size = new System.Drawing.Size(25, 13);
     this.label45.TabIndex = 51;
     this.label45.Text = "1 >";
     //
     // label46
     //
     this.label46.AutoSize = true;
     this.label46.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label46.Location = new System.Drawing.Point(35, 16);
     this.label46.Name = "label46";
     this.label46.Size = new System.Drawing.Size(28, 13);
     this.label46.TabIndex = 50;
     this.label46.Text = "NIT";
     //
     // nit1
     //
     this.nit1.Location = new System.Drawing.Point(38, 47);
     this.nit1.MaxLength = 12;
     this.nit1.Name = "nit1";
     this.nit1.Size = new System.Drawing.Size(141, 20);
     this.nit1.TabIndex = 50;
     //
     // groupBox2
     //
     this.groupBox2.Controls.Add(this.ctpsSerie5);
     this.groupBox2.Controls.Add(this.label34);
     this.groupBox2.Controls.Add(this.ctps5);
     this.groupBox2.Controls.Add(this.label35);
     this.groupBox2.Controls.Add(this.ctpsSerie4);
     this.groupBox2.Controls.Add(this.label32);
     this.groupBox2.Controls.Add(this.ctps4);
     this.groupBox2.Controls.Add(this.label33);
     this.groupBox2.Controls.Add(this.ctpsSerie3);
     this.groupBox2.Controls.Add(this.label30);
     this.groupBox2.Controls.Add(this.ctps3);
     this.groupBox2.Controls.Add(this.label31);
     this.groupBox2.Controls.Add(this.ctpsSerie2);
     this.groupBox2.Controls.Add(this.label29);
     this.groupBox2.Controls.Add(this.ctps2);
     this.groupBox2.Controls.Add(this.label28);
     this.groupBox2.Controls.Add(this.ctpsSerie1);
     this.groupBox2.Controls.Add(this.label27);
     this.groupBox2.Controls.Add(this.label26);
     this.groupBox2.Controls.Add(this.label25);
     this.groupBox2.Controls.Add(this.ctps1);
     this.groupBox2.Location = new System.Drawing.Point(57, 85);
     this.groupBox2.Name = "groupBox2";
     this.groupBox2.Size = new System.Drawing.Size(283, 188);
     this.groupBox2.TabIndex = 72;
     this.groupBox2.TabStop = false;
     //
     // ctpsSerie5
     //
     this.ctpsSerie5.Location = new System.Drawing.Point(172, 154);
     this.ctpsSerie5.MaxLength = 12;
     this.ctpsSerie5.Name = "ctpsSerie5";
     this.ctpsSerie5.Size = new System.Drawing.Size(79, 20);
     this.ctpsSerie5.TabIndex = 69;
     //
     // label34
     //
     this.label34.AutoSize = true;
     this.label34.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label34.Location = new System.Drawing.Point(157, 157);
     this.label34.Name = "label34";
     this.label34.Size = new System.Drawing.Size(13, 13);
     this.label34.TabIndex = 68;
     this.label34.Text = "/";
     //
     // ctps5
     //
     this.ctps5.Location = new System.Drawing.Point(38, 154);
     this.ctps5.MaxLength = 12;
     this.ctps5.Name = "ctps5";
     this.ctps5.Size = new System.Drawing.Size(113, 20);
     this.ctps5.TabIndex = 67;
     //
     // label35
     //
     this.label35.AutoSize = true;
     this.label35.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label35.Location = new System.Drawing.Point(10, 157);
     this.label35.Name = "label35";
     this.label35.Size = new System.Drawing.Size(25, 13);
     this.label35.TabIndex = 66;
     this.label35.Text = "5 >";
     //
     // ctpsSerie4
     //
     this.ctpsSerie4.Location = new System.Drawing.Point(172, 128);
     this.ctpsSerie4.MaxLength = 12;
     this.ctpsSerie4.Name = "ctpsSerie4";
     this.ctpsSerie4.Size = new System.Drawing.Size(79, 20);
     this.ctpsSerie4.TabIndex = 65;
     //
     // label32
     //
     this.label32.AutoSize = true;
     this.label32.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label32.Location = new System.Drawing.Point(157, 131);
     this.label32.Name = "label32";
     this.label32.Size = new System.Drawing.Size(13, 13);
     this.label32.TabIndex = 64;
     this.label32.Text = "/";
     //
     // ctps4
     //
     this.ctps4.Location = new System.Drawing.Point(38, 128);
     this.ctps4.MaxLength = 12;
     this.ctps4.Name = "ctps4";
     this.ctps4.Size = new System.Drawing.Size(113, 20);
     this.ctps4.TabIndex = 63;
     //
     // label33
     //
     this.label33.AutoSize = true;
     this.label33.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label33.Location = new System.Drawing.Point(10, 131);
     this.label33.Name = "label33";
     this.label33.Size = new System.Drawing.Size(25, 13);
     this.label33.TabIndex = 62;
     this.label33.Text = "4 >";
     //
     // ctpsSerie3
     //
     this.ctpsSerie3.Location = new System.Drawing.Point(172, 102);
     this.ctpsSerie3.MaxLength = 12;
     this.ctpsSerie3.Name = "ctpsSerie3";
     this.ctpsSerie3.Size = new System.Drawing.Size(79, 20);
     this.ctpsSerie3.TabIndex = 61;
     //
     // label30
     //
     this.label30.AutoSize = true;
     this.label30.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label30.Location = new System.Drawing.Point(157, 105);
     this.label30.Name = "label30";
     this.label30.Size = new System.Drawing.Size(13, 13);
     this.label30.TabIndex = 60;
     this.label30.Text = "/";
     //
     // ctps3
     //
     this.ctps3.Location = new System.Drawing.Point(38, 102);
     this.ctps3.MaxLength = 12;
     this.ctps3.Name = "ctps3";
     this.ctps3.Size = new System.Drawing.Size(113, 20);
     this.ctps3.TabIndex = 59;
     //
     // label31
     //
     this.label31.AutoSize = true;
     this.label31.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label31.Location = new System.Drawing.Point(10, 105);
     this.label31.Name = "label31";
     this.label31.Size = new System.Drawing.Size(25, 13);
     this.label31.TabIndex = 58;
     this.label31.Text = "3 >";
     //
     // ctpsSerie2
     //
     this.ctpsSerie2.Location = new System.Drawing.Point(172, 76);
     this.ctpsSerie2.MaxLength = 12;
     this.ctpsSerie2.Name = "ctpsSerie2";
     this.ctpsSerie2.Size = new System.Drawing.Size(79, 20);
     this.ctpsSerie2.TabIndex = 57;
     //
     // label29
     //
     this.label29.AutoSize = true;
     this.label29.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label29.Location = new System.Drawing.Point(157, 79);
     this.label29.Name = "label29";
     this.label29.Size = new System.Drawing.Size(13, 13);
     this.label29.TabIndex = 56;
     this.label29.Text = "/";
     //
     // ctps2
     //
     this.ctps2.Location = new System.Drawing.Point(38, 76);
     this.ctps2.MaxLength = 12;
     this.ctps2.Name = "ctps2";
     this.ctps2.Size = new System.Drawing.Size(113, 20);
     this.ctps2.TabIndex = 55;
     //
     // label28
     //
     this.label28.AutoSize = true;
     this.label28.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label28.Location = new System.Drawing.Point(10, 79);
     this.label28.Name = "label28";
     this.label28.Size = new System.Drawing.Size(25, 13);
     this.label28.TabIndex = 54;
     this.label28.Text = "2 >";
     //
     // ctpsSerie1
     //
     this.ctpsSerie1.Location = new System.Drawing.Point(172, 47);
     this.ctpsSerie1.MaxLength = 12;
     this.ctpsSerie1.Name = "ctpsSerie1";
     this.ctpsSerie1.Size = new System.Drawing.Size(79, 20);
     this.ctpsSerie1.TabIndex = 53;
     //
     // label27
     //
     this.label27.AutoSize = true;
     this.label27.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label27.Location = new System.Drawing.Point(157, 50);
     this.label27.Name = "label27";
     this.label27.Size = new System.Drawing.Size(13, 13);
     this.label27.TabIndex = 52;
     this.label27.Text = "/";
     //
     // label26
     //
     this.label26.AutoSize = true;
     this.label26.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label26.Location = new System.Drawing.Point(10, 50);
     this.label26.Name = "label26";
     this.label26.Size = new System.Drawing.Size(25, 13);
     this.label26.TabIndex = 51;
     this.label26.Text = "1 >";
     //
     // label25
     //
     this.label25.AutoSize = true;
     this.label25.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label25.Location = new System.Drawing.Point(35, 16);
     this.label25.Name = "label25";
     this.label25.Size = new System.Drawing.Size(90, 13);
     this.label25.TabIndex = 50;
     this.label25.Text = "CTPS / SÉRIE";
     //
     // ctps1
     //
     this.ctps1.Location = new System.Drawing.Point(38, 47);
     this.ctps1.MaxLength = 12;
     this.ctps1.Name = "ctps1";
     this.ctps1.Size = new System.Drawing.Size(113, 20);
     this.ctps1.TabIndex = 50;
     //
     // tabPage1
     //
     this.tabPage1.BackColor = System.Drawing.Color.AliceBlue;
     this.tabPage1.Controls.Add(this.enderecoCEP);
     this.tabPage1.Controls.Add(this.label17);
     this.tabPage1.Controls.Add(this.enderecoUF);
     this.tabPage1.Controls.Add(this.label16);
     this.tabPage1.Controls.Add(this.label8);
     this.tabPage1.Controls.Add(this.dataFalecimento);
     this.tabPage1.Controls.Add(this.nome);
     this.tabPage1.Controls.Add(this.naturalidade);
     this.tabPage1.Controls.Add(this.enderecoCidade);
     this.tabPage1.Controls.Add(this.nacionalidade);
     this.tabPage1.Controls.Add(this.enderecoBairro);
     this.tabPage1.Controls.Add(this.enderecoComplemento);
     this.tabPage1.Controls.Add(this.profissao);
     this.tabPage1.Controls.Add(this.enderecoNumero);
     this.tabPage1.Controls.Add(this.endereco);
     this.tabPage1.Controls.Add(this.nomeMae);
     this.tabPage1.Controls.Add(this.nomePai);
     this.tabPage1.Controls.Add(this.indFalecido);
     this.tabPage1.Controls.Add(this.label10);
     this.tabPage1.Controls.Add(this.label2);
     this.tabPage1.Controls.Add(this.label3);
     this.tabPage1.Controls.Add(this.label4);
     this.tabPage1.Controls.Add(this.label15);
     this.tabPage1.Controls.Add(this.label5);
     this.tabPage1.Controls.Add(this.label14);
     this.tabPage1.Controls.Add(this.estadoCivil);
     this.tabPage1.Controls.Add(this.label6);
     this.tabPage1.Controls.Add(this.label13);
     this.tabPage1.Controls.Add(this.label7);
     this.tabPage1.Controls.Add(this.label12);
     this.tabPage1.Controls.Add(this.dataNascimento);
     this.tabPage1.Controls.Add(this.label11);
     this.tabPage1.Controls.Add(this.label9);
     this.tabPage1.Controls.Add(this.groupBox5);
     this.tabPage1.Location = new System.Drawing.Point(4, 25);
     this.tabPage1.Name = "tabPage1";
     this.tabPage1.Padding = new System.Windows.Forms.Padding(3);
     this.tabPage1.Size = new System.Drawing.Size(1142, 517);
     this.tabPage1.TabIndex = 0;
     this.tabPage1.Text = "Dados";
     //
     // enderecoCEP
     //
     this.enderecoCEP.Location = new System.Drawing.Point(866, 230);
     this.enderecoCEP.Mask = "00000-999";
     this.enderecoCEP.Name = "enderecoCEP";
     this.enderecoCEP.Size = new System.Drawing.Size(67, 20);
     this.enderecoCEP.TabIndex = 16;
     this.enderecoCEP.TextMaskFormat = System.Windows.Forms.MaskFormat.ExcludePromptAndLiterals;
     //
     // label17
     //
     this.label17.AutoSize = true;
     this.label17.Location = new System.Drawing.Point(866, 214);
     this.label17.Name = "label17";
     this.label17.Size = new System.Drawing.Size(28, 13);
     this.label17.TabIndex = 217;
     this.label17.Text = "CEP";
     //
     // enderecoUF
     //
     this.enderecoUF.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.enderecoUF.FormattingEnabled = true;
     this.enderecoUF.Items.AddRange(new object[] {
     "AC",
     "AL",
     "AM",
     "AP",
     "BA",
     "CE",
     "DF",
     "ES",
     "GO",
     "MA",
     "MG",
     "MS",
     "MT",
     "PA",
     "PB",
     "PE",
     "PI",
     "PR",
     "RJ",
     "RN",
     "RO",
     "RR",
     "RS",
     "SC",
     "SE",
     "SP",
     "TO"});
     this.enderecoUF.Location = new System.Drawing.Point(956, 229);
     this.enderecoUF.Name = "enderecoUF";
     this.enderecoUF.Size = new System.Drawing.Size(46, 21);
     this.enderecoUF.TabIndex = 17;
     //
     // label16
     //
     this.label16.AutoSize = true;
     this.label16.Location = new System.Drawing.Point(953, 214);
     this.label16.Name = "label16";
     this.label16.Size = new System.Drawing.Size(21, 13);
     this.label16.TabIndex = 215;
     this.label16.Text = "UF";
     //
     // label8
     //
     this.label8.AutoSize = true;
     this.label8.Location = new System.Drawing.Point(707, 62);
     this.label8.Name = "label8";
     this.label8.Size = new System.Drawing.Size(90, 13);
     this.label8.TabIndex = 213;
     this.label8.Text = "Data Falecimento";
     //
     // dataFalecimento
     //
     this.dataFalecimento.Enabled = false;
     this.dataFalecimento.Location = new System.Drawing.Point(711, 78);
     this.dataFalecimento.Mask = "00/00/0000";
     this.dataFalecimento.Name = "dataFalecimento";
     this.dataFalecimento.Size = new System.Drawing.Size(73, 20);
     this.dataFalecimento.TabIndex = 3;
     this.dataFalecimento.TextMaskFormat = System.Windows.Forms.MaskFormat.ExcludePromptAndLiterals;
     this.dataFalecimento.ValidatingType = typeof(System.DateTime);
     //
     // nome
     //
     this.nome.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.nome.Location = new System.Drawing.Point(13, 82);
     this.nome.Name = "nome";
     this.nome.Size = new System.Drawing.Size(493, 20);
     this.nome.TabIndex = 1;
     //
     // naturalidade
     //
     this.naturalidade.Location = new System.Drawing.Point(13, 127);
     this.naturalidade.Name = "naturalidade";
     this.naturalidade.Size = new System.Drawing.Size(167, 20);
     this.naturalidade.TabIndex = 4;
     //
     // enderecoCidade
     //
     this.enderecoCidade.Location = new System.Drawing.Point(737, 230);
     this.enderecoCidade.Name = "enderecoCidade";
     this.enderecoCidade.Size = new System.Drawing.Size(109, 20);
     this.enderecoCidade.TabIndex = 15;
     //
     // nacionalidade
     //
     this.nacionalidade.Location = new System.Drawing.Point(200, 127);
     this.nacionalidade.Name = "nacionalidade";
     this.nacionalidade.Size = new System.Drawing.Size(167, 20);
     this.nacionalidade.TabIndex = 5;
     //
     // enderecoBairro
     //
     this.enderecoBairro.Location = new System.Drawing.Point(593, 230);
     this.enderecoBairro.Name = "enderecoBairro";
     this.enderecoBairro.Size = new System.Drawing.Size(124, 20);
     this.enderecoBairro.TabIndex = 14;
     //
     // enderecoComplemento
     //
     this.enderecoComplemento.Location = new System.Drawing.Point(465, 230);
     this.enderecoComplemento.Name = "enderecoComplemento";
     this.enderecoComplemento.Size = new System.Drawing.Size(109, 20);
     this.enderecoComplemento.TabIndex = 13;
     //
     // profissao
     //
     this.profissao.Location = new System.Drawing.Point(525, 126);
     this.profissao.Name = "profissao";
     this.profissao.Size = new System.Drawing.Size(167, 20);
     this.profissao.TabIndex = 7;
     //
     // enderecoNumero
     //
     this.enderecoNumero.Location = new System.Drawing.Point(385, 230);
     this.enderecoNumero.MaxLength = 6;
     this.enderecoNumero.Name = "enderecoNumero";
     this.enderecoNumero.Size = new System.Drawing.Size(59, 20);
     this.enderecoNumero.TabIndex = 12;
     //
     // endereco
     //
     this.endereco.Location = new System.Drawing.Point(13, 230);
     this.endereco.Name = "endereco";
     this.endereco.Size = new System.Drawing.Size(354, 20);
     this.endereco.TabIndex = 11;
     //
     // nomeMae
     //
     this.nomeMae.Location = new System.Drawing.Point(385, 176);
     this.nomeMae.Name = "nomeMae";
     this.nomeMae.Size = new System.Drawing.Size(354, 20);
     this.nomeMae.TabIndex = 10;
     //
     // nomePai
     //
     this.nomePai.Location = new System.Drawing.Point(13, 176);
     this.nomePai.Name = "nomePai";
     this.nomePai.Size = new System.Drawing.Size(354, 20);
     this.nomePai.TabIndex = 9;
     //
     // indFalecido
     //
     this.indFalecido.AutoSize = true;
     this.indFalecido.Location = new System.Drawing.Point(564, 82);
     this.indFalecido.Name = "indFalecido";
     this.indFalecido.Size = new System.Drawing.Size(75, 17);
     this.indFalecido.TabIndex = 2;
     this.indFalecido.Text = "Falecido ?";
     this.indFalecido.UseVisualStyleBackColor = true;
     //
     // label10
     //
     this.label10.AutoSize = true;
     this.label10.Location = new System.Drawing.Point(391, 160);
     this.label10.Name = "label10";
     this.label10.Size = new System.Drawing.Size(28, 13);
     this.label10.TabIndex = 187;
     this.label10.Text = "Mãe";
     //
     // label2
     //
     this.label2.AutoSize = true;
     this.label2.Location = new System.Drawing.Point(10, 65);
     this.label2.Name = "label2";
     this.label2.Size = new System.Drawing.Size(35, 13);
     this.label2.TabIndex = 173;
     this.label2.Text = "Nome";
     //
     // label3
     //
     this.label3.AutoSize = true;
     this.label3.Location = new System.Drawing.Point(10, 111);
     this.label3.Name = "label3";
     this.label3.Size = new System.Drawing.Size(67, 13);
     this.label3.TabIndex = 175;
     this.label3.Text = "Naturalidade";
     //
     // label4
     //
     this.label4.AutoSize = true;
     this.label4.Location = new System.Drawing.Point(197, 111);
     this.label4.Name = "label4";
     this.label4.Size = new System.Drawing.Size(75, 13);
     this.label4.TabIndex = 177;
     this.label4.Text = "Nacionalidade";
     //
     // label15
     //
     this.label15.AutoSize = true;
     this.label15.Location = new System.Drawing.Point(734, 214);
     this.label15.Name = "label15";
     this.label15.Size = new System.Drawing.Size(40, 13);
     this.label15.TabIndex = 197;
     this.label15.Text = "Cidade";
     //
     // label5
     //
     this.label5.AutoSize = true;
     this.label5.Location = new System.Drawing.Point(382, 111);
     this.label5.Name = "label5";
     this.label5.Size = new System.Drawing.Size(62, 13);
     this.label5.TabIndex = 179;
     this.label5.Text = "Estado Civil";
     //
     // label14
     //
     this.label14.AutoSize = true;
     this.label14.Location = new System.Drawing.Point(591, 214);
     this.label14.Name = "label14";
     this.label14.Size = new System.Drawing.Size(34, 13);
     this.label14.TabIndex = 195;
     this.label14.Text = "Bairro";
     //
     // estadoCivil
     //
     this.estadoCivil.FormattingEnabled = true;
     this.estadoCivil.Location = new System.Drawing.Point(385, 126);
     this.estadoCivil.Name = "estadoCivil";
     this.estadoCivil.Size = new System.Drawing.Size(121, 21);
     this.estadoCivil.TabIndex = 6;
     //
     // label6
     //
     this.label6.AutoSize = true;
     this.label6.Location = new System.Drawing.Point(524, 111);
     this.label6.Name = "label6";
     this.label6.Size = new System.Drawing.Size(50, 13);
     this.label6.TabIndex = 181;
     this.label6.Text = "Profissão";
     //
     // label13
     //
     this.label13.AutoSize = true;
     this.label13.Location = new System.Drawing.Point(462, 214);
     this.label13.Name = "label13";
     this.label13.Size = new System.Drawing.Size(71, 13);
     this.label13.TabIndex = 193;
     this.label13.Text = "Complemento";
     //
     // label7
     //
     this.label7.AutoSize = true;
     this.label7.Location = new System.Drawing.Point(708, 111);
     this.label7.Name = "label7";
     this.label7.Size = new System.Drawing.Size(89, 13);
     this.label7.TabIndex = 183;
     this.label7.Text = "Data Nascimento";
     //
     // label12
     //
     this.label12.AutoSize = true;
     this.label12.Location = new System.Drawing.Point(382, 214);
     this.label12.Name = "label12";
     this.label12.Size = new System.Drawing.Size(44, 13);
     this.label12.TabIndex = 191;
     this.label12.Text = "Número";
     //
     // dataNascimento
     //
     this.dataNascimento.Location = new System.Drawing.Point(711, 126);
     this.dataNascimento.Mask = "00/00/0000";
     this.dataNascimento.Name = "dataNascimento";
     this.dataNascimento.Size = new System.Drawing.Size(73, 20);
     this.dataNascimento.TabIndex = 8;
     this.dataNascimento.TextMaskFormat = System.Windows.Forms.MaskFormat.ExcludePromptAndLiterals;
     this.dataNascimento.ValidatingType = typeof(System.DateTime);
     //
     // label11
     //
     this.label11.AutoSize = true;
     this.label11.Location = new System.Drawing.Point(10, 214);
     this.label11.Name = "label11";
     this.label11.Size = new System.Drawing.Size(53, 13);
     this.label11.TabIndex = 189;
     this.label11.Text = "Endereço";
     //
     // label9
     //
     this.label9.AutoSize = true;
     this.label9.Location = new System.Drawing.Point(10, 160);
     this.label9.Name = "label9";
     this.label9.Size = new System.Drawing.Size(22, 13);
     this.label9.TabIndex = 185;
     this.label9.Text = "Pai";
     //
     // groupBox5
     //
     this.groupBox5.Controls.Add(this.groupBox12);
     this.groupBox5.Controls.Add(this.codigo);
     this.groupBox5.Controls.Add(this.label67);
     this.groupBox5.Location = new System.Drawing.Point(7, 12);
     this.groupBox5.Name = "groupBox5";
     this.groupBox5.Size = new System.Drawing.Size(1004, 380);
     this.groupBox5.TabIndex = 1000;
     this.groupBox5.TabStop = false;
     //
     // groupBox12
     //
     this.groupBox12.Controls.Add(this.rbPessoaJuridica);
     this.groupBox12.Controls.Add(this.rbPessoaFisica);
     this.groupBox12.Controls.Add(this.flowLayoutPanel1);
     this.groupBox12.Location = new System.Drawing.Point(7, 244);
     this.groupBox12.Name = "groupBox12";
     this.groupBox12.Size = new System.Drawing.Size(988, 130);
     this.groupBox12.TabIndex = 18;
     this.groupBox12.TabStop = false;
     this.groupBox12.Text = "Tipo de Cliente";
     //
     // rbPessoaJuridica
     //
     this.rbPessoaJuridica.AutoSize = true;
     this.rbPessoaJuridica.Location = new System.Drawing.Point(130, 31);
     this.rbPessoaJuridica.Name = "rbPessoaJuridica";
     this.rbPessoaJuridica.Size = new System.Drawing.Size(101, 17);
     this.rbPessoaJuridica.TabIndex = 215;
     this.rbPessoaJuridica.TabStop = true;
     this.rbPessoaJuridica.Text = "Pessoa Jurídica";
     this.rbPessoaJuridica.UseVisualStyleBackColor = true;
     this.rbPessoaJuridica.CheckedChanged += new System.EventHandler(this.rbPessoaJuridica_CheckedChanged);
     //
     // rbPessoaFisica
     //
     this.rbPessoaFisica.AutoSize = true;
     this.rbPessoaFisica.Checked = true;
     this.rbPessoaFisica.Location = new System.Drawing.Point(12, 31);
     this.rbPessoaFisica.Name = "rbPessoaFisica";
     this.rbPessoaFisica.Size = new System.Drawing.Size(92, 17);
     this.rbPessoaFisica.TabIndex = 214;
     this.rbPessoaFisica.TabStop = true;
     this.rbPessoaFisica.Text = "Pessoa Física";
     this.rbPessoaFisica.UseVisualStyleBackColor = true;
     this.rbPessoaFisica.CheckedChanged += new System.EventHandler(this.rbPessoaFisica_CheckedChanged);
     //
     // flowLayoutPanel1
     //
     this.flowLayoutPanel1.Controls.Add(this.pnlCPF);
     this.flowLayoutPanel1.Controls.Add(this.pnlRG);
     this.flowLayoutPanel1.Controls.Add(this.pnlOrgaoExpedidor);
     this.flowLayoutPanel1.Controls.Add(this.pnlDataEmissao);
     this.flowLayoutPanel1.Controls.Add(this.pnlTituloEleitor);
     this.flowLayoutPanel1.Controls.Add(this.pnlZona);
     this.flowLayoutPanel1.Controls.Add(this.pnlSecao);
     this.flowLayoutPanel1.Controls.Add(this.pnlCNPJ);
     this.flowLayoutPanel1.Location = new System.Drawing.Point(9, 63);
     this.flowLayoutPanel1.Name = "flowLayoutPanel1";
     this.flowLayoutPanel1.Size = new System.Drawing.Size(988, 61);
     this.flowLayoutPanel1.TabIndex = 213;
     //
     // pnlCPF
     //
     this.pnlCPF.Controls.Add(this.cpf);
     this.pnlCPF.Controls.Add(this.label18);
     this.pnlCPF.Location = new System.Drawing.Point(3, 3);
     this.pnlCPF.Name = "pnlCPF";
     this.pnlCPF.Size = new System.Drawing.Size(117, 49);
     this.pnlCPF.TabIndex = 0;
     //
     // cpf
     //
     this.cpf.Location = new System.Drawing.Point(13, 26);
     this.cpf.Mask = "999\\.999\\.999-99";
     this.cpf.Name = "cpf";
     this.cpf.Size = new System.Drawing.Size(94, 20);
     this.cpf.TabIndex = 18;
     this.cpf.TextMaskFormat = System.Windows.Forms.MaskFormat.ExcludePromptAndLiterals;
     //
     // label18
     //
     this.label18.AutoSize = true;
     this.label18.Location = new System.Drawing.Point(10, 10);
     this.label18.Name = "label18";
     this.label18.Size = new System.Drawing.Size(27, 13);
     this.label18.TabIndex = 199;
     this.label18.Text = "CPF";
     //
     // pnlRG
     //
     this.pnlRG.Controls.Add(this.rg);
     this.pnlRG.Controls.Add(this.label19);
     this.pnlRG.Location = new System.Drawing.Point(126, 3);
     this.pnlRG.Name = "pnlRG";
     this.pnlRG.Size = new System.Drawing.Size(117, 49);
     this.pnlRG.TabIndex = 1;
     //
     // rg
     //
     this.rg.Location = new System.Drawing.Point(12, 26);
     this.rg.Name = "rg";
     this.rg.Size = new System.Drawing.Size(100, 20);
     this.rg.TabIndex = 19;
     //
     // label19
     //
     this.label19.AutoSize = true;
     this.label19.Location = new System.Drawing.Point(9, 10);
     this.label19.Name = "label19";
     this.label19.Size = new System.Drawing.Size(23, 13);
     this.label19.TabIndex = 201;
     this.label19.Text = "RG";
     //
     // pnlOrgaoExpedidor
     //
     this.pnlOrgaoExpedidor.Controls.Add(this.orgaoExpedidorRG);
     this.pnlOrgaoExpedidor.Controls.Add(this.label20);
     this.pnlOrgaoExpedidor.Location = new System.Drawing.Point(249, 3);
     this.pnlOrgaoExpedidor.Name = "pnlOrgaoExpedidor";
     this.pnlOrgaoExpedidor.Size = new System.Drawing.Size(82, 49);
     this.pnlOrgaoExpedidor.TabIndex = 2;
     //
     // orgaoExpedidorRG
     //
     this.orgaoExpedidorRG.Location = new System.Drawing.Point(14, 26);
     this.orgaoExpedidorRG.MaxLength = 8;
     this.orgaoExpedidorRG.Name = "orgaoExpedidorRG";
     this.orgaoExpedidorRG.Size = new System.Drawing.Size(59, 20);
     this.orgaoExpedidorRG.TabIndex = 20;
     //
     // label20
     //
     this.label20.AutoSize = true;
     this.label20.Location = new System.Drawing.Point(11, 10);
     this.label20.Name = "label20";
     this.label20.Size = new System.Drawing.Size(60, 13);
     this.label20.TabIndex = 203;
     this.label20.Text = "Orgão Exp.";
     //
     // pnlDataEmissao
     //
     this.pnlDataEmissao.Controls.Add(this.dataEmissaoRG);
     this.pnlDataEmissao.Controls.Add(this.label21);
     this.pnlDataEmissao.Location = new System.Drawing.Point(337, 3);
     this.pnlDataEmissao.Name = "pnlDataEmissao";
     this.pnlDataEmissao.Size = new System.Drawing.Size(84, 49);
     this.pnlDataEmissao.TabIndex = 3;
     //
     // dataEmissaoRG
     //
     this.dataEmissaoRG.Location = new System.Drawing.Point(6, 26);
     this.dataEmissaoRG.Mask = "00/00/0000";
     this.dataEmissaoRG.Name = "dataEmissaoRG";
     this.dataEmissaoRG.Size = new System.Drawing.Size(69, 20);
     this.dataEmissaoRG.TabIndex = 21;
     this.dataEmissaoRG.TextMaskFormat = System.Windows.Forms.MaskFormat.ExcludePromptAndLiterals;
     this.dataEmissaoRG.ValidatingType = typeof(System.DateTime);
     //
     // label21
     //
     this.label21.AutoSize = true;
     this.label21.Location = new System.Drawing.Point(3, 10);
     this.label21.Name = "label21";
     this.label21.Size = new System.Drawing.Size(72, 13);
     this.label21.TabIndex = 205;
     this.label21.Text = "Data Emissão";
     //
     // pnlTituloEleitor
     //
     this.pnlTituloEleitor.Controls.Add(this.tituloEleitor);
     this.pnlTituloEleitor.Controls.Add(this.label22);
     this.pnlTituloEleitor.Location = new System.Drawing.Point(427, 3);
     this.pnlTituloEleitor.Name = "pnlTituloEleitor";
     this.pnlTituloEleitor.Size = new System.Drawing.Size(133, 49);
     this.pnlTituloEleitor.TabIndex = 4;
     //
     // tituloEleitor
     //
     this.tituloEleitor.Location = new System.Drawing.Point(4, 26);
     this.tituloEleitor.MaxLength = 15;
     this.tituloEleitor.Name = "tituloEleitor";
     this.tituloEleitor.Size = new System.Drawing.Size(113, 20);
     this.tituloEleitor.TabIndex = 22;
     //
     // label22
     //
     this.label22.AutoSize = true;
     this.label22.Location = new System.Drawing.Point(1, 10);
     this.label22.Name = "label22";
     this.label22.Size = new System.Drawing.Size(67, 13);
     this.label22.TabIndex = 207;
     this.label22.Text = "Título Eleitor";
     //
     // pnlZona
     //
     this.pnlZona.Controls.Add(this.zonaEleitoral);
     this.pnlZona.Controls.Add(this.label23);
     this.pnlZona.Location = new System.Drawing.Point(566, 3);
     this.pnlZona.Name = "pnlZona";
     this.pnlZona.Size = new System.Drawing.Size(80, 49);
     this.pnlZona.TabIndex = 5;
     //
     // zonaEleitoral
     //
     this.zonaEleitoral.Location = new System.Drawing.Point(3, 26);
     this.zonaEleitoral.MaxLength = 5;
     this.zonaEleitoral.Name = "zonaEleitoral";
     this.zonaEleitoral.Size = new System.Drawing.Size(66, 20);
     this.zonaEleitoral.TabIndex = 23;
     //
     // label23
     //
     this.label23.AutoSize = true;
     this.label23.Location = new System.Drawing.Point(1, 10);
     this.label23.Name = "label23";
     this.label23.Size = new System.Drawing.Size(32, 13);
     this.label23.TabIndex = 209;
     this.label23.Text = "Zona";
     //
     // pnlSecao
     //
     this.pnlSecao.Controls.Add(this.secaoEleitoral);
     this.pnlSecao.Controls.Add(this.label24);
     this.pnlSecao.Location = new System.Drawing.Point(652, 3);
     this.pnlSecao.Name = "pnlSecao";
     this.pnlSecao.Size = new System.Drawing.Size(83, 49);
     this.pnlSecao.TabIndex = 6;
     //
     // secaoEleitoral
     //
     this.secaoEleitoral.Location = new System.Drawing.Point(5, 26);
     this.secaoEleitoral.MaxLength = 7;
     this.secaoEleitoral.Name = "secaoEleitoral";
     this.secaoEleitoral.Size = new System.Drawing.Size(68, 20);
     this.secaoEleitoral.TabIndex = 24;
     //
     // label24
     //
     this.label24.AutoSize = true;
     this.label24.Location = new System.Drawing.Point(2, 10);
     this.label24.Name = "label24";
     this.label24.Size = new System.Drawing.Size(38, 13);
     this.label24.TabIndex = 211;
     this.label24.Text = "Seção";
     //
     // pnlCNPJ
     //
     this.pnlCNPJ.Controls.Add(this.cnpj);
     this.pnlCNPJ.Controls.Add(this.label37);
     this.pnlCNPJ.Location = new System.Drawing.Point(741, 3);
     this.pnlCNPJ.Name = "pnlCNPJ";
     this.pnlCNPJ.Size = new System.Drawing.Size(139, 49);
     this.pnlCNPJ.TabIndex = 7;
     //
     // cnpj
     //
     this.cnpj.Location = new System.Drawing.Point(13, 22);
     this.cnpj.Mask = "99\\.999\\.999/9999-99";
     this.cnpj.Name = "cnpj";
     this.cnpj.Size = new System.Drawing.Size(108, 20);
     this.cnpj.TabIndex = 25;
     this.cnpj.TextMaskFormat = System.Windows.Forms.MaskFormat.ExcludePromptAndLiterals;
     //
     // label37
     //
     this.label37.AutoSize = true;
     this.label37.Location = new System.Drawing.Point(10, 6);
     this.label37.Name = "label37";
     this.label37.Size = new System.Drawing.Size(34, 13);
     this.label37.TabIndex = 201;
     this.label37.Text = "CNPJ";
     //
     // codigo
     //
     this.codigo.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.codigo.Location = new System.Drawing.Point(7, 30);
     this.codigo.Name = "codigo";
     this.codigo.ReadOnly = true;
     this.codigo.Size = new System.Drawing.Size(74, 20);
     this.codigo.TabIndex = 1;
     this.codigo.TabStop = false;
     //
     // label67
     //
     this.label67.AutoSize = true;
     this.label67.Location = new System.Drawing.Point(4, 13);
     this.label67.Name = "label67";
     this.label67.Size = new System.Drawing.Size(40, 13);
     this.label67.TabIndex = 175;
     this.label67.Text = "Codigo";
     //
     // tabControl1
     //
     this.tabControl1.Appearance = System.Windows.Forms.TabAppearance.FlatButtons;
     this.tabControl1.Controls.Add(this.tabPage1);
     this.tabControl1.Controls.Add(this.tabPage2);
     this.tabControl1.Controls.Add(this.tabPage3);
     this.tabControl1.Controls.Add(this.tabPage4);
     this.tabControl1.Controls.Add(this.tabPage5);
     this.tabControl1.Controls.Add(this.tabPage6);
     this.tabControl1.Controls.Add(this.tabPage7);
     this.tabControl1.Location = new System.Drawing.Point(26, 89);
     this.tabControl1.Name = "tabControl1";
     this.tabControl1.SelectedIndex = 0;
     this.tabControl1.Size = new System.Drawing.Size(1150, 546);
     this.tabControl1.TabIndex = 0;
     //
     // tabPage5
     //
     this.tabPage5.BackColor = System.Drawing.Color.AliceBlue;
     this.tabPage5.Controls.Add(this.groupBox8);
     this.tabPage5.Location = new System.Drawing.Point(4, 25);
     this.tabPage5.Name = "tabPage5";
     this.tabPage5.Padding = new System.Windows.Forms.Padding(3);
     this.tabPage5.Size = new System.Drawing.Size(1142, 517);
     this.tabPage5.TabIndex = 4;
     this.tabPage5.Text = "Benefícios";
     //
     // groupBox8
     //
     this.groupBox8.Controls.Add(this.beneficiosGridView);
     this.groupBox8.Location = new System.Drawing.Point(7, 6);
     this.groupBox8.Name = "groupBox8";
     this.groupBox8.Size = new System.Drawing.Size(1129, 508);
     this.groupBox8.TabIndex = 49;
     this.groupBox8.TabStop = false;
     //
     // beneficiosGridView
     //
     dataGridViewCellStyle3.BackColor = System.Drawing.Color.WhiteSmoke;
     this.beneficiosGridView.AlternatingRowsDefaultCellStyle = dataGridViewCellStyle3;
     this.beneficiosGridView.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.beneficiosGridView.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
     this.benTipoBeneficio,
     this.benNumero,
     this.benDIB,
     this.benSSCC,
     this.benDivisor,
     this.benMedia,
     this.benFP,
     this.benSB,
     this.benCC,
     this.benRMI,
     this.benTS});
     this.beneficiosGridView.EditMode = System.Windows.Forms.DataGridViewEditMode.EditOnEnter;
     this.beneficiosGridView.Location = new System.Drawing.Point(6, 19);
     this.beneficiosGridView.Name = "beneficiosGridView";
     this.beneficiosGridView.Size = new System.Drawing.Size(1117, 483);
     this.beneficiosGridView.TabIndex = 22;
     //
     // benTipoBeneficio
     //
     this.benTipoBeneficio.DataPropertyName = "TipoBeneficio";
     this.benTipoBeneficio.HeaderText = "Tipo de Beneficio";
     this.benTipoBeneficio.Name = "benTipoBeneficio";
     this.benTipoBeneficio.Width = 125;
     //
     // benNumero
     //
     this.benNumero.DataPropertyName = "Numero";
     this.benNumero.HeaderText = "Nº Benefício";
     this.benNumero.Name = "benNumero";
     this.benNumero.Width = 85;
     //
     // benDIB
     //
     this.benDIB.DataPropertyName = "InicioBeneficio";
     this.benDIB.HeaderText = "DIB";
     this.benDIB.Name = "benDIB";
     this.benDIB.Width = 80;
     //
     // benSSCC
     //
     this.benSSCC.DataPropertyName = "SomaSalariosContribuicao";
     this.benSSCC.HeaderText = "SSCC";
     this.benSSCC.Name = "benSSCC";
     this.benSSCC.Width = 95;
     //
     // benDivisor
     //
     this.benDivisor.DataPropertyName = "Divisor";
     this.benDivisor.HeaderText = "Divisor";
     this.benDivisor.Name = "benDivisor";
     this.benDivisor.Width = 90;
     //
     // benMedia
     //
     this.benMedia.DataPropertyName = "Media";
     this.benMedia.HeaderText = "Média";
     this.benMedia.Name = "benMedia";
     //
     // benFP
     //
     this.benFP.DataPropertyName = "FatorPrevidenciario";
     this.benFP.HeaderText = "FP";
     this.benFP.Name = "benFP";
     //
     // benSB
     //
     this.benSB.DataPropertyName = "SalarioBeneficio";
     this.benSB.HeaderText = "SB";
     this.benSB.Name = "benSB";
     //
     // benCC
     //
     this.benCC.DataPropertyName = "CoeficienteCalculo";
     this.benCC.HeaderText = "CC";
     this.benCC.Name = "benCC";
     //
     // benRMI
     //
     this.benRMI.DataPropertyName = "RendaMensalInicial";
     this.benRMI.HeaderText = "RMI";
     this.benRMI.Name = "benRMI";
     //
     // benTS
     //
     this.benTS.DataPropertyName = "TempoContribuicao";
     this.benTS.HeaderText = "TS";
     this.benTS.Name = "benTS";
     //
     // tabPage6
     //
     this.tabPage6.BackColor = System.Drawing.Color.AliceBlue;
     this.tabPage6.Controls.Add(this.grupoGridView);
     this.tabPage6.Controls.Add(this.groupBox7);
     this.tabPage6.Location = new System.Drawing.Point(4, 25);
     this.tabPage6.Name = "tabPage6";
     this.tabPage6.Padding = new System.Windows.Forms.Padding(3);
     this.tabPage6.Size = new System.Drawing.Size(1142, 517);
     this.tabPage6.TabIndex = 5;
     this.tabPage6.Text = "Grupo";
     //
     // grupoGridView
     //
     this.grupoGridView.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.grupoGridView.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
     this.grpNome});
     this.grupoGridView.Location = new System.Drawing.Point(18, 25);
     this.grupoGridView.Name = "grupoGridView";
     this.grupoGridView.Size = new System.Drawing.Size(397, 269);
     this.grupoGridView.TabIndex = 1;
     //
     // grpNome
     //
     this.grpNome.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.Fill;
     this.grpNome.DataPropertyName = "GrupoDiferencial";
     this.grpNome.HeaderText = "Nome do Grupo";
     this.grpNome.Name = "grpNome";
     //
     // groupBox7
     //
     this.groupBox7.Location = new System.Drawing.Point(7, 6);
     this.groupBox7.Name = "groupBox7";
     this.groupBox7.Size = new System.Drawing.Size(419, 294);
     this.groupBox7.TabIndex = 46;
     this.groupBox7.TabStop = false;
     //
     // tabPage7
     //
     this.tabPage7.BackColor = System.Drawing.Color.AliceBlue;
     this.tabPage7.Controls.Add(this.groupBox1);
     this.tabPage7.Controls.Add(this.groupBox6);
     this.tabPage7.Location = new System.Drawing.Point(4, 25);
     this.tabPage7.Name = "tabPage7";
     this.tabPage7.Padding = new System.Windows.Forms.Padding(3);
     this.tabPage7.Size = new System.Drawing.Size(1142, 517);
     this.tabPage7.TabIndex = 6;
     this.tabPage7.Text = "Histórico de Atendimento";
     //
     // groupBox1
     //
     this.groupBox1.Controls.Add(this.colorComboBox1);
     this.groupBox1.Controls.Add(this.buttonBar);
     this.groupBox1.Controls.Add(this.txtAtendimento);
     this.groupBox1.Location = new System.Drawing.Point(13, 12);
     this.groupBox1.Name = "groupBox1";
     this.groupBox1.Size = new System.Drawing.Size(1117, 496);
     this.groupBox1.TabIndex = 2;
     this.groupBox1.TabStop = false;
     this.groupBox1.Text = "Atendimento";
     //
     // colorComboBox1
     //
     this.colorComboBox1.DisplayMember = "Name";
     this.colorComboBox1.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
     this.colorComboBox1.FormattingEnabled = true;
     this.colorComboBox1.Items.AddRange(new object[] {
     "Transparent",
     "AliceBlue",
     "AntiqueWhite",
     "Aqua",
     "Aquamarine",
     "Azure",
     "Beige",
     "Bisque",
     "Black",
     "BlanchedAlmond",
     "Blue",
     "BlueViolet",
     "Brown",
     "BurlyWood",
     "CadetBlue",
     "Chartreuse",
     "Chocolate",
     "Coral",
     "CornflowerBlue",
     "Cornsilk",
     "Crimson",
     "Cyan",
     "DarkBlue",
     "DarkCyan",
     "DarkGoldenrod",
     "DarkGray",
     "DarkGreen",
     "DarkKhaki",
     "DarkMagenta",
     "DarkOliveGreen",
     "DarkOrange",
     "DarkOrchid",
     "DarkRed",
     "DarkSalmon",
     "DarkSeaGreen",
     "DarkSlateBlue",
     "DarkSlateGray",
     "DarkTurquoise",
     "DarkViolet",
     "DeepPink",
     "DeepSkyBlue",
     "DimGray",
     "DodgerBlue",
     "Firebrick",
     "FloralWhite",
     "ForestGreen",
     "Fuchsia",
     "Gainsboro",
     "GhostWhite",
     "Gold",
     "Goldenrod",
     "Gray",
     "Green",
     "GreenYellow",
     "Honeydew",
     "HotPink",
     "IndianRed",
     "Indigo",
     "Ivory",
     "Khaki",
     "Lavender",
     "LavenderBlush",
     "LawnGreen",
     "LemonChiffon",
     "LightBlue",
     "LightCoral",
     "LightCyan",
     "LightGoldenrodYellow",
     "LightGray",
     "LightGreen",
     "LightPink",
     "LightSalmon",
     "LightSeaGreen",
     "LightSkyBlue",
     "LightSlateGray",
     "LightSteelBlue",
     "LightYellow",
     "Lime",
     "LimeGreen",
     "Linen",
     "Magenta",
     "Maroon",
     "MediumAquamarine",
     "MediumBlue",
     "MediumOrchid",
     "MediumPurple",
     "MediumSeaGreen",
     "MediumSlateBlue",
     "MediumSpringGreen",
     "MediumTurquoise",
     "MediumVioletRed",
     "MidnightBlue",
     "MintCream",
     "MistyRose",
     "Moccasin",
     "NavajoWhite",
     "Navy",
     "OldLace",
     "Olive",
     "OliveDrab",
     "Orange",
     "OrangeRed",
     "Orchid",
     "PaleGoldenrod",
     "PaleGreen",
     "PaleTurquoise",
     "PaleVioletRed",
     "PapayaWhip",
     "PeachPuff",
     "Peru",
     "Pink",
     "Plum",
     "PowderBlue",
     "Purple",
     "Red",
     "RosyBrown",
     "RoyalBlue",
     "SaddleBrown",
     "Salmon",
     "SandyBrown",
     "SeaGreen",
     "SeaShell",
     "Sienna",
     "Silver",
     "SkyBlue",
     "SlateBlue",
     "SlateGray",
     "Snow",
     "SpringGreen",
     "SteelBlue",
     "Tan",
     "Teal",
     "Thistle",
     "Tomato",
     "Turquoise",
     "Violet",
     "Wheat",
     "White",
     "WhiteSmoke",
     "Yellow",
     "YellowGreen",
     "Transparent",
     "AliceBlue",
     "AntiqueWhite",
     "Aqua",
     "Aquamarine",
     "Azure",
     "Beige",
     "Bisque",
     "Black",
     "BlanchedAlmond",
     "Blue",
     "BlueViolet",
     "Brown",
     "BurlyWood",
     "CadetBlue",
     "Chartreuse",
     "Chocolate",
     "Coral",
     "CornflowerBlue",
     "Cornsilk",
     "Crimson",
     "Cyan",
     "DarkBlue",
     "DarkCyan",
     "DarkGoldenrod",
     "DarkGray",
     "DarkGreen",
     "DarkKhaki",
     "DarkMagenta",
     "DarkOliveGreen",
     "DarkOrange",
     "DarkOrchid",
     "DarkRed",
     "DarkSalmon",
     "DarkSeaGreen",
     "DarkSlateBlue",
     "DarkSlateGray",
     "DarkTurquoise",
     "DarkViolet",
     "DeepPink",
     "DeepSkyBlue",
     "DimGray",
     "DodgerBlue",
     "Firebrick",
     "FloralWhite",
     "ForestGreen",
     "Fuchsia",
     "Gainsboro",
     "GhostWhite",
     "Gold",
     "Goldenrod",
     "Gray",
     "Green",
     "GreenYellow",
     "Honeydew",
     "HotPink",
     "IndianRed",
     "Indigo",
     "Ivory",
     "Khaki",
     "Lavender",
     "LavenderBlush",
     "LawnGreen",
     "LemonChiffon",
     "LightBlue",
     "LightCoral",
     "LightCyan",
     "LightGoldenrodYellow",
     "LightGray",
     "LightGreen",
     "LightPink",
     "LightSalmon",
     "LightSeaGreen",
     "LightSkyBlue",
     "LightSlateGray",
     "LightSteelBlue",
     "LightYellow",
     "Lime",
     "LimeGreen",
     "Linen",
     "Magenta",
     "Maroon",
     "MediumAquamarine",
     "MediumBlue",
     "MediumOrchid",
     "MediumPurple",
     "MediumSeaGreen",
     "MediumSlateBlue",
     "MediumSpringGreen",
     "MediumTurquoise",
     "MediumVioletRed",
     "MidnightBlue",
     "MintCream",
     "MistyRose",
     "Moccasin",
     "NavajoWhite",
     "Navy",
     "OldLace",
     "Olive",
     "OliveDrab",
     "Orange",
     "OrangeRed",
     "Orchid",
     "PaleGoldenrod",
     "PaleGreen",
     "PaleTurquoise",
     "PaleVioletRed",
     "PapayaWhip",
     "PeachPuff",
     "Peru",
     "Pink",
     "Plum",
     "PowderBlue",
     "Purple",
     "Red",
     "RosyBrown",
     "RoyalBlue",
     "SaddleBrown",
     "Salmon",
     "SandyBrown",
     "SeaGreen",
     "SeaShell",
     "Sienna",
     "Silver",
     "SkyBlue",
     "SlateBlue",
     "SlateGray",
     "Snow",
     "SpringGreen",
     "SteelBlue",
     "Tan",
     "Teal",
     "Thistle",
     "Tomato",
     "Turquoise",
     "Violet",
     "Wheat",
     "White",
     "WhiteSmoke",
     "Yellow",
     "YellowGreen",
     "Transparent",
     "AliceBlue",
     "AntiqueWhite",
     "Aqua",
     "Aquamarine",
     "Azure",
     "Beige",
     "Bisque",
     "Black",
     "BlanchedAlmond",
     "Blue",
     "BlueViolet",
     "Brown",
     "BurlyWood",
     "CadetBlue",
     "Chartreuse",
     "Chocolate",
     "Coral",
     "CornflowerBlue",
     "Cornsilk",
     "Crimson",
     "Cyan",
     "DarkBlue",
     "DarkCyan",
     "DarkGoldenrod",
     "DarkGray",
     "DarkGreen",
     "DarkKhaki",
     "DarkMagenta",
     "DarkOliveGreen",
     "DarkOrange",
     "DarkOrchid",
     "DarkRed",
     "DarkSalmon",
     "DarkSeaGreen",
     "DarkSlateBlue",
     "DarkSlateGray",
     "DarkTurquoise",
     "DarkViolet",
     "DeepPink",
     "DeepSkyBlue",
     "DimGray",
     "DodgerBlue",
     "Firebrick",
     "FloralWhite",
     "ForestGreen",
     "Fuchsia",
     "Gainsboro",
     "GhostWhite",
     "Gold",
     "Goldenrod",
     "Gray",
     "Green",
     "GreenYellow",
     "Honeydew",
     "HotPink",
     "IndianRed",
     "Indigo",
     "Ivory",
     "Khaki",
     "Lavender",
     "LavenderBlush",
     "LawnGreen",
     "LemonChiffon",
     "LightBlue",
     "LightCoral",
     "LightCyan",
     "LightGoldenrodYellow",
     "LightGray",
     "LightGreen",
     "LightPink",
     "LightSalmon",
     "LightSeaGreen",
     "LightSkyBlue",
     "LightSlateGray",
     "LightSteelBlue",
     "LightYellow",
     "Lime",
     "LimeGreen",
     "Linen",
     "Magenta",
     "Maroon",
     "MediumAquamarine",
     "MediumBlue",
     "MediumOrchid",
     "MediumPurple",
     "MediumSeaGreen",
     "MediumSlateBlue",
     "MediumSpringGreen",
     "MediumTurquoise",
     "MediumVioletRed",
     "MidnightBlue",
     "MintCream",
     "MistyRose",
     "Moccasin",
     "NavajoWhite",
     "Navy",
     "OldLace",
     "Olive",
     "OliveDrab",
     "Orange",
     "OrangeRed",
     "Orchid",
     "PaleGoldenrod",
     "PaleGreen",
     "PaleTurquoise",
     "PaleVioletRed",
     "PapayaWhip",
     "PeachPuff",
     "Peru",
     "Pink",
     "Plum",
     "PowderBlue",
     "Purple",
     "Red",
     "RosyBrown",
     "RoyalBlue",
     "SaddleBrown",
     "Salmon",
     "SandyBrown",
     "SeaGreen",
     "SeaShell",
     "Sienna",
     "Silver",
     "SkyBlue",
     "SlateBlue",
     "SlateGray",
     "Snow",
     "SpringGreen",
     "SteelBlue",
     "Tan",
     "Teal",
     "Thistle",
     "Tomato",
     "Turquoise",
     "Violet",
     "Wheat",
     "White",
     "WhiteSmoke",
     "Yellow",
     "YellowGreen",
     "Transparent",
     "AliceBlue",
     "AntiqueWhite",
     "Aqua",
     "Aquamarine",
     "Azure",
     "Beige",
     "Bisque",
     "Black",
     "BlanchedAlmond",
     "Blue",
     "BlueViolet",
     "Brown",
     "BurlyWood",
     "CadetBlue",
     "Chartreuse",
     "Chocolate",
     "Coral",
     "CornflowerBlue",
     "Cornsilk",
     "Crimson",
     "Cyan",
     "DarkBlue",
     "DarkCyan",
     "DarkGoldenrod",
     "DarkGray",
     "DarkGreen",
     "DarkKhaki",
     "DarkMagenta",
     "DarkOliveGreen",
     "DarkOrange",
     "DarkOrchid",
     "DarkRed",
     "DarkSalmon",
     "DarkSeaGreen",
     "DarkSlateBlue",
     "DarkSlateGray",
     "DarkTurquoise",
     "DarkViolet",
     "DeepPink",
     "DeepSkyBlue",
     "DimGray",
     "DodgerBlue",
     "Firebrick",
     "FloralWhite",
     "ForestGreen",
     "Fuchsia",
     "Gainsboro",
     "GhostWhite",
     "Gold",
     "Goldenrod",
     "Gray",
     "Green",
     "GreenYellow",
     "Honeydew",
     "HotPink",
     "IndianRed",
     "Indigo",
     "Ivory",
     "Khaki",
     "Lavender",
     "LavenderBlush",
     "LawnGreen",
     "LemonChiffon",
     "LightBlue",
     "LightCoral",
     "LightCyan",
     "LightGoldenrodYellow",
     "LightGray",
     "LightGreen",
     "LightPink",
     "LightSalmon",
     "LightSeaGreen",
     "LightSkyBlue",
     "LightSlateGray",
     "LightSteelBlue",
     "LightYellow",
     "Lime",
     "LimeGreen",
     "Linen",
     "Magenta",
     "Maroon",
     "MediumAquamarine",
     "MediumBlue",
     "MediumOrchid",
     "MediumPurple",
     "MediumSeaGreen",
     "MediumSlateBlue",
     "MediumSpringGreen",
     "MediumTurquoise",
     "MediumVioletRed",
     "MidnightBlue",
     "MintCream",
     "MistyRose",
     "Moccasin",
     "NavajoWhite",
     "Navy",
     "OldLace",
     "Olive",
     "OliveDrab",
     "Orange",
     "OrangeRed",
     "Orchid",
     "PaleGoldenrod",
     "PaleGreen",
     "PaleTurquoise",
     "PaleVioletRed",
     "PapayaWhip",
     "PeachPuff",
     "Peru",
     "Pink",
     "Plum",
     "PowderBlue",
     "Purple",
     "Red",
     "RosyBrown",
     "RoyalBlue",
     "SaddleBrown",
     "Salmon",
     "SandyBrown",
     "SeaGreen",
     "SeaShell",
     "Sienna",
     "Silver",
     "SkyBlue",
     "SlateBlue",
     "SlateGray",
     "Snow",
     "SpringGreen",
     "SteelBlue",
     "Tan",
     "Teal",
     "Thistle",
     "Tomato",
     "Turquoise",
     "Violet",
     "Wheat",
     "White",
     "WhiteSmoke",
     "Yellow",
     "YellowGreen",
     "Transparent",
     "AliceBlue",
     "AntiqueWhite",
     "Aqua",
     "Aquamarine",
     "Azure",
     "Beige",
     "Bisque",
     "Black",
     "BlanchedAlmond",
     "Blue",
     "BlueViolet",
     "Brown",
     "BurlyWood",
     "CadetBlue",
     "Chartreuse",
     "Chocolate",
     "Coral",
     "CornflowerBlue",
     "Cornsilk",
     "Crimson",
     "Cyan",
     "DarkBlue",
     "DarkCyan",
     "DarkGoldenrod",
     "DarkGray",
     "DarkGreen",
     "DarkKhaki",
     "DarkMagenta",
     "DarkOliveGreen",
     "DarkOrange",
     "DarkOrchid",
     "DarkRed",
     "DarkSalmon",
     "DarkSeaGreen",
     "DarkSlateBlue",
     "DarkSlateGray",
     "DarkTurquoise",
     "DarkViolet",
     "DeepPink",
     "DeepSkyBlue",
     "DimGray",
     "DodgerBlue",
     "Firebrick",
     "FloralWhite",
     "ForestGreen",
     "Fuchsia",
     "Gainsboro",
     "GhostWhite",
     "Gold",
     "Goldenrod",
     "Gray",
     "Green",
     "GreenYellow",
     "Honeydew",
     "HotPink",
     "IndianRed",
     "Indigo",
     "Ivory",
     "Khaki",
     "Lavender",
     "LavenderBlush",
     "LawnGreen",
     "LemonChiffon",
     "LightBlue",
     "LightCoral",
     "LightCyan",
     "LightGoldenrodYellow",
     "LightGray",
     "LightGreen",
     "LightPink",
     "LightSalmon",
     "LightSeaGreen",
     "LightSkyBlue",
     "LightSlateGray",
     "LightSteelBlue",
     "LightYellow",
     "Lime",
     "LimeGreen",
     "Linen",
     "Magenta",
     "Maroon",
     "MediumAquamarine",
     "MediumBlue",
     "MediumOrchid",
     "MediumPurple",
     "MediumSeaGreen",
     "MediumSlateBlue",
     "MediumSpringGreen",
     "MediumTurquoise",
     "MediumVioletRed",
     "MidnightBlue",
     "MintCream",
     "MistyRose",
     "Moccasin",
     "NavajoWhite",
     "Navy",
     "OldLace",
     "Olive",
     "OliveDrab",
     "Orange",
     "OrangeRed",
     "Orchid",
     "PaleGoldenrod",
     "PaleGreen",
     "PaleTurquoise",
     "PaleVioletRed",
     "PapayaWhip",
     "PeachPuff",
     "Peru",
     "Pink",
     "Plum",
     "PowderBlue",
     "Purple",
     "Red",
     "RosyBrown",
     "RoyalBlue",
     "SaddleBrown",
     "Salmon",
     "SandyBrown",
     "SeaGreen",
     "SeaShell",
     "Sienna",
     "Silver",
     "SkyBlue",
     "SlateBlue",
     "SlateGray",
     "Snow",
     "SpringGreen",
     "SteelBlue",
     "Tan",
     "Teal",
     "Thistle",
     "Tomato",
     "Turquoise",
     "Violet",
     "Wheat",
     "White",
     "WhiteSmoke",
     "Yellow",
     "YellowGreen",
     "Transparent",
     "AliceBlue",
     "AntiqueWhite",
     "Aqua",
     "Aquamarine",
     "Azure",
     "Beige",
     "Bisque",
     "Black",
     "BlanchedAlmond",
     "Blue",
     "BlueViolet",
     "Brown",
     "BurlyWood",
     "CadetBlue",
     "Chartreuse",
     "Chocolate",
     "Coral",
     "CornflowerBlue",
     "Cornsilk",
     "Crimson",
     "Cyan",
     "DarkBlue",
     "DarkCyan",
     "DarkGoldenrod",
     "DarkGray",
     "DarkGreen",
     "DarkKhaki",
     "DarkMagenta",
     "DarkOliveGreen",
     "DarkOrange",
     "DarkOrchid",
     "DarkRed",
     "DarkSalmon",
     "DarkSeaGreen",
     "DarkSlateBlue",
     "DarkSlateGray",
     "DarkTurquoise",
     "DarkViolet",
     "DeepPink",
     "DeepSkyBlue",
     "DimGray",
     "DodgerBlue",
     "Firebrick",
     "FloralWhite",
     "ForestGreen",
     "Fuchsia",
     "Gainsboro",
     "GhostWhite",
     "Gold",
     "Goldenrod",
     "Gray",
     "Green",
     "GreenYellow",
     "Honeydew",
     "HotPink",
     "IndianRed",
     "Indigo",
     "Ivory",
     "Khaki",
     "Lavender",
     "LavenderBlush",
     "LawnGreen",
     "LemonChiffon",
     "LightBlue",
     "LightCoral",
     "LightCyan",
     "LightGoldenrodYellow",
     "LightGray",
     "LightGreen",
     "LightPink",
     "LightSalmon",
     "LightSeaGreen",
     "LightSkyBlue",
     "LightSlateGray",
     "LightSteelBlue",
     "LightYellow",
     "Lime",
     "LimeGreen",
     "Linen",
     "Magenta",
     "Maroon",
     "MediumAquamarine",
     "MediumBlue",
     "MediumOrchid",
     "MediumPurple",
     "MediumSeaGreen",
     "MediumSlateBlue",
     "MediumSpringGreen",
     "MediumTurquoise",
     "MediumVioletRed",
     "MidnightBlue",
     "MintCream",
     "MistyRose",
     "Moccasin",
     "NavajoWhite",
     "Navy",
     "OldLace",
     "Olive",
     "OliveDrab",
     "Orange",
     "OrangeRed",
     "Orchid",
     "PaleGoldenrod",
     "PaleGreen",
     "PaleTurquoise",
     "PaleVioletRed",
     "PapayaWhip",
     "PeachPuff",
     "Peru",
     "Pink",
     "Plum",
     "PowderBlue",
     "Purple",
     "Red",
     "RosyBrown",
     "RoyalBlue",
     "SaddleBrown",
     "Salmon",
     "SandyBrown",
     "SeaGreen",
     "SeaShell",
     "Sienna",
     "Silver",
     "SkyBlue",
     "SlateBlue",
     "SlateGray",
     "Snow",
     "SpringGreen",
     "SteelBlue",
     "Tan",
     "Teal",
     "Thistle",
     "Tomato",
     "Turquoise",
     "Violet",
     "Wheat",
     "White",
     "WhiteSmoke",
     "Yellow",
     "YellowGreen",
     "Transparent",
     "AliceBlue",
     "AntiqueWhite",
     "Aqua",
     "Aquamarine",
     "Azure",
     "Beige",
     "Bisque",
     "Black",
     "BlanchedAlmond",
     "Blue",
     "BlueViolet",
     "Brown",
     "BurlyWood",
     "CadetBlue",
     "Chartreuse",
     "Chocolate",
     "Coral",
     "CornflowerBlue",
     "Cornsilk",
     "Crimson",
     "Cyan",
     "DarkBlue",
     "DarkCyan",
     "DarkGoldenrod",
     "DarkGray",
     "DarkGreen",
     "DarkKhaki",
     "DarkMagenta",
     "DarkOliveGreen",
     "DarkOrange",
     "DarkOrchid",
     "DarkRed",
     "DarkSalmon",
     "DarkSeaGreen",
     "DarkSlateBlue",
     "DarkSlateGray",
     "DarkTurquoise",
     "DarkViolet",
     "DeepPink",
     "DeepSkyBlue",
     "DimGray",
     "DodgerBlue",
     "Firebrick",
     "FloralWhite",
     "ForestGreen",
     "Fuchsia",
     "Gainsboro",
     "GhostWhite",
     "Gold",
     "Goldenrod",
     "Gray",
     "Green",
     "GreenYellow",
     "Honeydew",
     "HotPink",
     "IndianRed",
     "Indigo",
     "Ivory",
     "Khaki",
     "Lavender",
     "LavenderBlush",
     "LawnGreen",
     "LemonChiffon",
     "LightBlue",
     "LightCoral",
     "LightCyan",
     "LightGoldenrodYellow",
     "LightGray",
     "LightGreen",
     "LightPink",
     "LightSalmon",
     "LightSeaGreen",
     "LightSkyBlue",
     "LightSlateGray",
     "LightSteelBlue",
     "LightYellow",
     "Lime",
     "LimeGreen",
     "Linen",
     "Magenta",
     "Maroon",
     "MediumAquamarine",
     "MediumBlue",
     "MediumOrchid",
     "MediumPurple",
     "MediumSeaGreen",
     "MediumSlateBlue",
     "MediumSpringGreen",
     "MediumTurquoise",
     "MediumVioletRed",
     "MidnightBlue",
     "MintCream",
     "MistyRose",
     "Moccasin",
     "NavajoWhite",
     "Navy",
     "OldLace",
     "Olive",
     "OliveDrab",
     "Orange",
     "OrangeRed",
     "Orchid",
     "PaleGoldenrod",
     "PaleGreen",
     "PaleTurquoise",
     "PaleVioletRed",
     "PapayaWhip",
     "PeachPuff",
     "Peru",
     "Pink",
     "Plum",
     "PowderBlue",
     "Purple",
     "Red",
     "RosyBrown",
     "RoyalBlue",
     "SaddleBrown",
     "Salmon",
     "SandyBrown",
     "SeaGreen",
     "SeaShell",
     "Sienna",
     "Silver",
     "SkyBlue",
     "SlateBlue",
     "SlateGray",
     "Snow",
     "SpringGreen",
     "SteelBlue",
     "Tan",
     "Teal",
     "Thistle",
     "Tomato",
     "Turquoise",
     "Violet",
     "Wheat",
     "White",
     "WhiteSmoke",
     "Yellow",
     "YellowGreen",
     "Transparent",
     "AliceBlue",
     "AntiqueWhite",
     "Aqua",
     "Aquamarine",
     "Azure",
     "Beige",
     "Bisque",
     "Black",
     "BlanchedAlmond",
     "Blue",
     "BlueViolet",
     "Brown",
     "BurlyWood",
     "CadetBlue",
     "Chartreuse",
     "Chocolate",
     "Coral",
     "CornflowerBlue",
     "Cornsilk",
     "Crimson",
     "Cyan",
     "DarkBlue",
     "DarkCyan",
     "DarkGoldenrod",
     "DarkGray",
     "DarkGreen",
     "DarkKhaki",
     "DarkMagenta",
     "DarkOliveGreen",
     "DarkOrange",
     "DarkOrchid",
     "DarkRed",
     "DarkSalmon",
     "DarkSeaGreen",
     "DarkSlateBlue",
     "DarkSlateGray",
     "DarkTurquoise",
     "DarkViolet",
     "DeepPink",
     "DeepSkyBlue",
     "DimGray",
     "DodgerBlue",
     "Firebrick",
     "FloralWhite",
     "ForestGreen",
     "Fuchsia",
     "Gainsboro",
     "GhostWhite",
     "Gold",
     "Goldenrod",
     "Gray",
     "Green",
     "GreenYellow",
     "Honeydew",
     "HotPink",
     "IndianRed",
     "Indigo",
     "Ivory",
     "Khaki",
     "Lavender",
     "LavenderBlush",
     "LawnGreen",
     "LemonChiffon",
     "LightBlue",
     "LightCoral",
     "LightCyan",
     "LightGoldenrodYellow",
     "LightGray",
     "LightGreen",
     "LightPink",
     "LightSalmon",
     "LightSeaGreen",
     "LightSkyBlue",
     "LightSlateGray",
     "LightSteelBlue",
     "LightYellow",
     "Lime",
     "LimeGreen",
     "Linen",
     "Magenta",
     "Maroon",
     "MediumAquamarine",
     "MediumBlue",
     "MediumOrchid",
     "MediumPurple",
     "MediumSeaGreen",
     "MediumSlateBlue",
     "MediumSpringGreen",
     "MediumTurquoise",
     "MediumVioletRed",
     "MidnightBlue",
     "MintCream",
     "MistyRose",
     "Moccasin",
     "NavajoWhite",
     "Navy",
     "OldLace",
     "Olive",
     "OliveDrab",
     "Orange",
     "OrangeRed",
     "Orchid",
     "PaleGoldenrod",
     "PaleGreen",
     "PaleTurquoise",
     "PaleVioletRed",
     "PapayaWhip",
     "PeachPuff",
     "Peru",
     "Pink",
     "Plum",
     "PowderBlue",
     "Purple",
     "Red",
     "RosyBrown",
     "RoyalBlue",
     "SaddleBrown",
     "Salmon",
     "SandyBrown",
     "SeaGreen",
     "SeaShell",
     "Sienna",
     "Silver",
     "SkyBlue",
     "SlateBlue",
     "SlateGray",
     "Snow",
     "SpringGreen",
     "SteelBlue",
     "Tan",
     "Teal",
     "Thistle",
     "Tomato",
     "Turquoise",
     "Violet",
     "Wheat",
     "White",
     "WhiteSmoke",
     "Yellow",
     "YellowGreen",
     "Transparent",
     "AliceBlue",
     "AntiqueWhite",
     "Aqua",
     "Aquamarine",
     "Azure",
     "Beige",
     "Bisque",
     "Black",
     "BlanchedAlmond",
     "Blue",
     "BlueViolet",
     "Brown",
     "BurlyWood",
     "CadetBlue",
     "Chartreuse",
     "Chocolate",
     "Coral",
     "CornflowerBlue",
     "Cornsilk",
     "Crimson",
     "Cyan",
     "DarkBlue",
     "DarkCyan",
     "DarkGoldenrod",
     "DarkGray",
     "DarkGreen",
     "DarkKhaki",
     "DarkMagenta",
     "DarkOliveGreen",
     "DarkOrange",
     "DarkOrchid",
     "DarkRed",
     "DarkSalmon",
     "DarkSeaGreen",
     "DarkSlateBlue",
     "DarkSlateGray",
     "DarkTurquoise",
     "DarkViolet",
     "DeepPink",
     "DeepSkyBlue",
     "DimGray",
     "DodgerBlue",
     "Firebrick",
     "FloralWhite",
     "ForestGreen",
     "Fuchsia",
     "Gainsboro",
     "GhostWhite",
     "Gold",
     "Goldenrod",
     "Gray",
     "Green",
     "GreenYellow",
     "Honeydew",
     "HotPink",
     "IndianRed",
     "Indigo",
     "Ivory",
     "Khaki",
     "Lavender",
     "LavenderBlush",
     "LawnGreen",
     "LemonChiffon",
     "LightBlue",
     "LightCoral",
     "LightCyan",
     "LightGoldenrodYellow",
     "LightGray",
     "LightGreen",
     "LightPink",
     "LightSalmon",
     "LightSeaGreen",
     "LightSkyBlue",
     "LightSlateGray",
     "LightSteelBlue",
     "LightYellow",
     "Lime",
     "LimeGreen",
     "Linen",
     "Magenta",
     "Maroon",
     "MediumAquamarine",
     "MediumBlue",
     "MediumOrchid",
     "MediumPurple",
     "MediumSeaGreen",
     "MediumSlateBlue",
     "MediumSpringGreen",
     "MediumTurquoise",
     "MediumVioletRed",
     "MidnightBlue",
     "MintCream",
     "MistyRose",
     "Moccasin",
     "NavajoWhite",
     "Navy",
     "OldLace",
     "Olive",
     "OliveDrab",
     "Orange",
     "OrangeRed",
     "Orchid",
     "PaleGoldenrod",
     "PaleGreen",
     "PaleTurquoise",
     "PaleVioletRed",
     "PapayaWhip",
     "PeachPuff",
     "Peru",
     "Pink",
     "Plum",
     "PowderBlue",
     "Purple",
     "Red",
     "RosyBrown",
     "RoyalBlue",
     "SaddleBrown",
     "Salmon",
     "SandyBrown",
     "SeaGreen",
     "SeaShell",
     "Sienna",
     "Silver",
     "SkyBlue",
     "SlateBlue",
     "SlateGray",
     "Snow",
     "SpringGreen",
     "SteelBlue",
     "Tan",
     "Teal",
     "Thistle",
     "Tomato",
     "Turquoise",
     "Violet",
     "Wheat",
     "White",
     "WhiteSmoke",
     "Yellow",
     "YellowGreen",
     "Transparent",
     "AliceBlue",
     "AntiqueWhite",
     "Aqua",
     "Aquamarine",
     "Azure",
     "Beige",
     "Bisque",
     "Black",
     "BlanchedAlmond",
     "Blue",
     "BlueViolet",
     "Brown",
     "BurlyWood",
     "CadetBlue",
     "Chartreuse",
     "Chocolate",
     "Coral",
     "CornflowerBlue",
     "Cornsilk",
     "Crimson",
     "Cyan",
     "DarkBlue",
     "DarkCyan",
     "DarkGoldenrod",
     "DarkGray",
     "DarkGreen",
     "DarkKhaki",
     "DarkMagenta",
     "DarkOliveGreen",
     "DarkOrange",
     "DarkOrchid",
     "DarkRed",
     "DarkSalmon",
     "DarkSeaGreen",
     "DarkSlateBlue",
     "DarkSlateGray",
     "DarkTurquoise",
     "DarkViolet",
     "DeepPink",
     "DeepSkyBlue",
     "DimGray",
     "DodgerBlue",
     "Firebrick",
     "FloralWhite",
     "ForestGreen",
     "Fuchsia",
     "Gainsboro",
     "GhostWhite",
     "Gold",
     "Goldenrod",
     "Gray",
     "Green",
     "GreenYellow",
     "Honeydew",
     "HotPink",
     "IndianRed",
     "Indigo",
     "Ivory",
     "Khaki",
     "Lavender",
     "LavenderBlush",
     "LawnGreen",
     "LemonChiffon",
     "LightBlue",
     "LightCoral",
     "LightCyan",
     "LightGoldenrodYellow",
     "LightGray",
     "LightGreen",
     "LightPink",
     "LightSalmon",
     "LightSeaGreen",
     "LightSkyBlue",
     "LightSlateGray",
     "LightSteelBlue",
     "LightYellow",
     "Lime",
     "LimeGreen",
     "Linen",
     "Magenta",
     "Maroon",
     "MediumAquamarine",
     "MediumBlue",
     "MediumOrchid",
     "MediumPurple",
     "MediumSeaGreen",
     "MediumSlateBlue",
     "MediumSpringGreen",
     "MediumTurquoise",
     "MediumVioletRed",
     "MidnightBlue",
     "MintCream",
     "MistyRose",
     "Moccasin",
     "NavajoWhite",
     "Navy",
     "OldLace",
     "Olive",
     "OliveDrab",
     "Orange",
     "OrangeRed",
     "Orchid",
     "PaleGoldenrod",
     "PaleGreen",
     "PaleTurquoise",
     "PaleVioletRed",
     "PapayaWhip",
     "PeachPuff",
     "Peru",
     "Pink",
     "Plum",
     "PowderBlue",
     "Purple",
     "Red",
     "RosyBrown",
     "RoyalBlue",
     "SaddleBrown",
     "Salmon",
     "SandyBrown",
     "SeaGreen",
     "SeaShell",
     "Sienna",
     "Silver",
     "SkyBlue",
     "SlateBlue",
     "SlateGray",
     "Snow",
     "SpringGreen",
     "SteelBlue",
     "Tan",
     "Teal",
     "Thistle",
     "Tomato",
     "Turquoise",
     "Violet",
     "Wheat",
     "White",
     "WhiteSmoke",
     "Yellow",
     "YellowGreen",
     "Transparent",
     "AliceBlue",
     "AntiqueWhite",
     "Aqua",
     "Aquamarine",
     "Azure",
     "Beige",
     "Bisque",
     "Black",
     "BlanchedAlmond",
     "Blue",
     "BlueViolet",
     "Brown",
     "BurlyWood",
     "CadetBlue",
     "Chartreuse",
     "Chocolate",
     "Coral",
     "CornflowerBlue",
     "Cornsilk",
     "Crimson",
     "Cyan",
     "DarkBlue",
     "DarkCyan",
     "DarkGoldenrod",
     "DarkGray",
     "DarkGreen",
     "DarkKhaki",
     "DarkMagenta",
     "DarkOliveGreen",
     "DarkOrange",
     "DarkOrchid",
     "DarkRed",
     "DarkSalmon",
     "DarkSeaGreen",
     "DarkSlateBlue",
     "DarkSlateGray",
     "DarkTurquoise",
     "DarkViolet",
     "DeepPink",
     "DeepSkyBlue",
     "DimGray",
     "DodgerBlue",
     "Firebrick",
     "FloralWhite",
     "ForestGreen",
     "Fuchsia",
     "Gainsboro",
     "GhostWhite",
     "Gold",
     "Goldenrod",
     "Gray",
     "Green",
     "GreenYellow",
     "Honeydew",
     "HotPink",
     "IndianRed",
     "Indigo",
     "Ivory",
     "Khaki",
     "Lavender",
     "LavenderBlush",
     "LawnGreen",
     "LemonChiffon",
     "LightBlue",
     "LightCoral",
     "LightCyan",
     "LightGoldenrodYellow",
     "LightGray",
     "LightGreen",
     "LightPink",
     "LightSalmon",
     "LightSeaGreen",
     "LightSkyBlue",
     "LightSlateGray",
     "LightSteelBlue",
     "LightYellow",
     "Lime",
     "LimeGreen",
     "Linen",
     "Magenta",
     "Maroon",
     "MediumAquamarine",
     "MediumBlue",
     "MediumOrchid",
     "MediumPurple",
     "MediumSeaGreen",
     "MediumSlateBlue",
     "MediumSpringGreen",
     "MediumTurquoise",
     "MediumVioletRed",
     "MidnightBlue",
     "MintCream",
     "MistyRose",
     "Moccasin",
     "NavajoWhite",
     "Navy",
     "OldLace",
     "Olive",
     "OliveDrab",
     "Orange",
     "OrangeRed",
     "Orchid",
     "PaleGoldenrod",
     "PaleGreen",
     "PaleTurquoise",
     "PaleVioletRed",
     "PapayaWhip",
     "PeachPuff",
     "Peru",
     "Pink",
     "Plum",
     "PowderBlue",
     "Purple",
     "Red",
     "RosyBrown",
     "RoyalBlue",
     "SaddleBrown",
     "Salmon",
     "SandyBrown",
     "SeaGreen",
     "SeaShell",
     "Sienna",
     "Silver",
     "SkyBlue",
     "SlateBlue",
     "SlateGray",
     "Snow",
     "SpringGreen",
     "SteelBlue",
     "Tan",
     "Teal",
     "Thistle",
     "Tomato",
     "Turquoise",
     "Violet",
     "Wheat",
     "White",
     "WhiteSmoke",
     "Yellow",
     "YellowGreen",
     "Transparent",
     "AliceBlue",
     "AntiqueWhite",
     "Aqua",
     "Aquamarine",
     "Azure",
     "Beige",
     "Bisque",
     "Black",
     "BlanchedAlmond",
     "Blue",
     "BlueViolet",
     "Brown",
     "BurlyWood",
     "CadetBlue",
     "Chartreuse",
     "Chocolate",
     "Coral",
     "CornflowerBlue",
     "Cornsilk",
     "Crimson",
     "Cyan",
     "DarkBlue",
     "DarkCyan",
     "DarkGoldenrod",
     "DarkGray",
     "DarkGreen",
     "DarkKhaki",
     "DarkMagenta",
     "DarkOliveGreen",
     "DarkOrange",
     "DarkOrchid",
     "DarkRed",
     "DarkSalmon",
     "DarkSeaGreen",
     "DarkSlateBlue",
     "DarkSlateGray",
     "DarkTurquoise",
     "DarkViolet",
     "DeepPink",
     "DeepSkyBlue",
     "DimGray",
     "DodgerBlue",
     "Firebrick",
     "FloralWhite",
     "ForestGreen",
     "Fuchsia",
     "Gainsboro",
     "GhostWhite",
     "Gold",
     "Goldenrod",
     "Gray",
     "Green",
     "GreenYellow",
     "Honeydew",
     "HotPink",
     "IndianRed",
     "Indigo",
     "Ivory",
     "Khaki",
     "Lavender",
     "LavenderBlush",
     "LawnGreen",
     "LemonChiffon",
     "LightBlue",
     "LightCoral",
     "LightCyan",
     "LightGoldenrodYellow",
     "LightGray",
     "LightGreen",
     "LightPink",
     "LightSalmon",
     "LightSeaGreen",
     "LightSkyBlue",
     "LightSlateGray",
     "LightSteelBlue",
     "LightYellow",
     "Lime",
     "LimeGreen",
     "Linen",
     "Magenta",
     "Maroon",
     "MediumAquamarine",
     "MediumBlue",
     "MediumOrchid",
     "MediumPurple",
     "MediumSeaGreen",
     "MediumSlateBlue",
     "MediumSpringGreen",
     "MediumTurquoise",
     "MediumVioletRed",
     "MidnightBlue",
     "MintCream",
     "MistyRose",
     "Moccasin",
     "NavajoWhite",
     "Navy",
     "OldLace",
     "Olive",
     "OliveDrab",
     "Orange",
     "OrangeRed",
     "Orchid",
     "PaleGoldenrod",
     "PaleGreen",
     "PaleTurquoise",
     "PaleVioletRed",
     "PapayaWhip",
     "PeachPuff",
     "Peru",
     "Pink",
     "Plum",
     "PowderBlue",
     "Purple",
     "Red",
     "RosyBrown",
     "RoyalBlue",
     "SaddleBrown",
     "Salmon",
     "SandyBrown",
     "SeaGreen",
     "SeaShell",
     "Sienna",
     "Silver",
     "SkyBlue",
     "SlateBlue",
     "SlateGray",
     "Snow",
     "SpringGreen",
     "SteelBlue",
     "Tan",
     "Teal",
     "Thistle",
     "Tomato",
     "Turquoise",
     "Violet",
     "Wheat",
     "White",
     "WhiteSmoke",
     "Yellow",
     "YellowGreen",
     "Transparent",
     "AliceBlue",
     "AntiqueWhite",
     "Aqua",
     "Aquamarine",
     "Azure",
     "Beige",
     "Bisque",
     "Black",
     "BlanchedAlmond",
     "Blue",
     "BlueViolet",
     "Brown",
     "BurlyWood",
     "CadetBlue",
     "Chartreuse",
     "Chocolate",
     "Coral",
     "CornflowerBlue",
     "Cornsilk",
     "Crimson",
     "Cyan",
     "DarkBlue",
     "DarkCyan",
     "DarkGoldenrod",
     "DarkGray",
     "DarkGreen",
     "DarkKhaki",
     "DarkMagenta",
     "DarkOliveGreen",
     "DarkOrange",
     "DarkOrchid",
     "DarkRed",
     "DarkSalmon",
     "DarkSeaGreen",
     "DarkSlateBlue",
     "DarkSlateGray",
     "DarkTurquoise",
     "DarkViolet",
     "DeepPink",
     "DeepSkyBlue",
     "DimGray",
     "DodgerBlue",
     "Firebrick",
     "FloralWhite",
     "ForestGreen",
     "Fuchsia",
     "Gainsboro",
     "GhostWhite",
     "Gold",
     "Goldenrod",
     "Gray",
     "Green",
     "GreenYellow",
     "Honeydew",
     "HotPink",
     "IndianRed",
     "Indigo",
     "Ivory",
     "Khaki",
     "Lavender",
     "LavenderBlush",
     "LawnGreen",
     "LemonChiffon",
     "LightBlue",
     "LightCoral",
     "LightCyan",
     "LightGoldenrodYellow",
     "LightGray",
     "LightGreen",
     "LightPink",
     "LightSalmon",
     "LightSeaGreen",
     "LightSkyBlue",
     "LightSlateGray",
     "LightSteelBlue",
     "LightYellow",
     "Lime",
     "LimeGreen",
     "Linen",
     "Magenta",
     "Maroon",
     "MediumAquamarine",
     "MediumBlue",
     "MediumOrchid",
     "MediumPurple",
     "MediumSeaGreen",
     "MediumSlateBlue",
     "MediumSpringGreen",
     "MediumTurquoise",
     "MediumVioletRed",
     "MidnightBlue",
     "MintCream",
     "MistyRose",
     "Moccasin",
     "NavajoWhite",
     "Navy",
     "OldLace",
     "Olive",
     "OliveDrab",
     "Orange",
     "OrangeRed",
     "Orchid",
     "PaleGoldenrod",
     "PaleGreen",
     "PaleTurquoise",
     "PaleVioletRed",
     "PapayaWhip",
     "PeachPuff",
     "Peru",
     "Pink",
     "Plum",
     "PowderBlue",
     "Purple",
     "Red",
     "RosyBrown",
     "RoyalBlue",
     "SaddleBrown",
     "Salmon",
     "SandyBrown",
     "SeaGreen",
     "SeaShell",
     "Sienna",
     "Silver",
     "SkyBlue",
     "SlateBlue",
     "SlateGray",
     "Snow",
     "SpringGreen",
     "SteelBlue",
     "Tan",
     "Teal",
     "Thistle",
     "Tomato",
     "Turquoise",
     "Violet",
     "Wheat",
     "White",
     "WhiteSmoke",
     "Yellow",
     "YellowGreen",
     "Transparent",
     "AliceBlue",
     "AntiqueWhite",
     "Aqua",
     "Aquamarine",
     "Azure",
     "Beige",
     "Bisque",
     "Black",
     "BlanchedAlmond",
     "Blue",
     "BlueViolet",
     "Brown",
     "BurlyWood",
     "CadetBlue",
     "Chartreuse",
     "Chocolate",
     "Coral",
     "CornflowerBlue",
     "Cornsilk",
     "Crimson",
     "Cyan",
     "DarkBlue",
     "DarkCyan",
     "DarkGoldenrod",
     "DarkGray",
     "DarkGreen",
     "DarkKhaki",
     "DarkMagenta",
     "DarkOliveGreen",
     "DarkOrange",
     "DarkOrchid",
     "DarkRed",
     "DarkSalmon",
     "DarkSeaGreen",
     "DarkSlateBlue",
     "DarkSlateGray",
     "DarkTurquoise",
     "DarkViolet",
     "DeepPink",
     "DeepSkyBlue",
     "DimGray",
     "DodgerBlue",
     "Firebrick",
     "FloralWhite",
     "ForestGreen",
     "Fuchsia",
     "Gainsboro",
     "GhostWhite",
     "Gold",
     "Goldenrod",
     "Gray",
     "Green",
     "GreenYellow",
     "Honeydew",
     "HotPink",
     "IndianRed",
     "Indigo",
     "Ivory",
     "Khaki",
     "Lavender",
     "LavenderBlush",
     "LawnGreen",
     "LemonChiffon",
     "LightBlue",
     "LightCoral",
     "LightCyan",
     "LightGoldenrodYellow",
     "LightGray",
     "LightGreen",
     "LightPink",
     "LightSalmon",
     "LightSeaGreen",
     "LightSkyBlue",
     "LightSlateGray",
     "LightSteelBlue",
     "LightYellow",
     "Lime",
     "LimeGreen",
     "Linen",
     "Magenta",
     "Maroon",
     "MediumAquamarine",
     "MediumBlue",
     "MediumOrchid",
     "MediumPurple",
     "MediumSeaGreen",
     "MediumSlateBlue",
     "MediumSpringGreen",
     "MediumTurquoise",
     "MediumVioletRed",
     "MidnightBlue",
     "MintCream",
     "MistyRose",
     "Moccasin",
     "NavajoWhite",
     "Navy",
     "OldLace",
     "Olive",
     "OliveDrab",
     "Orange",
     "OrangeRed",
     "Orchid",
     "PaleGoldenrod",
     "PaleGreen",
     "PaleTurquoise",
     "PaleVioletRed",
     "PapayaWhip",
     "PeachPuff",
     "Peru",
     "Pink",
     "Plum",
     "PowderBlue",
     "Purple",
     "Red",
     "RosyBrown",
     "RoyalBlue",
     "SaddleBrown",
     "Salmon",
     "SandyBrown",
     "SeaGreen",
     "SeaShell",
     "Sienna",
     "Silver",
     "SkyBlue",
     "SlateBlue",
     "SlateGray",
     "Snow",
     "SpringGreen",
     "SteelBlue",
     "Tan",
     "Teal",
     "Thistle",
     "Tomato",
     "Turquoise",
     "Violet",
     "Wheat",
     "White",
     "WhiteSmoke",
     "Yellow",
     "YellowGreen"});
     this.colorComboBox1.Location = new System.Drawing.Point(815, 21);
     this.colorComboBox1.Name = "colorComboBox1";
     this.colorComboBox1.SelectedColor = System.Drawing.Color.Black;
     this.colorComboBox1.Size = new System.Drawing.Size(194, 21);
     this.colorComboBox1.TabIndex = 7;
     this.colorComboBox1.ValueMember = "Color";
     //
     // buttonBar
     //
     this.buttonBar.Location = new System.Drawing.Point(9, 20);
     this.buttonBar.Name = "buttonBar";
     this.buttonBar.Size = new System.Drawing.Size(813, 28);
     this.buttonBar.TabIndex = 5;
     this.buttonBar.Text = "buttonBar1";
     //
     // txtAtendimento
     //
     this.txtAtendimento.ButtonBar = this.buttonBar;
     this.txtAtendimento.Font = new System.Drawing.Font("Arial", 10F);
     this.txtAtendimento.HideSelection = false;
     this.txtAtendimento.Location = new System.Drawing.Point(9, 48);
     this.txtAtendimento.Name = "txtAtendimento";
     this.txtAtendimento.Size = new System.Drawing.Size(1102, 442);
     this.txtAtendimento.TabIndex = 4;
     //
     // groupBox6
     //
     this.groupBox6.Location = new System.Drawing.Point(7, 4);
     this.groupBox6.Name = "groupBox6";
     this.groupBox6.Size = new System.Drawing.Size(1129, 510);
     this.groupBox6.TabIndex = 3;
     this.groupBox6.TabStop = false;
     //
     // groupBox11
     //
     this.groupBox11.BackColor = System.Drawing.Color.WhiteSmoke;
     this.groupBox11.Controls.Add(this.btnSair);
     this.groupBox11.Controls.Add(this.label1);
     this.groupBox11.Controls.Add(this.btnCancelar);
     this.groupBox11.Controls.Add(this.codigoBusca);
     this.groupBox11.Controls.Add(this.btnSalvar);
     this.groupBox11.Controls.Add(this.btnPesquisar);
     this.groupBox11.Controls.Add(this.btnLimpar);
     this.groupBox11.Controls.Add(this.btnNovo);
     this.groupBox11.Controls.Add(this.btnExcluir);
     this.groupBox11.Controls.Add(this.btnPDF);
     this.groupBox11.Location = new System.Drawing.Point(12, 12);
     this.groupBox11.Name = "groupBox11";
     this.groupBox11.Size = new System.Drawing.Size(1176, 636);
     this.groupBox11.TabIndex = 0;
     this.groupBox11.TabStop = false;
     this.groupBox11.Text = "Cadastro de Cliente";
     //
     // btnSair
     //
     this.btnSair.Image = global::Visao.Properties.Resources.sair24;
     this.btnSair.Location = new System.Drawing.Point(264, 25);
     this.btnSair.Name = "btnSair";
     this.btnSair.Size = new System.Drawing.Size(35, 28);
     this.btnSair.TabIndex = 9;
     this.btnSair.UseVisualStyleBackColor = true;
     this.btnSair.Click += new System.EventHandler(this.button9_Click);
     //
     // btnCancelar
     //
     this.btnCancelar.Image = global::Visao.Properties.Resources.canc24;
     this.btnCancelar.Location = new System.Drawing.Point(223, 25);
     this.btnCancelar.Name = "btnCancelar";
     this.btnCancelar.Size = new System.Drawing.Size(35, 28);
     this.btnCancelar.TabIndex = 8;
     this.btnCancelar.UseVisualStyleBackColor = true;
     //
     // btnSalvar
     //
     this.btnSalvar.Image = global::Visao.Properties.Resources.conf24;
     this.btnSalvar.Location = new System.Drawing.Point(182, 25);
     this.btnSalvar.Name = "btnSalvar";
     this.btnSalvar.Size = new System.Drawing.Size(35, 28);
     this.btnSalvar.TabIndex = 7;
     this.btnSalvar.UseVisualStyleBackColor = true;
     //
     // btnPesquisar
     //
     this.btnPesquisar.Image = global::Visao.Properties.Resources.search_24x24;
     this.btnPesquisar.Location = new System.Drawing.Point(909, 25);
     this.btnPesquisar.Name = "btnPesquisar";
     this.btnPesquisar.Size = new System.Drawing.Size(35, 28);
     this.btnPesquisar.TabIndex = 2;
     this.btnPesquisar.UseVisualStyleBackColor = true;
     this.btnPesquisar.Visible = false;
     //
     // btnLimpar
     //
     this.btnLimpar.Image = global::Visao.Properties.Resources.limpar;
     this.btnLimpar.Location = new System.Drawing.Point(141, 25);
     this.btnLimpar.Name = "btnLimpar";
     this.btnLimpar.Size = new System.Drawing.Size(35, 28);
     this.btnLimpar.TabIndex = 6;
     this.btnLimpar.UseVisualStyleBackColor = true;
     //
     // btnNovo
     //
     this.btnNovo.Image = global::Visao.Properties.Resources.add24;
     this.btnNovo.Location = new System.Drawing.Point(18, 25);
     this.btnNovo.Name = "btnNovo";
     this.btnNovo.Size = new System.Drawing.Size(35, 28);
     this.btnNovo.TabIndex = 3;
     this.btnNovo.UseVisualStyleBackColor = true;
     //
     // btnExcluir
     //
     this.btnExcluir.Image = global::Visao.Properties.Resources.SairPrograma24x24;
     this.btnExcluir.Location = new System.Drawing.Point(100, 25);
     this.btnExcluir.Name = "btnExcluir";
     this.btnExcluir.Size = new System.Drawing.Size(35, 28);
     this.btnExcluir.TabIndex = 5;
     this.btnExcluir.UseVisualStyleBackColor = true;
     //
     // btnPDF
     //
     this.btnPDF.Image = global::Visao.Properties.Resources.pdf_24x24;
     this.btnPDF.Location = new System.Drawing.Point(59, 25);
     this.btnPDF.Name = "btnPDF";
     this.btnPDF.Size = new System.Drawing.Size(35, 28);
     this.btnPDF.TabIndex = 4;
     this.btnPDF.UseVisualStyleBackColor = true;
     //
     // menuGridView
     //
     this.menuGridView.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.removerLinhaContextButton});
     this.menuGridView.Name = "menuGridView";
     this.menuGridView.Size = new System.Drawing.Size(154, 26);
     //
     // removerLinhaContextButton
     //
     this.removerLinhaContextButton.Name = "removerLinhaContextButton";
     this.removerLinhaContextButton.Size = new System.Drawing.Size(153, 22);
     this.removerLinhaContextButton.Text = "&Remover Linha";
     //
     // CadastroCliente
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.BackColor = System.Drawing.Color.WhiteSmoke;
     this.ClientSize = new System.Drawing.Size(1200, 722);
     this.Controls.Add(this.tabControl1);
     this.Controls.Add(this.groupBox11);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedToolWindow;
     this.Name = "CadastroCliente";
     this.ShowIcon = false;
     this.Text = "Cadastro de Clientes";
     this.WindowState = System.Windows.Forms.FormWindowState.Maximized;
     this.Load += new System.EventHandler(this.Form1_Load);
     this.tabPage4.ResumeLayout(false);
     this.groupBox9.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.dependenteGridView)).EndInit();
     this.tabPage3.ResumeLayout(false);
     this.groupBox10.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.contatoGridView)).EndInit();
     this.tabPage2.ResumeLayout(false);
     this.groupBox4.ResumeLayout(false);
     this.groupBox4.PerformLayout();
     this.groupBox3.ResumeLayout(false);
     this.groupBox3.PerformLayout();
     this.groupBox2.ResumeLayout(false);
     this.groupBox2.PerformLayout();
     this.tabPage1.ResumeLayout(false);
     this.tabPage1.PerformLayout();
     this.groupBox5.ResumeLayout(false);
     this.groupBox5.PerformLayout();
     this.groupBox12.ResumeLayout(false);
     this.groupBox12.PerformLayout();
     this.flowLayoutPanel1.ResumeLayout(false);
     this.pnlCPF.ResumeLayout(false);
     this.pnlCPF.PerformLayout();
     this.pnlRG.ResumeLayout(false);
     this.pnlRG.PerformLayout();
     this.pnlOrgaoExpedidor.ResumeLayout(false);
     this.pnlOrgaoExpedidor.PerformLayout();
     this.pnlDataEmissao.ResumeLayout(false);
     this.pnlDataEmissao.PerformLayout();
     this.pnlTituloEleitor.ResumeLayout(false);
     this.pnlTituloEleitor.PerformLayout();
     this.pnlZona.ResumeLayout(false);
     this.pnlZona.PerformLayout();
     this.pnlSecao.ResumeLayout(false);
     this.pnlSecao.PerformLayout();
     this.pnlCNPJ.ResumeLayout(false);
     this.pnlCNPJ.PerformLayout();
     this.tabControl1.ResumeLayout(false);
     this.tabPage5.ResumeLayout(false);
     this.groupBox8.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.beneficiosGridView)).EndInit();
     this.tabPage6.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.grupoGridView)).EndInit();
     this.tabPage7.ResumeLayout(false);
     this.groupBox1.ResumeLayout(false);
     this.groupBox11.ResumeLayout(false);
     this.groupBox11.PerformLayout();
     this.menuGridView.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();
            System.Windows.Forms.Panel bottomPanel;
            System.Windows.Forms.Label lblMainWindowPage;
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(SettingsForm));
            System.Windows.Forms.Label lblSize;
            System.Windows.Forms.GroupBox groupBox15;
            System.Windows.Forms.GroupBox groupBox7;
            System.Windows.Forms.Label lblGeneralPage;
            System.Windows.Forms.Label lblEnvironment;
            System.Windows.Forms.Label lblSkillPlannerPage;
            System.Windows.Forms.Label lblNetworkPageAPIProvider;
            System.Windows.Forms.Label lblNetworkPageProxy;
            System.Windows.Forms.Label label12;
            System.Windows.Forms.Label label11;
            System.Windows.Forms.Label lblHTTP;
            System.Windows.Forms.Label lblEmailNotificationPage;
            System.Windows.Forms.Label lblEmailServer;
            System.Windows.Forms.Label lblFromAddress;
            System.Windows.Forms.Label lblToAddress;
            System.Windows.Forms.Label lblEmailPassword;
            System.Windows.Forms.Label lblEmailUsername;
            System.Windows.Forms.Label lblPortNumber;
            System.Windows.Forms.Label lblNotificationsPage;
            System.Windows.Forms.Label lblTrayIconPage;
            System.Windows.Forms.GroupBox systemTrayIconGroupBox;
            System.Windows.Forms.Label lblSchedulerUIPage;
            System.Windows.Forms.Label lblText;
            System.Windows.Forms.Label lblBlockingEvents;
            System.Windows.Forms.Label lblRecurringEvents;
            System.Windows.Forms.Label lblSimpleEvents;
            System.Windows.Forms.Label lblReminder;
            System.Windows.Forms.Label lblURI;
            System.Windows.Forms.Label lblPassword;
            System.Windows.Forms.Label lblGoogleEmail;
            System.Windows.Forms.Label lblEarlyReminder;
            System.Windows.Forms.Label lblLateReminder;
            System.Windows.Forms.Label lblExternalCalendarPage;
            System.Windows.Forms.Label lblG15Page;
            System.Windows.Forms.Label lblCycleTrainingSeconds;
            System.Windows.Forms.Label lblG15CycleCharSeconds;
            System.Windows.Forms.Label lblIgbServerPage;
            System.Windows.Forms.Label lblIGBPort;
            System.Windows.Forms.FlowLayoutPanel flowLayoutPanel28;
            System.Windows.Forms.Label igbHelpLabel;
            System.Windows.Forms.Label label1;
            System.Windows.Forms.GroupBox gbSkillBrowserIconSet;
            System.Windows.Forms.TreeNode treeNode1 = new System.Windows.Forms.TreeNode("Node1");
            System.Windows.Forms.TreeNode treeNode2 = new System.Windows.Forms.TreeNode("Node2");
            System.Windows.Forms.TreeNode treeNode3 = new System.Windows.Forms.TreeNode("Node3");
            System.Windows.Forms.TreeNode treeNode4 = new System.Windows.Forms.TreeNode("Node4");
            System.Windows.Forms.TreeNode treeNode5 = new System.Windows.Forms.TreeNode("Node5");
            System.Windows.Forms.TreeNode treeNode6 = new System.Windows.Forms.TreeNode("Node6");
            System.Windows.Forms.TreeNode treeNode7 = new System.Windows.Forms.TreeNode("Node7");
            System.Windows.Forms.TreeNode treeNode8 = new System.Windows.Forms.TreeNode("Node8");
            System.Windows.Forms.TreeNode treeNode9 = new System.Windows.Forms.TreeNode("Node0", new System.Windows.Forms.TreeNode[] {
            treeNode1,
            treeNode2,
            treeNode3,
            treeNode4,
            treeNode5,
            treeNode6,
            treeNode7,
            treeNode8});
            System.Windows.Forms.Label label2;
            System.Windows.Forms.TreeNode treeNode10 = new System.Windows.Forms.TreeNode("Updates", 11, 11);
            System.Windows.Forms.TreeNode treeNode11 = new System.Windows.Forms.TreeNode("Network", 7, 7);
            System.Windows.Forms.TreeNode treeNode12 = new System.Windows.Forms.TreeNode("Logitech Keyboards", 4, 4);
            System.Windows.Forms.TreeNode treeNode13 = new System.Windows.Forms.TreeNode("IGB Server", 3, 3);
            System.Windows.Forms.TreeNode treeNode14 = new System.Windows.Forms.TreeNode("General", 10, 10, new System.Windows.Forms.TreeNode[] {
            treeNode10,
            treeNode11,
            treeNode12,
            treeNode13});
            System.Windows.Forms.TreeNode treeNode15 = new System.Windows.Forms.TreeNode("Main Window", 6, 6);
            System.Windows.Forms.TreeNode treeNode16 = new System.Windows.Forms.TreeNode("Icons", 13, 13);
            System.Windows.Forms.TreeNode treeNode17 = new System.Windows.Forms.TreeNode("Messages", 14, 14);
            System.Windows.Forms.TreeNode treeNode18 = new System.Windows.Forms.TreeNode("Skill Planner", 8, 8, new System.Windows.Forms.TreeNode[] {
            treeNode16,
            treeNode17});
            System.Windows.Forms.TreeNode treeNode19 = new System.Windows.Forms.TreeNode("System Tray Icon", 2, 2);
            System.Windows.Forms.TreeNode treeNode20 = new System.Windows.Forms.TreeNode("External Calendar", 5, 5);
            System.Windows.Forms.TreeNode treeNode21 = new System.Windows.Forms.TreeNode("Scheduler", 1, 1, new System.Windows.Forms.TreeNode[] {
            treeNode20});
            System.Windows.Forms.TreeNode treeNode22 = new System.Windows.Forms.TreeNode("Skill Completion Mails", 12, 12);
            System.Windows.Forms.TreeNode treeNode23 = new System.Windows.Forms.TreeNode("Notifications", 9, 9, new System.Windows.Forms.TreeNode[] {
            treeNode22});
            System.Windows.Forms.TreeNode treeNode24 = new System.Windows.Forms.TreeNode("BattleClinic Service", 15, 15);
            this.applyButton = new System.Windows.Forms.Button();
            this.okButton = new System.Windows.Forms.Button();
            this.cancelButton = new System.Windows.Forms.Button();
            this.cbColorQueuedSkills = new System.Windows.Forms.CheckBox();
            this.cbShowPrereqMetSkills = new System.Windows.Forms.CheckBox();
            this.cbColorPartialSkills = new System.Windows.Forms.CheckBox();
            this.cbAlwaysShowSkillQueueTime = new System.Windows.Forms.CheckBox();
            this.cbShowNonPublicSkills = new System.Windows.Forms.CheckBox();
            this.cbShowAllPublicSkills = new System.Windows.Forms.CheckBox();
            this.cbWindowsTitleList = new System.Windows.Forms.ComboBox();
            this.cbSkillInTitle = new System.Windows.Forms.CheckBox();
            this.cbTitleToTime = new System.Windows.Forms.CheckBox();
            this.rbSystemTrayOptionsNever = new System.Windows.Forms.RadioButton();
            this.rbSystemTrayOptionsAlways = new System.Windows.Forms.RadioButton();
            this.rbSystemTrayOptionsMinimized = new System.Windows.Forms.RadioButton();
            this.igbUrlTextBox = new System.Windows.Forms.TextBox();
            this.tableLayoutPanel4 = new System.Windows.Forms.TableLayoutPanel();
            this.cbSkillIconSet = new System.Windows.Forms.ComboBox();
            this.tvlist = new System.Windows.Forms.TreeView();
            this.tableLayoutPanel1 = new System.Windows.Forms.TableLayoutPanel();
            this.label6 = new System.Windows.Forms.Label();
            this.label7 = new System.Windows.Forms.Label();
            this.label8 = new System.Windows.Forms.Label();
            this.flowLayoutPanel9 = new System.Windows.Forms.FlowLayoutPanel();
            this.checkBox1 = new System.Windows.Forms.CheckBox();
            this.checkBox2 = new System.Windows.Forms.CheckBox();
            this.checkBox3 = new System.Windows.Forms.CheckBox();
            this.chName = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
            this.ttToolTipCodes = new System.Windows.Forms.ToolTip(this.components);
            this.cbUseIncreasedContrastOnOverview = new System.Windows.Forms.CheckBox();
            this.overviewGroupCharactersInTrainingCheckBox = new System.Windows.Forms.CheckBox();
            this.overviewShowSkillQueueTrainingTimeCheckBox = new System.Windows.Forms.CheckBox();
            this.overviewShowWalletCheckBox = new System.Windows.Forms.CheckBox();
            this.overviewShowPortraitCheckBox = new System.Windows.Forms.CheckBox();
            this.cbShowOverViewTab = new System.Windows.Forms.CheckBox();
            this.colorDialog = new System.Windows.Forms.ColorDialog();
            this.treeView = new System.Windows.Forms.TreeView();
            this.imageList = new System.Windows.Forms.ImageList(this.components);
            this.leftPanel = new System.Windows.Forms.Panel();
            this.multiPanel = new EVEMon.Controls.MultiPanel();
            this.mainWindowPage = new EVEMon.Controls.MultiPanelPage();
            this.groupBox2 = new System.Windows.Forms.GroupBox();
            this.overviewPanel = new System.Windows.Forms.Panel();
            this.overviewPortraitSizeComboBox = new System.Windows.Forms.ComboBox();
            this.generalPage = new EVEMon.Controls.MultiPanelPage();
            this.cbWorksafeMode = new System.Windows.Forms.CheckBox();
            this.compatibilityCombo = new System.Windows.Forms.ComboBox();
            this.runAtStartupComboBox = new System.Windows.Forms.CheckBox();
            this.skillPlannerPage = new EVEMon.Controls.MultiPanelPage();
            this.cbAdvanceEntryAdd = new System.Windows.Forms.CheckBox();
            this.cbSummaryOnMultiSelectOnly = new System.Windows.Forms.CheckBox();
            this.cbHighlightQueuedSiklls = new System.Windows.Forms.CheckBox();
            this.cbHighlightPartialSkills = new System.Windows.Forms.CheckBox();
            this.cbHighlightConflicts = new System.Windows.Forms.CheckBox();
            this.cbHighlightPrerequisites = new System.Windows.Forms.CheckBox();
            this.cbHighlightPlannedSkills = new System.Windows.Forms.CheckBox();
            this.networkPage = new EVEMon.Controls.MultiPanelPage();
            this.ApiProxyGroupBox = new System.Windows.Forms.GroupBox();
            this.btnDeleteAPIServer = new System.Windows.Forms.Button();
            this.btnAddAPIServer = new System.Windows.Forms.Button();
            this.cbAPIServer = new System.Windows.Forms.ComboBox();
            this.btnEditAPIServer = new System.Windows.Forms.Button();
            this.ProxyServerGroupBox = new System.Windows.Forms.GroupBox();
            this.customProxyCheckBox = new System.Windows.Forms.CheckBox();
            this.customProxyPanel = new System.Windows.Forms.Panel();
            this.proxyPortTextBox = new System.Windows.Forms.TextBox();
            this.proxyAuthenticationButton = new System.Windows.Forms.Button();
            this.proxyHttpHostTextBox = new System.Windows.Forms.TextBox();
            this.emailNotificationsPage = new EVEMon.Controls.MultiPanelPage();
            this.mailNotificationPanel = new System.Windows.Forms.FlowLayoutPanel();
            this.cbEmailUseShortFormat = new System.Windows.Forms.CheckBox();
            this.tableLayoutPanel2 = new System.Windows.Forms.TableLayoutPanel();
            this.tlpEmailSettings = new System.Windows.Forms.TableLayoutPanel();
            this.tbMailServer = new System.Windows.Forms.TextBox();
            this.tbFromAddress = new System.Windows.Forms.TextBox();
            this.tbToAddress = new System.Windows.Forms.TextBox();
            this.cbEmailServerRequireSsl = new System.Windows.Forms.CheckBox();
            this.cbEmailAuthRequired = new System.Windows.Forms.CheckBox();
            this.tlpEmailAuthTable = new System.Windows.Forms.TableLayoutPanel();
            this.tbEmailUsername = new System.Windows.Forms.TextBox();
            this.tbEmailPassword = new System.Windows.Forms.TextBox();
            this.emailPortTextBox = new System.Windows.Forms.TextBox();
            this.btnTestEmail = new System.Windows.Forms.Button();
            this.mailNotificationCheckBox = new System.Windows.Forms.CheckBox();
            this.notificationsPage = new EVEMon.Controls.MultiPanelPage();
            this.notificationsControl = new EVEMon.SettingsUI.NotificationsControl();
            this.cbPlaySoundOnSkillComplete = new System.Windows.Forms.CheckBox();
            this.trayIconPage = new EVEMon.Controls.MultiPanelPage();
            this.mainWindowBehaviourGroupBox = new System.Windows.Forms.GroupBox();
            this.rbMinToTaskBar = new System.Windows.Forms.RadioButton();
            this.rbMinToTray = new System.Windows.Forms.RadioButton();
            this.rbExitEVEMon = new System.Windows.Forms.RadioButton();
            this.trayIconPopupGroupBox = new System.Windows.Forms.GroupBox();
            this.trayPopupDisabledRadio = new System.Windows.Forms.RadioButton();
            this.trayPopupButton = new System.Windows.Forms.Button();
            this.trayPopupRadio = new System.Windows.Forms.RadioButton();
            this.trayTooltipRadio = new System.Windows.Forms.RadioButton();
            this.trayTooltipButton = new System.Windows.Forms.Button();
            this.updatesPage = new EVEMon.Controls.MultiPanelPage();
            this.groupBox1 = new System.Windows.Forms.GroupBox();
            this.btnResetUpdateQueryTimers = new System.Windows.Forms.Button();
            this.updateSettingsControl = new EVEMon.SettingsUI.UpdateSettingsControl();
            this.lblUpdatesPage = new System.Windows.Forms.Label();
            this.cbCheckTimeOnStartup = new System.Windows.Forms.CheckBox();
            this.cbCheckForUpdates = new System.Windows.Forms.CheckBox();
            this.schedulerUIPage = new EVEMon.Controls.MultiPanelPage();
            this.panelColorText = new System.Windows.Forms.Panel();
            this.panelColorRecurring2 = new System.Windows.Forms.Panel();
            this.panelColorRecurring1 = new System.Windows.Forms.Panel();
            this.panelColorSingle2 = new System.Windows.Forms.Panel();
            this.panelColorSingle1 = new System.Windows.Forms.Panel();
            this.panelColorBlocking = new System.Windows.Forms.Panel();
            this.externalCalendarPage = new EVEMon.Controls.MultiPanelPage();
            this.externalCalendarPanel = new System.Windows.Forms.Panel();
            this.rbMSOutlook = new System.Windows.Forms.RadioButton();
            this.dtpLateReminder = new System.Windows.Forms.DateTimePicker();
            this.tbReminder = new System.Windows.Forms.TextBox();
            this.dtpEarlyReminder = new System.Windows.Forms.DateTimePicker();
            this.gbGoogle = new System.Windows.Forms.GroupBox();
            this.cbGoogleReminder = new System.Windows.Forms.ComboBox();
            this.tbGoogleURI = new System.Windows.Forms.TextBox();
            this.tbGooglePassword = new System.Windows.Forms.TextBox();
            this.tbGoogleEmail = new System.Windows.Forms.TextBox();
            this.rbGoogle = new System.Windows.Forms.RadioButton();
            this.cbUseAlterateReminder = new System.Windows.Forms.CheckBox();
            this.cbSetReminder = new System.Windows.Forms.CheckBox();
            this.externalCalendarCheckbox = new System.Windows.Forms.CheckBox();
            this.g15Page = new EVEMon.Controls.MultiPanelPage();
            this.g15CheckBox = new System.Windows.Forms.CheckBox();
            this.g15Panel = new System.Windows.Forms.Panel();
            this.cbG15ShowEVETime = new System.Windows.Forms.CheckBox();
            this.cbG15ShowTime = new System.Windows.Forms.CheckBox();
            this.panelCycleQueueInfo = new System.Windows.Forms.Panel();
            this.cbG15CycleTimes = new System.Windows.Forms.CheckBox();
            this.ACycleTimesInterval = new System.Windows.Forms.NumericUpDown();
            this.panelCycleCharInfo = new System.Windows.Forms.Panel();
            this.cbG15ACycle = new System.Windows.Forms.CheckBox();
            this.ACycleInterval = new System.Windows.Forms.NumericUpDown();
            this.igbServerPage = new EVEMon.Controls.MultiPanelPage();
            this.igbCheckBox = new System.Windows.Forms.CheckBox();
            this.igbFlowPanel = new System.Windows.Forms.FlowLayoutPanel();
            this.flowLayoutPanel27 = new System.Windows.Forms.FlowLayoutPanel();
            this.igbPortTextBox = new System.Windows.Forms.TextBox();
            this.cbIGBPublic = new System.Windows.Forms.CheckBox();
            this.iconsPage = new EVEMon.Controls.MultiPanelPage();
            this.messagesPage = new EVEMon.Controls.MultiPanelPage();
            this.gbMessageBox = new System.Windows.Forms.GroupBox();
            this.lblPrioritesConflict = new System.Windows.Forms.Label();
            this.btnPrioritiesReset = new System.Windows.Forms.Button();
            this.ObsoleteEntryRemovalGroupBox = new System.Windows.Forms.GroupBox();
            this.RemoveAllLabel = new System.Windows.Forms.Label();
            this.AlwaysAskLabel = new System.Windows.Forms.Label();
            this.RemoveConfirmedLabel = new System.Windows.Forms.Label();
            this.alwaysAskRadioButton = new System.Windows.Forms.RadioButton();
            this.removeAllRadioButton = new System.Windows.Forms.RadioButton();
            this.removeConfirmedRadioButton = new System.Windows.Forms.RadioButton();
            this.battleClinicServicePage = new EVEMon.Controls.MultiPanelPage();
            this.settingsFileStorageGroupBox = new System.Windows.Forms.GroupBox();
            this.settingsFileStorageControl = new EVEMon.SettingsUI.SettingsFileStorageControl();
            this.BattleClinicLinkLabel = new System.Windows.Forms.LinkLabel();
            this.bcCredentialsGroupBox = new System.Windows.Forms.GroupBox();
            this.battleClinicAPIControl = new EVEMon.SettingsUI.BattleClinicAPIControl();
            bottomPanel = new System.Windows.Forms.Panel();
            lblMainWindowPage = new System.Windows.Forms.Label();
            lblSize = new System.Windows.Forms.Label();
            groupBox15 = new System.Windows.Forms.GroupBox();
            groupBox7 = new System.Windows.Forms.GroupBox();
            lblGeneralPage = new System.Windows.Forms.Label();
            lblEnvironment = new System.Windows.Forms.Label();
            lblSkillPlannerPage = new System.Windows.Forms.Label();
            lblNetworkPageAPIProvider = new System.Windows.Forms.Label();
            lblNetworkPageProxy = new System.Windows.Forms.Label();
            label12 = new System.Windows.Forms.Label();
            label11 = new System.Windows.Forms.Label();
            lblHTTP = new System.Windows.Forms.Label();
            lblEmailNotificationPage = new System.Windows.Forms.Label();
            lblEmailServer = new System.Windows.Forms.Label();
            lblFromAddress = new System.Windows.Forms.Label();
            lblToAddress = new System.Windows.Forms.Label();
            lblEmailPassword = new System.Windows.Forms.Label();
            lblEmailUsername = new System.Windows.Forms.Label();
            lblPortNumber = new System.Windows.Forms.Label();
            lblNotificationsPage = new System.Windows.Forms.Label();
            lblTrayIconPage = new System.Windows.Forms.Label();
            systemTrayIconGroupBox = new System.Windows.Forms.GroupBox();
            lblSchedulerUIPage = new System.Windows.Forms.Label();
            lblText = new System.Windows.Forms.Label();
            lblBlockingEvents = new System.Windows.Forms.Label();
            lblRecurringEvents = new System.Windows.Forms.Label();
            lblSimpleEvents = new System.Windows.Forms.Label();
            lblReminder = new System.Windows.Forms.Label();
            lblURI = new System.Windows.Forms.Label();
            lblPassword = new System.Windows.Forms.Label();
            lblGoogleEmail = new System.Windows.Forms.Label();
            lblEarlyReminder = new System.Windows.Forms.Label();
            lblLateReminder = new System.Windows.Forms.Label();
            lblExternalCalendarPage = new System.Windows.Forms.Label();
            lblG15Page = new System.Windows.Forms.Label();
            lblCycleTrainingSeconds = new System.Windows.Forms.Label();
            lblG15CycleCharSeconds = new System.Windows.Forms.Label();
            lblIgbServerPage = new System.Windows.Forms.Label();
            lblIGBPort = new System.Windows.Forms.Label();
            flowLayoutPanel28 = new System.Windows.Forms.FlowLayoutPanel();
            igbHelpLabel = new System.Windows.Forms.Label();
            label1 = new System.Windows.Forms.Label();
            gbSkillBrowserIconSet = new System.Windows.Forms.GroupBox();
            label2 = new System.Windows.Forms.Label();
            bottomPanel.SuspendLayout();
            groupBox15.SuspendLayout();
            groupBox7.SuspendLayout();
            systemTrayIconGroupBox.SuspendLayout();
            flowLayoutPanel28.SuspendLayout();
            gbSkillBrowserIconSet.SuspendLayout();
            this.tableLayoutPanel4.SuspendLayout();
            this.tableLayoutPanel1.SuspendLayout();
            this.flowLayoutPanel9.SuspendLayout();
            this.leftPanel.SuspendLayout();
            this.multiPanel.SuspendLayout();
            this.mainWindowPage.SuspendLayout();
            this.groupBox2.SuspendLayout();
            this.overviewPanel.SuspendLayout();
            this.generalPage.SuspendLayout();
            this.skillPlannerPage.SuspendLayout();
            this.networkPage.SuspendLayout();
            this.ApiProxyGroupBox.SuspendLayout();
            this.ProxyServerGroupBox.SuspendLayout();
            this.customProxyPanel.SuspendLayout();
            this.emailNotificationsPage.SuspendLayout();
            this.mailNotificationPanel.SuspendLayout();
            this.tableLayoutPanel2.SuspendLayout();
            this.tlpEmailSettings.SuspendLayout();
            this.tlpEmailAuthTable.SuspendLayout();
            this.notificationsPage.SuspendLayout();
            this.trayIconPage.SuspendLayout();
            this.mainWindowBehaviourGroupBox.SuspendLayout();
            this.trayIconPopupGroupBox.SuspendLayout();
            this.updatesPage.SuspendLayout();
            this.groupBox1.SuspendLayout();
            this.schedulerUIPage.SuspendLayout();
            this.externalCalendarPage.SuspendLayout();
            this.externalCalendarPanel.SuspendLayout();
            this.gbGoogle.SuspendLayout();
            this.g15Page.SuspendLayout();
            this.g15Panel.SuspendLayout();
            this.panelCycleQueueInfo.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.ACycleTimesInterval)).BeginInit();
            this.panelCycleCharInfo.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.ACycleInterval)).BeginInit();
            this.igbServerPage.SuspendLayout();
            this.igbFlowPanel.SuspendLayout();
            this.flowLayoutPanel27.SuspendLayout();
            this.iconsPage.SuspendLayout();
            this.messagesPage.SuspendLayout();
            this.gbMessageBox.SuspendLayout();
            this.ObsoleteEntryRemovalGroupBox.SuspendLayout();
            this.battleClinicServicePage.SuspendLayout();
            this.settingsFileStorageGroupBox.SuspendLayout();
            this.bcCredentialsGroupBox.SuspendLayout();
            this.SuspendLayout();
            // 
            // bottomPanel
            // 
            bottomPanel.BackColor = System.Drawing.SystemColors.ControlLight;
            bottomPanel.Controls.Add(this.applyButton);
            bottomPanel.Controls.Add(this.okButton);
            bottomPanel.Controls.Add(this.cancelButton);
            bottomPanel.Dock = System.Windows.Forms.DockStyle.Bottom;
            bottomPanel.Location = new System.Drawing.Point(0, 436);
            bottomPanel.Name = "bottomPanel";
            bottomPanel.Size = new System.Drawing.Size(644, 46);
            bottomPanel.TabIndex = 8;
            // 
            // applyButton
            // 
            this.applyButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
            this.applyButton.Location = new System.Drawing.Point(557, 11);
            this.applyButton.Name = "applyButton";
            this.applyButton.Size = new System.Drawing.Size(75, 23);
            this.applyButton.TabIndex = 4;
            this.applyButton.Text = "&Apply";
            this.applyButton.UseVisualStyleBackColor = true;
            this.applyButton.Click += new System.EventHandler(this.applyButton_Click);
            // 
            // okButton
            // 
            this.okButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
            this.okButton.Location = new System.Drawing.Point(395, 11);
            this.okButton.Name = "okButton";
            this.okButton.Size = new System.Drawing.Size(75, 23);
            this.okButton.TabIndex = 3;
            this.okButton.Text = "&OK";
            this.okButton.UseVisualStyleBackColor = true;
            this.okButton.Click += new System.EventHandler(this.btnOk_Click);
            // 
            // cancelButton
            // 
            this.cancelButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
            this.cancelButton.DialogResult = System.Windows.Forms.DialogResult.Cancel;
            this.cancelButton.Location = new System.Drawing.Point(476, 11);
            this.cancelButton.Name = "cancelButton";
            this.cancelButton.Size = new System.Drawing.Size(75, 23);
            this.cancelButton.TabIndex = 2;
            this.cancelButton.Text = "&Cancel";
            this.cancelButton.UseVisualStyleBackColor = true;
            this.cancelButton.Click += new System.EventHandler(this.btnCancel_Click);
            // 
            // lblMainWindowPage
            // 
            lblMainWindowPage.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                        | System.Windows.Forms.AnchorStyles.Right)));
            lblMainWindowPage.ForeColor = System.Drawing.SystemColors.MenuHighlight;
            lblMainWindowPage.Location = new System.Drawing.Point(4, 20);
            lblMainWindowPage.Name = "lblMainWindowPage";
            lblMainWindowPage.Size = new System.Drawing.Size(424, 44);
            lblMainWindowPage.TabIndex = 19;
            lblMainWindowPage.Text = resources.GetString("lblMainWindowPage.Text");
            // 
            // lblSize
            // 
            lblSize.AutoSize = true;
            lblSize.Location = new System.Drawing.Point(20, 52);
            lblSize.Name = "lblSize";
            lblSize.Size = new System.Drawing.Size(26, 13);
            lblSize.TabIndex = 31;
            lblSize.Text = "Size";
            // 
            // groupBox15
            // 
            groupBox15.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                        | System.Windows.Forms.AnchorStyles.Right)));
            groupBox15.Controls.Add(this.cbColorQueuedSkills);
            groupBox15.Controls.Add(this.cbShowPrereqMetSkills);
            groupBox15.Controls.Add(this.cbColorPartialSkills);
            groupBox15.Controls.Add(this.cbAlwaysShowSkillQueueTime);
            groupBox15.Controls.Add(this.cbShowNonPublicSkills);
            groupBox15.Controls.Add(this.cbShowAllPublicSkills);
            groupBox15.Location = new System.Drawing.Point(3, 180);
            groupBox15.Name = "groupBox15";
            groupBox15.Size = new System.Drawing.Size(426, 85);
            groupBox15.TabIndex = 7;
            groupBox15.TabStop = false;
            groupBox15.Text = "Character Monitor";
            // 
            // cbColorQueuedSkills
            // 
            this.cbColorQueuedSkills.AutoSize = true;
            this.cbColorQueuedSkills.Location = new System.Drawing.Point(188, 38);
            this.cbColorQueuedSkills.Name = "cbColorQueuedSkills";
            this.cbColorQueuedSkills.Size = new System.Drawing.Size(135, 17);
            this.cbColorQueuedSkills.TabIndex = 13;
            this.cbColorQueuedSkills.Text = "Highlight Queued Skills";
            this.ttToolTipCodes.SetToolTip(this.cbColorQueuedSkills, "When enabled, highlights all\r\nqueued skills in character\'s skill list");
            this.cbColorQueuedSkills.UseVisualStyleBackColor = true;
            // 
            // cbShowPrereqMetSkills
            // 
            this.cbShowPrereqMetSkills.AutoSize = true;
            this.cbShowPrereqMetSkills.Location = new System.Drawing.Point(15, 57);
            this.cbShowPrereqMetSkills.Name = "cbShowPrereqMetSkills";
            this.cbShowPrereqMetSkills.Size = new System.Drawing.Size(158, 17);
            this.cbShowPrereqMetSkills.TabIndex = 12;
            this.cbShowPrereqMetSkills.Text = "Show Also Prereq-Met Skills";
            this.ttToolTipCodes.SetToolTip(this.cbShowPrereqMetSkills, "When enabled, shows all prerequisites\r\nmet skills in character\'s skill list");
            this.cbShowPrereqMetSkills.UseVisualStyleBackColor = true;
            // 
            // cbColorPartialSkills
            // 
            this.cbColorPartialSkills.AutoSize = true;
            this.cbColorPartialSkills.Location = new System.Drawing.Point(188, 20);
            this.cbColorPartialSkills.Name = "cbColorPartialSkills";
            this.cbColorPartialSkills.Size = new System.Drawing.Size(172, 17);
            this.cbColorPartialSkills.TabIndex = 11;
            this.cbColorPartialSkills.Text = "Highlight Partially Trained Skills";
            this.ttToolTipCodes.SetToolTip(this.cbColorPartialSkills, "When enabled, highlights all partially\r\ntrained skills in character\'s skill list");
            this.cbColorPartialSkills.UseVisualStyleBackColor = true;
            // 
            // cbAlwaysShowSkillQueueTime
            // 
            this.cbAlwaysShowSkillQueueTime.AutoSize = true;
            this.cbAlwaysShowSkillQueueTime.Location = new System.Drawing.Point(188, 57);
            this.cbAlwaysShowSkillQueueTime.Name = "cbAlwaysShowSkillQueueTime";
            this.cbAlwaysShowSkillQueueTime.Size = new System.Drawing.Size(213, 17);
            this.cbAlwaysShowSkillQueueTime.TabIndex = 2;
            this.cbAlwaysShowSkillQueueTime.Text = "Always show time above the skill queue";
            this.ttToolTipCodes.SetToolTip(this.cbAlwaysShowSkillQueueTime, "When enabled, always displays the total\r\nqueue time above the skill queue bar");
            this.cbAlwaysShowSkillQueueTime.UseVisualStyleBackColor = true;
            // 
            // cbShowNonPublicSkills
            // 
            this.cbShowNonPublicSkills.AutoSize = true;
            this.cbShowNonPublicSkills.Enabled = false;
            this.cbShowNonPublicSkills.Location = new System.Drawing.Point(15, 38);
            this.cbShowNonPublicSkills.Name = "cbShowNonPublicSkills";
            this.cbShowNonPublicSkills.Size = new System.Drawing.Size(158, 17);
            this.cbShowNonPublicSkills.TabIndex = 1;
            this.cbShowNonPublicSkills.Text = "Show Also Non-Public Skills";
            this.ttToolTipCodes.SetToolTip(this.cbShowNonPublicSkills, "When enabled, shows all non-public skills in character\'s skill list");
            this.cbShowNonPublicSkills.UseVisualStyleBackColor = true;
            // 
            // cbShowAllPublicSkills
            // 
            this.cbShowAllPublicSkills.AutoSize = true;
            this.cbShowAllPublicSkills.Location = new System.Drawing.Point(15, 20);
            this.cbShowAllPublicSkills.Name = "cbShowAllPublicSkills";
            this.cbShowAllPublicSkills.Size = new System.Drawing.Size(149, 17);
            this.cbShowAllPublicSkills.TabIndex = 0;
            this.cbShowAllPublicSkills.Text = "Show Also All Public Skills";
            this.ttToolTipCodes.SetToolTip(this.cbShowAllPublicSkills, "When enabled, shows all public skills in character\'s skill list");
            this.cbShowAllPublicSkills.UseVisualStyleBackColor = true;
            this.cbShowAllPublicSkills.CheckedChanged += new System.EventHandler(this.OnMustEnableOrDisable);
            // 
            // groupBox7
            // 
            groupBox7.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                        | System.Windows.Forms.AnchorStyles.Right)));
            groupBox7.Controls.Add(this.cbWindowsTitleList);
            groupBox7.Controls.Add(this.cbSkillInTitle);
            groupBox7.Controls.Add(this.cbTitleToTime);
            groupBox7.Location = new System.Drawing.Point(3, 67);
            groupBox7.Name = "groupBox7";
            groupBox7.Size = new System.Drawing.Size(426, 105);
            groupBox7.TabIndex = 14;
            groupBox7.TabStop = false;
            groupBox7.Text = "Window Title";
            // 
            // cbWindowsTitleList
            // 
            this.cbWindowsTitleList.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
            this.cbWindowsTitleList.FormattingEnabled = true;
            this.cbWindowsTitleList.Items.AddRange(new object[] {
            "Single character - finishing skill next",
            "Single character - selected character",
            "Multi character - finishing skill next first",
            "Multi character - selected character first "});
            this.cbWindowsTitleList.Location = new System.Drawing.Point(15, 66);
            this.cbWindowsTitleList.Name = "cbWindowsTitleList";
            this.cbWindowsTitleList.Size = new System.Drawing.Size(224, 21);
            this.cbWindowsTitleList.TabIndex = 1;
            // 
            // cbSkillInTitle
            // 
            this.cbSkillInTitle.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                        | System.Windows.Forms.AnchorStyles.Left)));
            this.cbSkillInTitle.AutoSize = true;
            this.cbSkillInTitle.Location = new System.Drawing.Point(15, 43);
            this.cbSkillInTitle.Name = "cbSkillInTitle";
            this.cbSkillInTitle.Size = new System.Drawing.Size(121, 17);
            this.cbSkillInTitle.TabIndex = 7;
            this.cbSkillInTitle.Text = "Show skill in training";
            this.ttToolTipCodes.SetToolTip(this.cbSkillInTitle, "When enabled, shows the character\'s skill\r\nin training according to choice below");
            this.cbSkillInTitle.UseVisualStyleBackColor = true;
            // 
            // cbTitleToTime
            // 
            this.cbTitleToTime.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                        | System.Windows.Forms.AnchorStyles.Left)));
            this.cbTitleToTime.AutoSize = true;
            this.cbTitleToTime.Location = new System.Drawing.Point(15, 20);
            this.cbTitleToTime.Margin = new System.Windows.Forms.Padding(12, 3, 3, 3);
            this.cbTitleToTime.Name = "cbTitleToTime";
            this.cbTitleToTime.Size = new System.Drawing.Size(193, 17);
            this.cbTitleToTime.TabIndex = 6;
            this.cbTitleToTime.Text = "Show character info in window title";
            this.ttToolTipCodes.SetToolTip(this.cbTitleToTime, "When enabled, shows the character\'s info in window title");
            this.cbTitleToTime.UseVisualStyleBackColor = true;
            this.cbTitleToTime.CheckedChanged += new System.EventHandler(this.OnMustEnableOrDisable);
            // 
            // lblGeneralPage
            // 
            lblGeneralPage.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                        | System.Windows.Forms.AnchorStyles.Right)));
            lblGeneralPage.ForeColor = System.Drawing.SystemColors.MenuHighlight;
            lblGeneralPage.Location = new System.Drawing.Point(4, 34);
            lblGeneralPage.Name = "lblGeneralPage";
            lblGeneralPage.Size = new System.Drawing.Size(424, 28);
            lblGeneralPage.TabIndex = 20;
            lblGeneralPage.Text = "Select whether EVEMon will start every time you startup your system. You can also" +
                " choose to disable EVEMon\'s graphics and select the enviroment it will run in.";
            // 
            // lblEnvironment
            // 
            lblEnvironment.AutoSize = true;
            lblEnvironment.Location = new System.Drawing.Point(3, 181);
            lblEnvironment.Name = "lblEnvironment";
            lblEnvironment.Size = new System.Drawing.Size(222, 13);
            lblEnvironment.TabIndex = 1;
            lblEnvironment.Text = "Environment (requires restart to take effect)";
            // 
            // lblSkillPlannerPage
            // 
            lblSkillPlannerPage.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                        | System.Windows.Forms.AnchorStyles.Right)));
            lblSkillPlannerPage.ForeColor = System.Drawing.SystemColors.MenuHighlight;
            lblSkillPlannerPage.Location = new System.Drawing.Point(4, 20);
            lblSkillPlannerPage.Name = "lblSkillPlannerPage";
            lblSkillPlannerPage.Size = new System.Drawing.Size(424, 28);
            lblSkillPlannerPage.TabIndex = 19;
            lblSkillPlannerPage.Text = "You can select whether to highlight any entry in the Skill Planner according to i" +
                "ts status and more.";
            // 
            // lblNetworkPageAPIProvider
            // 
            lblNetworkPageAPIProvider.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                        | System.Windows.Forms.AnchorStyles.Right)));
            lblNetworkPageAPIProvider.ForeColor = System.Drawing.SystemColors.MenuHighlight;
            lblNetworkPageAPIProvider.Location = new System.Drawing.Point(12, 17);
            lblNetworkPageAPIProvider.Name = "lblNetworkPageAPIProvider";
            lblNetworkPageAPIProvider.Size = new System.Drawing.Size(374, 29);
            lblNetworkPageAPIProvider.TabIndex = 8;
            lblNetworkPageAPIProvider.Text = "By default, EVEMon queries CCP for the API data. You can implement your own provi" +
                "der and make EVEMon use it.";
            // 
            // lblNetworkPageProxy
            // 
            lblNetworkPageProxy.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                        | System.Windows.Forms.AnchorStyles.Right)));
            lblNetworkPageProxy.ForeColor = System.Drawing.SystemColors.MenuHighlight;
            lblNetworkPageProxy.Location = new System.Drawing.Point(9, 17);
            lblNetworkPageProxy.Name = "lblNetworkPageProxy";
            lblNetworkPageProxy.Size = new System.Drawing.Size(382, 32);
            lblNetworkPageProxy.TabIndex = 8;
            lblNetworkPageProxy.Text = "By default, EVEMon will use the same Proxy settings as Internet Explorer (can be " +
                "configured through the Control Panel).";
            // 
            // label12
            // 
            label12.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                        | System.Windows.Forms.AnchorStyles.Right)));
            label12.Location = new System.Drawing.Point(50, 8);
            label12.Name = "label12";
            label12.Size = new System.Drawing.Size(165, 13);
            label12.TabIndex = 3;
            label12.Text = "Host/IP Address";
            label12.TextAlign = System.Drawing.ContentAlignment.TopCenter;
            // 
            // label11
            // 
            label11.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                        | System.Windows.Forms.AnchorStyles.Right)));
            label11.Location = new System.Drawing.Point(221, 8);
            label11.Name = "label11";
            label11.Size = new System.Drawing.Size(39, 13);
            label11.TabIndex = 4;
            label11.Text = "Port";
            label11.TextAlign = System.Drawing.ContentAlignment.TopCenter;
            // 
            // lblHTTP
            // 
            lblHTTP.AutoSize = true;
            lblHTTP.Location = new System.Drawing.Point(8, 27);
            lblHTTP.Name = "lblHTTP";
            lblHTTP.Size = new System.Drawing.Size(36, 13);
            lblHTTP.TabIndex = 0;
            lblHTTP.Text = "HTTP:";
            lblHTTP.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // lblEmailNotificationPage
            // 
            lblEmailNotificationPage.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                        | System.Windows.Forms.AnchorStyles.Right)));
            lblEmailNotificationPage.AutoSize = true;
            lblEmailNotificationPage.ForeColor = System.Drawing.SystemColors.MenuHighlight;
            lblEmailNotificationPage.Location = new System.Drawing.Point(4, 40);
            lblEmailNotificationPage.Name = "lblEmailNotificationPage";
            lblEmailNotificationPage.Size = new System.Drawing.Size(366, 13);
            lblEmailNotificationPage.TabIndex = 19;
            lblEmailNotificationPage.Text = "EVEMon can send you an email whenever a skill level completes its training.";
            // 
            // lblEmailServer
            // 
            lblEmailServer.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                        | System.Windows.Forms.AnchorStyles.Right)));
            lblEmailServer.AutoSize = true;
            lblEmailServer.Location = new System.Drawing.Point(9, 0);
            lblEmailServer.Name = "lblEmailServer";
            lblEmailServer.Size = new System.Drawing.Size(70, 27);
            lblEmailServer.TabIndex = 0;
            lblEmailServer.Text = "Email Server:";
            lblEmailServer.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // lblFromAddress
            // 
            lblFromAddress.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                        | System.Windows.Forms.AnchorStyles.Right)));
            lblFromAddress.AutoSize = true;
            lblFromAddress.Location = new System.Drawing.Point(3, 162);
            lblFromAddress.Name = "lblFromAddress";
            lblFromAddress.Size = new System.Drawing.Size(76, 27);
            lblFromAddress.TabIndex = 1;
            lblFromAddress.Text = "From address:";
            lblFromAddress.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // lblToAddress
            // 
            lblToAddress.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                        | System.Windows.Forms.AnchorStyles.Right)));
            lblToAddress.AutoSize = true;
            lblToAddress.Location = new System.Drawing.Point(15, 189);
            lblToAddress.Name = "lblToAddress";
            lblToAddress.Size = new System.Drawing.Size(64, 27);
            lblToAddress.TabIndex = 2;
            lblToAddress.Text = "To address:";
            lblToAddress.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // lblEmailPassword
            // 
            lblEmailPassword.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                        | System.Windows.Forms.AnchorStyles.Right)));
            lblEmailPassword.AutoSize = true;
            lblEmailPassword.Location = new System.Drawing.Point(5, 27);
            lblEmailPassword.Name = "lblEmailPassword";
            lblEmailPassword.Size = new System.Drawing.Size(57, 27);
            lblEmailPassword.TabIndex = 8;
            lblEmailPassword.Text = "Password:"******"lblEmailUsername";
            lblEmailUsername.Size = new System.Drawing.Size(59, 27);
            lblEmailUsername.TabIndex = 7;
            lblEmailUsername.Text = "Username:"******"lblPortNumber";
            lblPortNumber.Size = new System.Drawing.Size(71, 27);
            lblPortNumber.TabIndex = 10;
            lblPortNumber.Text = "Port Number:";
            lblPortNumber.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // lblNotificationsPage
            // 
            lblNotificationsPage.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                        | System.Windows.Forms.AnchorStyles.Right)));
            lblNotificationsPage.ForeColor = System.Drawing.SystemColors.MenuHighlight;
            lblNotificationsPage.Location = new System.Drawing.Point(4, 14);
            lblNotificationsPage.Name = "lblNotificationsPage";
            lblNotificationsPage.Size = new System.Drawing.Size(424, 43);
            lblNotificationsPage.TabIndex = 19;
            lblNotificationsPage.Text = "You can choose what notifications will be shown in your system\'s tray notificatio" +
                "n area or in EVEMon\'s main window and when. You can also toggle the sound notifi" +
                "cation upon skill completion on or off.";
            // 
            // lblTrayIconPage
            // 
            lblTrayIconPage.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                        | System.Windows.Forms.AnchorStyles.Right)));
            lblTrayIconPage.ForeColor = System.Drawing.SystemColors.MenuHighlight;
            lblTrayIconPage.Location = new System.Drawing.Point(4, 20);
            lblTrayIconPage.Name = "lblTrayIconPage";
            lblTrayIconPage.Size = new System.Drawing.Size(424, 31);
            lblTrayIconPage.TabIndex = 18;
            lblTrayIconPage.Text = "Here you can set the visible status of EVEMon\'s Tray Icon, configure the style of" +
                " the Tray Icon\'s popup info and EVEMon\'s behaviour upon pressing the Close butto" +
                "n.\r\n";
            // 
            // systemTrayIconGroupBox
            // 
            systemTrayIconGroupBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                        | System.Windows.Forms.AnchorStyles.Right)));
            systemTrayIconGroupBox.Controls.Add(this.rbSystemTrayOptionsNever);
            systemTrayIconGroupBox.Controls.Add(this.rbSystemTrayOptionsAlways);
            systemTrayIconGroupBox.Controls.Add(this.rbSystemTrayOptionsMinimized);
            systemTrayIconGroupBox.Location = new System.Drawing.Point(9, 68);
            systemTrayIconGroupBox.Name = "systemTrayIconGroupBox";
            systemTrayIconGroupBox.Size = new System.Drawing.Size(419, 100);
            systemTrayIconGroupBox.TabIndex = 9;
            systemTrayIconGroupBox.TabStop = false;
            systemTrayIconGroupBox.Text = "Show System Tray Icon";
            // 
            // rbSystemTrayOptionsNever
            // 
            this.rbSystemTrayOptionsNever.AutoSize = true;
            this.rbSystemTrayOptionsNever.Location = new System.Drawing.Point(6, 20);
            this.rbSystemTrayOptionsNever.Name = "rbSystemTrayOptionsNever";
            this.rbSystemTrayOptionsNever.Padding = new System.Windows.Forms.Padding(3, 0, 0, 0);
            this.rbSystemTrayOptionsNever.Size = new System.Drawing.Size(57, 17);
            this.rbSystemTrayOptionsNever.TabIndex = 1;
            this.rbSystemTrayOptionsNever.TabStop = true;
            this.rbSystemTrayOptionsNever.Tag = "";
            this.rbSystemTrayOptionsNever.Text = "Never";
            this.rbSystemTrayOptionsNever.UseVisualStyleBackColor = true;
            this.rbSystemTrayOptionsNever.CheckedChanged += new System.EventHandler(this.OnMustEnableOrDisable);
            // 
            // rbSystemTrayOptionsAlways
            // 
            this.rbSystemTrayOptionsAlways.AutoSize = true;
            this.rbSystemTrayOptionsAlways.Location = new System.Drawing.Point(6, 66);
            this.rbSystemTrayOptionsAlways.Name = "rbSystemTrayOptionsAlways";
            this.rbSystemTrayOptionsAlways.Padding = new System.Windows.Forms.Padding(3, 0, 0, 0);
            this.rbSystemTrayOptionsAlways.Size = new System.Drawing.Size(61, 17);
            this.rbSystemTrayOptionsAlways.TabIndex = 3;
            this.rbSystemTrayOptionsAlways.TabStop = true;
            this.rbSystemTrayOptionsAlways.Tag = "";
            this.rbSystemTrayOptionsAlways.Text = "Always";
            this.rbSystemTrayOptionsAlways.UseVisualStyleBackColor = true;
            // 
            // rbSystemTrayOptionsMinimized
            // 
            this.rbSystemTrayOptionsMinimized.AutoSize = true;
            this.rbSystemTrayOptionsMinimized.Location = new System.Drawing.Point(6, 43);
            this.rbSystemTrayOptionsMinimized.Name = "rbSystemTrayOptionsMinimized";
            this.rbSystemTrayOptionsMinimized.Padding = new System.Windows.Forms.Padding(3, 0, 0, 0);
            this.rbSystemTrayOptionsMinimized.Size = new System.Drawing.Size(106, 17);
            this.rbSystemTrayOptionsMinimized.TabIndex = 2;
            this.rbSystemTrayOptionsMinimized.TabStop = true;
            this.rbSystemTrayOptionsMinimized.Tag = "";
            this.rbSystemTrayOptionsMinimized.Text = "When Minimized";
            this.rbSystemTrayOptionsMinimized.UseVisualStyleBackColor = true;
            // 
            // lblSchedulerUIPage
            // 
            lblSchedulerUIPage.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                        | System.Windows.Forms.AnchorStyles.Right)));
            lblSchedulerUIPage.ForeColor = System.Drawing.SystemColors.MenuHighlight;
            lblSchedulerUIPage.Location = new System.Drawing.Point(6, 34);
            lblSchedulerUIPage.Name = "lblSchedulerUIPage";
            lblSchedulerUIPage.Size = new System.Drawing.Size(422, 45);
            lblSchedulerUIPage.TabIndex = 6;
            lblSchedulerUIPage.Text = "Select the colors used in the scheduler. Using the scheduler, EVEMon can warn you" +
                " about skill that will complete at times you will be away from your computer.";
            // 
            // lblText
            // 
            lblText.AutoSize = true;
            lblText.Location = new System.Drawing.Point(6, 109);
            lblText.Name = "lblText";
            lblText.Size = new System.Drawing.Size(33, 13);
            lblText.TabIndex = 5;
            lblText.Text = "Text:";
            // 
            // lblBlockingEvents
            // 
            lblBlockingEvents.AutoSize = true;
            lblBlockingEvents.Location = new System.Drawing.Point(6, 132);
            lblBlockingEvents.Name = "lblBlockingEvents";
            lblBlockingEvents.Size = new System.Drawing.Size(85, 13);
            lblBlockingEvents.TabIndex = 0;
            lblBlockingEvents.Text = "Blocking Events:";
            // 
            // lblRecurringEvents
            // 
            lblRecurringEvents.AutoSize = true;
            lblRecurringEvents.Location = new System.Drawing.Point(6, 180);
            lblRecurringEvents.Name = "lblRecurringEvents";
            lblRecurringEvents.Size = new System.Drawing.Size(93, 13);
            lblRecurringEvents.TabIndex = 1;
            lblRecurringEvents.Text = "Recurring Events:";
            // 
            // lblSimpleEvents
            // 
            lblSimpleEvents.AutoSize = true;
            lblSimpleEvents.Location = new System.Drawing.Point(6, 157);
            lblSimpleEvents.Name = "lblSimpleEvents";
            lblSimpleEvents.Size = new System.Drawing.Size(77, 13);
            lblSimpleEvents.TabIndex = 2;
            lblSimpleEvents.Text = "Simple Events:";
            // 
            // lblReminder
            // 
            lblReminder.AutoSize = true;
            lblReminder.Location = new System.Drawing.Point(6, 107);
            lblReminder.Name = "lblReminder";
            lblReminder.Size = new System.Drawing.Size(56, 13);
            lblReminder.TabIndex = 6;
            lblReminder.Text = "Reminder:";
            // 
            // lblURI
            // 
            lblURI.AutoSize = true;
            lblURI.Location = new System.Drawing.Point(6, 80);
            lblURI.Name = "lblURI";
            lblURI.Size = new System.Drawing.Size(29, 13);
            lblURI.TabIndex = 5;
            lblURI.Text = "URI:";
            // 
            // lblPassword
            // 
            lblPassword.AutoSize = true;
            lblPassword.Location = new System.Drawing.Point(6, 52);
            lblPassword.Name = "lblPassword";
            lblPassword.Size = new System.Drawing.Size(57, 13);
            lblPassword.TabIndex = 1;
            lblPassword.Text = "Password:"******"lblGoogleEmail";
            lblGoogleEmail.Size = new System.Drawing.Size(71, 13);
            lblGoogleEmail.TabIndex = 0;
            lblGoogleEmail.Text = "Google Email:";
            // 
            // lblEarlyReminder
            // 
            lblEarlyReminder.AutoSize = true;
            lblEarlyReminder.Location = new System.Drawing.Point(30, 228);
            lblEarlyReminder.Name = "lblEarlyReminder";
            lblEarlyReminder.Size = new System.Drawing.Size(83, 13);
            lblEarlyReminder.TabIndex = 4;
            lblEarlyReminder.Text = "Early Reminder:";
            // 
            // lblLateReminder
            // 
            lblLateReminder.AutoSize = true;
            lblLateReminder.Location = new System.Drawing.Point(195, 228);
            lblLateReminder.Name = "lblLateReminder";
            lblLateReminder.Size = new System.Drawing.Size(80, 13);
            lblLateReminder.TabIndex = 6;
            lblLateReminder.Text = "Late Reminder:";
            // 
            // lblExternalCalendarPage
            // 
            lblExternalCalendarPage.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                        | System.Windows.Forms.AnchorStyles.Right)));
            lblExternalCalendarPage.ForeColor = System.Drawing.SystemColors.MenuHighlight;
            lblExternalCalendarPage.Location = new System.Drawing.Point(3, 32);
            lblExternalCalendarPage.Name = "lblExternalCalendarPage";
            lblExternalCalendarPage.Size = new System.Drawing.Size(429, 35);
            lblExternalCalendarPage.TabIndex = 11;
            lblExternalCalendarPage.Text = "EVEMon can import scheduler entries from Outlook or Google calendars to emphasize" +
                " the skills that will complete at times you won\'t be available.";
            // 
            // lblG15Page
            // 
            lblG15Page.AutoSize = true;
            lblG15Page.ForeColor = System.Drawing.SystemColors.MenuHighlight;
            lblG15Page.Location = new System.Drawing.Point(3, 40);
            lblG15Page.Name = "lblG15Page";
            lblG15Page.Size = new System.Drawing.Size(339, 13);
            lblG15Page.TabIndex = 5;
            lblG15Page.Text = "EVEMon supports the LCD display of the Logitech G15/G19 keyboard.";
            // 
            // lblCycleTrainingSeconds
            // 
            lblCycleTrainingSeconds.AutoSize = true;
            lblCycleTrainingSeconds.Location = new System.Drawing.Point(265, 6);
            lblCycleTrainingSeconds.Margin = new System.Windows.Forms.Padding(3, 6, 3, 0);
            lblCycleTrainingSeconds.Name = "lblCycleTrainingSeconds";
            lblCycleTrainingSeconds.Size = new System.Drawing.Size(46, 13);
            lblCycleTrainingSeconds.TabIndex = 9;
            lblCycleTrainingSeconds.Text = "seconds";
            // 
            // lblG15CycleCharSeconds
            // 
            lblG15CycleCharSeconds.AutoSize = true;
            lblG15CycleCharSeconds.Location = new System.Drawing.Point(186, 6);
            lblG15CycleCharSeconds.Margin = new System.Windows.Forms.Padding(3, 6, 3, 0);
            lblG15CycleCharSeconds.Name = "lblG15CycleCharSeconds";
            lblG15CycleCharSeconds.Size = new System.Drawing.Size(46, 13);
            lblG15CycleCharSeconds.TabIndex = 6;
            lblG15CycleCharSeconds.Text = "seconds";
            // 
            // lblIgbServerPage
            // 
            lblIgbServerPage.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                        | System.Windows.Forms.AnchorStyles.Right)));
            lblIgbServerPage.ForeColor = System.Drawing.SystemColors.MenuHighlight;
            lblIgbServerPage.Location = new System.Drawing.Point(4, 34);
            lblIgbServerPage.Name = "lblIgbServerPage";
            lblIgbServerPage.Size = new System.Drawing.Size(424, 48);
            lblIgbServerPage.TabIndex = 5;
            lblIgbServerPage.Text = "When this option is checked and EVEMon running, you can open the in-game browser " +
                "and type the address provided below to give a quick look at your plans and the s" +
                "killbooks you need to buy.\r\n";
            // 
            // lblIGBPort
            // 
            lblIGBPort.AutoSize = true;
            lblIGBPort.Dock = System.Windows.Forms.DockStyle.Left;
            lblIGBPort.Location = new System.Drawing.Point(3, 0);
            lblIGBPort.Name = "lblIGBPort";
            lblIGBPort.Size = new System.Drawing.Size(50, 26);
            lblIGBPort.TabIndex = 6;
            lblIGBPort.Text = "IGB Port:";
            lblIGBPort.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
            // 
            // flowLayoutPanel28
            // 
            flowLayoutPanel28.Controls.Add(igbHelpLabel);
            flowLayoutPanel28.Controls.Add(this.igbUrlTextBox);
            flowLayoutPanel28.Location = new System.Drawing.Point(12, 37);
            flowLayoutPanel28.Name = "flowLayoutPanel28";
            flowLayoutPanel28.Size = new System.Drawing.Size(334, 22);
            flowLayoutPanel28.TabIndex = 11;
            // 
            // igbHelpLabel
            // 
            igbHelpLabel.AutoSize = true;
            igbHelpLabel.Location = new System.Drawing.Point(3, 3);
            igbHelpLabel.Margin = new System.Windows.Forms.Padding(3, 3, 3, 0);
            igbHelpLabel.Name = "igbHelpLabel";
            igbHelpLabel.Size = new System.Drawing.Size(181, 13);
            igbHelpLabel.TabIndex = 8;
            igbHelpLabel.Text = "Open the in-game browser and type :";
            // 
            // igbUrlTextBox
            // 
            this.igbUrlTextBox.BorderStyle = System.Windows.Forms.BorderStyle.None;
            this.igbUrlTextBox.Location = new System.Drawing.Point(190, 3);
            this.igbUrlTextBox.Name = "igbUrlTextBox";
            this.igbUrlTextBox.ReadOnly = true;
            this.igbUrlTextBox.Size = new System.Drawing.Size(120, 14);
            this.igbUrlTextBox.TabIndex = 10;
            this.igbUrlTextBox.Text = "http://localhost:80/";
            // 
            // label1
            // 
            label1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                        | System.Windows.Forms.AnchorStyles.Right)));
            label1.ForeColor = System.Drawing.SystemColors.MenuHighlight;
            label1.Location = new System.Drawing.Point(4, 20);
            label1.Name = "label1";
            label1.Size = new System.Drawing.Size(424, 32);
            label1.TabIndex = 15;
            label1.Text = "You can customize the icons used in the skill planner; if you have a good idea fo" +
                "r a set of icons instructions to create your own can be found on BattleClinic.";
            // 
            // gbSkillBrowserIconSet
            // 
            gbSkillBrowserIconSet.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                        | System.Windows.Forms.AnchorStyles.Right)));
            gbSkillBrowserIconSet.Controls.Add(this.tableLayoutPanel4);
            gbSkillBrowserIconSet.Location = new System.Drawing.Point(7, 55);
            gbSkillBrowserIconSet.Name = "gbSkillBrowserIconSet";
            gbSkillBrowserIconSet.Size = new System.Drawing.Size(225, 204);
            gbSkillBrowserIconSet.TabIndex = 14;
            gbSkillBrowserIconSet.TabStop = false;
            gbSkillBrowserIconSet.Text = "Skill Browser Icon Set";
            // 
            // tableLayoutPanel4
            // 
            this.tableLayoutPanel4.AutoSize = true;
            this.tableLayoutPanel4.ColumnCount = 1;
            this.tableLayoutPanel4.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F));
            this.tableLayoutPanel4.Controls.Add(this.cbSkillIconSet, 0, 0);
            this.tableLayoutPanel4.Controls.Add(this.tvlist, 0, 1);
            this.tableLayoutPanel4.Dock = System.Windows.Forms.DockStyle.Fill;
            this.tableLayoutPanel4.Location = new System.Drawing.Point(3, 17);
            this.tableLayoutPanel4.Name = "tableLayoutPanel4";
            this.tableLayoutPanel4.RowCount = 2;
            this.tableLayoutPanel4.RowStyles.Add(new System.Windows.Forms.RowStyle());
            this.tableLayoutPanel4.RowStyles.Add(new System.Windows.Forms.RowStyle());
            this.tableLayoutPanel4.Size = new System.Drawing.Size(219, 184);
            this.tableLayoutPanel4.TabIndex = 15;
            // 
            // cbSkillIconSet
            // 
            this.cbSkillIconSet.Dock = System.Windows.Forms.DockStyle.Fill;
            this.cbSkillIconSet.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
            this.cbSkillIconSet.FormattingEnabled = true;
            this.cbSkillIconSet.Location = new System.Drawing.Point(3, 3);
            this.cbSkillIconSet.Name = "cbSkillIconSet";
            this.cbSkillIconSet.Size = new System.Drawing.Size(213, 21);
            this.cbSkillIconSet.TabIndex = 3;
            this.cbSkillIconSet.SelectedIndexChanged += new System.EventHandler(this.skillIconSetComboBox_SelectedIndexChanged);
            // 
            // tvlist
            // 
            this.tvlist.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                        | System.Windows.Forms.AnchorStyles.Left)
                        | System.Windows.Forms.AnchorStyles.Right)));
            this.tvlist.Location = new System.Drawing.Point(3, 30);
            this.tvlist.Name = "tvlist";
            treeNode1.Name = "Node1";
            treeNode1.Text = "Node1";
            treeNode2.Name = "Node2";
            treeNode2.Text = "Node2";
            treeNode3.Name = "Node3";
            treeNode3.Text = "Node3";
            treeNode4.Name = "Node4";
            treeNode4.Text = "Node4";
            treeNode5.Name = "Node5";
            treeNode5.Text = "Node5";
            treeNode6.Name = "Node6";
            treeNode6.Text = "Node6";
            treeNode7.Name = "Node7";
            treeNode7.Text = "Node7";
            treeNode8.Name = "Node8";
            treeNode8.Text = "Node8";
            treeNode9.Name = "Node0";
            treeNode9.Text = "Node0";
            this.tvlist.Nodes.AddRange(new System.Windows.Forms.TreeNode[] {
            treeNode9});
            this.tvlist.Size = new System.Drawing.Size(213, 151);
            this.tvlist.TabIndex = 9;
            // 
            // label2
            // 
            label2.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                        | System.Windows.Forms.AnchorStyles.Right)));
            label2.ForeColor = System.Drawing.SystemColors.MenuHighlight;
            label2.Location = new System.Drawing.Point(5, 30);
            label2.Name = "label2";
            label2.Size = new System.Drawing.Size(424, 28);
            label2.TabIndex = 24;
            label2.Text = "You can configure how EVEMon handles skills that appear to be completed and reset" +
                " the appearing messages behavior.";
            // 
            // tableLayoutPanel1
            // 
            this.tableLayoutPanel1.AutoSize = true;
            this.tableLayoutPanel1.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
            this.tableLayoutPanel1.ColumnCount = 2;
            this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle());
            this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle());
            this.tableLayoutPanel1.Controls.Add(this.label6, 0, 3);
            this.tableLayoutPanel1.Controls.Add(this.label7, 0, 0);
            this.tableLayoutPanel1.Location = new System.Drawing.Point(0, 0);
            this.tableLayoutPanel1.Name = "tableLayoutPanel1";
            this.tableLayoutPanel1.RowCount = 4;
            this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 20F));
            this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 20F));
            this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 20F));
            this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 20F));
            this.tableLayoutPanel1.Size = new System.Drawing.Size(200, 100);
            this.tableLayoutPanel1.TabIndex = 0;
            // 
            // label6
            // 
            this.label6.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                        | System.Windows.Forms.AnchorStyles.Right)));
            this.label6.AutoSize = true;
            this.label6.Location = new System.Drawing.Point(3, 60);
            this.label6.Name = "label6";
            this.label6.Size = new System.Drawing.Size(90, 40);
            this.label6.TabIndex = 8;
            this.label6.Text = "Server Password:"******"label7";
            this.label7.Size = new System.Drawing.Size(69, 20);
            this.label7.TabIndex = 0;
            this.label7.Text = "Email Server:";
            this.label7.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // label8
            // 
            this.label8.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                        | System.Windows.Forms.AnchorStyles.Right)));
            this.label8.AutoSize = true;
            this.label8.Location = new System.Drawing.Point(22, 101);
            this.label8.Name = "label8";
            this.label8.Size = new System.Drawing.Size(73, 26);
            this.label8.TabIndex = 1;
            this.label8.Text = "From address:";
            this.label8.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // flowLayoutPanel9
            // 
            this.flowLayoutPanel9.AutoSize = true;
            this.flowLayoutPanel9.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
            this.flowLayoutPanel9.Controls.Add(this.checkBox1);
            this.flowLayoutPanel9.Controls.Add(this.checkBox2);
            this.flowLayoutPanel9.Controls.Add(this.checkBox3);
            this.flowLayoutPanel9.Dock = System.Windows.Forms.DockStyle.Fill;
            this.flowLayoutPanel9.FlowDirection = System.Windows.Forms.FlowDirection.TopDown;
            this.flowLayoutPanel9.Location = new System.Drawing.Point(3, 16);
            this.flowLayoutPanel9.Name = "flowLayoutPanel9";
            this.flowLayoutPanel9.Padding = new System.Windows.Forms.Padding(9, 0, 9, 0);
            this.flowLayoutPanel9.Size = new System.Drawing.Size(356, 70);
            this.flowLayoutPanel9.TabIndex = 3;
            // 
            // checkBox1
            // 
            this.checkBox1.AutoSize = true;
            this.checkBox1.Location = new System.Drawing.Point(12, 3);
            this.checkBox1.Name = "checkBox1";
            this.checkBox1.Size = new System.Drawing.Size(102, 17);
            this.checkBox1.TabIndex = 0;
            this.checkBox1.Text = "Minimize to Tray";
            this.checkBox1.UseVisualStyleBackColor = true;
            // 
            // checkBox2
            // 
            this.checkBox2.AutoSize = true;
            this.checkBox2.Location = new System.Drawing.Point(12, 26);
            this.checkBox2.Name = "checkBox2";
            this.checkBox2.Size = new System.Drawing.Size(171, 17);
            this.checkBox2.TabIndex = 1;
            this.checkBox2.Text = "Set window title to training time";
            this.checkBox2.UseVisualStyleBackColor = true;
            // 
            // checkBox3
            // 
            this.checkBox3.AutoSize = true;
            this.checkBox3.Location = new System.Drawing.Point(12, 49);
            this.checkBox3.Name = "checkBox3";
            this.checkBox3.Size = new System.Drawing.Size(264, 17);
            this.checkBox3.TabIndex = 2;
            this.checkBox3.Text = "Run in \"safe for work\" mode (no portraits or colors)";
            this.checkBox3.UseVisualStyleBackColor = true;
            // 
            // chName
            // 
            this.chName.Text = "Sample";
            // 
            // cbUseIncreasedContrastOnOverview
            // 
            this.cbUseIncreasedContrastOnOverview.AutoSize = true;
            this.cbUseIncreasedContrastOnOverview.Location = new System.Drawing.Point(190, 20);
            this.cbUseIncreasedContrastOnOverview.Name = "cbUseIncreasedContrastOnOverview";
            this.cbUseIncreasedContrastOnOverview.Size = new System.Drawing.Size(137, 17);
            this.cbUseIncreasedContrastOnOverview.TabIndex = 34;
            this.cbUseIncreasedContrastOnOverview.Text = "Use Increased Contrast";
            this.ttToolTipCodes.SetToolTip(this.cbUseIncreasedContrastOnOverview, "When enabled, increases the contrast of the shown info");
            this.cbUseIncreasedContrastOnOverview.UseVisualStyleBackColor = true;
            // 
            // overviewGroupCharactersInTrainingCheckBox
            // 
            this.overviewGroupCharactersInTrainingCheckBox.AutoSize = true;
            this.overviewGroupCharactersInTrainingCheckBox.Location = new System.Drawing.Point(161, 26);
            this.overviewGroupCharactersInTrainingCheckBox.Name = "overviewGroupCharactersInTrainingCheckBox";
            this.overviewGroupCharactersInTrainingCheckBox.Size = new System.Drawing.Size(167, 17);
            this.overviewGroupCharactersInTrainingCheckBox.TabIndex = 33;
            this.overviewGroupCharactersInTrainingCheckBox.Text = "Group Character\'s In Training";
            this.ttToolTipCodes.SetToolTip(this.overviewGroupCharactersInTrainingCheckBox, "When enabled, groups the character\'s\r\nthat are currently in training");
            this.overviewGroupCharactersInTrainingCheckBox.UseVisualStyleBackColor = true;
            // 
            // overviewShowSkillQueueTrainingTimeCheckBox
            // 
            this.overviewShowSkillQueueTrainingTimeCheckBox.AutoSize = true;
            this.overviewShowSkillQueueTrainingTimeCheckBox.Location = new System.Drawing.Point(161, 3);
            this.overviewShowSkillQueueTrainingTimeCheckBox.Name = "overviewShowSkillQueueTrainingTimeCheckBox";
            this.overviewShowSkillQueueTrainingTimeCheckBox.Size = new System.Drawing.Size(173, 17);
            this.overviewShowSkillQueueTrainingTimeCheckBox.TabIndex = 32;
            this.overviewShowSkillQueueTrainingTimeCheckBox.Text = "Show Skill Queue Training Time";
            this.ttToolTipCodes.SetToolTip(this.overviewShowSkillQueueTrainingTimeCheckBox, "When enabled, shows the character\'s\r\nskill queue training time");
            this.overviewShowSkillQueueTrainingTimeCheckBox.UseVisualStyleBackColor = true;
            // 
            // overviewShowWalletCheckBox
            // 
            this.overviewShowWalletCheckBox.AutoSize = true;
            this.overviewShowWalletCheckBox.Location = new System.Drawing.Point(3, 3);
            this.overviewShowWalletCheckBox.Name = "overviewShowWalletCheckBox";
            this.overviewShowWalletCheckBox.Size = new System.Drawing.Size(125, 17);
            this.overviewShowWalletCheckBox.TabIndex = 30;
            this.overviewShowWalletCheckBox.Text = "Show Wallet Balance";
            this.ttToolTipCodes.SetToolTip(this.overviewShowWalletCheckBox, "When enabled, shows the character\'s wallet balance");
            this.overviewShowWalletCheckBox.UseVisualStyleBackColor = true;
            // 
            // overviewShowPortraitCheckBox
            // 
            this.overviewShowPortraitCheckBox.AutoSize = true;
            this.overviewShowPortraitCheckBox.Location = new System.Drawing.Point(3, 26);
            this.overviewShowPortraitCheckBox.Name = "overviewShowPortraitCheckBox";
            this.overviewShowPortraitCheckBox.Size = new System.Drawing.Size(142, 17);
            this.overviewShowPortraitCheckBox.TabIndex = 26;
            this.overviewShowPortraitCheckBox.Text = "Show Character Portrait";
            this.ttToolTipCodes.SetToolTip(this.overviewShowPortraitCheckBox, "When enabled, shows the character\'s portrait\r\nas a thumbnail alongside the charac" +
                    "ter\'s name");
            this.overviewShowPortraitCheckBox.UseVisualStyleBackColor = true;
            // 
            // cbShowOverViewTab
            // 
            this.cbShowOverViewTab.AutoSize = true;
            this.cbShowOverViewTab.Location = new System.Drawing.Point(14, 20);
            this.cbShowOverViewTab.Name = "cbShowOverViewTab";
            this.cbShowOverViewTab.Size = new System.Drawing.Size(129, 17);
            this.cbShowOverViewTab.TabIndex = 0;
            this.cbShowOverViewTab.Text = "Show \"Overview\" tab";
            this.ttToolTipCodes.SetToolTip(this.cbShowOverViewTab, "When enabled, shows the Overview tab");
            this.cbShowOverViewTab.UseVisualStyleBackColor = true;
            this.cbShowOverViewTab.CheckedChanged += new System.EventHandler(this.OnMustEnableOrDisable);
            // 
            // treeView
            // 
            this.treeView.BackColor = System.Drawing.SystemColors.ControlLightLight;
            this.treeView.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
            this.treeView.Dock = System.Windows.Forms.DockStyle.Fill;
            this.treeView.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.treeView.FullRowSelect = true;
            this.treeView.HideSelection = false;
            this.treeView.ImageIndex = 0;
            this.treeView.ImageList = this.imageList;
            this.treeView.ItemHeight = 20;
            this.treeView.Location = new System.Drawing.Point(6, 6);
            this.treeView.Name = "treeView";
            treeNode10.ImageIndex = 11;
            treeNode10.Name = "Node9";
            treeNode10.SelectedImageIndex = 11;
            treeNode10.Tag = "updatesPage";
            treeNode10.Text = "Updates";
            treeNode11.ImageIndex = 7;
            treeNode11.Name = "Node5";
            treeNode11.SelectedImageIndex = 7;
            treeNode11.Tag = "networkPage";
            treeNode11.Text = "Network";
            treeNode12.ImageIndex = 4;
            treeNode12.Name = "g15Node";
            treeNode12.SelectedImageIndex = 4;
            treeNode12.Tag = "g15Page";
            treeNode12.Text = "Logitech Keyboards";
            treeNode13.ImageIndex = 3;
            treeNode13.Name = "Node2";
            treeNode13.SelectedImageIndex = 3;
            treeNode13.Tag = "igbServerPage";
            treeNode13.Text = "IGB Server";
            treeNode14.ImageIndex = 10;
            treeNode14.Name = "generalNode";
            treeNode14.SelectedImageIndex = 10;
            treeNode14.Tag = "generalPage";
            treeNode14.Text = "General";
            treeNode15.ImageIndex = 6;
            treeNode15.Name = "Node3";
            treeNode15.SelectedImageIndex = 6;
            treeNode15.Tag = "mainWindowPage";
            treeNode15.Text = "Main Window";
            treeNode16.ImageIndex = 13;
            treeNode16.Name = "IconsNode";
            treeNode16.SelectedImageIndex = 13;
            treeNode16.Tag = "iconsPage";
            treeNode16.Text = "Icons";
            treeNode17.ImageIndex = 14;
            treeNode17.Name = "MassagesNode";
            treeNode17.SelectedImageIndex = 14;
            treeNode17.Tag = "messagesPage";
            treeNode17.Text = "Messages";
            treeNode18.ImageIndex = 8;
            treeNode18.Name = "Node4";
            treeNode18.SelectedImageIndex = 8;
            treeNode18.Tag = "skillPlannerPage";
            treeNode18.Text = "Skill Planner";
            treeNode19.ImageIndex = 2;
            treeNode19.Name = "trayIconNode";
            treeNode19.SelectedImageIndex = 2;
            treeNode19.Tag = "trayIconPage";
            treeNode19.Text = "System Tray Icon";
            treeNode20.ImageIndex = 5;
            treeNode20.Name = "Node11";
            treeNode20.SelectedImageIndex = 5;
            treeNode20.Tag = "externalCalendarPage";
            treeNode20.Text = "External Calendar";
            treeNode21.ImageIndex = 1;
            treeNode21.Name = "Node10";
            treeNode21.SelectedImageIndex = 1;
            treeNode21.Tag = "schedulerUIPage";
            treeNode21.Text = "Scheduler";
            treeNode22.ImageIndex = 12;
            treeNode22.Name = "Node7";
            treeNode22.SelectedImageIndex = 12;
            treeNode22.Tag = "emailNotificationsPage";
            treeNode22.Text = "Skill Completion Mails";
            treeNode23.ImageIndex = 9;
            treeNode23.Name = "Node2";
            treeNode23.SelectedImageIndex = 9;
            treeNode23.Tag = "notificationsPage";
            treeNode23.Text = "Notifications";
            treeNode24.ImageIndex = 15;
            treeNode24.Name = "BattleClinicWebServiceNode";
            treeNode24.SelectedImageIndex = 15;
            treeNode24.Tag = "battleClinicServicePage";
            treeNode24.Text = "BattleClinic Service";
            this.treeView.Nodes.AddRange(new System.Windows.Forms.TreeNode[] {
            treeNode14,
            treeNode15,
            treeNode18,
            treeNode19,
            treeNode21,
            treeNode23,
            treeNode24});
            this.treeView.SelectedImageIndex = 0;
            this.treeView.ShowLines = false;
            this.treeView.ShowPlusMinus = false;
            this.treeView.ShowRootLines = false;
            this.treeView.Size = new System.Drawing.Size(187, 424);
            this.treeView.TabIndex = 6;
            this.treeView.AfterSelect += new System.Windows.Forms.TreeViewEventHandler(this.treeView_AfterSelect);
            // 
            // imageList
            // 
            this.imageList.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageList.ImageStream")));
            this.imageList.TransparentColor = System.Drawing.Color.Empty;
            this.imageList.Images.SetKeyName(0, "Transparent.png");
            this.imageList.Images.SetKeyName(1, "Calendar.png");
            this.imageList.Images.SetKeyName(2, "EVEMon16.png");
            this.imageList.Images.SetKeyName(3, "IGB Server.png");
            this.imageList.Images.SetKeyName(4, "Logitech Keyboard.png");
            this.imageList.Images.SetKeyName(5, "gcalendar.png");
            this.imageList.Images.SetKeyName(6, "MainWindow.png");
            this.imageList.Images.SetKeyName(7, "Online.png");
            this.imageList.Images.SetKeyName(8, "Plan.png");
            this.imageList.Images.SetKeyName(9, "Problem.png");
            this.imageList.Images.SetKeyName(10, "Settings.png");
            this.imageList.Images.SetKeyName(11, "Update3.png");
            this.imageList.Images.SetKeyName(12, "Email.png");
            this.imageList.Images.SetKeyName(13, "book.png");
            this.imageList.Images.SetKeyName(14, "messagebox.png");
            this.imageList.Images.SetKeyName(15, "BattleClinic.png");
            // 
            // leftPanel
            // 
            this.leftPanel.BackColor = System.Drawing.SystemColors.ControlLightLight;
            this.leftPanel.Controls.Add(this.treeView);
            this.leftPanel.Dock = System.Windows.Forms.DockStyle.Left;
            this.leftPanel.Location = new System.Drawing.Point(0, 0);
            this.leftPanel.Name = "leftPanel";
            this.leftPanel.Padding = new System.Windows.Forms.Padding(6);
            this.leftPanel.Size = new System.Drawing.Size(199, 436);
            this.leftPanel.TabIndex = 9;
            // 
            // multiPanel
            // 
            this.multiPanel.Controls.Add(this.mainWindowPage);
            this.multiPanel.Controls.Add(this.generalPage);
            this.multiPanel.Controls.Add(this.skillPlannerPage);
            this.multiPanel.Controls.Add(this.networkPage);
            this.multiPanel.Controls.Add(this.emailNotificationsPage);
            this.multiPanel.Controls.Add(this.notificationsPage);
            this.multiPanel.Controls.Add(this.trayIconPage);
            this.multiPanel.Controls.Add(this.updatesPage);
            this.multiPanel.Controls.Add(this.schedulerUIPage);
            this.multiPanel.Controls.Add(this.externalCalendarPage);
            this.multiPanel.Controls.Add(this.g15Page);
            this.multiPanel.Controls.Add(this.igbServerPage);
            this.multiPanel.Controls.Add(this.iconsPage);
            this.multiPanel.Controls.Add(this.messagesPage);
            this.multiPanel.Controls.Add(this.battleClinicServicePage);
            this.multiPanel.Dock = System.Windows.Forms.DockStyle.Fill;
            this.multiPanel.Location = new System.Drawing.Point(199, 0);
            this.multiPanel.Name = "multiPanel";
            this.multiPanel.Padding = new System.Windows.Forms.Padding(5);
            this.multiPanel.SelectedPage = this.mainWindowPage;
            this.multiPanel.Size = new System.Drawing.Size(445, 436);
            this.multiPanel.TabIndex = 7;
            // 
            // mainWindowPage
            // 
            this.mainWindowPage.Controls.Add(lblMainWindowPage);
            this.mainWindowPage.Controls.Add(this.groupBox2);
            this.mainWindowPage.Controls.Add(groupBox15);
            this.mainWindowPage.Controls.Add(groupBox7);
            this.mainWindowPage.Dock = System.Windows.Forms.DockStyle.Fill;
            this.mainWindowPage.Location = new System.Drawing.Point(5, 5);
            this.mainWindowPage.Name = "mainWindowPage";
            this.mainWindowPage.Size = new System.Drawing.Size(435, 426);
            this.mainWindowPage.TabIndex = 1;
            this.mainWindowPage.Text = "mainWindowPage";
            // 
            // groupBox2
            // 
            this.groupBox2.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                        | System.Windows.Forms.AnchorStyles.Right)));
            this.groupBox2.Controls.Add(this.cbUseIncreasedContrastOnOverview);
            this.groupBox2.Controls.Add(this.overviewPanel);
            this.groupBox2.Controls.Add(this.cbShowOverViewTab);
            this.groupBox2.Location = new System.Drawing.Point(1, 274);
            this.groupBox2.Name = "groupBox2";
            this.groupBox2.Size = new System.Drawing.Size(428, 127);
            this.groupBox2.TabIndex = 15;
            this.groupBox2.TabStop = false;
            this.groupBox2.Text = "Overview";
            // 
            // overviewPanel
            // 
            this.overviewPanel.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                        | System.Windows.Forms.AnchorStyles.Right)));
            this.overviewPanel.Controls.Add(this.overviewGroupCharactersInTrainingCheckBox);
            this.overviewPanel.Controls.Add(this.overviewShowSkillQueueTrainingTimeCheckBox);
            this.overviewPanel.Controls.Add(this.overviewShowWalletCheckBox);
            this.overviewPanel.Controls.Add(lblSize);
            this.overviewPanel.Controls.Add(this.overviewShowPortraitCheckBox);
            this.overviewPanel.Controls.Add(this.overviewPortraitSizeComboBox);
            this.overviewPanel.Location = new System.Drawing.Point(29, 43);
            this.overviewPanel.Name = "overviewPanel";
            this.overviewPanel.Size = new System.Drawing.Size(393, 79);
            this.overviewPanel.TabIndex = 32;
            // 
            // overviewPortraitSizeComboBox
            // 
            this.overviewPortraitSizeComboBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
            this.overviewPortraitSizeComboBox.FormattingEnabled = true;
            this.overviewPortraitSizeComboBox.Location = new System.Drawing.Point(52, 49);
            this.overviewPortraitSizeComboBox.Name = "overviewPortraitSizeComboBox";
            this.overviewPortraitSizeComboBox.Size = new System.Drawing.Size(93, 21);
            this.overviewPortraitSizeComboBox.TabIndex = 28;
            // 
            // generalPage
            // 
            this.generalPage.Controls.Add(lblGeneralPage);
            this.generalPage.Controls.Add(this.cbWorksafeMode);
            this.generalPage.Controls.Add(this.compatibilityCombo);
            this.generalPage.Controls.Add(lblEnvironment);
            this.generalPage.Controls.Add(this.runAtStartupComboBox);
            this.generalPage.Dock = System.Windows.Forms.DockStyle.Fill;
            this.generalPage.Location = new System.Drawing.Point(5, 5);
            this.generalPage.Name = "generalPage";
            this.generalPage.Size = new System.Drawing.Size(435, 426);
            this.generalPage.TabIndex = 0;
            this.generalPage.Text = "generalPage";
            this.generalPage.Visible = false;
            // 
            // cbWorksafeMode
            // 
            this.cbWorksafeMode.AutoSize = true;
            this.cbWorksafeMode.Location = new System.Drawing.Point(3, 131);
            this.cbWorksafeMode.Name = "cbWorksafeMode";
            this.cbWorksafeMode.Size = new System.Drawing.Size(271, 17);
            this.cbWorksafeMode.TabIndex = 6;
            this.cbWorksafeMode.Text = "Run in \"safe for work\" mode (no portraits or colors)";
            this.cbWorksafeMode.UseVisualStyleBackColor = true;
            this.cbWorksafeMode.CheckedChanged += new System.EventHandler(this.OnMustEnableOrDisable);
            // 
            // compatibilityCombo
            // 
            this.compatibilityCombo.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
            this.compatibilityCombo.FormattingEnabled = true;
            this.compatibilityCombo.Items.AddRange(new object[] {
            "Windows",
            "Wine"});
            this.compatibilityCombo.Location = new System.Drawing.Point(231, 178);
            this.compatibilityCombo.Name = "compatibilityCombo";
            this.compatibilityCombo.Size = new System.Drawing.Size(121, 21);
            this.compatibilityCombo.TabIndex = 7;
            // 
            // runAtStartupComboBox
            // 
            this.runAtStartupComboBox.AutoSize = true;
            this.runAtStartupComboBox.Location = new System.Drawing.Point(3, 88);
            this.runAtStartupComboBox.Name = "runAtStartupComboBox";
            this.runAtStartupComboBox.Size = new System.Drawing.Size(138, 17);
            this.runAtStartupComboBox.TabIndex = 5;
            this.runAtStartupComboBox.Text = "Run EVEMon at Startup";
            this.runAtStartupComboBox.UseVisualStyleBackColor = true;
            // 
            // skillPlannerPage
            // 
            this.skillPlannerPage.Controls.Add(this.cbAdvanceEntryAdd);
            this.skillPlannerPage.Controls.Add(this.cbSummaryOnMultiSelectOnly);
            this.skillPlannerPage.Controls.Add(lblSkillPlannerPage);
            this.skillPlannerPage.Controls.Add(this.cbHighlightQueuedSiklls);
            this.skillPlannerPage.Controls.Add(this.cbHighlightPartialSkills);
            this.skillPlannerPage.Controls.Add(this.cbHighlightConflicts);
            this.skillPlannerPage.Controls.Add(this.cbHighlightPrerequisites);
            this.skillPlannerPage.Controls.Add(this.cbHighlightPlannedSkills);
            this.skillPlannerPage.Dock = System.Windows.Forms.DockStyle.Fill;
            this.skillPlannerPage.Location = new System.Drawing.Point(5, 5);
            this.skillPlannerPage.Name = "skillPlannerPage";
            this.skillPlannerPage.Size = new System.Drawing.Size(435, 426);
            this.skillPlannerPage.TabIndex = 3;
            this.skillPlannerPage.Text = "skillPlannerPage";
            this.skillPlannerPage.Visible = false;
            // 
            // cbAdvanceEntryAdd
            // 
            this.cbAdvanceEntryAdd.AutoSize = true;
            this.cbAdvanceEntryAdd.Location = new System.Drawing.Point(14, 198);
            this.cbAdvanceEntryAdd.Name = "cbAdvanceEntryAdd";
            this.cbAdvanceEntryAdd.Size = new System.Drawing.Size(211, 17);
            this.cbAdvanceEntryAdd.TabIndex = 21;
            this.cbAdvanceEntryAdd.Text = "Set Priority When Adding Skills To Plan";
            this.cbAdvanceEntryAdd.UseVisualStyleBackColor = true;
            // 
            // cbSummaryOnMultiSelectOnly
            // 
            this.cbSummaryOnMultiSelectOnly.AutoSize = true;
            this.cbSummaryOnMultiSelectOnly.Location = new System.Drawing.Point(14, 175);
            this.cbSummaryOnMultiSelectOnly.Name = "cbSummaryOnMultiSelectOnly";
            this.cbSummaryOnMultiSelectOnly.Size = new System.Drawing.Size(232, 17);
            this.cbSummaryOnMultiSelectOnly.TabIndex = 20;
            this.cbSummaryOnMultiSelectOnly.Text = "Show Plan Summary Only On \"Multi-Select\"";
            this.cbSummaryOnMultiSelectOnly.UseVisualStyleBackColor = true;
            // 
            // cbHighlightQueuedSiklls
            // 
            this.cbHighlightQueuedSiklls.AutoSize = true;
            this.cbHighlightQueuedSiklls.Location = new System.Drawing.Point(14, 152);
            this.cbHighlightQueuedSiklls.Name = "cbHighlightQueuedSiklls";
            this.cbHighlightQueuedSiklls.Size = new System.Drawing.Size(135, 17);
            this.cbHighlightQueuedSiklls.TabIndex = 14;
            this.cbHighlightQueuedSiklls.Text = "Highlight Queued Skills";
            this.cbHighlightQueuedSiklls.UseVisualStyleBackColor = true;
            // 
            // cbHighlightPartialSkills
            // 
            this.cbHighlightPartialSkills.AutoSize = true;
            this.cbHighlightPartialSkills.Location = new System.Drawing.Point(14, 129);
            this.cbHighlightPartialSkills.Name = "cbHighlightPartialSkills";
            this.cbHighlightPartialSkills.Size = new System.Drawing.Size(172, 17);
            this.cbHighlightPartialSkills.TabIndex = 10;
            this.cbHighlightPartialSkills.Text = "Highlight Partially Trained Skills";
            this.cbHighlightPartialSkills.UseVisualStyleBackColor = true;
            // 
            // cbHighlightConflicts
            // 
            this.cbHighlightConflicts.AutoSize = true;
            this.cbHighlightConflicts.Location = new System.Drawing.Point(14, 83);
            this.cbHighlightConflicts.Name = "cbHighlightConflicts";
            this.cbHighlightConflicts.Size = new System.Drawing.Size(158, 17);
            this.cbHighlightConflicts.TabIndex = 9;
            this.cbHighlightConflicts.Text = "Highlight Schedule Conflicts";
            this.cbHighlightConflicts.UseVisualStyleBackColor = true;
            // 
            // cbHighlightPrerequisites
            // 
            this.cbHighlightPrerequisites.AutoSize = true;
            this.cbHighlightPrerequisites.Location = new System.Drawing.Point(14, 106);
            this.cbHighlightPrerequisites.Name = "cbHighlightPrerequisites";
            this.cbHighlightPrerequisites.Size = new System.Drawing.Size(130, 17);
            this.cbHighlightPrerequisites.TabIndex = 8;
            this.cbHighlightPrerequisites.Text = "Highlight Prerequisites";
            this.cbHighlightPrerequisites.UseVisualStyleBackColor = true;
            // 
            // cbHighlightPlannedSkills
            // 
            this.cbHighlightPlannedSkills.AutoSize = true;
            this.cbHighlightPlannedSkills.Location = new System.Drawing.Point(14, 60);
            this.cbHighlightPlannedSkills.Name = "cbHighlightPlannedSkills";
            this.cbHighlightPlannedSkills.Size = new System.Drawing.Size(136, 17);
            this.cbHighlightPlannedSkills.TabIndex = 0;
            this.cbHighlightPlannedSkills.Text = "Highlight Planned Skills";
            this.cbHighlightPlannedSkills.UseVisualStyleBackColor = true;
            // 
            // networkPage
            // 
            this.networkPage.Controls.Add(this.ApiProxyGroupBox);
            this.networkPage.Controls.Add(this.ProxyServerGroupBox);
            this.networkPage.Dock = System.Windows.Forms.DockStyle.Fill;
            this.networkPage.Location = new System.Drawing.Point(5, 5);
            this.networkPage.Name = "networkPage";
            this.networkPage.Size = new System.Drawing.Size(435, 426);
            this.networkPage.TabIndex = 4;
            this.networkPage.Text = "networkPage";
            this.networkPage.Visible = false;
            // 
            // ApiProxyGroupBox
            // 
            this.ApiProxyGroupBox.Controls.Add(lblNetworkPageAPIProvider);
            this.ApiProxyGroupBox.Controls.Add(this.btnDeleteAPIServer);
            this.ApiProxyGroupBox.Controls.Add(this.btnAddAPIServer);
            this.ApiProxyGroupBox.Controls.Add(this.cbAPIServer);
            this.ApiProxyGroupBox.Controls.Add(this.btnEditAPIServer);
            this.ApiProxyGroupBox.Location = new System.Drawing.Point(3, 235);
            this.ApiProxyGroupBox.Name = "ApiProxyGroupBox";
            this.ApiProxyGroupBox.Size = new System.Drawing.Size(392, 122);
            this.ApiProxyGroupBox.TabIndex = 7;
            this.ApiProxyGroupBox.TabStop = false;
            this.ApiProxyGroupBox.Text = "API Provider";
            // 
            // btnDeleteAPIServer
            // 
            this.btnDeleteAPIServer.Location = new System.Drawing.Point(174, 85);
            this.btnDeleteAPIServer.Name = "btnDeleteAPIServer";
            this.btnDeleteAPIServer.Size = new System.Drawing.Size(75, 23);
            this.btnDeleteAPIServer.TabIndex = 4;
            this.btnDeleteAPIServer.Text = "Delete";
            this.btnDeleteAPIServer.UseVisualStyleBackColor = true;
            this.btnDeleteAPIServer.Click += new System.EventHandler(this.btnDeleteAPIServer_Click);
            // 
            // btnAddAPIServer
            // 
            this.btnAddAPIServer.Location = new System.Drawing.Point(12, 85);
            this.btnAddAPIServer.Name = "btnAddAPIServer";
            this.btnAddAPIServer.Size = new System.Drawing.Size(75, 23);
            this.btnAddAPIServer.TabIndex = 2;
            this.btnAddAPIServer.Text = "Add";
            this.btnAddAPIServer.UseVisualStyleBackColor = true;
            this.btnAddAPIServer.Click += new System.EventHandler(this.btnAddAPIServer_Click);
            // 
            // cbAPIServer
            // 
            this.cbAPIServer.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
            this.cbAPIServer.FormattingEnabled = true;
            this.cbAPIServer.Location = new System.Drawing.Point(12, 58);
            this.cbAPIServer.Name = "cbAPIServer";
            this.cbAPIServer.Size = new System.Drawing.Size(233, 21);
            this.cbAPIServer.TabIndex = 0;
            this.cbAPIServer.SelectedIndexChanged += new System.EventHandler(this.OnMustEnableOrDisable);
            // 
            // btnEditAPIServer
            // 
            this.btnEditAPIServer.Location = new System.Drawing.Point(93, 85);
            this.btnEditAPIServer.Name = "btnEditAPIServer";
            this.btnEditAPIServer.Size = new System.Drawing.Size(75, 23);
            this.btnEditAPIServer.TabIndex = 3;
            this.btnEditAPIServer.Text = "Edit";
            this.btnEditAPIServer.UseVisualStyleBackColor = true;
            this.btnEditAPIServer.Click += new System.EventHandler(this.btnEditAPIServer_Click);
            // 
            // ProxyServerGroupBox
            // 
            this.ProxyServerGroupBox.Controls.Add(this.customProxyCheckBox);
            this.ProxyServerGroupBox.Controls.Add(lblNetworkPageProxy);
            this.ProxyServerGroupBox.Controls.Add(this.customProxyPanel);
            this.ProxyServerGroupBox.Location = new System.Drawing.Point(3, 31);
            this.ProxyServerGroupBox.Name = "ProxyServerGroupBox";
            this.ProxyServerGroupBox.Size = new System.Drawing.Size(392, 157);
            this.ProxyServerGroupBox.TabIndex = 0;
            this.ProxyServerGroupBox.TabStop = false;
            this.ProxyServerGroupBox.Text = "Proxy Server Settings";
            // 
            // customProxyCheckBox
            // 
            this.customProxyCheckBox.AutoSize = true;
            this.customProxyCheckBox.Location = new System.Drawing.Point(9, 74);
            this.customProxyCheckBox.Name = "customProxyCheckBox";
            this.customProxyCheckBox.Size = new System.Drawing.Size(119, 17);
            this.customProxyCheckBox.TabIndex = 9;
            this.customProxyCheckBox.Text = "Use a custom proxy";
            this.customProxyCheckBox.UseVisualStyleBackColor = true;
            this.customProxyCheckBox.CheckedChanged += new System.EventHandler(this.OnMustEnableOrDisable);
            // 
            // customProxyPanel
            // 
            this.customProxyPanel.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                        | System.Windows.Forms.AnchorStyles.Right)));
            this.customProxyPanel.Controls.Add(this.proxyPortTextBox);
            this.customProxyPanel.Controls.Add(label12);
            this.customProxyPanel.Controls.Add(this.proxyAuthenticationButton);
            this.customProxyPanel.Controls.Add(label11);
            this.customProxyPanel.Controls.Add(lblHTTP);
            this.customProxyPanel.Controls.Add(this.proxyHttpHostTextBox);
            this.customProxyPanel.Location = new System.Drawing.Point(17, 97);
            this.customProxyPanel.Name = "customProxyPanel";
            this.customProxyPanel.Size = new System.Drawing.Size(369, 54);
            this.customProxyPanel.TabIndex = 6;
            // 
            // proxyPortTextBox
            // 
            this.proxyPortTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
            this.proxyPortTextBox.Location = new System.Drawing.Point(222, 24);
            this.proxyPortTextBox.MaxLength = 5;
            this.proxyPortTextBox.Name = "proxyPortTextBox";
            this.proxyPortTextBox.Size = new System.Drawing.Size(38, 21);
            this.proxyPortTextBox.TabIndex = 2;
            this.proxyPortTextBox.Validating += new System.ComponentModel.CancelEventHandler(this.proxyPortTextBox_Validating);
            // 
            // proxyAuthenticationButton
            // 
            this.proxyAuthenticationButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
            this.proxyAuthenticationButton.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
            this.proxyAuthenticationButton.Location = new System.Drawing.Point(266, 22);
            this.proxyAuthenticationButton.Margin = new System.Windows.Forms.Padding(3, 3, 3, 0);
            this.proxyAuthenticationButton.Name = "proxyAuthenticationButton";
            this.proxyAuthenticationButton.Size = new System.Drawing.Size(97, 23);
            this.proxyAuthenticationButton.TabIndex = 5;
            this.proxyAuthenticationButton.Text = "Authentication...";
            this.proxyAuthenticationButton.UseVisualStyleBackColor = true;
            this.proxyAuthenticationButton.Click += new System.EventHandler(this.proxyAuthenticationButton_Click);
            // 
            // proxyHttpHostTextBox
            // 
            this.proxyHttpHostTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                        | System.Windows.Forms.AnchorStyles.Right)));
            this.proxyHttpHostTextBox.Location = new System.Drawing.Point(50, 24);
            this.proxyHttpHostTextBox.Name = "proxyHttpHostTextBox";
            this.proxyHttpHostTextBox.Size = new System.Drawing.Size(165, 21);
            this.proxyHttpHostTextBox.TabIndex = 1;
            // 
            // emailNotificationsPage
            // 
            this.emailNotificationsPage.Controls.Add(lblEmailNotificationPage);
            this.emailNotificationsPage.Controls.Add(this.mailNotificationPanel);
            this.emailNotificationsPage.Controls.Add(this.mailNotificationCheckBox);
            this.emailNotificationsPage.Dock = System.Windows.Forms.DockStyle.Fill;
            this.emailNotificationsPage.Location = new System.Drawing.Point(5, 5);
            this.emailNotificationsPage.Name = "emailNotificationsPage";
            this.emailNotificationsPage.Size = new System.Drawing.Size(435, 426);
            this.emailNotificationsPage.TabIndex = 6;
            this.emailNotificationsPage.Text = "emailNotificationsPage";
            this.emailNotificationsPage.Visible = false;
            // 
            // mailNotificationPanel
            // 
            this.mailNotificationPanel.AutoSize = true;
            this.mailNotificationPanel.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
            this.mailNotificationPanel.Controls.Add(this.cbEmailUseShortFormat);
            this.mailNotificationPanel.Controls.Add(this.tableLayoutPanel2);
            this.mailNotificationPanel.Controls.Add(this.btnTestEmail);
            this.mailNotificationPanel.FlowDirection = System.Windows.Forms.FlowDirection.TopDown;
            this.mailNotificationPanel.Location = new System.Drawing.Point(3, 104);
            this.mailNotificationPanel.Name = "mailNotificationPanel";
            this.mailNotificationPanel.Padding = new System.Windows.Forms.Padding(9, 0, 9, 0);
            this.mailNotificationPanel.Size = new System.Drawing.Size(362, 285);
            this.mailNotificationPanel.TabIndex = 1;
            this.mailNotificationPanel.WrapContents = false;
            // 
            // cbEmailUseShortFormat
            // 
            this.cbEmailUseShortFormat.AutoSize = true;
            this.cbEmailUseShortFormat.Location = new System.Drawing.Point(12, 3);
            this.cbEmailUseShortFormat.Name = "cbEmailUseShortFormat";
            this.cbEmailUseShortFormat.Size = new System.Drawing.Size(179, 17);
            this.cbEmailUseShortFormat.TabIndex = 2;
            this.cbEmailUseShortFormat.Text = "Use Short Format (SMS-Friendly)";
            this.cbEmailUseShortFormat.UseVisualStyleBackColor = true;
            // 
            // tableLayoutPanel2
            // 
            this.tableLayoutPanel2.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
            this.tableLayoutPanel2.ColumnCount = 3;
            this.tableLayoutPanel2.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50F));
            this.tableLayoutPanel2.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle());
            this.tableLayoutPanel2.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50F));
            this.tableLayoutPanel2.Controls.Add(this.tlpEmailSettings, 1, 0);
            this.tableLayoutPanel2.Location = new System.Drawing.Point(12, 26);
            this.tableLayoutPanel2.Name = "tableLayoutPanel2";
            this.tableLayoutPanel2.RowCount = 1;
            this.tableLayoutPanel2.RowStyles.Add(new System.Windows.Forms.RowStyle());
            this.tableLayoutPanel2.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 227F));
            this.tableLayoutPanel2.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 227F));
            this.tableLayoutPanel2.Size = new System.Drawing.Size(338, 227);
            this.tableLayoutPanel2.TabIndex = 1;
            // 
            // tlpEmailSettings
            // 
            this.tlpEmailSettings.AutoSize = true;
            this.tlpEmailSettings.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
            this.tlpEmailSettings.ColumnCount = 2;
            this.tlpEmailSettings.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle());
            this.tlpEmailSettings.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle());
            this.tlpEmailSettings.Controls.Add(lblEmailServer, 0, 0);
            this.tlpEmailSettings.Controls.Add(lblFromAddress, 0, 5);
            this.tlpEmailSettings.Controls.Add(lblToAddress, 0, 6);
            this.tlpEmailSettings.Controls.Add(this.tbMailServer, 1, 0);
            this.tlpEmailSettings.Controls.Add(this.tbFromAddress, 1, 5);
            this.tlpEmailSettings.Controls.Add(this.tbToAddress, 1, 6);
            this.tlpEmailSettings.Controls.Add(this.cbEmailServerRequireSsl, 1, 2);
            this.tlpEmailSettings.Controls.Add(this.cbEmailAuthRequired, 1, 3);
            this.tlpEmailSettings.Controls.Add(this.tlpEmailAuthTable, 1, 4);
            this.tlpEmailSettings.Controls.Add(this.emailPortTextBox, 1, 1);
            this.tlpEmailSettings.Controls.Add(lblPortNumber, 0, 1);
            this.tlpEmailSettings.Location = new System.Drawing.Point(22, 3);
            this.tlpEmailSettings.Name = "tlpEmailSettings";
            this.tlpEmailSettings.RowCount = 7;
            this.tlpEmailSettings.RowStyles.Add(new System.Windows.Forms.RowStyle());
            this.tlpEmailSettings.RowStyles.Add(new System.Windows.Forms.RowStyle());
            this.tlpEmailSettings.RowStyles.Add(new System.Windows.Forms.RowStyle());
            this.tlpEmailSettings.RowStyles.Add(new System.Windows.Forms.RowStyle());
            this.tlpEmailSettings.RowStyles.Add(new System.Windows.Forms.RowStyle());
            this.tlpEmailSettings.RowStyles.Add(new System.Windows.Forms.RowStyle());
            this.tlpEmailSettings.RowStyles.Add(new System.Windows.Forms.RowStyle());
            this.tlpEmailSettings.Size = new System.Drawing.Size(294, 216);
            this.tlpEmailSettings.TabIndex = 2;
            // 
            // tbMailServer
            // 
            this.tbMailServer.Location = new System.Drawing.Point(85, 3);
            this.tbMailServer.Name = "tbMailServer";
            this.tbMailServer.Size = new System.Drawing.Size(152, 21);
            this.tbMailServer.TabIndex = 1;
            // 
            // tbFromAddress
            // 
            this.tbFromAddress.Location = new System.Drawing.Point(85, 165);
            this.tbFromAddress.Name = "tbFromAddress";
            this.tbFromAddress.Size = new System.Drawing.Size(206, 21);
            this.tbFromAddress.TabIndex = 1;
            // 
            // tbToAddress
            // 
            this.tbToAddress.Location = new System.Drawing.Point(85, 192);
            this.tbToAddress.Name = "tbToAddress";
            this.tbToAddress.Size = new System.Drawing.Size(206, 21);
            this.tbToAddress.TabIndex = 1;
            // 
            // cbEmailServerRequireSsl
            // 
            this.cbEmailServerRequireSsl.AutoSize = true;
            this.cbEmailServerRequireSsl.Location = new System.Drawing.Point(85, 57);
            this.cbEmailServerRequireSsl.Name = "cbEmailServerRequireSsl";
            this.cbEmailServerRequireSsl.Size = new System.Drawing.Size(114, 17);
            this.cbEmailServerRequireSsl.TabIndex = 1;
            this.cbEmailServerRequireSsl.Text = "Connect using SSL";
            this.cbEmailServerRequireSsl.UseVisualStyleBackColor = true;
            // 
            // cbEmailAuthRequired
            // 
            this.cbEmailAuthRequired.AutoSize = true;
            this.cbEmailAuthRequired.Location = new System.Drawing.Point(85, 80);
            this.cbEmailAuthRequired.Name = "cbEmailAuthRequired";
            this.cbEmailAuthRequired.Size = new System.Drawing.Size(125, 17);
            this.cbEmailAuthRequired.TabIndex = 1;
            this.cbEmailAuthRequired.Text = "Server requires login";
            this.cbEmailAuthRequired.UseVisualStyleBackColor = true;
            this.cbEmailAuthRequired.CheckedChanged += new System.EventHandler(this.OnMustEnableOrDisable);
            // 
            // tlpEmailAuthTable
            // 
            this.tlpEmailAuthTable.AutoSize = true;
            this.tlpEmailAuthTable.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
            this.tlpEmailAuthTable.ColumnCount = 2;
            this.tlpEmailAuthTable.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle());
            this.tlpEmailAuthTable.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle());
            this.tlpEmailAuthTable.Controls.Add(lblEmailPassword, 0, 1);
            this.tlpEmailAuthTable.Controls.Add(lblEmailUsername, 0, 0);
            this.tlpEmailAuthTable.Controls.Add(this.tbEmailUsername, 1, 0);
            this.tlpEmailAuthTable.Controls.Add(this.tbEmailPassword, 1, 1);
            this.tlpEmailAuthTable.Location = new System.Drawing.Point(85, 103);
            this.tlpEmailAuthTable.Margin = new System.Windows.Forms.Padding(3, 3, 3, 5);
            this.tlpEmailAuthTable.Name = "tlpEmailAuthTable";
            this.tlpEmailAuthTable.RowCount = 2;
            this.tlpEmailAuthTable.RowStyles.Add(new System.Windows.Forms.RowStyle());
            this.tlpEmailAuthTable.RowStyles.Add(new System.Windows.Forms.RowStyle());
            this.tlpEmailAuthTable.Size = new System.Drawing.Size(200, 54);
            this.tlpEmailAuthTable.TabIndex = 8;
            // 
            // tbEmailUsername
            // 
            this.tbEmailUsername.Location = new System.Drawing.Point(68, 3);
            this.tbEmailUsername.Name = "tbEmailUsername";
            this.tbEmailUsername.Size = new System.Drawing.Size(129, 21);
            this.tbEmailUsername.TabIndex = 1;
            // 
            // tbEmailPassword
            // 
            this.tbEmailPassword.Location = new System.Drawing.Point(68, 30);
            this.tbEmailPassword.Name = "tbEmailPassword";
            this.tbEmailPassword.PasswordChar = '*';
            this.tbEmailPassword.Size = new System.Drawing.Size(129, 21);
            this.tbEmailPassword.TabIndex = 1;
            // 
            // emailPortTextBox
            // 
            this.emailPortTextBox.Location = new System.Drawing.Point(85, 30);
            this.emailPortTextBox.Name = "emailPortTextBox";
            this.emailPortTextBox.Size = new System.Drawing.Size(152, 21);
            this.emailPortTextBox.TabIndex = 1;
            this.emailPortTextBox.Text = "25";
            // 
            // btnTestEmail
            // 
            this.btnTestEmail.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
            this.btnTestEmail.Location = new System.Drawing.Point(240, 259);
            this.btnTestEmail.Name = "btnTestEmail";
            this.btnTestEmail.Size = new System.Drawing.Size(110, 23);
            this.btnTestEmail.TabIndex = 10;
            this.btnTestEmail.Text = "Send Test Email";
            this.btnTestEmail.UseVisualStyleBackColor = true;
            this.btnTestEmail.Click += new System.EventHandler(this.emailTestButton_Click);
            // 
            // mailNotificationCheckBox
            // 
            this.mailNotificationCheckBox.AutoSize = true;
            this.mailNotificationCheckBox.Location = new System.Drawing.Point(3, 81);
            this.mailNotificationCheckBox.Name = "mailNotificationCheckBox";
            this.mailNotificationCheckBox.Size = new System.Drawing.Size(215, 17);
            this.mailNotificationCheckBox.TabIndex = 1;
            this.mailNotificationCheckBox.Text = "Send email when skill training completes";
            this.mailNotificationCheckBox.UseVisualStyleBackColor = true;
            this.mailNotificationCheckBox.CheckedChanged += new System.EventHandler(this.OnMustEnableOrDisable);
            // 
            // notificationsPage
            // 
            this.notificationsPage.Controls.Add(lblNotificationsPage);
            this.notificationsPage.Controls.Add(this.notificationsControl);
            this.notificationsPage.Controls.Add(this.cbPlaySoundOnSkillComplete);
            this.notificationsPage.Dock = System.Windows.Forms.DockStyle.Fill;
            this.notificationsPage.Location = new System.Drawing.Point(5, 5);
            this.notificationsPage.Name = "notificationsPage";
            this.notificationsPage.Size = new System.Drawing.Size(435, 426);
            this.notificationsPage.TabIndex = 7;
            this.notificationsPage.Text = "notificationsPage";
            this.notificationsPage.Visible = false;
            // 
            // notificationsControl
            // 
            this.notificationsControl.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                        | System.Windows.Forms.AnchorStyles.Right)));
            this.notificationsControl.AutoScroll = true;
            this.notificationsControl.BackColor = System.Drawing.SystemColors.Window;
            this.notificationsControl.Location = new System.Drawing.Point(3, 56);
            this.notificationsControl.Name = "notificationsControl";
            this.notificationsControl.Settings = null;
            this.notificationsControl.Size = new System.Drawing.Size(429, 341);
            this.notificationsControl.TabIndex = 4;
            // 
            // cbPlaySoundOnSkillComplete
            // 
            this.cbPlaySoundOnSkillComplete.AutoSize = true;
            this.cbPlaySoundOnSkillComplete.Location = new System.Drawing.Point(3, 403);
            this.cbPlaySoundOnSkillComplete.Name = "cbPlaySoundOnSkillComplete";
            this.cbPlaySoundOnSkillComplete.Size = new System.Drawing.Size(216, 17);
            this.cbPlaySoundOnSkillComplete.TabIndex = 3;
            this.cbPlaySoundOnSkillComplete.Text = "Play sound when skill training completes";
            this.cbPlaySoundOnSkillComplete.UseVisualStyleBackColor = true;
            // 
            // trayIconPage
            // 
            this.trayIconPage.Controls.Add(lblTrayIconPage);
            this.trayIconPage.Controls.Add(this.mainWindowBehaviourGroupBox);
            this.trayIconPage.Controls.Add(this.trayIconPopupGroupBox);
            this.trayIconPage.Controls.Add(systemTrayIconGroupBox);
            this.trayIconPage.Dock = System.Windows.Forms.DockStyle.Fill;
            this.trayIconPage.Location = new System.Drawing.Point(5, 5);
            this.trayIconPage.Name = "trayIconPage";
            this.trayIconPage.Size = new System.Drawing.Size(435, 426);
            this.trayIconPage.TabIndex = 8;
            this.trayIconPage.Text = "trayIconPage";
            this.trayIconPage.Visible = false;
            // 
            // mainWindowBehaviourGroupBox
            // 
            this.mainWindowBehaviourGroupBox.Controls.Add(this.rbMinToTaskBar);
            this.mainWindowBehaviourGroupBox.Controls.Add(this.rbMinToTray);
            this.mainWindowBehaviourGroupBox.Controls.Add(this.rbExitEVEMon);
            this.mainWindowBehaviourGroupBox.Location = new System.Drawing.Point(9, 307);
            this.mainWindowBehaviourGroupBox.Name = "mainWindowBehaviourGroupBox";
            this.mainWindowBehaviourGroupBox.Size = new System.Drawing.Size(419, 91);
            this.mainWindowBehaviourGroupBox.TabIndex = 17;
            this.mainWindowBehaviourGroupBox.TabStop = false;
            this.mainWindowBehaviourGroupBox.Text = "Main Window Close Behaviour";
            // 
            // rbMinToTaskBar
            // 
            this.rbMinToTaskBar.AutoSize = true;
            this.rbMinToTaskBar.Location = new System.Drawing.Point(12, 66);
            this.rbMinToTaskBar.Name = "rbMinToTaskBar";
            this.rbMinToTaskBar.Size = new System.Drawing.Size(285, 17);
            this.rbMinToTaskBar.TabIndex = 2;
            this.rbMinToTaskBar.TabStop = true;
            this.rbMinToTaskBar.Text = "Minimize to the taskbar (Recommended for Windows 7)";
            this.rbMinToTaskBar.UseVisualStyleBackColor = true;
            // 
            // rbMinToTray
            // 
            this.rbMinToTray.AutoSize = true;
            this.rbMinToTray.Location = new System.Drawing.Point(12, 43);
            this.rbMinToTray.Name = "rbMinToTray";
            this.rbMinToTray.Size = new System.Drawing.Size(291, 17);
            this.rbMinToTray.TabIndex = 1;
            this.rbMinToTray.TabStop = true;
            this.rbMinToTray.Text = "Minimize to the system tray (Recommended for XP/Vista)";
            this.rbMinToTray.UseVisualStyleBackColor = true;
            // 
            // rbExitEVEMon
            // 
            this.rbExitEVEMon.AutoSize = true;
            this.rbExitEVEMon.Location = new System.Drawing.Point(12, 20);
            this.rbExitEVEMon.Name = "rbExitEVEMon";
            this.rbExitEVEMon.Size = new System.Drawing.Size(87, 17);
            this.rbExitEVEMon.TabIndex = 0;
            this.rbExitEVEMon.TabStop = true;
            this.rbExitEVEMon.Text = "Exit EVEMon";
            this.rbExitEVEMon.UseVisualStyleBackColor = true;
            // 
            // trayIconPopupGroupBox
            // 
            this.trayIconPopupGroupBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                        | System.Windows.Forms.AnchorStyles.Right)));
            this.trayIconPopupGroupBox.Controls.Add(this.trayPopupDisabledRadio);
            this.trayIconPopupGroupBox.Controls.Add(this.trayPopupButton);
            this.trayIconPopupGroupBox.Controls.Add(this.trayPopupRadio);
            this.trayIconPopupGroupBox.Controls.Add(this.trayTooltipRadio);
            this.trayIconPopupGroupBox.Controls.Add(this.trayTooltipButton);
            this.trayIconPopupGroupBox.Location = new System.Drawing.Point(9, 184);
            this.trayIconPopupGroupBox.Name = "trayIconPopupGroupBox";
            this.trayIconPopupGroupBox.Size = new System.Drawing.Size(419, 104);
            this.trayIconPopupGroupBox.TabIndex = 10;
            this.trayIconPopupGroupBox.TabStop = false;
            this.trayIconPopupGroupBox.Text = "Icon Popup Style";
            // 
            // trayPopupDisabledRadio
            // 
            this.trayPopupDisabledRadio.AutoSize = true;
            this.trayPopupDisabledRadio.Location = new System.Drawing.Point(6, 78);
            this.trayPopupDisabledRadio.Name = "trayPopupDisabledRadio";
            this.trayPopupDisabledRadio.Size = new System.Drawing.Size(66, 17);
            this.trayPopupDisabledRadio.TabIndex = 5;
            this.trayPopupDisabledRadio.TabStop = true;
            this.trayPopupDisabledRadio.Text = "Disabled";
            this.trayPopupDisabledRadio.UseVisualStyleBackColor = true;
            // 
            // trayPopupButton
            // 
            this.trayPopupButton.Location = new System.Drawing.Point(69, 46);
            this.trayPopupButton.Name = "trayPopupButton";
            this.trayPopupButton.Size = new System.Drawing.Size(75, 23);
            this.trayPopupButton.TabIndex = 4;
            this.trayPopupButton.Text = "Configure";
            this.trayPopupButton.UseVisualStyleBackColor = true;
            this.trayPopupButton.Click += new System.EventHandler(this.trayPopupButton_Click);
            // 
            // trayPopupRadio
            // 
            this.trayPopupRadio.AutoSize = true;
            this.trayPopupRadio.Location = new System.Drawing.Point(6, 49);
            this.trayPopupRadio.Name = "trayPopupRadio";
            this.trayPopupRadio.Size = new System.Drawing.Size(56, 17);
            this.trayPopupRadio.TabIndex = 3;
            this.trayPopupRadio.TabStop = true;
            this.trayPopupRadio.Text = "Popup";
            this.trayPopupRadio.UseVisualStyleBackColor = true;
            // 
            // trayTooltipRadio
            // 
            this.trayTooltipRadio.AutoSize = true;
            this.trayTooltipRadio.Location = new System.Drawing.Point(6, 20);
            this.trayTooltipRadio.Name = "trayTooltipRadio";
            this.trayTooltipRadio.Size = new System.Drawing.Size(57, 17);
            this.trayTooltipRadio.TabIndex = 0;
            this.trayTooltipRadio.TabStop = true;
            this.trayTooltipRadio.Text = "Tooltip";
            this.trayTooltipRadio.UseVisualStyleBackColor = true;
            // 
            // trayTooltipButton
            // 
            this.trayTooltipButton.Location = new System.Drawing.Point(69, 17);
            this.trayTooltipButton.Name = "trayTooltipButton";
            this.trayTooltipButton.Size = new System.Drawing.Size(75, 23);
            this.trayTooltipButton.TabIndex = 2;
            this.trayTooltipButton.Text = "Configure";
            this.trayTooltipButton.UseVisualStyleBackColor = true;
            this.trayTooltipButton.Click += new System.EventHandler(this.trayTooltipButton_Click);
            // 
            // updatesPage
            // 
            this.updatesPage.Controls.Add(this.groupBox1);
            this.updatesPage.Controls.Add(this.updateSettingsControl);
            this.updatesPage.Controls.Add(this.lblUpdatesPage);
            this.updatesPage.Controls.Add(this.cbCheckTimeOnStartup);
            this.updatesPage.Controls.Add(this.cbCheckForUpdates);
            this.updatesPage.Dock = System.Windows.Forms.DockStyle.Fill;
            this.updatesPage.Location = new System.Drawing.Point(5, 5);
            this.updatesPage.Name = "updatesPage";
            this.updatesPage.Size = new System.Drawing.Size(435, 426);
            this.updatesPage.TabIndex = 9;
            this.updatesPage.Text = "updatesPage";
            this.updatesPage.Visible = false;
            // 
            // groupBox1
            // 
            this.groupBox1.Controls.Add(this.btnResetUpdateQueryTimers);
            this.groupBox1.Location = new System.Drawing.Point(320, 35);
            this.groupBox1.Name = "groupBox1";
            this.groupBox1.Size = new System.Drawing.Size(105, 45);
            this.groupBox1.TabIndex = 12;
            this.groupBox1.TabStop = false;
            this.groupBox1.Text = "Queries Updater";
            // 
            // btnResetUpdateQueryTimers
            // 
            this.btnResetUpdateQueryTimers.Location = new System.Drawing.Point(15, 15);
            this.btnResetUpdateQueryTimers.Name = "btnResetUpdateQueryTimers";
            this.btnResetUpdateQueryTimers.Size = new System.Drawing.Size(75, 23);
            this.btnResetUpdateQueryTimers.TabIndex = 11;
            this.btnResetUpdateQueryTimers.Text = "Update All";
            this.btnResetUpdateQueryTimers.UseVisualStyleBackColor = true;
            this.btnResetUpdateQueryTimers.Click += new System.EventHandler(this.btnUpdateQueryTimers_Click);
            // 
            // updateSettingsControl
            // 
            this.updateSettingsControl.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                        | System.Windows.Forms.AnchorStyles.Left)
                        | System.Windows.Forms.AnchorStyles.Right)));
            this.updateSettingsControl.AutoScroll = true;
            this.updateSettingsControl.Location = new System.Drawing.Point(11, 85);
            this.updateSettingsControl.Name = "updateSettingsControl";
            this.updateSettingsControl.Settings = null;
            this.updateSettingsControl.Size = new System.Drawing.Size(413, 340);
            this.updateSettingsControl.TabIndex = 10;
            // 
            // lblUpdatesPage
            // 
            this.lblUpdatesPage.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                        | System.Windows.Forms.AnchorStyles.Right)));
            this.lblUpdatesPage.ForeColor = System.Drawing.SystemColors.MenuHighlight;
            this.lblUpdatesPage.Location = new System.Drawing.Point(3, 2);
            this.lblUpdatesPage.Name = "lblUpdatesPage";
            this.lblUpdatesPage.Size = new System.Drawing.Size(429, 34);
            this.lblUpdatesPage.TabIndex = 9;
            this.lblUpdatesPage.Text = "The following settings help reducing the network load, especially for high-latenc" +
                "y connections and clients with many characters.";
            // 
            // cbCheckTimeOnStartup
            // 
            this.cbCheckTimeOnStartup.AutoSize = true;
            this.cbCheckTimeOnStartup.Location = new System.Drawing.Point(15, 39);
            this.cbCheckTimeOnStartup.Name = "cbCheckTimeOnStartup";
            this.cbCheckTimeOnStartup.Size = new System.Drawing.Size(201, 17);
            this.cbCheckTimeOnStartup.TabIndex = 0;
            this.cbCheckTimeOnStartup.Text = "Check the computer clock on startup";
            this.cbCheckTimeOnStartup.UseVisualStyleBackColor = true;
            // 
            // cbCheckForUpdates
            // 
            this.cbCheckForUpdates.AutoSize = true;
            this.cbCheckForUpdates.Location = new System.Drawing.Point(15, 62);
            this.cbCheckForUpdates.Name = "cbCheckForUpdates";
            this.cbCheckForUpdates.Size = new System.Drawing.Size(158, 17);
            this.cbCheckForUpdates.TabIndex = 0;
            this.cbCheckForUpdates.Text = "Check for EVEMon updates";
            this.cbCheckForUpdates.UseVisualStyleBackColor = true;
            // 
            // schedulerUIPage
            // 
            this.schedulerUIPage.Controls.Add(lblSchedulerUIPage);
            this.schedulerUIPage.Controls.Add(this.panelColorText);
            this.schedulerUIPage.Controls.Add(lblText);
            this.schedulerUIPage.Controls.Add(this.panelColorRecurring2);
            this.schedulerUIPage.Controls.Add(lblBlockingEvents);
            this.schedulerUIPage.Controls.Add(this.panelColorRecurring1);
            this.schedulerUIPage.Controls.Add(lblRecurringEvents);
            this.schedulerUIPage.Controls.Add(this.panelColorSingle2);
            this.schedulerUIPage.Controls.Add(lblSimpleEvents);
            this.schedulerUIPage.Controls.Add(this.panelColorSingle1);
            this.schedulerUIPage.Controls.Add(this.panelColorBlocking);
            this.schedulerUIPage.Dock = System.Windows.Forms.DockStyle.Fill;
            this.schedulerUIPage.Location = new System.Drawing.Point(5, 5);
            this.schedulerUIPage.Name = "schedulerUIPage";
            this.schedulerUIPage.Size = new System.Drawing.Size(435, 426);
            this.schedulerUIPage.TabIndex = 10;
            this.schedulerUIPage.Text = "schedulerUIPage";
            this.schedulerUIPage.Visible = false;
            // 
            // panelColorText
            // 
            this.panelColorText.BackColor = System.Drawing.Color.White;
            this.panelColorText.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
            this.panelColorText.Cursor = System.Windows.Forms.Cursors.Hand;
            this.panelColorText.Location = new System.Drawing.Point(107, 105);
            this.panelColorText.Name = "panelColorText";
            this.panelColorText.Size = new System.Drawing.Size(43, 17);
            this.panelColorText.TabIndex = 4;
            this.panelColorText.Click += new System.EventHandler(this.colorPanel_Click);
            // 
            // panelColorRecurring2
            // 
            this.panelColorRecurring2.BackColor = System.Drawing.Color.LightGreen;
            this.panelColorRecurring2.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
            this.panelColorRecurring2.Cursor = System.Windows.Forms.Cursors.Hand;
            this.panelColorRecurring2.Location = new System.Drawing.Point(156, 176);
            this.panelColorRecurring2.Name = "panelColorRecurring2";
            this.panelColorRecurring2.Size = new System.Drawing.Size(43, 17);
            this.panelColorRecurring2.TabIndex = 4;
            this.panelColorRecurring2.Click += new System.EventHandler(this.colorPanel_Click);
            // 
            // panelColorRecurring1
            // 
            this.panelColorRecurring1.BackColor = System.Drawing.Color.Green;
            this.panelColorRecurring1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
            this.panelColorRecurring1.Cursor = System.Windows.Forms.Cursors.Hand;
            this.panelColorRecurring1.Location = new System.Drawing.Point(107, 176);
            this.panelColorRecurring1.Name = "panelColorRecurring1";
            this.panelColorRecurring1.Size = new System.Drawing.Size(43, 17);
            this.panelColorRecurring1.TabIndex = 4;
            this.panelColorRecurring1.Click += new System.EventHandler(this.colorPanel_Click);
            // 
            // panelColorSingle2
            // 
            this.panelColorSingle2.BackColor = System.Drawing.Color.LightBlue;
            this.panelColorSingle2.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
            this.panelColorSingle2.Cursor = System.Windows.Forms.Cursors.Hand;
            this.panelColorSingle2.Location = new System.Drawing.Point(156, 153);
            this.panelColorSingle2.Name = "panelColorSingle2";
            this.panelColorSingle2.Size = new System.Drawing.Size(43, 17);
            this.panelColorSingle2.TabIndex = 4;
            this.panelColorSingle2.Click += new System.EventHandler(this.colorPanel_Click);
            // 
            // panelColorSingle1
            // 
            this.panelColorSingle1.BackColor = System.Drawing.Color.Blue;
            this.panelColorSingle1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
            this.panelColorSingle1.Cursor = System.Windows.Forms.Cursors.Hand;
            this.panelColorSingle1.Location = new System.Drawing.Point(107, 153);
            this.panelColorSingle1.Name = "panelColorSingle1";
            this.panelColorSingle1.Size = new System.Drawing.Size(43, 17);
            this.panelColorSingle1.TabIndex = 4;
            this.panelColorSingle1.Click += new System.EventHandler(this.colorPanel_Click);
            // 
            // panelColorBlocking
            // 
            this.panelColorBlocking.BackColor = System.Drawing.Color.Red;
            this.panelColorBlocking.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
            this.panelColorBlocking.Cursor = System.Windows.Forms.Cursors.Hand;
            this.panelColorBlocking.Location = new System.Drawing.Point(107, 128);
            this.panelColorBlocking.Name = "panelColorBlocking";
            this.panelColorBlocking.Size = new System.Drawing.Size(43, 17);
            this.panelColorBlocking.TabIndex = 3;
            this.panelColorBlocking.Click += new System.EventHandler(this.colorPanel_Click);
            // 
            // externalCalendarPage
            // 
            this.externalCalendarPage.Controls.Add(this.externalCalendarPanel);
            this.externalCalendarPage.Controls.Add(lblExternalCalendarPage);
            this.externalCalendarPage.Controls.Add(this.externalCalendarCheckbox);
            this.externalCalendarPage.Dock = System.Windows.Forms.DockStyle.Fill;
            this.externalCalendarPage.Location = new System.Drawing.Point(5, 5);
            this.externalCalendarPage.Name = "externalCalendarPage";
            this.externalCalendarPage.Size = new System.Drawing.Size(435, 426);
            this.externalCalendarPage.TabIndex = 11;
            this.externalCalendarPage.Text = "externalCalendarPage";
            this.externalCalendarPage.Visible = false;
            // 
            // externalCalendarPanel
            // 
            this.externalCalendarPanel.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                        | System.Windows.Forms.AnchorStyles.Right)));
            this.externalCalendarPanel.Controls.Add(this.rbMSOutlook);
            this.externalCalendarPanel.Controls.Add(this.dtpLateReminder);
            this.externalCalendarPanel.Controls.Add(this.tbReminder);
            this.externalCalendarPanel.Controls.Add(this.dtpEarlyReminder);
            this.externalCalendarPanel.Controls.Add(this.gbGoogle);
            this.externalCalendarPanel.Controls.Add(this.rbGoogle);
            this.externalCalendarPanel.Controls.Add(this.cbUseAlterateReminder);
            this.externalCalendarPanel.Controls.Add(lblEarlyReminder);
            this.externalCalendarPanel.Controls.Add(this.cbSetReminder);
            this.externalCalendarPanel.Controls.Add(lblLateReminder);
            this.externalCalendarPanel.Location = new System.Drawing.Point(3, 119);
            this.externalCalendarPanel.Name = "externalCalendarPanel";
            this.externalCalendarPanel.Size = new System.Drawing.Size(429, 262);
            this.externalCalendarPanel.TabIndex = 12;
            // 
            // rbMSOutlook
            // 
            this.rbMSOutlook.AutoSize = true;
            this.rbMSOutlook.Checked = true;
            this.rbMSOutlook.Location = new System.Drawing.Point(3, 5);
            this.rbMSOutlook.Name = "rbMSOutlook";
            this.rbMSOutlook.Size = new System.Drawing.Size(79, 17);
            this.rbMSOutlook.TabIndex = 1;
            this.rbMSOutlook.TabStop = true;
            this.rbMSOutlook.Text = "MS Outlook";
            this.rbMSOutlook.UseVisualStyleBackColor = true;
            this.rbMSOutlook.Click += new System.EventHandler(this.OnMustEnableOrDisable);
            // 
            // dtpLateReminder
            // 
            this.dtpLateReminder.Format = System.Windows.Forms.DateTimePickerFormat.Time;
            this.dtpLateReminder.Location = new System.Drawing.Point(281, 224);
            this.dtpLateReminder.Name = "dtpLateReminder";
            this.dtpLateReminder.ShowUpDown = true;
            this.dtpLateReminder.Size = new System.Drawing.Size(72, 21);
            this.dtpLateReminder.TabIndex = 10;
            this.dtpLateReminder.Value = new System.DateTime(2007, 9, 21, 0, 0, 0, 0);
            // 
            // tbReminder
            // 
            this.tbReminder.Location = new System.Drawing.Point(88, 171);
            this.tbReminder.Name = "tbReminder";
            this.tbReminder.Size = new System.Drawing.Size(35, 21);
            this.tbReminder.TabIndex = 7;
            this.tbReminder.Text = "5";
            this.tbReminder.Validating += new System.ComponentModel.CancelEventHandler(this.tbReminder_Validating);
            // 
            // dtpEarlyReminder
            // 
            this.dtpEarlyReminder.Format = System.Windows.Forms.DateTimePickerFormat.Time;
            this.dtpEarlyReminder.Location = new System.Drawing.Point(119, 224);
            this.dtpEarlyReminder.Name = "dtpEarlyReminder";
            this.dtpEarlyReminder.ShowUpDown = true;
            this.dtpEarlyReminder.Size = new System.Drawing.Size(70, 21);
            this.dtpEarlyReminder.TabIndex = 9;
            this.dtpEarlyReminder.Value = new System.DateTime(2007, 9, 21, 0, 0, 0, 0);
            // 
            // gbGoogle
            // 
            this.gbGoogle.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                        | System.Windows.Forms.AnchorStyles.Right)));
            this.gbGoogle.Controls.Add(this.cbGoogleReminder);
            this.gbGoogle.Controls.Add(lblReminder);
            this.gbGoogle.Controls.Add(lblURI);
            this.gbGoogle.Controls.Add(this.tbGoogleURI);
            this.gbGoogle.Controls.Add(this.tbGooglePassword);
            this.gbGoogle.Controls.Add(this.tbGoogleEmail);
            this.gbGoogle.Controls.Add(lblPassword);
            this.gbGoogle.Controls.Add(lblGoogleEmail);
            this.gbGoogle.Enabled = false;
            this.gbGoogle.Location = new System.Drawing.Point(2, 28);
            this.gbGoogle.Name = "gbGoogle";
            this.gbGoogle.Size = new System.Drawing.Size(423, 137);
            this.gbGoogle.TabIndex = 3;
            this.gbGoogle.TabStop = false;
            this.gbGoogle.Text = "Google Information";
            // 
            // cbGoogleReminder
            // 
            this.cbGoogleReminder.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
            this.cbGoogleReminder.FormattingEnabled = true;
            this.cbGoogleReminder.Items.AddRange(new object[] {
            "Alert",
            "All",
            "Email",
            "None",
            "SMS",
            "Unspecified"});
            this.cbGoogleReminder.Location = new System.Drawing.Point(83, 104);
            this.cbGoogleReminder.Name = "cbGoogleReminder";
            this.cbGoogleReminder.Size = new System.Drawing.Size(121, 21);
            this.cbGoogleReminder.TabIndex = 7;
            // 
            // tbGoogleURI
            // 
            this.tbGoogleURI.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                        | System.Windows.Forms.AnchorStyles.Right)));
            this.tbGoogleURI.Location = new System.Drawing.Point(83, 76);
            this.tbGoogleURI.Name = "tbGoogleURI";
            this.tbGoogleURI.Size = new System.Drawing.Size(334, 21);
            this.tbGoogleURI.TabIndex = 5;
            this.tbGoogleURI.Text = "http://www.google.com/calendar/feeds/default/private/full";
            // 
            // tbGooglePassword
            // 
            this.tbGooglePassword.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                        | System.Windows.Forms.AnchorStyles.Right)));
            this.tbGooglePassword.Location = new System.Drawing.Point(83, 49);
            this.tbGooglePassword.Name = "tbGooglePassword";
            this.tbGooglePassword.PasswordChar = '*';
            this.tbGooglePassword.Size = new System.Drawing.Size(334, 21);
            this.tbGooglePassword.TabIndex = 4;
            // 
            // tbGoogleEmail
            // 
            this.tbGoogleEmail.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                        | System.Windows.Forms.AnchorStyles.Right)));
            this.tbGoogleEmail.Location = new System.Drawing.Point(83, 21);
            this.tbGoogleEmail.Name = "tbGoogleEmail";
            this.tbGoogleEmail.Size = new System.Drawing.Size(334, 21);
            this.tbGoogleEmail.TabIndex = 3;
            // 
            // rbGoogle
            // 
            this.rbGoogle.AutoSize = true;
            this.rbGoogle.Location = new System.Drawing.Point(88, 4);
            this.rbGoogle.Name = "rbGoogle";
            this.rbGoogle.Size = new System.Drawing.Size(58, 17);
            this.rbGoogle.TabIndex = 2;
            this.rbGoogle.Text = "Google";
            this.rbGoogle.UseVisualStyleBackColor = true;
            this.rbGoogle.Click += new System.EventHandler(this.OnMustEnableOrDisable);
            // 
            // cbUseAlterateReminder
            // 
            this.cbUseAlterateReminder.AutoSize = true;
            this.cbUseAlterateReminder.Checked = true;
            this.cbUseAlterateReminder.CheckState = System.Windows.Forms.CheckState.Checked;
            this.cbUseAlterateReminder.Location = new System.Drawing.Point(11, 198);
            this.cbUseAlterateReminder.Name = "cbUseAlterateReminder";
            this.cbUseAlterateReminder.Size = new System.Drawing.Size(136, 17);
            this.cbUseAlterateReminder.TabIndex = 8;
            this.cbUseAlterateReminder.Text = "Use alternate reminder";
            this.cbUseAlterateReminder.UseVisualStyleBackColor = true;
            // 
            // cbSetReminder
            // 
            this.cbSetReminder.AutoSize = true;
            this.cbSetReminder.Checked = true;
            this.cbSetReminder.CheckState = System.Windows.Forms.CheckState.Checked;
            this.cbSetReminder.Location = new System.Drawing.Point(11, 173);
            this.cbSetReminder.Name = "cbSetReminder";
            this.cbSetReminder.Size = new System.Drawing.Size(71, 17);
            this.cbSetReminder.TabIndex = 6;
            this.cbSetReminder.Text = "Reminder";
            this.cbSetReminder.UseVisualStyleBackColor = true;
            // 
            // externalCalendarCheckbox
            // 
            this.externalCalendarCheckbox.AutoSize = true;
            this.externalCalendarCheckbox.Location = new System.Drawing.Point(6, 98);
            this.externalCalendarCheckbox.Name = "externalCalendarCheckbox";
            this.externalCalendarCheckbox.Size = new System.Drawing.Size(169, 17);
            this.externalCalendarCheckbox.TabIndex = 0;
            this.externalCalendarCheckbox.Text = "Use External Calendar (Import)";
            this.externalCalendarCheckbox.UseVisualStyleBackColor = true;
            this.externalCalendarCheckbox.Click += new System.EventHandler(this.OnMustEnableOrDisable);
            // 
            // g15Page
            // 
            this.g15Page.Controls.Add(this.g15CheckBox);
            this.g15Page.Controls.Add(lblG15Page);
            this.g15Page.Controls.Add(this.g15Panel);
            this.g15Page.Dock = System.Windows.Forms.DockStyle.Fill;
            this.g15Page.Location = new System.Drawing.Point(5, 5);
            this.g15Page.Name = "g15Page";
            this.g15Page.Size = new System.Drawing.Size(435, 426);
            this.g15Page.TabIndex = 13;
            this.g15Page.Text = "g15Page";
            this.g15Page.Visible = false;
            // 
            // g15CheckBox
            // 
            this.g15CheckBox.AutoSize = true;
            this.g15CheckBox.Location = new System.Drawing.Point(6, 102);
            this.g15CheckBox.Name = "g15CheckBox";
            this.g15CheckBox.Size = new System.Drawing.Size(130, 17);
            this.g15CheckBox.TabIndex = 0;
            this.g15CheckBox.Text = "Use G15/G19 Display";
            this.g15CheckBox.UseVisualStyleBackColor = true;
            this.g15CheckBox.CheckedChanged += new System.EventHandler(this.OnMustEnableOrDisable);
            // 
            // g15Panel
            // 
            this.g15Panel.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
            this.g15Panel.Controls.Add(this.cbG15ShowEVETime);
            this.g15Panel.Controls.Add(this.cbG15ShowTime);
            this.g15Panel.Controls.Add(this.panelCycleQueueInfo);
            this.g15Panel.Controls.Add(this.panelCycleCharInfo);
            this.g15Panel.Location = new System.Drawing.Point(6, 125);
            this.g15Panel.Margin = new System.Windows.Forms.Padding(0);
            this.g15Panel.Name = "g15Panel";
            this.g15Panel.Size = new System.Drawing.Size(399, 112);
            this.g15Panel.TabIndex = 7;
            // 
            // cbG15ShowEVETime
            // 
            this.cbG15ShowEVETime.AutoSize = true;
            this.cbG15ShowEVETime.Location = new System.Drawing.Point(10, 59);
            this.cbG15ShowEVETime.Name = "cbG15ShowEVETime";
            this.cbG15ShowEVETime.Size = new System.Drawing.Size(103, 17);
            this.cbG15ShowEVETime.TabIndex = 9;
            this.cbG15ShowEVETime.Text = "Show EVE Time";
            this.cbG15ShowEVETime.UseVisualStyleBackColor = true;
            // 
            // cbG15ShowTime
            // 
            this.cbG15ShowTime.AutoSize = true;
            this.cbG15ShowTime.Location = new System.Drawing.Point(114, 59);
            this.cbG15ShowTime.Name = "cbG15ShowTime";
            this.cbG15ShowTime.Size = new System.Drawing.Size(116, 17);
            this.cbG15ShowTime.TabIndex = 8;
            this.cbG15ShowTime.Text = "Show System Time";
            this.cbG15ShowTime.UseVisualStyleBackColor = true;
            // 
            // panelCycleQueueInfo
            // 
            this.panelCycleQueueInfo.AutoSize = true;
            this.panelCycleQueueInfo.Controls.Add(this.cbG15CycleTimes);
            this.panelCycleQueueInfo.Controls.Add(this.ACycleTimesInterval);
            this.panelCycleQueueInfo.Controls.Add(lblCycleTrainingSeconds);
            this.panelCycleQueueInfo.Location = new System.Drawing.Point(7, 29);
            this.panelCycleQueueInfo.Name = "panelCycleQueueInfo";
            this.panelCycleQueueInfo.Size = new System.Drawing.Size(315, 28);
            this.panelCycleQueueInfo.TabIndex = 7;
            // 
            // cbG15CycleTimes
            // 
            this.cbG15CycleTimes.AutoSize = true;
            this.cbG15CycleTimes.Location = new System.Drawing.Point(3, 5);
            this.cbG15CycleTimes.Margin = new System.Windows.Forms.Padding(3, 5, 0, 3);
            this.cbG15CycleTimes.Name = "cbG15CycleTimes";
            this.cbG15CycleTimes.Size = new System.Drawing.Size(212, 17);
            this.cbG15CycleTimes.TabIndex = 7;
            this.cbG15CycleTimes.Text = "Cycle Characters Skill Queue info every";
            this.cbG15CycleTimes.UseVisualStyleBackColor = true;
            this.cbG15CycleTimes.CheckedChanged += new System.EventHandler(this.OnMustEnableOrDisable);
            // 
            // ACycleTimesInterval
            // 
            this.ACycleTimesInterval.AutoSize = true;
            this.ACycleTimesInterval.Location = new System.Drawing.Point(221, 4);
            this.ACycleTimesInterval.Margin = new System.Windows.Forms.Padding(0, 3, 0, 3);
            this.ACycleTimesInterval.Maximum = new decimal(new int[] {
            120,
            0,
            0,
            0});
            this.ACycleTimesInterval.Minimum = new decimal(new int[] {
            1,
            0,
            0,
            0});
            this.ACycleTimesInterval.Name = "ACycleTimesInterval";
            this.ACycleTimesInterval.Size = new System.Drawing.Size(45, 21);
            this.ACycleTimesInterval.TabIndex = 8;
            this.ACycleTimesInterval.Value = new decimal(new int[] {
            10,
            0,
            0,
            0});
            // 
            // panelCycleCharInfo
            // 
            this.panelCycleCharInfo.AutoSize = true;
            this.panelCycleCharInfo.Controls.Add(this.cbG15ACycle);
            this.panelCycleCharInfo.Controls.Add(this.ACycleInterval);
            this.panelCycleCharInfo.Controls.Add(lblG15CycleCharSeconds);
            this.panelCycleCharInfo.Location = new System.Drawing.Point(7, 3);
            this.panelCycleCharInfo.Name = "panelCycleCharInfo";
            this.panelCycleCharInfo.Size = new System.Drawing.Size(236, 28);
            this.panelCycleCharInfo.TabIndex = 6;
            // 
            // cbG15ACycle
            // 
            this.cbG15ACycle.AutoSize = true;
            this.cbG15ACycle.Location = new System.Drawing.Point(3, 5);
            this.cbG15ACycle.Margin = new System.Windows.Forms.Padding(3, 5, 0, 3);
            this.cbG15ACycle.Name = "cbG15ACycle";
            this.cbG15ACycle.Size = new System.Drawing.Size(135, 17);
            this.cbG15ACycle.TabIndex = 4;
            this.cbG15ACycle.Text = "Cycle Characters every";
            this.cbG15ACycle.UseVisualStyleBackColor = true;
            this.cbG15ACycle.CheckedChanged += new System.EventHandler(this.OnMustEnableOrDisable);
            // 
            // ACycleInterval
            // 
            this.ACycleInterval.AutoSize = true;
            this.ACycleInterval.Location = new System.Drawing.Point(142, 4);
            this.ACycleInterval.Margin = new System.Windows.Forms.Padding(0, 3, 0, 3);
            this.ACycleInterval.Maximum = new decimal(new int[] {
            120,
            0,
            0,
            0});
            this.ACycleInterval.Minimum = new decimal(new int[] {
            1,
            0,
            0,
            0});
            this.ACycleInterval.Name = "ACycleInterval";
            this.ACycleInterval.Size = new System.Drawing.Size(45, 21);
            this.ACycleInterval.TabIndex = 5;
            this.ACycleInterval.Value = new decimal(new int[] {
            20,
            0,
            0,
            0});
            this.ACycleInterval.ValueChanged += new System.EventHandler(this.ACycleInterval_ValueChanged);
            // 
            // igbServerPage
            // 
            this.igbServerPage.Controls.Add(this.igbCheckBox);
            this.igbServerPage.Controls.Add(lblIgbServerPage);
            this.igbServerPage.Controls.Add(this.igbFlowPanel);
            this.igbServerPage.Dock = System.Windows.Forms.DockStyle.Fill;
            this.igbServerPage.Location = new System.Drawing.Point(5, 5);
            this.igbServerPage.Name = "igbServerPage";
            this.igbServerPage.Size = new System.Drawing.Size(435, 426);
            this.igbServerPage.TabIndex = 14;
            this.igbServerPage.Text = "igbServerPage";
            this.igbServerPage.Visible = false;
            // 
            // igbCheckBox
            // 
            this.igbCheckBox.AutoSize = true;
            this.igbCheckBox.Location = new System.Drawing.Point(7, 115);
            this.igbCheckBox.Name = "igbCheckBox";
            this.igbCheckBox.Size = new System.Drawing.Size(121, 17);
            this.igbCheckBox.TabIndex = 3;
            this.igbCheckBox.Text = "Run IGB Mini-server";
            this.igbCheckBox.UseVisualStyleBackColor = true;
            this.igbCheckBox.CheckedChanged += new System.EventHandler(this.OnMustEnableOrDisable);
            // 
            // igbFlowPanel
            // 
            this.igbFlowPanel.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                        | System.Windows.Forms.AnchorStyles.Right)));
            this.igbFlowPanel.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
            this.igbFlowPanel.Controls.Add(this.flowLayoutPanel27);
            this.igbFlowPanel.Controls.Add(flowLayoutPanel28);
            this.igbFlowPanel.Controls.Add(this.cbIGBPublic);
            this.igbFlowPanel.FlowDirection = System.Windows.Forms.FlowDirection.TopDown;
            this.igbFlowPanel.Location = new System.Drawing.Point(7, 138);
            this.igbFlowPanel.Name = "igbFlowPanel";
            this.igbFlowPanel.Padding = new System.Windows.Forms.Padding(9, 0, 9, 0);
            this.igbFlowPanel.Size = new System.Drawing.Size(413, 95);
            this.igbFlowPanel.TabIndex = 4;
            // 
            // flowLayoutPanel27
            // 
            this.flowLayoutPanel27.Controls.Add(lblIGBPort);
            this.flowLayoutPanel27.Controls.Add(this.igbPortTextBox);
            this.flowLayoutPanel27.Location = new System.Drawing.Point(12, 3);
            this.flowLayoutPanel27.Name = "flowLayoutPanel27";
            this.flowLayoutPanel27.Size = new System.Drawing.Size(125, 28);
            this.flowLayoutPanel27.TabIndex = 7;
            // 
            // igbPortTextBox
            // 
            this.igbPortTextBox.Location = new System.Drawing.Point(59, 3);
            this.igbPortTextBox.MaxLength = 5;
            this.igbPortTextBox.Name = "igbPortTextBox";
            this.igbPortTextBox.Size = new System.Drawing.Size(35, 21);
            this.igbPortTextBox.TabIndex = 8;
            this.igbPortTextBox.Text = "80";
            this.igbPortTextBox.TextChanged += new System.EventHandler(this.igbPortTextBox_TextChanged);
            this.igbPortTextBox.Validating += new System.ComponentModel.CancelEventHandler(this.igbPortTextBox_Validating);
            // 
            // cbIGBPublic
            // 
            this.cbIGBPublic.AutoSize = true;
            this.cbIGBPublic.Location = new System.Drawing.Point(12, 65);
            this.cbIGBPublic.Name = "cbIGBPublic";
            this.cbIGBPublic.Size = new System.Drawing.Size(165, 17);
            this.cbIGBPublic.TabIndex = 4;
            this.cbIGBPublic.Text = "Make IGB Mini-server public?";
            this.cbIGBPublic.UseVisualStyleBackColor = true;
            // 
            // iconsPage
            // 
            this.iconsPage.Controls.Add(label1);
            this.iconsPage.Controls.Add(gbSkillBrowserIconSet);
            this.iconsPage.Dock = System.Windows.Forms.DockStyle.Fill;
            this.iconsPage.Location = new System.Drawing.Point(5, 5);
            this.iconsPage.Name = "iconsPage";
            this.iconsPage.Size = new System.Drawing.Size(435, 426);
            this.iconsPage.TabIndex = 16;
            this.iconsPage.Text = "iconsPage";
            // 
            // messagesPage
            // 
            this.messagesPage.Controls.Add(this.gbMessageBox);
            this.messagesPage.Controls.Add(label2);
            this.messagesPage.Controls.Add(this.ObsoleteEntryRemovalGroupBox);
            this.messagesPage.Dock = System.Windows.Forms.DockStyle.Fill;
            this.messagesPage.Location = new System.Drawing.Point(5, 5);
            this.messagesPage.Name = "messagesPage";
            this.messagesPage.Size = new System.Drawing.Size(435, 426);
            this.messagesPage.TabIndex = 17;
            this.messagesPage.Text = "messagesPage";
            // 
            // gbMessageBox
            // 
            this.gbMessageBox.Controls.Add(this.lblPrioritesConflict);
            this.gbMessageBox.Controls.Add(this.btnPrioritiesReset);
            this.gbMessageBox.Location = new System.Drawing.Point(5, 314);
            this.gbMessageBox.Name = "gbMessageBox";
            this.gbMessageBox.Size = new System.Drawing.Size(424, 58);
            this.gbMessageBox.TabIndex = 25;
            this.gbMessageBox.TabStop = false;
            this.gbMessageBox.Text = "Pop-up Messages";
            // 
            // lblPrioritesConflict
            // 
            this.lblPrioritesConflict.AutoSize = true;
            this.lblPrioritesConflict.Location = new System.Drawing.Point(20, 25);
            this.lblPrioritesConflict.Name = "lblPrioritesConflict";
            this.lblPrioritesConflict.Size = new System.Drawing.Size(87, 13);
            this.lblPrioritesConflict.TabIndex = 1;
            this.lblPrioritesConflict.Text = "Priorities Conflict";
            // 
            // btnPrioritiesReset
            // 
            this.btnPrioritiesReset.Location = new System.Drawing.Point(332, 20);
            this.btnPrioritiesReset.Name = "btnPrioritiesReset";
            this.btnPrioritiesReset.Size = new System.Drawing.Size(75, 23);
            this.btnPrioritiesReset.TabIndex = 0;
            this.btnPrioritiesReset.Text = "Reset";
            this.btnPrioritiesReset.UseVisualStyleBackColor = true;
            this.btnPrioritiesReset.Click += new System.EventHandler(this.btnPrioritiesReset_Click);
            // 
            // ObsoleteEntryRemovalGroupBox
            // 
            this.ObsoleteEntryRemovalGroupBox.Controls.Add(this.RemoveAllLabel);
            this.ObsoleteEntryRemovalGroupBox.Controls.Add(this.AlwaysAskLabel);
            this.ObsoleteEntryRemovalGroupBox.Controls.Add(this.RemoveConfirmedLabel);
            this.ObsoleteEntryRemovalGroupBox.Controls.Add(this.alwaysAskRadioButton);
            this.ObsoleteEntryRemovalGroupBox.Controls.Add(this.removeAllRadioButton);
            this.ObsoleteEntryRemovalGroupBox.Controls.Add(this.removeConfirmedRadioButton);
            this.ObsoleteEntryRemovalGroupBox.Location = new System.Drawing.Point(5, 120);
            this.ObsoleteEntryRemovalGroupBox.Name = "ObsoleteEntryRemovalGroupBox";
            this.ObsoleteEntryRemovalGroupBox.Size = new System.Drawing.Size(425, 187);
            this.ObsoleteEntryRemovalGroupBox.TabIndex = 23;
            this.ObsoleteEntryRemovalGroupBox.TabStop = false;
            this.ObsoleteEntryRemovalGroupBox.Text = "Obsolete Plan Entry Removal";
            // 
            // RemoveAllLabel
            // 
            this.RemoveAllLabel.Location = new System.Drawing.Point(24, 144);
            this.RemoveAllLabel.Name = "RemoveAllLabel";
            this.RemoveAllLabel.Size = new System.Drawing.Size(394, 27);
            this.RemoveAllLabel.TabIndex = 5;
            this.RemoveAllLabel.Text = "If EVEMon believes a skill level has been completed, whether it has been confirme" +
                "d by the API or not it will be removed when the plan is opened.";
            // 
            // AlwaysAskLabel
            // 
            this.AlwaysAskLabel.Location = new System.Drawing.Point(24, 91);
            this.AlwaysAskLabel.Name = "AlwaysAskLabel";
            this.AlwaysAskLabel.Size = new System.Drawing.Size(394, 27);
            this.AlwaysAskLabel.TabIndex = 4;
            this.AlwaysAskLabel.Text = "Always display the \"Obsolete Entries\" link at the bottom of the skill planner bef" +
                "ore removing entries.";
            // 
            // RemoveConfirmedLabel
            // 
            this.RemoveConfirmedLabel.Location = new System.Drawing.Point(24, 39);
            this.RemoveConfirmedLabel.Name = "RemoveConfirmedLabel";
            this.RemoveConfirmedLabel.Size = new System.Drawing.Size(394, 27);
            this.RemoveConfirmedLabel.TabIndex = 3;
            this.RemoveConfirmedLabel.Text = "Once the API has confirmed a skill level has completed it is removed the next tim" +
                "e a plan is opened. This is the default behaviour.";
            // 
            // alwaysAskRadioButton
            // 
            this.alwaysAskRadioButton.AutoSize = true;
            this.alwaysAskRadioButton.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
            this.alwaysAskRadioButton.Location = new System.Drawing.Point(7, 73);
            this.alwaysAskRadioButton.Name = "alwaysAskRadioButton";
            this.alwaysAskRadioButton.Size = new System.Drawing.Size(88, 17);
            this.alwaysAskRadioButton.TabIndex = 2;
            this.alwaysAskRadioButton.TabStop = true;
            this.alwaysAskRadioButton.Text = "Always ask";
            this.alwaysAskRadioButton.UseVisualStyleBackColor = true;
            // 
            // removeAllRadioButton
            // 
            this.removeAllRadioButton.AutoSize = true;
            this.removeAllRadioButton.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
            this.removeAllRadioButton.Location = new System.Drawing.Point(7, 126);
            this.removeAllRadioButton.Name = "removeAllRadioButton";
            this.removeAllRadioButton.Size = new System.Drawing.Size(245, 17);
            this.removeAllRadioButton.TabIndex = 1;
            this.removeAllRadioButton.TabStop = true;
            this.removeAllRadioButton.Text = "Remove entry once training completes";
            this.removeAllRadioButton.UseVisualStyleBackColor = true;
            // 
            // removeConfirmedRadioButton
            // 
            this.removeConfirmedRadioButton.AutoSize = true;
            this.removeConfirmedRadioButton.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
            this.removeConfirmedRadioButton.Location = new System.Drawing.Point(7, 21);
            this.removeConfirmedRadioButton.Name = "removeConfirmedRadioButton";
            this.removeConfirmedRadioButton.Size = new System.Drawing.Size(264, 17);
            this.removeConfirmedRadioButton.TabIndex = 0;
            this.removeConfirmedRadioButton.TabStop = true;
            this.removeConfirmedRadioButton.Text = "Remove confirmed entry (Recommended)";
            this.removeConfirmedRadioButton.UseVisualStyleBackColor = true;
            // 
            // battleClinicServicePage
            // 
            this.battleClinicServicePage.Controls.Add(this.settingsFileStorageGroupBox);
            this.battleClinicServicePage.Controls.Add(this.BattleClinicLinkLabel);
            this.battleClinicServicePage.Controls.Add(this.bcCredentialsGroupBox);
            this.battleClinicServicePage.Dock = System.Windows.Forms.DockStyle.Fill;
            this.battleClinicServicePage.Location = new System.Drawing.Point(5, 5);
            this.battleClinicServicePage.Name = "battleClinicServicePage";
            this.battleClinicServicePage.Size = new System.Drawing.Size(435, 426);
            this.battleClinicServicePage.TabIndex = 18;
            this.battleClinicServicePage.Text = "battleClinicServicePage";
            // 
            // settingsFileStorageGroupBox
            // 
            this.settingsFileStorageGroupBox.Controls.Add(this.settingsFileStorageControl);
            this.settingsFileStorageGroupBox.Location = new System.Drawing.Point(6, 282);
            this.settingsFileStorageGroupBox.Name = "settingsFileStorageGroupBox";
            this.settingsFileStorageGroupBox.Size = new System.Drawing.Size(422, 127);
            this.settingsFileStorageGroupBox.TabIndex = 3;
            this.settingsFileStorageGroupBox.TabStop = false;
            this.settingsFileStorageGroupBox.Text = "Settings File Storage";
            // 
            // settingsFileStorageControl
            // 
            this.settingsFileStorageControl.Dock = System.Windows.Forms.DockStyle.Fill;
            this.settingsFileStorageControl.Font = new System.Drawing.Font("Tahoma", 8.25F);
            this.settingsFileStorageControl.Location = new System.Drawing.Point(3, 17);
            this.settingsFileStorageControl.Name = "settingsFileStorageControl";
            this.settingsFileStorageControl.Size = new System.Drawing.Size(416, 107);
            this.settingsFileStorageControl.TabIndex = 0;
            // 
            // BattleClinicLinkLabel
            // 
            this.BattleClinicLinkLabel.ForeColor = System.Drawing.SystemColors.MenuHighlight;
            this.BattleClinicLinkLabel.LinkArea = new System.Windows.Forms.LinkArea(228, 12);
            this.BattleClinicLinkLabel.Location = new System.Drawing.Point(6, 18);
            this.BattleClinicLinkLabel.Name = "BattleClinicLinkLabel";
            this.BattleClinicLinkLabel.Size = new System.Drawing.Size(419, 45);
            this.BattleClinicLinkLabel.TabIndex = 2;
            this.BattleClinicLinkLabel.TabStop = true;
            this.BattleClinicLinkLabel.Text = resources.GetString("BattleClinicLinkLabel.Text");
            this.BattleClinicLinkLabel.UseCompatibleTextRendering = true;
            this.BattleClinicLinkLabel.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.BattleClinicLinkLabel_LinkClicked);
            // 
            // bcCredentialsGroupBox
            // 
            this.bcCredentialsGroupBox.Controls.Add(this.battleClinicAPIControl);
            this.bcCredentialsGroupBox.Location = new System.Drawing.Point(6, 78);
            this.bcCredentialsGroupBox.Name = "bcCredentialsGroupBox";
            this.bcCredentialsGroupBox.Size = new System.Drawing.Size(422, 183);
            this.bcCredentialsGroupBox.TabIndex = 1;
            this.bcCredentialsGroupBox.TabStop = false;
            this.bcCredentialsGroupBox.Text = "BattleClinic API Credentials";
            // 
            // battleClinicAPIControl
            // 
            this.battleClinicAPIControl.Dock = System.Windows.Forms.DockStyle.Fill;
            this.battleClinicAPIControl.Font = new System.Drawing.Font("Tahoma", 8.25F);
            this.battleClinicAPIControl.Location = new System.Drawing.Point(3, 17);
            this.battleClinicAPIControl.Name = "battleClinicAPIControl";
            this.battleClinicAPIControl.Size = new System.Drawing.Size(416, 163);
            this.battleClinicAPIControl.TabIndex = 0;
            // 
            // SettingsForm
            // 
            this.AcceptButton = this.okButton;
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
            this.BackColor = System.Drawing.SystemColors.Window;
            this.CancelButton = this.cancelButton;
            this.ClientSize = new System.Drawing.Size(644, 482);
            this.Controls.Add(this.multiPanel);
            this.Controls.Add(this.leftPanel);
            this.Controls.Add(bottomPanel);
            this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
            this.MaximizeBox = false;
            this.MinimizeBox = false;
            this.MinimumSize = new System.Drawing.Size(400, 400);
            this.Name = "SettingsForm";
            this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
            this.Text = "EVEMon Settings";
            this.Load += new System.EventHandler(this.SettingsForm_Load);
            bottomPanel.ResumeLayout(false);
            groupBox15.ResumeLayout(false);
            groupBox15.PerformLayout();
            groupBox7.ResumeLayout(false);
            groupBox7.PerformLayout();
            systemTrayIconGroupBox.ResumeLayout(false);
            systemTrayIconGroupBox.PerformLayout();
            flowLayoutPanel28.ResumeLayout(false);
            flowLayoutPanel28.PerformLayout();
            gbSkillBrowserIconSet.ResumeLayout(false);
            gbSkillBrowserIconSet.PerformLayout();
            this.tableLayoutPanel4.ResumeLayout(false);
            this.tableLayoutPanel1.ResumeLayout(false);
            this.tableLayoutPanel1.PerformLayout();
            this.flowLayoutPanel9.ResumeLayout(false);
            this.flowLayoutPanel9.PerformLayout();
            this.leftPanel.ResumeLayout(false);
            this.multiPanel.ResumeLayout(false);
            this.mainWindowPage.ResumeLayout(false);
            this.groupBox2.ResumeLayout(false);
            this.groupBox2.PerformLayout();
            this.overviewPanel.ResumeLayout(false);
            this.overviewPanel.PerformLayout();
            this.generalPage.ResumeLayout(false);
            this.generalPage.PerformLayout();
            this.skillPlannerPage.ResumeLayout(false);
            this.skillPlannerPage.PerformLayout();
            this.networkPage.ResumeLayout(false);
            this.ApiProxyGroupBox.ResumeLayout(false);
            this.ProxyServerGroupBox.ResumeLayout(false);
            this.ProxyServerGroupBox.PerformLayout();
            this.customProxyPanel.ResumeLayout(false);
            this.customProxyPanel.PerformLayout();
            this.emailNotificationsPage.ResumeLayout(false);
            this.emailNotificationsPage.PerformLayout();
            this.mailNotificationPanel.ResumeLayout(false);
            this.mailNotificationPanel.PerformLayout();
            this.tableLayoutPanel2.ResumeLayout(false);
            this.tableLayoutPanel2.PerformLayout();
            this.tlpEmailSettings.ResumeLayout(false);
            this.tlpEmailSettings.PerformLayout();
            this.tlpEmailAuthTable.ResumeLayout(false);
            this.tlpEmailAuthTable.PerformLayout();
            this.notificationsPage.ResumeLayout(false);
            this.notificationsPage.PerformLayout();
            this.trayIconPage.ResumeLayout(false);
            this.mainWindowBehaviourGroupBox.ResumeLayout(false);
            this.mainWindowBehaviourGroupBox.PerformLayout();
            this.trayIconPopupGroupBox.ResumeLayout(false);
            this.trayIconPopupGroupBox.PerformLayout();
            this.updatesPage.ResumeLayout(false);
            this.updatesPage.PerformLayout();
            this.groupBox1.ResumeLayout(false);
            this.schedulerUIPage.ResumeLayout(false);
            this.schedulerUIPage.PerformLayout();
            this.externalCalendarPage.ResumeLayout(false);
            this.externalCalendarPage.PerformLayout();
            this.externalCalendarPanel.ResumeLayout(false);
            this.externalCalendarPanel.PerformLayout();
            this.gbGoogle.ResumeLayout(false);
            this.gbGoogle.PerformLayout();
            this.g15Page.ResumeLayout(false);
            this.g15Page.PerformLayout();
            this.g15Panel.ResumeLayout(false);
            this.g15Panel.PerformLayout();
            this.panelCycleQueueInfo.ResumeLayout(false);
            this.panelCycleQueueInfo.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.ACycleTimesInterval)).EndInit();
            this.panelCycleCharInfo.ResumeLayout(false);
            this.panelCycleCharInfo.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.ACycleInterval)).EndInit();
            this.igbServerPage.ResumeLayout(false);
            this.igbServerPage.PerformLayout();
            this.igbFlowPanel.ResumeLayout(false);
            this.igbFlowPanel.PerformLayout();
            this.flowLayoutPanel27.ResumeLayout(false);
            this.flowLayoutPanel27.PerformLayout();
            this.iconsPage.ResumeLayout(false);
            this.messagesPage.ResumeLayout(false);
            this.gbMessageBox.ResumeLayout(false);
            this.gbMessageBox.PerformLayout();
            this.ObsoleteEntryRemovalGroupBox.ResumeLayout(false);
            this.ObsoleteEntryRemovalGroupBox.PerformLayout();
            this.battleClinicServicePage.ResumeLayout(false);
            this.settingsFileStorageGroupBox.ResumeLayout(false);
            this.bcCredentialsGroupBox.ResumeLayout(false);
            this.ResumeLayout(false);

        }
Example #46
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     System.Windows.Forms.FlowLayoutPanel flowLayoutPanel1;
     this.btnOK                       = new System.Windows.Forms.Button();
     this.btnCancel                   = new System.Windows.Forms.Button();
     this.btnRegisterAll              = new System.Windows.Forms.Button();
     this.tableLayoutPanel1           = new System.Windows.Forms.TableLayoutPanel();
     this.RegHotkeysAtStartupLabel    = new System.Windows.Forms.Label();
     this.SwitchSystemProxyLabel      = new System.Windows.Forms.Label();
     this.SwitchProxyModeLabel        = new System.Windows.Forms.Label();
     this.SwitchAllowLanLabel         = new System.Windows.Forms.Label();
     this.ShowLogsLabel               = new System.Windows.Forms.Label();
     this.ServerMoveUpLabel           = new System.Windows.Forms.Label();
     this.ServerMoveDownLabel         = new System.Windows.Forms.Label();
     this.SwitchSystemProxyTextBox    = new System.Windows.Forms.TextBox();
     this.SwitchProxyModeTextBox      = new System.Windows.Forms.TextBox();
     this.SwitchAllowLanTextBox       = new System.Windows.Forms.TextBox();
     this.ShowLogsTextBox             = new System.Windows.Forms.TextBox();
     this.ServerMoveUpTextBox         = new System.Windows.Forms.TextBox();
     this.ServerMoveDownTextBox       = new System.Windows.Forms.TextBox();
     this.RegHotkeysAtStartupCheckBox = new System.Windows.Forms.CheckBox();
     flowLayoutPanel1                 = new System.Windows.Forms.FlowLayoutPanel();
     flowLayoutPanel1.SuspendLayout();
     this.tableLayoutPanel1.SuspendLayout();
     this.SuspendLayout();
     //
     // flowLayoutPanel1
     //
     this.tableLayoutPanel1.SetColumnSpan(flowLayoutPanel1, 2);
     flowLayoutPanel1.Controls.Add(this.btnOK);
     flowLayoutPanel1.Controls.Add(this.btnCancel);
     flowLayoutPanel1.Controls.Add(this.btnRegisterAll);
     flowLayoutPanel1.FlowDirection = System.Windows.Forms.FlowDirection.BottomUp;
     flowLayoutPanel1.Location      = new System.Drawing.Point(0, 274);
     flowLayoutPanel1.Margin        = new System.Windows.Forms.Padding(0);
     flowLayoutPanel1.Name          = "flowLayoutPanel1";
     flowLayoutPanel1.Padding       = new System.Windows.Forms.Padding(0, 0, 20, 0);
     flowLayoutPanel1.RightToLeft   = System.Windows.Forms.RightToLeft.Yes;
     flowLayoutPanel1.Size          = new System.Drawing.Size(594, 52);
     flowLayoutPanel1.TabIndex      = 6;
     //
     // btnOK
     //
     this.btnOK.DialogResult            = System.Windows.Forms.DialogResult.OK;
     this.btnOK.Location                = new System.Drawing.Point(416, 9);
     this.btnOK.Margin                  = new System.Windows.Forms.Padding(4, 4, 4, 4);
     this.btnOK.Name                    = "btnOK";
     this.btnOK.Size                    = new System.Drawing.Size(154, 39);
     this.btnOK.TabIndex                = 0;
     this.btnOK.Text                    = "OK";
     this.btnOK.UseVisualStyleBackColor = true;
     this.btnOK.Click                  += new System.EventHandler(this.OKButton_Click);
     //
     // btnCancel
     //
     this.btnCancel.DialogResult            = System.Windows.Forms.DialogResult.Cancel;
     this.btnCancel.Location                = new System.Drawing.Point(254, 9);
     this.btnCancel.Margin                  = new System.Windows.Forms.Padding(4, 4, 4, 4);
     this.btnCancel.Name                    = "btnCancel";
     this.btnCancel.Size                    = new System.Drawing.Size(154, 39);
     this.btnCancel.TabIndex                = 1;
     this.btnCancel.Text                    = "Cancel";
     this.btnCancel.UseVisualStyleBackColor = true;
     this.btnCancel.Click                  += new System.EventHandler(this.CancelButton_Click);
     //
     // btnRegisterAll
     //
     this.btnRegisterAll.DialogResult            = System.Windows.Forms.DialogResult.Cancel;
     this.btnRegisterAll.Location                = new System.Drawing.Point(92, 9);
     this.btnRegisterAll.Margin                  = new System.Windows.Forms.Padding(4, 4, 4, 4);
     this.btnRegisterAll.Name                    = "btnRegisterAll";
     this.btnRegisterAll.Size                    = new System.Drawing.Size(154, 39);
     this.btnRegisterAll.TabIndex                = 2;
     this.btnRegisterAll.Text                    = "Reg All";
     this.btnRegisterAll.UseVisualStyleBackColor = true;
     this.btnRegisterAll.Click                  += new System.EventHandler(this.RegisterAllButton_Click);
     //
     // tableLayoutPanel1
     //
     this.tableLayoutPanel1.ColumnCount = 2;
     this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle());
     this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle());
     this.tableLayoutPanel1.Controls.Add(this.RegHotkeysAtStartupLabel, 0, 6);
     this.tableLayoutPanel1.Controls.Add(this.SwitchSystemProxyLabel, 0, 0);
     this.tableLayoutPanel1.Controls.Add(this.SwitchProxyModeLabel, 0, 1);
     this.tableLayoutPanel1.Controls.Add(this.SwitchAllowLanLabel, 0, 2);
     this.tableLayoutPanel1.Controls.Add(this.ShowLogsLabel, 0, 3);
     this.tableLayoutPanel1.Controls.Add(this.ServerMoveUpLabel, 0, 4);
     this.tableLayoutPanel1.Controls.Add(this.ServerMoveDownLabel, 0, 5);
     this.tableLayoutPanel1.Controls.Add(flowLayoutPanel1, 0, 7);
     this.tableLayoutPanel1.Controls.Add(this.SwitchSystemProxyTextBox, 1, 0);
     this.tableLayoutPanel1.Controls.Add(this.SwitchProxyModeTextBox, 1, 1);
     this.tableLayoutPanel1.Controls.Add(this.SwitchAllowLanTextBox, 1, 2);
     this.tableLayoutPanel1.Controls.Add(this.ShowLogsTextBox, 1, 3);
     this.tableLayoutPanel1.Controls.Add(this.ServerMoveUpTextBox, 1, 4);
     this.tableLayoutPanel1.Controls.Add(this.ServerMoveDownTextBox, 1, 5);
     this.tableLayoutPanel1.Controls.Add(this.RegHotkeysAtStartupCheckBox, 1, 6);
     this.tableLayoutPanel1.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.tableLayoutPanel1.Location = new System.Drawing.Point(0, 0);
     this.tableLayoutPanel1.Margin   = new System.Windows.Forms.Padding(4, 4, 4, 4);
     this.tableLayoutPanel1.Name     = "tableLayoutPanel1";
     this.tableLayoutPanel1.RowCount = 8;
     this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 14.16726F));
     this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 14.16726F));
     this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 14.16726F));
     this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 14.16726F));
     this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 14.7784F));
     this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 14.38949F));
     this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 14.16309F));
     this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 50F));
     this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
     this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
     this.tableLayoutPanel1.Size     = new System.Drawing.Size(614, 326);
     this.tableLayoutPanel1.TabIndex = 0;
     //
     // RegHotkeysAtStartupLabel
     //
     this.RegHotkeysAtStartupLabel.AutoSize  = true;
     this.RegHotkeysAtStartupLabel.Dock      = System.Windows.Forms.DockStyle.Right;
     this.RegHotkeysAtStartupLabel.Location  = new System.Drawing.Point(42, 235);
     this.RegHotkeysAtStartupLabel.Margin    = new System.Windows.Forms.Padding(10, 0, 10, 0);
     this.RegHotkeysAtStartupLabel.Name      = "RegHotkeysAtStartupLabel";
     this.RegHotkeysAtStartupLabel.Size      = new System.Drawing.Size(199, 39);
     this.RegHotkeysAtStartupLabel.TabIndex  = 16;
     this.RegHotkeysAtStartupLabel.Text      = "Reg Hotkeys At Startup";
     this.RegHotkeysAtStartupLabel.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // SwitchSystemProxyLabel
     //
     this.SwitchSystemProxyLabel.AutoSize  = true;
     this.SwitchSystemProxyLabel.Dock      = System.Windows.Forms.DockStyle.Right;
     this.SwitchSystemProxyLabel.Location  = new System.Drawing.Point(63, 0);
     this.SwitchSystemProxyLabel.Margin    = new System.Windows.Forms.Padding(10, 0, 10, 0);
     this.SwitchSystemProxyLabel.Name      = "SwitchSystemProxyLabel";
     this.SwitchSystemProxyLabel.Size      = new System.Drawing.Size(178, 39);
     this.SwitchSystemProxyLabel.TabIndex  = 0;
     this.SwitchSystemProxyLabel.Text      = "Enable System Proxy";
     this.SwitchSystemProxyLabel.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // SwitchProxyModeLabel
     //
     this.SwitchProxyModeLabel.AutoSize  = true;
     this.SwitchProxyModeLabel.Dock      = System.Windows.Forms.DockStyle.Right;
     this.SwitchProxyModeLabel.Location  = new System.Drawing.Point(10, 39);
     this.SwitchProxyModeLabel.Margin    = new System.Windows.Forms.Padding(10, 0, 10, 0);
     this.SwitchProxyModeLabel.Name      = "SwitchProxyModeLabel";
     this.SwitchProxyModeLabel.Size      = new System.Drawing.Size(231, 39);
     this.SwitchProxyModeLabel.TabIndex  = 1;
     this.SwitchProxyModeLabel.Text      = "Switch System Proxy Mode";
     this.SwitchProxyModeLabel.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // SwitchAllowLanLabel
     //
     this.SwitchAllowLanLabel.AutoSize  = true;
     this.SwitchAllowLanLabel.Dock      = System.Windows.Forms.DockStyle.Right;
     this.SwitchAllowLanLabel.Location  = new System.Drawing.Point(41, 78);
     this.SwitchAllowLanLabel.Margin    = new System.Windows.Forms.Padding(10, 0, 10, 0);
     this.SwitchAllowLanLabel.Name      = "SwitchAllowLanLabel";
     this.SwitchAllowLanLabel.Size      = new System.Drawing.Size(200, 39);
     this.SwitchAllowLanLabel.TabIndex  = 3;
     this.SwitchAllowLanLabel.Text      = "Allow Clients from LAN";
     this.SwitchAllowLanLabel.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // ShowLogsLabel
     //
     this.ShowLogsLabel.AutoSize  = true;
     this.ShowLogsLabel.Dock      = System.Windows.Forms.DockStyle.Right;
     this.ShowLogsLabel.Location  = new System.Drawing.Point(131, 117);
     this.ShowLogsLabel.Margin    = new System.Windows.Forms.Padding(10, 0, 10, 0);
     this.ShowLogsLabel.Name      = "ShowLogsLabel";
     this.ShowLogsLabel.Size      = new System.Drawing.Size(110, 39);
     this.ShowLogsLabel.TabIndex  = 4;
     this.ShowLogsLabel.Text      = "Show Logs...";
     this.ShowLogsLabel.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // ServerMoveUpLabel
     //
     this.ServerMoveUpLabel.AutoSize  = true;
     this.ServerMoveUpLabel.Dock      = System.Windows.Forms.DockStyle.Right;
     this.ServerMoveUpLabel.Location  = new System.Drawing.Point(158, 156);
     this.ServerMoveUpLabel.Margin    = new System.Windows.Forms.Padding(10, 0, 10, 0);
     this.ServerMoveUpLabel.Name      = "ServerMoveUpLabel";
     this.ServerMoveUpLabel.Size      = new System.Drawing.Size(83, 40);
     this.ServerMoveUpLabel.TabIndex  = 4;
     this.ServerMoveUpLabel.Text      = "Move up";
     this.ServerMoveUpLabel.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // ServerMoveDownLabel
     //
     this.ServerMoveDownLabel.AutoSize  = true;
     this.ServerMoveDownLabel.Dock      = System.Windows.Forms.DockStyle.Right;
     this.ServerMoveDownLabel.Location  = new System.Drawing.Point(132, 196);
     this.ServerMoveDownLabel.Margin    = new System.Windows.Forms.Padding(10, 0, 10, 0);
     this.ServerMoveDownLabel.Name      = "ServerMoveDownLabel";
     this.ServerMoveDownLabel.Size      = new System.Drawing.Size(109, 39);
     this.ServerMoveDownLabel.TabIndex  = 4;
     this.ServerMoveDownLabel.Text      = "Move Down";
     this.ServerMoveDownLabel.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // SwitchSystemProxyTextBox
     //
     this.SwitchSystemProxyTextBox.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.SwitchSystemProxyTextBox.Location = new System.Drawing.Point(255, 4);
     this.SwitchSystemProxyTextBox.Margin   = new System.Windows.Forms.Padding(4, 4, 20, 4);
     this.SwitchSystemProxyTextBox.Name     = "SwitchSystemProxyTextBox";
     this.SwitchSystemProxyTextBox.ReadOnly = true;
     this.SwitchSystemProxyTextBox.Size     = new System.Drawing.Size(349, 29);
     this.SwitchSystemProxyTextBox.TabIndex = 7;
     this.SwitchSystemProxyTextBox.KeyDown += new System.Windows.Forms.KeyEventHandler(this.HotkeyDown);
     this.SwitchSystemProxyTextBox.KeyUp   += new System.Windows.Forms.KeyEventHandler(this.HotkeyUp);
     //
     // SwitchProxyModeTextBox
     //
     this.SwitchProxyModeTextBox.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.SwitchProxyModeTextBox.Location = new System.Drawing.Point(255, 43);
     this.SwitchProxyModeTextBox.Margin   = new System.Windows.Forms.Padding(4, 4, 20, 4);
     this.SwitchProxyModeTextBox.Name     = "SwitchProxyModeTextBox";
     this.SwitchProxyModeTextBox.ReadOnly = true;
     this.SwitchProxyModeTextBox.Size     = new System.Drawing.Size(349, 29);
     this.SwitchProxyModeTextBox.TabIndex = 8;
     this.SwitchProxyModeTextBox.KeyDown += new System.Windows.Forms.KeyEventHandler(this.HotkeyDown);
     this.SwitchProxyModeTextBox.KeyUp   += new System.Windows.Forms.KeyEventHandler(this.HotkeyUp);
     //
     // SwitchAllowLanTextBox
     //
     this.SwitchAllowLanTextBox.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.SwitchAllowLanTextBox.Location = new System.Drawing.Point(255, 82);
     this.SwitchAllowLanTextBox.Margin   = new System.Windows.Forms.Padding(4, 4, 20, 4);
     this.SwitchAllowLanTextBox.Name     = "SwitchAllowLanTextBox";
     this.SwitchAllowLanTextBox.ReadOnly = true;
     this.SwitchAllowLanTextBox.Size     = new System.Drawing.Size(349, 29);
     this.SwitchAllowLanTextBox.TabIndex = 10;
     this.SwitchAllowLanTextBox.KeyDown += new System.Windows.Forms.KeyEventHandler(this.HotkeyDown);
     this.SwitchAllowLanTextBox.KeyUp   += new System.Windows.Forms.KeyEventHandler(this.HotkeyUp);
     //
     // ShowLogsTextBox
     //
     this.ShowLogsTextBox.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.ShowLogsTextBox.Location = new System.Drawing.Point(255, 121);
     this.ShowLogsTextBox.Margin   = new System.Windows.Forms.Padding(4, 4, 20, 4);
     this.ShowLogsTextBox.Name     = "ShowLogsTextBox";
     this.ShowLogsTextBox.ReadOnly = true;
     this.ShowLogsTextBox.Size     = new System.Drawing.Size(349, 29);
     this.ShowLogsTextBox.TabIndex = 11;
     this.ShowLogsTextBox.KeyDown += new System.Windows.Forms.KeyEventHandler(this.HotkeyDown);
     this.ShowLogsTextBox.KeyUp   += new System.Windows.Forms.KeyEventHandler(this.HotkeyUp);
     //
     // ServerMoveUpTextBox
     //
     this.ServerMoveUpTextBox.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.ServerMoveUpTextBox.Location = new System.Drawing.Point(255, 160);
     this.ServerMoveUpTextBox.Margin   = new System.Windows.Forms.Padding(4, 4, 20, 4);
     this.ServerMoveUpTextBox.Name     = "ServerMoveUpTextBox";
     this.ServerMoveUpTextBox.ReadOnly = true;
     this.ServerMoveUpTextBox.Size     = new System.Drawing.Size(349, 29);
     this.ServerMoveUpTextBox.TabIndex = 12;
     this.ServerMoveUpTextBox.KeyDown += new System.Windows.Forms.KeyEventHandler(this.HotkeyDown);
     this.ServerMoveUpTextBox.KeyUp   += new System.Windows.Forms.KeyEventHandler(this.HotkeyUp);
     //
     // ServerMoveDownTextBox
     //
     this.ServerMoveDownTextBox.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.ServerMoveDownTextBox.Location = new System.Drawing.Point(255, 200);
     this.ServerMoveDownTextBox.Margin   = new System.Windows.Forms.Padding(4, 4, 20, 4);
     this.ServerMoveDownTextBox.Name     = "ServerMoveDownTextBox";
     this.ServerMoveDownTextBox.ReadOnly = true;
     this.ServerMoveDownTextBox.Size     = new System.Drawing.Size(349, 29);
     this.ServerMoveDownTextBox.TabIndex = 13;
     this.ServerMoveDownTextBox.KeyDown += new System.Windows.Forms.KeyEventHandler(this.HotkeyDown);
     this.ServerMoveDownTextBox.KeyUp   += new System.Windows.Forms.KeyEventHandler(this.HotkeyUp);
     //
     // RegHotkeysAtStartupCheckBox
     //
     this.RegHotkeysAtStartupCheckBox.AutoSize = true;
     this.RegHotkeysAtStartupCheckBox.Location = new System.Drawing.Point(255, 246);
     this.RegHotkeysAtStartupCheckBox.Margin   = new System.Windows.Forms.Padding(4, 11, 11, 11);
     this.RegHotkeysAtStartupCheckBox.Name     = "RegHotkeysAtStartupCheckBox";
     this.RegHotkeysAtStartupCheckBox.Size     = new System.Drawing.Size(18, 17);
     this.RegHotkeysAtStartupCheckBox.TabIndex = 17;
     this.RegHotkeysAtStartupCheckBox.UseVisualStyleBackColor = true;
     //
     // HotkeySettingsForm
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(120F, 120F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Dpi;
     this.ClientSize          = new System.Drawing.Size(614, 326);
     this.Controls.Add(this.tableLayoutPanel1);
     this.Font          = new System.Drawing.Font("Microsoft YaHei", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.Margin        = new System.Windows.Forms.Padding(5, 6, 5, 6);
     this.MaximizeBox   = false;
     this.MinimizeBox   = false;
     this.Name          = "HotkeySettingsForm";
     this.SizeGripStyle = System.Windows.Forms.SizeGripStyle.Hide;
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text          = "Edit Hotkeys...";
     flowLayoutPanel1.ResumeLayout(false);
     this.tableLayoutPanel1.ResumeLayout(false);
     this.tableLayoutPanel1.PerformLayout();
     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();
            System.Windows.Forms.Panel panel1;
            System.Windows.Forms.Panel panel2;
            System.Windows.Forms.FlowLayoutPanel flowLayoutPanel1;
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FormVerify));
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle1 = new System.Windows.Forms.DataGridViewCellStyle();
            this.btnCloseDialog = new System.Windows.Forms.Button();
            this.btnRestoreSelectedObjects = new System.Windows.Forms.Button();
            this.DeleteAllLostAndFoundTags = new System.Windows.Forms.Button();
            this.Remove = new System.Windows.Forms.Button();
            this.SaveObjects = new System.Windows.Forms.Button();
            this.label2 = new System.Windows.Forms.Label();
            this.label1 = new System.Windows.Forms.Label();
            this.ShowOnlyCommits = new System.Windows.Forms.CheckBox();
            this.NoReflogs = new System.Windows.Forms.CheckBox();
            this.FullCheck = new System.Windows.Forms.CheckBox();
            this.Unreachable = new System.Windows.Forms.CheckBox();
            this.mnuLostObjects = new System.Windows.Forms.ContextMenuStrip(this.components);
            this.mnuLostObjectView = new System.Windows.Forms.ToolStripMenuItem();
            this.mnuLostObjectsCreateTag = new System.Windows.Forms.ToolStripMenuItem();
            this.mnuLostObjectsCreateBranch = new System.Windows.Forms.ToolStripMenuItem();
            this.Warnings = new System.Windows.Forms.DataGridView();
            this.columnIsLostObjectSelected = new System.Windows.Forms.DataGridViewCheckBoxColumn();
            this.columnDate = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.columnType = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.columnSubject = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.columnAuthor = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.columnHash = new System.Windows.Forms.DataGridViewTextBoxColumn();
            panel1 = new System.Windows.Forms.Panel();
            panel2 = new System.Windows.Forms.Panel();
            flowLayoutPanel1 = new System.Windows.Forms.FlowLayoutPanel();
            panel1.SuspendLayout();
            panel2.SuspendLayout();
            flowLayoutPanel1.SuspendLayout();
            this.mnuLostObjects.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.Warnings)).BeginInit();
            this.SuspendLayout();
            // 
            // panel1
            // 
            panel1.Controls.Add(this.btnCloseDialog);
            panel1.Controls.Add(this.btnRestoreSelectedObjects);
            panel1.Controls.Add(this.DeleteAllLostAndFoundTags);
            panel1.Controls.Add(this.Remove);
            panel1.Controls.Add(this.SaveObjects);
            panel1.Dock = System.Windows.Forms.DockStyle.Bottom;
            panel1.Location = new System.Drawing.Point(0, 514);
            panel1.Name = "panel1";
            panel1.Size = new System.Drawing.Size(859, 61);
            panel1.TabIndex = 1;
            // 
            // btnCloseDialog
            // 
            this.btnCloseDialog.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
            this.btnCloseDialog.DialogResult = System.Windows.Forms.DialogResult.Cancel;
            this.btnCloseDialog.Location = new System.Drawing.Point(647, 33);
            this.btnCloseDialog.Name = "btnCloseDialog";
            this.btnCloseDialog.Size = new System.Drawing.Size(208, 25);
            this.btnCloseDialog.TabIndex = 9;
            this.btnCloseDialog.Text = "Cancel";
            this.btnCloseDialog.UseVisualStyleBackColor = true;
            // 
            // btnRestoreSelectedObjects
            // 
            this.btnRestoreSelectedObjects.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left) 
            | System.Windows.Forms.AnchorStyles.Right)));
            this.btnRestoreSelectedObjects.Location = new System.Drawing.Point(298, 21);
            this.btnRestoreSelectedObjects.Name = "btnRestoreSelectedObjects";
            this.btnRestoreSelectedObjects.Size = new System.Drawing.Size(317, 25);
            this.btnRestoreSelectedObjects.TabIndex = 5;
            this.btnRestoreSelectedObjects.Text = "Recover selected objects";
            this.btnRestoreSelectedObjects.UseVisualStyleBackColor = true;
            this.btnRestoreSelectedObjects.Click += new System.EventHandler(this.btnRestoreSelectedObjects_Click);
            // 
            // DeleteAllLostAndFoundTags
            // 
            this.DeleteAllLostAndFoundTags.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.DeleteAllLostAndFoundTags.Location = new System.Drawing.Point(3, 33);
            this.DeleteAllLostAndFoundTags.Name = "DeleteAllLostAndFoundTags";
            this.DeleteAllLostAndFoundTags.Size = new System.Drawing.Size(252, 25);
            this.DeleteAllLostAndFoundTags.TabIndex = 7;
            this.DeleteAllLostAndFoundTags.Text = "Delete all LOST_AND_FOUND tags";
            this.DeleteAllLostAndFoundTags.UseVisualStyleBackColor = true;
            this.DeleteAllLostAndFoundTags.Click += new System.EventHandler(this.DeleteAllLostAndFoundTagsClick);
            // 
            // Remove
            // 
            this.Remove.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.Remove.Location = new System.Drawing.Point(3, 6);
            this.Remove.Name = "Remove";
            this.Remove.Size = new System.Drawing.Size(252, 25);
            this.Remove.TabIndex = 6;
            this.Remove.Text = "Remove all dangling objects";
            this.Remove.UseVisualStyleBackColor = true;
            this.Remove.Click += new System.EventHandler(this.RemoveClick);
            // 
            // SaveObjects
            // 
            this.SaveObjects.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
            this.SaveObjects.Location = new System.Drawing.Point(647, 6);
            this.SaveObjects.Name = "SaveObjects";
            this.SaveObjects.Size = new System.Drawing.Size(208, 25);
            this.SaveObjects.TabIndex = 8;
            this.SaveObjects.Text = "Save objects to .git/lost-found";
            this.SaveObjects.UseVisualStyleBackColor = true;
            this.SaveObjects.Click += new System.EventHandler(this.SaveObjectsClick);
            // 
            // panel2
            // 
            panel2.AutoSize = true;
            panel2.Controls.Add(flowLayoutPanel1);
            panel2.Controls.Add(this.ShowOnlyCommits);
            panel2.Controls.Add(this.NoReflogs);
            panel2.Controls.Add(this.FullCheck);
            panel2.Controls.Add(this.Unreachable);
            panel2.Dock = System.Windows.Forms.DockStyle.Top;
            panel2.Location = new System.Drawing.Point(0, 0);
            panel2.Name = "panel2";
            panel2.Size = new System.Drawing.Size(859, 138);
            panel2.TabIndex = 4;
            // 
            // flowLayoutPanel1
            // 
            flowLayoutPanel1.AutoSize = true;
            flowLayoutPanel1.Controls.Add(this.label2);
            flowLayoutPanel1.Controls.Add(this.label1);
            flowLayoutPanel1.Dock = System.Windows.Forms.DockStyle.Left;
            flowLayoutPanel1.Location = new System.Drawing.Point(0, 0);
            flowLayoutPanel1.Name = "flowLayoutPanel1";
            flowLayoutPanel1.Padding = new System.Windows.Forms.Padding(5);
            flowLayoutPanel1.Size = new System.Drawing.Size(351, 138);
            flowLayoutPanel1.TabIndex = 13;
            // 
            // label2
            // 
            this.label2.AutoSize = true;
            this.label2.Location = new System.Drawing.Point(8, 5);
            this.label2.Name = "label2";
            this.label2.Size = new System.Drawing.Size(335, 105);
            this.label2.TabIndex = 15;
            this.label2.Text = resources.GetString("label2.Text");
            // 
            // label1
            // 
            this.label1.AutoSize = true;
            this.label1.Location = new System.Drawing.Point(8, 115);
            this.label1.Margin = new System.Windows.Forms.Padding(3, 5, 3, 0);
            this.label1.Name = "label1";
            this.label1.Size = new System.Drawing.Size(200, 15);
            this.label1.TabIndex = 16;
            this.label1.Text = "Double-click on a row for quick view";
            // 
            // ShowOnlyCommits
            // 
            this.ShowOnlyCommits.AutoSize = true;
            this.ShowOnlyCommits.Checked = true;
            this.ShowOnlyCommits.CheckState = System.Windows.Forms.CheckState.Checked;
            this.ShowOnlyCommits.Location = new System.Drawing.Point(430, 9);
            this.ShowOnlyCommits.Name = "ShowOnlyCommits";
            this.ShowOnlyCommits.Size = new System.Drawing.Size(131, 19);
            this.ShowOnlyCommits.TabIndex = 0;
            this.ShowOnlyCommits.Text = "Show only commits";
            this.ShowOnlyCommits.UseVisualStyleBackColor = true;
            this.ShowOnlyCommits.CheckedChanged += new System.EventHandler(this.ShowOnlyCommitsCheckedChanged);
            // 
            // NoReflogs
            // 
            this.NoReflogs.AutoSize = true;
            this.NoReflogs.Checked = true;
            this.NoReflogs.CheckState = System.Windows.Forms.CheckState.Checked;
            this.NoReflogs.Location = new System.Drawing.Point(430, 35);
            this.NoReflogs.Name = "NoReflogs";
            this.NoReflogs.Size = new System.Drawing.Size(375, 34);
            this.NoReflogs.TabIndex = 1;
            this.NoReflogs.Text = "Do not consider commits that are referenced only by an entry in a \r\nreflog to be " +
    "reachable.";
            this.NoReflogs.UseVisualStyleBackColor = true;
            this.NoReflogs.CheckedChanged += new System.EventHandler(this.NoReflogsCheckedChanged);
            // 
            // FullCheck
            // 
            this.FullCheck.AutoSize = true;
            this.FullCheck.Location = new System.Drawing.Point(430, 101);
            this.FullCheck.Name = "FullCheck";
            this.FullCheck.Size = new System.Drawing.Size(397, 34);
            this.FullCheck.TabIndex = 3;
            this.FullCheck.Text = "Check not just objects in GIT_OBJECT_DIRECTORY ($GIT_DIR/objects), \r\nbut also the" +
    " ones found in alternate object pools.\r\n";
            this.FullCheck.UseVisualStyleBackColor = true;
            this.FullCheck.CheckedChanged += new System.EventHandler(this.FullCheckCheckedChanged);
            // 
            // Unreachable
            // 
            this.Unreachable.AutoSize = true;
            this.Unreachable.Location = new System.Drawing.Point(430, 68);
            this.Unreachable.Name = "Unreachable";
            this.Unreachable.Size = new System.Drawing.Size(429, 34);
            this.Unreachable.TabIndex = 2;
            this.Unreachable.Text = "Print out objects that exist but that aren\'t readable from any of the reference \r" +
    "\nnodes.\r\n";
            this.Unreachable.UseVisualStyleBackColor = true;
            this.Unreachable.CheckedChanged += new System.EventHandler(this.UnreachableCheckedChanged);
            // 
            // mnuLostObjects
            // 
            this.mnuLostObjects.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.mnuLostObjectView,
            this.mnuLostObjectsCreateTag,
            this.mnuLostObjectsCreateBranch});
            this.mnuLostObjects.Name = "mnuLostObjects";
            this.mnuLostObjects.Size = new System.Drawing.Size(190, 70);
            // 
            // mnuLostObjectView
            // 
            this.mnuLostObjectView.Name = "mnuLostObjectView";
            this.mnuLostObjectView.Size = new System.Drawing.Size(189, 22);
            this.mnuLostObjectView.Text = "View";
            this.mnuLostObjectView.Click += new System.EventHandler(this.mnuLostObjectView_Click);
            // 
            // mnuLostObjectsCreateTag
            // 
            this.mnuLostObjectsCreateTag.Name = "mnuLostObjectsCreateTag";
            this.mnuLostObjectsCreateTag.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.T)));
            this.mnuLostObjectsCreateTag.Size = new System.Drawing.Size(189, 22);
            this.mnuLostObjectsCreateTag.Text = "Create tag";
            this.mnuLostObjectsCreateTag.Click += new System.EventHandler(this.mnuLostObjectsCreateTag_Click);
            // 
            // mnuLostObjectsCreateBranch
            // 
            this.mnuLostObjectsCreateBranch.Name = "mnuLostObjectsCreateBranch";
            this.mnuLostObjectsCreateBranch.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.B)));
            this.mnuLostObjectsCreateBranch.Size = new System.Drawing.Size(189, 22);
            this.mnuLostObjectsCreateBranch.Text = "Create branch";
            this.mnuLostObjectsCreateBranch.Click += new System.EventHandler(this.mnuLostObjectsCreateBranch_Click);
            // 
            // Warnings
            // 
            this.Warnings.AllowUserToAddRows = false;
            this.Warnings.AllowUserToDeleteRows = false;
            this.Warnings.AllowUserToOrderColumns = true;
            this.Warnings.AllowUserToResizeRows = false;
            this.Warnings.AutoSizeRowsMode = System.Windows.Forms.DataGridViewAutoSizeRowsMode.AllCells;
            this.Warnings.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
            this.Warnings.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
            this.columnIsLostObjectSelected,
            this.columnDate,
            this.columnType,
            this.columnSubject,
            this.columnAuthor,
            this.columnHash});
            this.Warnings.Dock = System.Windows.Forms.DockStyle.Fill;
            this.Warnings.EditMode = System.Windows.Forms.DataGridViewEditMode.EditOnEnter;
            this.Warnings.Location = new System.Drawing.Point(0, 138);
            this.Warnings.MultiSelect = false;
            this.Warnings.Name = "Warnings";
            this.Warnings.RowHeadersVisible = false;
            this.Warnings.RowTemplate.ContextMenuStrip = this.mnuLostObjects;
            this.Warnings.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
            this.Warnings.ShowEditingIcon = false;
            this.Warnings.Size = new System.Drawing.Size(859, 376);
            this.Warnings.TabIndex = 4;
            this.Warnings.CellMouseDoubleClick += new System.Windows.Forms.DataGridViewCellMouseEventHandler(this.Warnings_CellMouseDoubleClick);
            this.Warnings.CellMouseDown += new System.Windows.Forms.DataGridViewCellMouseEventHandler(this.Warnings_CellMouseDown);
            // 
            // columnIsLostObjectSelected
            // 
            this.columnIsLostObjectSelected.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.AllCells;
            this.columnIsLostObjectSelected.DataPropertyName = "IsSelected";
            this.columnIsLostObjectSelected.HeaderText = "";
            this.columnIsLostObjectSelected.MinimumWidth = 20;
            this.columnIsLostObjectSelected.Name = "columnIsLostObjectSelected";
            this.columnIsLostObjectSelected.Width = 20;
            // 
            // columnDate
            // 
            this.columnDate.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.AllCells;
            this.columnDate.DataPropertyName = "Date";
            this.columnDate.HeaderText = "Date";
            this.columnDate.Name = "columnDate";
            this.columnDate.ReadOnly = true;
            this.columnDate.Width = 56;
            // 
            // columnType
            // 
            this.columnType.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.AllCells;
            this.columnType.DataPropertyName = "RawType";
            this.columnType.HeaderText = "Type";
            this.columnType.Name = "columnType";
            this.columnType.ReadOnly = true;
            this.columnType.Width = 58;
            // 
            // columnSubject
            // 
            this.columnSubject.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.Fill;
            this.columnSubject.DataPropertyName = "Subject";
            dataGridViewCellStyle1.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
            dataGridViewCellStyle1.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
            this.columnSubject.DefaultCellStyle = dataGridViewCellStyle1;
            this.columnSubject.HeaderText = "Subject";
            this.columnSubject.Name = "columnSubject";
            this.columnSubject.ReadOnly = true;
            // 
            // columnAuthor
            // 
            this.columnAuthor.DataPropertyName = "Author";
            this.columnAuthor.HeaderText = "Author";
            this.columnAuthor.Name = "columnAuthor";
            this.columnAuthor.ReadOnly = true;
            this.columnAuthor.Width = 150;
            // 
            // columnHash
            // 
            this.columnHash.DataPropertyName = "Hash";
            this.columnHash.HeaderText = "Hash";
            this.columnHash.Name = "columnHash";
            this.columnHash.ReadOnly = true;
            this.columnHash.Width = 80;
            // 
            // FormVerify
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi;
            this.CancelButton = this.btnCloseDialog;
            this.ClientSize = new System.Drawing.Size(859, 575);
            this.Controls.Add(this.Warnings);
            this.Controls.Add(panel2);
            this.Controls.Add(panel1);
            this.MinimizeBox = false;
            this.Name = "FormVerify";
            this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
            this.Text = "Verify database";
            this.Shown += new System.EventHandler(this.FormVerifyShown);
            panel1.ResumeLayout(false);
            panel2.ResumeLayout(false);
            panel2.PerformLayout();
            flowLayoutPanel1.ResumeLayout(false);
            flowLayoutPanel1.PerformLayout();
            this.mnuLostObjects.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.Warnings)).EndInit();
            this.ResumeLayout(false);
            this.PerformLayout();

        }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(MainForm));
     this.faTabStrip1 = new System.Windows.Forms.TabControl();
     this.faTabStripItemInfo = new System.Windows.Forms.TabPage();
     this.label10 = new System.Windows.Forms.Label();
     this.label9 = new System.Windows.Forms.Label();
     this.faTabStripItemSend = new System.Windows.Forms.TabPage();
     this.tableLayoutPanel1 = new System.Windows.Forms.TableLayoutPanel();
     this.cmdClearSend = new System.Windows.Forms.Button();
     this.tableLayoutPanel3 = new System.Windows.Forms.TableLayoutPanel();
     this.lblStatus = new System.Windows.Forms.Label();
     this.cmdSend = new System.Windows.Forms.Button();
     this.lblTeleLength = new System.Windows.Forms.Label();
     this.panel2 = new System.Windows.Forms.Panel();
     this.label7 = new System.Windows.Forms.Label();
     this.numericUpDown1 = new System.Windows.Forms.NumericUpDown();
     this.panel4 = new System.Windows.Forms.Panel();
     this.lblLenEmpf = new System.Windows.Forms.Label();
     this.label8 = new System.Windows.Forms.Label();
     this.splitContainer2 = new System.Windows.Forms.SplitContainer();
     this.splitContainer3 = new System.Windows.Forms.SplitContainer();
     this.tableLayoutPanel5 = new System.Windows.Forms.TableLayoutPanel();
     this.lstStoredSenddata = new System.Windows.Forms.ListBox();
     this.panel3 = new System.Windows.Forms.Panel();
     this.cmdRemoveSendeTele = new System.Windows.Forms.Button();
     this.cmdAddSendeTele = new System.Windows.Forms.Button();
     this.dtaSendTabelle = new System.Windows.Forms.DataGridView();
     this.Bezeichnung = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.Laenge = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.Wert = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.splitContainer4 = new System.Windows.Forms.SplitContainer();
     this.dtaSendSendTable = new System.Windows.Forms.DataGridView();
     this.dataGridViewTextBoxColumn1 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dtaSendQuittTable = new System.Windows.Forms.DataGridView();
     this.colSendQuittText = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.faTabStripItemRecieve = new System.Windows.Forms.TabPage();
     this.tableLayoutPanel2 = new System.Windows.Forms.TableLayoutPanel();
     this.kryptonButton2 = new System.Windows.Forms.Button();
     this.splitContainer1 = new System.Windows.Forms.SplitContainer();
     this.grdEmpfang = new System.Windows.Forms.DataGridView();
     this.colEmpf = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dtaEmpfangstelegrammAufgeschluesselt = new System.Windows.Forms.DataGridView();
     this.colEmpfBezeichnung = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.colEmpfLaenge = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.colEmpfWert = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.faTabStripItemSettings = new System.Windows.Forms.TabPage();
     this.groupBox4 = new System.Windows.Forms.GroupBox();
     this.label5 = new System.Windows.Forms.Label();
     this.cmdDelTele = new System.Windows.Forms.Button();
     this.cmdEditQuittFields = new System.Windows.Forms.Button();
     this.lstQuitt = new System.Windows.Forms.ListBox();
     this.chkAutoQuitt = new System.Windows.Forms.CheckBox();
     this.groupBox3 = new System.Windows.Forms.GroupBox();
     this.numSequenceNumberLength = new System.Windows.Forms.NumericUpDown();
     this.numSequenceNumberPosition = new System.Windows.Forms.NumericUpDown();
     this.label4 = new System.Windows.Forms.Label();
     this.label6 = new System.Windows.Forms.Label();
     this.groupBox2 = new System.Windows.Forms.GroupBox();
     this.chkChanel2active = new System.Windows.Forms.CheckBox();
     this.numPort2 = new System.Windows.Forms.NumericUpDown();
     this.numPort1 = new System.Windows.Forms.NumericUpDown();
     this.lblKanal2Port = new System.Windows.Forms.Label();
     this.chkChanel1active = new System.Windows.Forms.CheckBox();
     this.lblKanal2 = new System.Windows.Forms.Label();
     this.label3 = new System.Windows.Forms.Label();
     this.label2 = new System.Windows.Forms.Label();
     this.optTwoChannel = new System.Windows.Forms.RadioButton();
     this.optOneChannel = new System.Windows.Forms.RadioButton();
     this.groupBox1 = new System.Windows.Forms.GroupBox();
     this.label1 = new System.Windows.Forms.Label();
     this.ipAddressControl = new IPAddressControlLib.IPAddressControl();
     this.cmdSelectStep7UDT = new System.Windows.Forms.Button();
     this.cmdConnect = new System.Windows.Forms.Button();
     this.tableLayoutPanel4 = new System.Windows.Forms.TableLayoutPanel();
     this.panel1 = new System.Windows.Forms.Panel();
     this.cmdSettExport = new System.Windows.Forms.Button();
     this.cmdSettImport = new System.Windows.Forms.Button();
     this.cmdSettingsSave = new System.Windows.Forms.Button();
     this.flowLayoutPanel1 = new System.Windows.Forms.FlowLayoutPanel();
     this.picConnection1 = new System.Windows.Forms.PictureBox();
     this.picConnection2 = new System.Windows.Forms.PictureBox();
     this.cmdDisconnect = new System.Windows.Forms.Button();
     this.toolTip = new System.Windows.Forms.ToolTip(this.components);
     this.faTabStrip1.SuspendLayout();
     this.faTabStripItemInfo.SuspendLayout();
     this.faTabStripItemSend.SuspendLayout();
     this.tableLayoutPanel1.SuspendLayout();
     this.tableLayoutPanel3.SuspendLayout();
     this.panel2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.numericUpDown1)).BeginInit();
     this.panel4.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.splitContainer2)).BeginInit();
     this.splitContainer2.Panel1.SuspendLayout();
     this.splitContainer2.Panel2.SuspendLayout();
     this.splitContainer2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.splitContainer3)).BeginInit();
     this.splitContainer3.Panel1.SuspendLayout();
     this.splitContainer3.Panel2.SuspendLayout();
     this.splitContainer3.SuspendLayout();
     this.tableLayoutPanel5.SuspendLayout();
     this.panel3.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dtaSendTabelle)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.splitContainer4)).BeginInit();
     this.splitContainer4.Panel1.SuspendLayout();
     this.splitContainer4.Panel2.SuspendLayout();
     this.splitContainer4.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dtaSendSendTable)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dtaSendQuittTable)).BeginInit();
     this.faTabStripItemRecieve.SuspendLayout();
     this.tableLayoutPanel2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).BeginInit();
     this.splitContainer1.Panel1.SuspendLayout();
     this.splitContainer1.Panel2.SuspendLayout();
     this.splitContainer1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.grdEmpfang)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dtaEmpfangstelegrammAufgeschluesselt)).BeginInit();
     this.faTabStripItemSettings.SuspendLayout();
     this.groupBox4.SuspendLayout();
     this.groupBox3.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.numSequenceNumberLength)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.numSequenceNumberPosition)).BeginInit();
     this.groupBox2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.numPort2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.numPort1)).BeginInit();
     this.groupBox1.SuspendLayout();
     this.tableLayoutPanel4.SuspendLayout();
     this.panel1.SuspendLayout();
     this.flowLayoutPanel1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.picConnection1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.picConnection2)).BeginInit();
     this.SuspendLayout();
     //
     // faTabStrip1
     //
     this.faTabStrip1.Controls.Add(this.faTabStripItemInfo);
     this.faTabStrip1.Controls.Add(this.faTabStripItemSend);
     this.faTabStrip1.Controls.Add(this.faTabStripItemRecieve);
     this.faTabStrip1.Controls.Add(this.faTabStripItemSettings);
     this.faTabStrip1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.faTabStrip1.Font = new System.Drawing.Font("Tahoma", 8.25F);
     this.faTabStrip1.Location = new System.Drawing.Point(3, 53);
     this.faTabStrip1.Name = "faTabStrip1";
     this.faTabStrip1.SelectedIndex = 0;
     this.faTabStrip1.Size = new System.Drawing.Size(896, 569);
     this.faTabStrip1.TabIndex = 2;
     this.faTabStrip1.Text = "Sende Tabelle";
     //
     // faTabStripItemInfo
     //
     this.faTabStripItemInfo.Controls.Add(this.label10);
     this.faTabStripItemInfo.Controls.Add(this.label9);
     this.faTabStripItemInfo.Location = new System.Drawing.Point(4, 22);
     this.faTabStripItemInfo.Name = "faTabStripItemInfo";
     this.faTabStripItemInfo.Size = new System.Drawing.Size(888, 543);
     this.faTabStripItemInfo.TabIndex = 3;
     this.faTabStripItemInfo.Text = "Info";
     //
     // label10
     //
     this.label10.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.label10.Location = new System.Drawing.Point(74, 59);
     this.label10.Name = "label10";
     this.label10.Size = new System.Drawing.Size(726, 81);
     this.label10.TabIndex = 0;
     this.label10.Text = resources.GetString("label10.Text");
     //
     // label9
     //
     this.label9.AutoSize = true;
     this.label9.Location = new System.Drawing.Point(39, 25);
     this.label9.Name = "label9";
     this.label9.Size = new System.Drawing.Size(31, 13);
     this.label9.TabIndex = 0;
     this.label9.Text = "Info:";
     //
     // faTabStripItemSend
     //
     this.faTabStripItemSend.Controls.Add(this.tableLayoutPanel1);
     this.faTabStripItemSend.Location = new System.Drawing.Point(4, 22);
     this.faTabStripItemSend.Name = "faTabStripItemSend";
     this.faTabStripItemSend.Size = new System.Drawing.Size(888, 543);
     this.faTabStripItemSend.TabIndex = 0;
     this.faTabStripItemSend.Text = "Sende Tabelle";
     //
     // tableLayoutPanel1
     //
     this.tableLayoutPanel1.ColumnCount = 2;
     this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F));
     this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 150F));
     this.tableLayoutPanel1.Controls.Add(this.cmdClearSend, 0, 1);
     this.tableLayoutPanel1.Controls.Add(this.tableLayoutPanel3, 1, 0);
     this.tableLayoutPanel1.Controls.Add(this.splitContainer2, 0, 0);
     this.tableLayoutPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tableLayoutPanel1.Location = new System.Drawing.Point(0, 0);
     this.tableLayoutPanel1.Name = "tableLayoutPanel1";
     this.tableLayoutPanel1.RowCount = 2;
     this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 100F));
     this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 32F));
     this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 20F));
     this.tableLayoutPanel1.Size = new System.Drawing.Size(888, 543);
     this.tableLayoutPanel1.TabIndex = 1;
     //
     // cmdClearSend
     //
     this.cmdClearSend.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.cmdClearSend.Location = new System.Drawing.Point(741, 514);
     this.cmdClearSend.Name = "cmdClearSend";
     this.cmdClearSend.Size = new System.Drawing.Size(144, 25);
     this.cmdClearSend.TabIndex = 5;
     this.cmdClearSend.Text = "CLR";
     this.cmdClearSend.UseVisualStyleBackColor = true;
     this.cmdClearSend.Click += new System.EventHandler(this.cmdClearSend_Click);
     //
     // tableLayoutPanel3
     //
     this.tableLayoutPanel3.ColumnCount = 1;
     this.tableLayoutPanel3.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F));
     this.tableLayoutPanel3.Controls.Add(this.lblStatus, 0, 2);
     this.tableLayoutPanel3.Controls.Add(this.cmdSend, 0, 0);
     this.tableLayoutPanel3.Controls.Add(this.lblTeleLength, 0, 3);
     this.tableLayoutPanel3.Controls.Add(this.panel2, 0, 1);
     this.tableLayoutPanel3.Controls.Add(this.panel4, 0, 4);
     this.tableLayoutPanel3.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tableLayoutPanel3.Location = new System.Drawing.Point(741, 3);
     this.tableLayoutPanel3.Name = "tableLayoutPanel3";
     this.tableLayoutPanel3.RowCount = 5;
     this.tableLayoutPanel3.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 30F));
     this.tableLayoutPanel3.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 60F));
     this.tableLayoutPanel3.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 99F));
     this.tableLayoutPanel3.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 64F));
     this.tableLayoutPanel3.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 55F));
     this.tableLayoutPanel3.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 20F));
     this.tableLayoutPanel3.Size = new System.Drawing.Size(144, 505);
     this.tableLayoutPanel3.TabIndex = 3;
     //
     // lblStatus
     //
     this.lblStatus.Dock = System.Windows.Forms.DockStyle.Fill;
     this.lblStatus.Location = new System.Drawing.Point(3, 90);
     this.lblStatus.Name = "lblStatus";
     this.lblStatus.Size = new System.Drawing.Size(138, 99);
     this.lblStatus.TabIndex = 7;
     this.lblStatus.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // cmdSend
     //
     this.cmdSend.Location = new System.Drawing.Point(3, 3);
     this.cmdSend.Name = "cmdSend";
     this.cmdSend.Size = new System.Drawing.Size(138, 24);
     this.cmdSend.TabIndex = 6;
     this.cmdSend.Text = "Senden";
     this.cmdSend.UseVisualStyleBackColor = true;
     this.cmdSend.Click += new System.EventHandler(this.cmdSend_Click);
     //
     // lblTeleLength
     //
     this.lblTeleLength.Dock = System.Windows.Forms.DockStyle.Fill;
     this.lblTeleLength.Location = new System.Drawing.Point(3, 189);
     this.lblTeleLength.Name = "lblTeleLength";
     this.lblTeleLength.Size = new System.Drawing.Size(138, 64);
     this.lblTeleLength.TabIndex = 9;
     this.lblTeleLength.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // panel2
     //
     this.panel2.Controls.Add(this.label7);
     this.panel2.Controls.Add(this.numericUpDown1);
     this.panel2.Dock = System.Windows.Forms.DockStyle.Fill;
     this.panel2.Location = new System.Drawing.Point(3, 33);
     this.panel2.Name = "panel2";
     this.panel2.Size = new System.Drawing.Size(138, 54);
     this.panel2.TabIndex = 10;
     //
     // label7
     //
     this.label7.AutoSize = true;
     this.label7.Location = new System.Drawing.Point(8, 8);
     this.label7.Name = "label7";
     this.label7.Size = new System.Drawing.Size(66, 13);
     this.label7.TabIndex = 1;
     this.label7.Text = "Laufnummer";
     //
     // numericUpDown1
     //
     this.numericUpDown1.DataBindings.Add(new System.Windows.Forms.Binding("Value", global::Kopplungstester.Properties.Settings.Default, "Laufnummer", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
     this.numericUpDown1.Location = new System.Drawing.Point(18, 24);
     this.numericUpDown1.Name = "numericUpDown1";
     this.numericUpDown1.Size = new System.Drawing.Size(102, 21);
     this.numericUpDown1.TabIndex = 0;
     //
     // panel4
     //
     this.panel4.Controls.Add(this.lblLenEmpf);
     this.panel4.Controls.Add(this.label8);
     this.panel4.Dock = System.Windows.Forms.DockStyle.Fill;
     this.panel4.Location = new System.Drawing.Point(3, 256);
     this.panel4.Name = "panel4";
     this.panel4.Size = new System.Drawing.Size(138, 246);
     this.panel4.TabIndex = 11;
     //
     // lblLenEmpf
     //
     this.lblLenEmpf.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.lblLenEmpf.Location = new System.Drawing.Point(15, 159);
     this.lblLenEmpf.Name = "lblLenEmpf";
     this.lblLenEmpf.Size = new System.Drawing.Size(40, 13);
     this.lblLenEmpf.TabIndex = 0;
     //
     // label8
     //
     this.label8.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.label8.AutoSize = true;
     this.label8.Location = new System.Drawing.Point(11, 143);
     this.label8.Name = "label8";
     this.label8.Size = new System.Drawing.Size(40, 13);
     this.label8.TabIndex = 0;
     this.label8.Text = "Länge:";
     //
     // splitContainer2
     //
     this.splitContainer2.Dock = System.Windows.Forms.DockStyle.Fill;
     this.splitContainer2.Location = new System.Drawing.Point(3, 3);
     this.splitContainer2.Name = "splitContainer2";
     this.splitContainer2.Orientation = System.Windows.Forms.Orientation.Horizontal;
     //
     // splitContainer2.Panel1
     //
     this.splitContainer2.Panel1.Controls.Add(this.splitContainer3);
     //
     // splitContainer2.Panel2
     //
     this.splitContainer2.Panel2.Controls.Add(this.splitContainer4);
     this.tableLayoutPanel1.SetRowSpan(this.splitContainer2, 2);
     this.splitContainer2.Size = new System.Drawing.Size(732, 537);
     this.splitContainer2.SplitterDistance = 305;
     this.splitContainer2.TabIndex = 4;
     //
     // splitContainer3
     //
     this.splitContainer3.Dock = System.Windows.Forms.DockStyle.Fill;
     this.splitContainer3.Location = new System.Drawing.Point(0, 0);
     this.splitContainer3.Name = "splitContainer3";
     this.splitContainer3.Orientation = System.Windows.Forms.Orientation.Horizontal;
     //
     // splitContainer3.Panel1
     //
     this.splitContainer3.Panel1.Controls.Add(this.tableLayoutPanel5);
     //
     // splitContainer3.Panel2
     //
     this.splitContainer3.Panel2.Controls.Add(this.dtaSendTabelle);
     this.splitContainer3.Size = new System.Drawing.Size(732, 305);
     this.splitContainer3.SplitterDistance = 76;
     this.splitContainer3.TabIndex = 0;
     //
     // tableLayoutPanel5
     //
     this.tableLayoutPanel5.ColumnCount = 2;
     this.tableLayoutPanel5.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F));
     this.tableLayoutPanel5.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 100F));
     this.tableLayoutPanel5.Controls.Add(this.lstStoredSenddata, 0, 0);
     this.tableLayoutPanel5.Controls.Add(this.panel3, 1, 0);
     this.tableLayoutPanel5.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tableLayoutPanel5.Location = new System.Drawing.Point(0, 0);
     this.tableLayoutPanel5.Name = "tableLayoutPanel5";
     this.tableLayoutPanel5.RowCount = 1;
     this.tableLayoutPanel5.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 100F));
     this.tableLayoutPanel5.Size = new System.Drawing.Size(732, 76);
     this.tableLayoutPanel5.TabIndex = 0;
     //
     // lstStoredSenddata
     //
     this.lstStoredSenddata.Dock = System.Windows.Forms.DockStyle.Fill;
     this.lstStoredSenddata.FormattingEnabled = true;
     this.lstStoredSenddata.Location = new System.Drawing.Point(3, 3);
     this.lstStoredSenddata.Name = "lstStoredSenddata";
     this.lstStoredSenddata.Size = new System.Drawing.Size(626, 70);
     this.lstStoredSenddata.TabIndex = 0;
     this.lstStoredSenddata.DoubleClick += new System.EventHandler(this.lstStoredSenddata_DoubleClick);
     //
     // panel3
     //
     this.panel3.Controls.Add(this.cmdRemoveSendeTele);
     this.panel3.Controls.Add(this.cmdAddSendeTele);
     this.panel3.Location = new System.Drawing.Point(635, 3);
     this.panel3.Name = "panel3";
     this.panel3.Size = new System.Drawing.Size(94, 70);
     this.panel3.TabIndex = 1;
     //
     // cmdRemoveSendeTele
     //
     this.cmdRemoveSendeTele.Location = new System.Drawing.Point(8, 41);
     this.cmdRemoveSendeTele.Name = "cmdRemoveSendeTele";
     this.cmdRemoveSendeTele.Size = new System.Drawing.Size(76, 22);
     this.cmdRemoveSendeTele.TabIndex = 0;
     this.cmdRemoveSendeTele.Text = "Remove";
     this.cmdRemoveSendeTele.UseVisualStyleBackColor = true;
     this.cmdRemoveSendeTele.Click += new System.EventHandler(this.cmdRemoveSendeTele_Click);
     //
     // cmdAddSendeTele
     //
     this.cmdAddSendeTele.Location = new System.Drawing.Point(8, 13);
     this.cmdAddSendeTele.Name = "cmdAddSendeTele";
     this.cmdAddSendeTele.Size = new System.Drawing.Size(76, 22);
     this.cmdAddSendeTele.TabIndex = 0;
     this.cmdAddSendeTele.Text = "Add";
     this.cmdAddSendeTele.UseVisualStyleBackColor = true;
     this.cmdAddSendeTele.Click += new System.EventHandler(this.cmdAddSendeTele_Click);
     //
     // dtaSendTabelle
     //
     this.dtaSendTabelle.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill;
     this.dtaSendTabelle.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.dtaSendTabelle.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
     this.Bezeichnung,
     this.Laenge,
     this.Wert});
     this.dtaSendTabelle.Dock = System.Windows.Forms.DockStyle.Fill;
     this.dtaSendTabelle.Location = new System.Drawing.Point(0, 0);
     this.dtaSendTabelle.Name = "dtaSendTabelle";
     this.dtaSendTabelle.RowTemplate.DefaultCellStyle.Font = new System.Drawing.Font("Courier New", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.dtaSendTabelle.Size = new System.Drawing.Size(732, 225);
     this.dtaSendTabelle.TabIndex = 4;
     this.dtaSendTabelle.CellEndEdit += new System.Windows.Forms.DataGridViewCellEventHandler(this.dtaSendTabelle_CellEndEdit);
     this.dtaSendTabelle.RowsAdded += new System.Windows.Forms.DataGridViewRowsAddedEventHandler(this.dtaSendTabelle_RowsAdded);
     //
     // Bezeichnung
     //
     this.Bezeichnung.HeaderText = "Bezeichnung";
     this.Bezeichnung.Name = "Bezeichnung";
     //
     // Laenge
     //
     this.Laenge.HeaderText = "Länge";
     this.Laenge.Name = "Laenge";
     //
     // Wert
     //
     this.Wert.HeaderText = "Wert";
     this.Wert.Name = "Wert";
     //
     // splitContainer4
     //
     this.splitContainer4.Dock = System.Windows.Forms.DockStyle.Fill;
     this.splitContainer4.Location = new System.Drawing.Point(0, 0);
     this.splitContainer4.Name = "splitContainer4";
     this.splitContainer4.Orientation = System.Windows.Forms.Orientation.Horizontal;
     //
     // splitContainer4.Panel1
     //
     this.splitContainer4.Panel1.Controls.Add(this.dtaSendSendTable);
     //
     // splitContainer4.Panel2
     //
     this.splitContainer4.Panel2.Controls.Add(this.dtaSendQuittTable);
     this.splitContainer4.Size = new System.Drawing.Size(732, 228);
     this.splitContainer4.SplitterDistance = 109;
     this.splitContainer4.TabIndex = 0;
     //
     // dtaSendSendTable
     //
     this.dtaSendSendTable.AllowUserToAddRows = false;
     this.dtaSendSendTable.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill;
     this.dtaSendSendTable.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.dtaSendSendTable.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
     this.dataGridViewTextBoxColumn1});
     this.dtaSendSendTable.Dock = System.Windows.Forms.DockStyle.Fill;
     this.dtaSendSendTable.Location = new System.Drawing.Point(0, 0);
     this.dtaSendSendTable.Name = "dtaSendSendTable";
     this.dtaSendSendTable.ReadOnly = true;
     this.dtaSendSendTable.RowTemplate.DefaultCellStyle.Font = new System.Drawing.Font("Courier New", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.dtaSendSendTable.Size = new System.Drawing.Size(732, 109);
     this.dtaSendSendTable.TabIndex = 7;
     this.dtaSendSendTable.CellContentClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.dtaSendSendTable_CellContentClick);
     //
     // dataGridViewTextBoxColumn1
     //
     this.dataGridViewTextBoxColumn1.HeaderText = "Gesendete Telegramme";
     this.dataGridViewTextBoxColumn1.Name = "dataGridViewTextBoxColumn1";
     this.dataGridViewTextBoxColumn1.ReadOnly = true;
     //
     // dtaSendQuittTable
     //
     this.dtaSendQuittTable.AllowUserToAddRows = false;
     this.dtaSendQuittTable.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill;
     this.dtaSendQuittTable.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.dtaSendQuittTable.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
     this.colSendQuittText});
     this.dtaSendQuittTable.Dock = System.Windows.Forms.DockStyle.Fill;
     this.dtaSendQuittTable.Location = new System.Drawing.Point(0, 0);
     this.dtaSendQuittTable.Name = "dtaSendQuittTable";
     this.dtaSendQuittTable.ReadOnly = true;
     this.dtaSendQuittTable.RowTemplate.DefaultCellStyle.Font = new System.Drawing.Font("Courier New", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.dtaSendQuittTable.Size = new System.Drawing.Size(732, 115);
     this.dtaSendQuittTable.TabIndex = 6;
     //
     // colSendQuittText
     //
     this.colSendQuittText.HeaderText = "Empfangene Quittungen";
     this.colSendQuittText.Name = "colSendQuittText";
     this.colSendQuittText.ReadOnly = true;
     //
     // faTabStripItemRecieve
     //
     this.faTabStripItemRecieve.Controls.Add(this.tableLayoutPanel2);
     this.faTabStripItemRecieve.Location = new System.Drawing.Point(4, 22);
     this.faTabStripItemRecieve.Name = "faTabStripItemRecieve";
     this.faTabStripItemRecieve.Size = new System.Drawing.Size(888, 543);
     this.faTabStripItemRecieve.TabIndex = 1;
     this.faTabStripItemRecieve.Text = "Empfangs FIFO";
     //
     // tableLayoutPanel2
     //
     this.tableLayoutPanel2.ColumnCount = 2;
     this.tableLayoutPanel2.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F));
     this.tableLayoutPanel2.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 150F));
     this.tableLayoutPanel2.Controls.Add(this.kryptonButton2, 1, 0);
     this.tableLayoutPanel2.Controls.Add(this.splitContainer1, 0, 0);
     this.tableLayoutPanel2.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tableLayoutPanel2.Location = new System.Drawing.Point(0, 0);
     this.tableLayoutPanel2.Name = "tableLayoutPanel2";
     this.tableLayoutPanel2.RowCount = 1;
     this.tableLayoutPanel2.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 100F));
     this.tableLayoutPanel2.Size = new System.Drawing.Size(888, 543);
     this.tableLayoutPanel2.TabIndex = 2;
     //
     // kryptonButton2
     //
     this.kryptonButton2.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.kryptonButton2.Location = new System.Drawing.Point(741, 3);
     this.kryptonButton2.Name = "kryptonButton2";
     this.kryptonButton2.Size = new System.Drawing.Size(144, 40);
     this.kryptonButton2.TabIndex = 4;
     this.kryptonButton2.Text = "CLR";
     this.kryptonButton2.UseVisualStyleBackColor = true;
     this.kryptonButton2.Click += new System.EventHandler(this.kryptonButton2_Click);
     //
     // splitContainer1
     //
     this.splitContainer1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.splitContainer1.Location = new System.Drawing.Point(3, 3);
     this.splitContainer1.Name = "splitContainer1";
     this.splitContainer1.Orientation = System.Windows.Forms.Orientation.Horizontal;
     //
     // splitContainer1.Panel1
     //
     this.splitContainer1.Panel1.Controls.Add(this.grdEmpfang);
     //
     // splitContainer1.Panel2
     //
     this.splitContainer1.Panel2.Controls.Add(this.dtaEmpfangstelegrammAufgeschluesselt);
     this.splitContainer1.Size = new System.Drawing.Size(732, 537);
     this.splitContainer1.SplitterDistance = 212;
     this.splitContainer1.TabIndex = 5;
     //
     // grdEmpfang
     //
     this.grdEmpfang.AllowUserToAddRows = false;
     this.grdEmpfang.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill;
     this.grdEmpfang.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.grdEmpfang.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
     this.colEmpf});
     this.grdEmpfang.Dock = System.Windows.Forms.DockStyle.Fill;
     this.grdEmpfang.Location = new System.Drawing.Point(0, 0);
     this.grdEmpfang.Name = "grdEmpfang";
     this.grdEmpfang.ReadOnly = true;
     this.grdEmpfang.RowTemplate.DefaultCellStyle.Font = new System.Drawing.Font("Courier New", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.grdEmpfang.Size = new System.Drawing.Size(732, 212);
     this.grdEmpfang.TabIndex = 4;
     this.grdEmpfang.CellClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.grdEmpfang_CellClick);
     this.grdEmpfang.CellContentClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.grdEmpfang_CellContentClick);
     //
     // colEmpf
     //
     this.colEmpf.HeaderText = "Empfangstelegramme";
     this.colEmpf.Name = "colEmpf";
     this.colEmpf.ReadOnly = true;
     //
     // dtaEmpfangstelegrammAufgeschluesselt
     //
     this.dtaEmpfangstelegrammAufgeschluesselt.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill;
     this.dtaEmpfangstelegrammAufgeschluesselt.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.dtaEmpfangstelegrammAufgeschluesselt.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
     this.colEmpfBezeichnung,
     this.colEmpfLaenge,
     this.colEmpfWert});
     this.dtaEmpfangstelegrammAufgeschluesselt.Dock = System.Windows.Forms.DockStyle.Fill;
     this.dtaEmpfangstelegrammAufgeschluesselt.Location = new System.Drawing.Point(0, 0);
     this.dtaEmpfangstelegrammAufgeschluesselt.Name = "dtaEmpfangstelegrammAufgeschluesselt";
     this.dtaEmpfangstelegrammAufgeschluesselt.RowTemplate.DefaultCellStyle.Font = new System.Drawing.Font("Courier New", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.dtaEmpfangstelegrammAufgeschluesselt.Size = new System.Drawing.Size(732, 321);
     this.dtaEmpfangstelegrammAufgeschluesselt.TabIndex = 5;
     //
     // colEmpfBezeichnung
     //
     this.colEmpfBezeichnung.HeaderText = "Bezeichnung";
     this.colEmpfBezeichnung.Name = "colEmpfBezeichnung";
     //
     // colEmpfLaenge
     //
     this.colEmpfLaenge.HeaderText = "Länge";
     this.colEmpfLaenge.Name = "colEmpfLaenge";
     //
     // colEmpfWert
     //
     this.colEmpfWert.HeaderText = "Wert";
     this.colEmpfWert.Name = "colEmpfWert";
     //
     // faTabStripItemSettings
     //
     this.faTabStripItemSettings.Controls.Add(this.groupBox4);
     this.faTabStripItemSettings.Controls.Add(this.groupBox3);
     this.faTabStripItemSettings.Controls.Add(this.groupBox2);
     this.faTabStripItemSettings.Controls.Add(this.groupBox1);
     this.faTabStripItemSettings.Location = new System.Drawing.Point(4, 22);
     this.faTabStripItemSettings.Name = "faTabStripItemSettings";
     this.faTabStripItemSettings.Size = new System.Drawing.Size(888, 543);
     this.faTabStripItemSettings.TabIndex = 2;
     this.faTabStripItemSettings.Text = "Einstellungen";
     //
     // groupBox4
     //
     this.groupBox4.Controls.Add(this.label5);
     this.groupBox4.Controls.Add(this.cmdDelTele);
     this.groupBox4.Controls.Add(this.cmdEditQuittFields);
     this.groupBox4.Controls.Add(this.lstQuitt);
     this.groupBox4.Controls.Add(this.chkAutoQuitt);
     this.groupBox4.Location = new System.Drawing.Point(409, 18);
     this.groupBox4.Name = "groupBox4";
     this.groupBox4.Size = new System.Drawing.Size(176, 232);
     this.groupBox4.TabIndex = 8;
     this.groupBox4.TabStop = false;
     this.groupBox4.Text = "Quittungs Parameter";
     //
     // label5
     //
     this.label5.Location = new System.Drawing.Point(6, 164);
     this.label5.Name = "label5";
     this.label5.Size = new System.Drawing.Size(164, 54);
     this.label5.TabIndex = 16;
     this.label5.Text = "Wenn automatisch quittieren eingeschaltet ist werden im Telegramm die Positionen " +
     "durch den Text ersetzt";
     //
     // cmdDelTele
     //
     this.cmdDelTele.Location = new System.Drawing.Point(6, 139);
     this.cmdDelTele.Name = "cmdDelTele";
     this.cmdDelTele.Size = new System.Drawing.Size(58, 22);
     this.cmdDelTele.TabIndex = 12;
     this.cmdDelTele.Text = "Del";
     this.cmdDelTele.UseVisualStyleBackColor = true;
     this.cmdDelTele.Click += new System.EventHandler(this.cmdDelTele_Click);
     //
     // cmdEditQuittFields
     //
     this.cmdEditQuittFields.Location = new System.Drawing.Point(112, 139);
     this.cmdEditQuittFields.Name = "cmdEditQuittFields";
     this.cmdEditQuittFields.Size = new System.Drawing.Size(58, 22);
     this.cmdEditQuittFields.TabIndex = 12;
     this.cmdEditQuittFields.Text = "Add";
     this.cmdEditQuittFields.UseVisualStyleBackColor = true;
     this.cmdEditQuittFields.Click += new System.EventHandler(this.cmdEditQuittFields_Click);
     //
     // lstQuitt
     //
     this.lstQuitt.FormattingEnabled = true;
     this.lstQuitt.Location = new System.Drawing.Point(6, 38);
     this.lstQuitt.Name = "lstQuitt";
     this.lstQuitt.Size = new System.Drawing.Size(164, 95);
     this.lstQuitt.TabIndex = 12;
     //
     // chkAutoQuitt
     //
     this.chkAutoQuitt.AutoSize = true;
     this.chkAutoQuitt.Checked = true;
     this.chkAutoQuitt.CheckState = System.Windows.Forms.CheckState.Checked;
     this.chkAutoQuitt.DataBindings.Add(new System.Windows.Forms.Binding("Checked", global::Kopplungstester.Properties.Settings.Default, "AutomaticQuitt", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
     this.chkAutoQuitt.Location = new System.Drawing.Point(6, 20);
     this.chkAutoQuitt.Name = "chkAutoQuitt";
     this.chkAutoQuitt.Size = new System.Drawing.Size(134, 17);
     this.chkAutoQuitt.TabIndex = 15;
     this.chkAutoQuitt.Text = "Automatisch quittieren";
     this.chkAutoQuitt.UseVisualStyleBackColor = true;
     //
     // groupBox3
     //
     this.groupBox3.Controls.Add(this.numSequenceNumberLength);
     this.groupBox3.Controls.Add(this.numSequenceNumberPosition);
     this.groupBox3.Controls.Add(this.label4);
     this.groupBox3.Controls.Add(this.label6);
     this.groupBox3.Location = new System.Drawing.Point(11, 103);
     this.groupBox3.Name = "groupBox3";
     this.groupBox3.Size = new System.Drawing.Size(176, 107);
     this.groupBox3.TabIndex = 8;
     this.groupBox3.TabStop = false;
     this.groupBox3.Text = "Telegramm Parameter";
     //
     // numSequenceNumberLength
     //
     this.numSequenceNumberLength.DataBindings.Add(new System.Windows.Forms.Binding("Value", global::Kopplungstester.Properties.Settings.Default, "SequenceNumberLength", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
     this.numSequenceNumberLength.Location = new System.Drawing.Point(12, 75);
     this.numSequenceNumberLength.Maximum = new decimal(new int[] {
     65536,
     0,
     0,
     0});
     this.numSequenceNumberLength.Name = "numSequenceNumberLength";
     this.numSequenceNumberLength.Size = new System.Drawing.Size(141, 21);
     this.numSequenceNumberLength.TabIndex = 12;
     //
     // numSequenceNumberPosition
     //
     this.numSequenceNumberPosition.DataBindings.Add(new System.Windows.Forms.Binding("Value", global::Kopplungstester.Properties.Settings.Default, "SequenceNumberPosition", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
     this.numSequenceNumberPosition.Location = new System.Drawing.Point(12, 34);
     this.numSequenceNumberPosition.Maximum = new decimal(new int[] {
     65536,
     0,
     0,
     0});
     this.numSequenceNumberPosition.Name = "numSequenceNumberPosition";
     this.numSequenceNumberPosition.Size = new System.Drawing.Size(141, 21);
     this.numSequenceNumberPosition.TabIndex = 12;
     //
     // label4
     //
     this.label4.AutoSize = true;
     this.label4.Location = new System.Drawing.Point(9, 59);
     this.label4.Name = "label4";
     this.label4.Size = new System.Drawing.Size(98, 13);
     this.label4.TabIndex = 14;
     this.label4.Text = "Laufnummer Länge";
     //
     // label6
     //
     this.label6.AutoSize = true;
     this.label6.Location = new System.Drawing.Point(9, 18);
     this.label6.Name = "label6";
     this.label6.Size = new System.Drawing.Size(106, 13);
     this.label6.TabIndex = 14;
     this.label6.Text = "Laufnummer Position";
     //
     // groupBox2
     //
     this.groupBox2.Controls.Add(this.chkChanel2active);
     this.groupBox2.Controls.Add(this.numPort2);
     this.groupBox2.Controls.Add(this.numPort1);
     this.groupBox2.Controls.Add(this.lblKanal2Port);
     this.groupBox2.Controls.Add(this.chkChanel1active);
     this.groupBox2.Controls.Add(this.lblKanal2);
     this.groupBox2.Controls.Add(this.label3);
     this.groupBox2.Controls.Add(this.label2);
     this.groupBox2.Controls.Add(this.optTwoChannel);
     this.groupBox2.Controls.Add(this.optOneChannel);
     this.groupBox2.Location = new System.Drawing.Point(216, 18);
     this.groupBox2.Name = "groupBox2";
     this.groupBox2.Size = new System.Drawing.Size(187, 232);
     this.groupBox2.TabIndex = 8;
     this.groupBox2.TabStop = false;
     this.groupBox2.Text = "Verbindungs Parameter";
     //
     // chkChanel2active
     //
     this.chkChanel2active.AutoSize = true;
     this.chkChanel2active.Checked = true;
     this.chkChanel2active.CheckState = System.Windows.Forms.CheckState.Checked;
     this.chkChanel2active.DataBindings.Add(new System.Windows.Forms.Binding("Checked", global::Kopplungstester.Properties.Settings.Default, "RecieveConnectionActive", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
     this.chkChanel2active.Enabled = false;
     this.chkChanel2active.Location = new System.Drawing.Point(121, 171);
     this.chkChanel2active.Name = "chkChanel2active";
     this.chkChanel2active.Size = new System.Drawing.Size(49, 17);
     this.chkChanel2active.TabIndex = 15;
     this.chkChanel2active.Text = "aktiv";
     this.chkChanel2active.UseVisualStyleBackColor = true;
     //
     // numPort2
     //
     this.numPort2.DataBindings.Add(new System.Windows.Forms.Binding("Value", global::Kopplungstester.Properties.Settings.Default, "RecievePort", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
     this.numPort2.Enabled = false;
     this.numPort2.Location = new System.Drawing.Point(27, 188);
     this.numPort2.Maximum = new decimal(new int[] {
     65536,
     0,
     0,
     0});
     this.numPort2.Name = "numPort2";
     this.numPort2.Size = new System.Drawing.Size(141, 21);
     this.numPort2.TabIndex = 12;
     //
     // numPort1
     //
     this.numPort1.DataBindings.Add(new System.Windows.Forms.Binding("Value", global::Kopplungstester.Properties.Settings.Default, "SendPort", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
     this.numPort1.Location = new System.Drawing.Point(27, 120);
     this.numPort1.Maximum = new decimal(new int[] {
     65536,
     0,
     0,
     0});
     this.numPort1.Name = "numPort1";
     this.numPort1.Size = new System.Drawing.Size(141, 21);
     this.numPort1.TabIndex = 12;
     //
     // lblKanal2Port
     //
     this.lblKanal2Port.AutoSize = true;
     this.lblKanal2Port.Enabled = false;
     this.lblKanal2Port.Location = new System.Drawing.Point(24, 172);
     this.lblKanal2Port.Name = "lblKanal2Port";
     this.lblKanal2Port.Size = new System.Drawing.Size(27, 13);
     this.lblKanal2Port.TabIndex = 14;
     this.lblKanal2Port.Text = "Port";
     //
     // chkChanel1active
     //
     this.chkChanel1active.AutoSize = true;
     this.chkChanel1active.Checked = true;
     this.chkChanel1active.CheckState = System.Windows.Forms.CheckState.Checked;
     this.chkChanel1active.DataBindings.Add(new System.Windows.Forms.Binding("Checked", global::Kopplungstester.Properties.Settings.Default, "SendConnectionActive", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
     this.chkChanel1active.Location = new System.Drawing.Point(121, 103);
     this.chkChanel1active.Name = "chkChanel1active";
     this.chkChanel1active.Size = new System.Drawing.Size(49, 17);
     this.chkChanel1active.TabIndex = 15;
     this.chkChanel1active.Text = "aktiv";
     this.chkChanel1active.UseVisualStyleBackColor = true;
     //
     // lblKanal2
     //
     this.lblKanal2.AutoSize = true;
     this.lblKanal2.Enabled = false;
     this.lblKanal2.Location = new System.Drawing.Point(9, 150);
     this.lblKanal2.Name = "lblKanal2";
     this.lblKanal2.Size = new System.Drawing.Size(88, 13);
     this.lblKanal2.TabIndex = 14;
     this.lblKanal2.Text = "Kanal 2 (recieve)";
     //
     // label3
     //
     this.label3.AutoSize = true;
     this.label3.Location = new System.Drawing.Point(24, 104);
     this.label3.Name = "label3";
     this.label3.Size = new System.Drawing.Size(27, 13);
     this.label3.TabIndex = 14;
     this.label3.Text = "Port";
     //
     // label2
     //
     this.label2.AutoSize = true;
     this.label2.Location = new System.Drawing.Point(9, 82);
     this.label2.Name = "label2";
     this.label2.Size = new System.Drawing.Size(121, 13);
     this.label2.TabIndex = 14;
     this.label2.Text = "Kanal 1 (send / recieve)";
     //
     // optTwoChannel
     //
     this.optTwoChannel.AutoSize = true;
     this.optTwoChannel.Checked = true;
     this.optTwoChannel.Location = new System.Drawing.Point(6, 43);
     this.optTwoChannel.Name = "optTwoChannel";
     this.optTwoChannel.Size = new System.Drawing.Size(60, 17);
     this.optTwoChannel.TabIndex = 14;
     this.optTwoChannel.TabStop = true;
     this.optTwoChannel.Text = "2 Kanal";
     this.optTwoChannel.UseVisualStyleBackColor = true;
     this.optTwoChannel.CheckedChanged += new System.EventHandler(this.optTwoChannel_CheckedChanged);
     //
     // optOneChannel
     //
     this.optOneChannel.AutoSize = true;
     this.optOneChannel.DataBindings.Add(new System.Windows.Forms.Binding("Checked", global::Kopplungstester.Properties.Settings.Default, "UseOnlyOneConnection", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
     this.optOneChannel.Location = new System.Drawing.Point(6, 20);
     this.optOneChannel.Name = "optOneChannel";
     this.optOneChannel.Size = new System.Drawing.Size(60, 17);
     this.optOneChannel.TabIndex = 14;
     this.optOneChannel.Text = "1 Kanal";
     this.optOneChannel.UseVisualStyleBackColor = true;
     //
     // groupBox1
     //
     this.groupBox1.Controls.Add(this.label1);
     this.groupBox1.Controls.Add(this.ipAddressControl);
     this.groupBox1.Location = new System.Drawing.Point(11, 18);
     this.groupBox1.Name = "groupBox1";
     this.groupBox1.Size = new System.Drawing.Size(176, 79);
     this.groupBox1.TabIndex = 8;
     this.groupBox1.TabStop = false;
     this.groupBox1.Text = "Verbindungs Parameter";
     //
     // label1
     //
     this.label1.AutoSize = true;
     this.label1.Location = new System.Drawing.Point(9, 27);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(87, 13);
     this.label1.TabIndex = 12;
     this.label1.Text = "IP - Adresse SPS";
     //
     // ipAddressControl
     //
     this.ipAddressControl.AllowInternalTab = false;
     this.ipAddressControl.AutoHeight = true;
     this.ipAddressControl.BackColor = System.Drawing.SystemColors.Window;
     this.ipAddressControl.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
     this.ipAddressControl.Cursor = System.Windows.Forms.Cursors.IBeam;
     this.ipAddressControl.DataBindings.Add(new System.Windows.Forms.Binding("Text", global::Kopplungstester.Properties.Settings.Default, "IPAddress", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
     this.ipAddressControl.Location = new System.Drawing.Point(12, 52);
     this.ipAddressControl.MinimumSize = new System.Drawing.Size(87, 21);
     this.ipAddressControl.Name = "ipAddressControl";
     this.ipAddressControl.ReadOnly = false;
     this.ipAddressControl.Size = new System.Drawing.Size(141, 21);
     this.ipAddressControl.TabIndex = 13;
     this.ipAddressControl.Text = global::Kopplungstester.Properties.Settings.Default.IPAddress;
     //
     // cmdSelectStep7UDT
     //
     this.cmdSelectStep7UDT.Location = new System.Drawing.Point(281, 3);
     this.cmdSelectStep7UDT.Name = "cmdSelectStep7UDT";
     this.cmdSelectStep7UDT.Size = new System.Drawing.Size(136, 40);
     this.cmdSelectStep7UDT.TabIndex = 6;
     this.cmdSelectStep7UDT.Text = "Send/Recieve Struktur\r\naus Step7 UDT";
     this.cmdSelectStep7UDT.UseVisualStyleBackColor = true;
     this.cmdSelectStep7UDT.Click += new System.EventHandler(this.cmdSelectStep7UDT_Click);
     //
     // cmdConnect
     //
     this.cmdConnect.Location = new System.Drawing.Point(3, 3);
     this.cmdConnect.Name = "cmdConnect";
     this.cmdConnect.Size = new System.Drawing.Size(107, 40);
     this.cmdConnect.TabIndex = 11;
     this.cmdConnect.Text = "Connect";
     this.cmdConnect.UseVisualStyleBackColor = true;
     this.cmdConnect.Click += new System.EventHandler(this.cmdConnect_Click);
     //
     // tableLayoutPanel4
     //
     this.tableLayoutPanel4.ColumnCount = 1;
     this.tableLayoutPanel4.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F));
     this.tableLayoutPanel4.Controls.Add(this.faTabStrip1, 0, 1);
     this.tableLayoutPanel4.Controls.Add(this.panel1, 0, 0);
     this.tableLayoutPanel4.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tableLayoutPanel4.Location = new System.Drawing.Point(0, 0);
     this.tableLayoutPanel4.Name = "tableLayoutPanel4";
     this.tableLayoutPanel4.RowCount = 2;
     this.tableLayoutPanel4.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 50F));
     this.tableLayoutPanel4.RowStyles.Add(new System.Windows.Forms.RowStyle());
     this.tableLayoutPanel4.Size = new System.Drawing.Size(902, 625);
     this.tableLayoutPanel4.TabIndex = 3;
     //
     // panel1
     //
     this.panel1.Controls.Add(this.cmdSettExport);
     this.panel1.Controls.Add(this.cmdSettImport);
     this.panel1.Controls.Add(this.cmdSettingsSave);
     this.panel1.Controls.Add(this.flowLayoutPanel1);
     this.panel1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.panel1.Location = new System.Drawing.Point(3, 3);
     this.panel1.Name = "panel1";
     this.panel1.Size = new System.Drawing.Size(896, 44);
     this.panel1.TabIndex = 3;
     //
     // cmdSettExport
     //
     this.cmdSettExport.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.cmdSettExport.Location = new System.Drawing.Point(636, 1);
     this.cmdSettExport.Name = "cmdSettExport";
     this.cmdSettExport.Size = new System.Drawing.Size(69, 40);
     this.cmdSettExport.TabIndex = 12;
     this.cmdSettExport.Text = "Settings export";
     this.cmdSettExport.UseVisualStyleBackColor = true;
     this.cmdSettExport.Click += new System.EventHandler(this.cmdSettExport_Click);
     //
     // cmdSettImport
     //
     this.cmdSettImport.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.cmdSettImport.Location = new System.Drawing.Point(711, 1);
     this.cmdSettImport.Name = "cmdSettImport";
     this.cmdSettImport.Size = new System.Drawing.Size(69, 40);
     this.cmdSettImport.TabIndex = 12;
     this.cmdSettImport.Text = "Settings import";
     this.cmdSettImport.UseVisualStyleBackColor = true;
     this.cmdSettImport.Click += new System.EventHandler(this.cmdSettImport_Click);
     //
     // cmdSettingsSave
     //
     this.cmdSettingsSave.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.cmdSettingsSave.Location = new System.Drawing.Point(786, 1);
     this.cmdSettingsSave.Name = "cmdSettingsSave";
     this.cmdSettingsSave.Size = new System.Drawing.Size(107, 40);
     this.cmdSettingsSave.TabIndex = 12;
     this.cmdSettingsSave.Text = "Änderungen Speichern";
     this.cmdSettingsSave.UseVisualStyleBackColor = true;
     this.cmdSettingsSave.Click += new System.EventHandler(this.cmdSettingsSave_Click);
     //
     // flowLayoutPanel1
     //
     this.flowLayoutPanel1.Controls.Add(this.cmdConnect);
     this.flowLayoutPanel1.Controls.Add(this.picConnection1);
     this.flowLayoutPanel1.Controls.Add(this.picConnection2);
     this.flowLayoutPanel1.Controls.Add(this.cmdDisconnect);
     this.flowLayoutPanel1.Controls.Add(this.cmdSelectStep7UDT);
     this.flowLayoutPanel1.Location = new System.Drawing.Point(0, -3);
     this.flowLayoutPanel1.Name = "flowLayoutPanel1";
     this.flowLayoutPanel1.Size = new System.Drawing.Size(550, 44);
     this.flowLayoutPanel1.TabIndex = 3;
     //
     // picConnection1
     //
     this.picConnection1.BackColor = System.Drawing.Color.Red;
     this.picConnection1.Location = new System.Drawing.Point(116, 3);
     this.picConnection1.Name = "picConnection1";
     this.picConnection1.Size = new System.Drawing.Size(20, 41);
     this.picConnection1.TabIndex = 12;
     this.picConnection1.TabStop = false;
     this.toolTip.SetToolTip(this.picConnection1, "Sende Verbindung aufgebaut");
     //
     // picConnection2
     //
     this.picConnection2.BackColor = System.Drawing.Color.Red;
     this.picConnection2.Location = new System.Drawing.Point(142, 3);
     this.picConnection2.Name = "picConnection2";
     this.picConnection2.Size = new System.Drawing.Size(20, 41);
     this.picConnection2.TabIndex = 12;
     this.picConnection2.TabStop = false;
     this.toolTip.SetToolTip(this.picConnection2, "Recieve Verbindung aufgebaut");
     //
     // cmdDisconnect
     //
     this.cmdDisconnect.Location = new System.Drawing.Point(168, 3);
     this.cmdDisconnect.Name = "cmdDisconnect";
     this.cmdDisconnect.Size = new System.Drawing.Size(107, 40);
     this.cmdDisconnect.TabIndex = 11;
     this.cmdDisconnect.Text = "Disconnect";
     this.cmdDisconnect.UseVisualStyleBackColor = true;
     this.cmdDisconnect.Click += new System.EventHandler(this.cmdDisconnect_Click);
     //
     // MainForm
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(902, 625);
     this.Controls.Add(this.tableLayoutPanel4);
     this.Name = "MainForm";
     this.Text = "Kopplungstester";
     this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.MainForm_FormClosing);
     this.faTabStrip1.ResumeLayout(false);
     this.faTabStripItemInfo.ResumeLayout(false);
     this.faTabStripItemInfo.PerformLayout();
     this.faTabStripItemSend.ResumeLayout(false);
     this.tableLayoutPanel1.ResumeLayout(false);
     this.tableLayoutPanel3.ResumeLayout(false);
     this.panel2.ResumeLayout(false);
     this.panel2.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.numericUpDown1)).EndInit();
     this.panel4.ResumeLayout(false);
     this.panel4.PerformLayout();
     this.splitContainer2.Panel1.ResumeLayout(false);
     this.splitContainer2.Panel2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.splitContainer2)).EndInit();
     this.splitContainer2.ResumeLayout(false);
     this.splitContainer3.Panel1.ResumeLayout(false);
     this.splitContainer3.Panel2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.splitContainer3)).EndInit();
     this.splitContainer3.ResumeLayout(false);
     this.tableLayoutPanel5.ResumeLayout(false);
     this.panel3.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.dtaSendTabelle)).EndInit();
     this.splitContainer4.Panel1.ResumeLayout(false);
     this.splitContainer4.Panel2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.splitContainer4)).EndInit();
     this.splitContainer4.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.dtaSendSendTable)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dtaSendQuittTable)).EndInit();
     this.faTabStripItemRecieve.ResumeLayout(false);
     this.tableLayoutPanel2.ResumeLayout(false);
     this.splitContainer1.Panel1.ResumeLayout(false);
     this.splitContainer1.Panel2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).EndInit();
     this.splitContainer1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.grdEmpfang)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dtaEmpfangstelegrammAufgeschluesselt)).EndInit();
     this.faTabStripItemSettings.ResumeLayout(false);
     this.groupBox4.ResumeLayout(false);
     this.groupBox4.PerformLayout();
     this.groupBox3.ResumeLayout(false);
     this.groupBox3.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.numSequenceNumberLength)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.numSequenceNumberPosition)).EndInit();
     this.groupBox2.ResumeLayout(false);
     this.groupBox2.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.numPort2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.numPort1)).EndInit();
     this.groupBox1.ResumeLayout(false);
     this.groupBox1.PerformLayout();
     this.tableLayoutPanel4.ResumeLayout(false);
     this.panel1.ResumeLayout(false);
     this.flowLayoutPanel1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.picConnection1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.picConnection2)).EndInit();
     this.ResumeLayout(false);
 }
Example #49
0
 /// <summary> 
 /// 设计器支持所需的方法 - 不要
 /// 使用代码编辑器修改此方法的内容。
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     this.labelItemShuoMing = new System.Windows.Forms.Label();
     this.panelBigXY = new System.Windows.Forms.Panel();
     this.buttonBigXYBig = new System.Windows.Forms.Button();
     this.buttonBigXYQuit = new System.Windows.Forms.Button();
     this.pictureBoxBigXY = new System.Windows.Forms.PictureBox();
     this.MenuRightClick = new System.Windows.Forms.ContextMenuStrip(this.components);
     this.toolStripTextBoxX = new System.Windows.Forms.ToolStripTextBox();
     this.toolStripTextBoxY = new System.Windows.Forms.ToolStripTextBox();
     this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
     this.网格显示ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.放大选取框功能ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.坐标自动调整ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.默认坐标范围ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.slide = new NationalInstruments.UI.WindowsForms.Slide();
     this.panel_itemsIN = new System.Windows.Forms.FlowLayoutPanel();
     this.BTN_切换Y轴 = new System.Windows.Forms.Button();
     this.BTN_停止显示 = new System.Windows.Forms.Button();
     this.buttonReXY = new System.Windows.Forms.Button();
     this.buttonModeXY = new System.Windows.Forms.Button();
     this.buttonBigModeXY = new System.Windows.Forms.Button();
     this.buttonLinesShowXY = new System.Windows.Forms.Button();
     this.btn_调整坐标轴 = new System.Windows.Forms.Button();
     this.legend1 = new NationalInstruments.UI.WindowsForms.Legend();
     this.xAxis_Looking = new NationalInstruments.UI.XAxis();
     this.Graph_View = new NationalInstruments.UI.WindowsForms.ScatterGraph();
     this.xyCursorB = new NationalInstruments.UI.XYCursor();
     this.scatterPlot2 = new NationalInstruments.UI.ScatterPlot();
     this.yAxis1 = new NationalInstruments.UI.YAxis();
     this.xyCursorE = new NationalInstruments.UI.XYCursor();
     this.panel_text = new System.Windows.Forms.Panel();
     this.panelBigXY.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBoxBigXY)).BeginInit();
     this.MenuRightClick.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.slide)).BeginInit();
     this.panel_itemsIN.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.legend1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.Graph_View)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.xyCursorB)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.xyCursorE)).BeginInit();
     this.SuspendLayout();
     //
     // labelItemShuoMing
     //
     this.labelItemShuoMing.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.labelItemShuoMing.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(32)))), ((int)(((byte)(32)))), ((int)(((byte)(32)))));
     this.labelItemShuoMing.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.labelItemShuoMing.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.labelItemShuoMing.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.labelItemShuoMing.ForeColor = System.Drawing.Color.White;
     this.labelItemShuoMing.Location = new System.Drawing.Point(868, 518);
     this.labelItemShuoMing.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
     this.labelItemShuoMing.Name = "labelItemShuoMing";
     this.labelItemShuoMing.Size = new System.Drawing.Size(149, 47);
     this.labelItemShuoMing.TabIndex = 10;
     this.labelItemShuoMing.Text = "说明";
     this.labelItemShuoMing.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     this.labelItemShuoMing.Visible = false;
     //
     // panelBigXY
     //
     this.panelBigXY.BackColor = System.Drawing.Color.Transparent;
     this.panelBigXY.Controls.Add(this.buttonBigXYBig);
     this.panelBigXY.Controls.Add(this.buttonBigXYQuit);
     this.panelBigXY.Location = new System.Drawing.Point(650, 327);
     this.panelBigXY.Margin = new System.Windows.Forms.Padding(4);
     this.panelBigXY.Name = "panelBigXY";
     this.panelBigXY.Size = new System.Drawing.Size(171, 48);
     this.panelBigXY.TabIndex = 16;
     this.panelBigXY.Visible = false;
     //
     // buttonBigXYBig
     //
     this.buttonBigXYBig.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.buttonBigXYBig.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(200)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
     this.buttonBigXYBig.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.buttonBigXYBig.ForeColor = System.Drawing.Color.Black;
     this.buttonBigXYBig.Location = new System.Drawing.Point(32, 14);
     this.buttonBigXYBig.Margin = new System.Windows.Forms.Padding(0);
     this.buttonBigXYBig.Name = "buttonBigXYBig";
     this.buttonBigXYBig.Size = new System.Drawing.Size(70, 34);
     this.buttonBigXYBig.TabIndex = 13;
     this.buttonBigXYBig.TabStop = false;
     this.buttonBigXYBig.Text = "放大";
     this.buttonBigXYBig.UseVisualStyleBackColor = false;
     this.buttonBigXYBig.Click += new System.EventHandler(this.buttonBigXYBig_Click);
     //
     // buttonBigXYQuit
     //
     this.buttonBigXYQuit.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.buttonBigXYQuit.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(200)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
     this.buttonBigXYQuit.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.buttonBigXYQuit.ForeColor = System.Drawing.Color.Black;
     this.buttonBigXYQuit.Location = new System.Drawing.Point(104, 14);
     this.buttonBigXYQuit.Margin = new System.Windows.Forms.Padding(0);
     this.buttonBigXYQuit.Name = "buttonBigXYQuit";
     this.buttonBigXYQuit.Size = new System.Drawing.Size(66, 34);
     this.buttonBigXYQuit.TabIndex = 12;
     this.buttonBigXYQuit.TabStop = false;
     this.buttonBigXYQuit.Text = "取消";
     this.buttonBigXYQuit.UseVisualStyleBackColor = false;
     this.buttonBigXYQuit.Click += new System.EventHandler(this.buttonBigXYQuit_Click);
     //
     // pictureBoxBigXY
     //
     this.pictureBoxBigXY.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(50)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
     this.pictureBoxBigXY.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.pictureBoxBigXY.ErrorImage = null;
     this.pictureBoxBigXY.InitialImage = null;
     this.pictureBoxBigXY.Location = new System.Drawing.Point(650, 327);
     this.pictureBoxBigXY.Margin = new System.Windows.Forms.Padding(4);
     this.pictureBoxBigXY.Name = "pictureBoxBigXY";
     this.pictureBoxBigXY.Size = new System.Drawing.Size(170, 47);
     this.pictureBoxBigXY.TabIndex = 15;
     this.pictureBoxBigXY.TabStop = false;
     this.pictureBoxBigXY.Visible = false;
     //
     // MenuRightClick
     //
     this.MenuRightClick.BackColor = System.Drawing.Color.White;
     this.MenuRightClick.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.toolStripTextBoxX,
     this.toolStripTextBoxY,
     this.toolStripSeparator1,
     this.网格显示ToolStripMenuItem,
     this.放大选取框功能ToolStripMenuItem,
     this.坐标自动调整ToolStripMenuItem,
     this.默认坐标范围ToolStripMenuItem});
     this.MenuRightClick.Name = "MenuRightClick";
     this.MenuRightClick.Size = new System.Drawing.Size(207, 174);
     //
     // toolStripTextBoxX
     //
     this.toolStripTextBoxX.BackColor = System.Drawing.Color.White;
     this.toolStripTextBoxX.BorderStyle = System.Windows.Forms.BorderStyle.None;
     this.toolStripTextBoxX.ForeColor = System.Drawing.Color.Black;
     this.toolStripTextBoxX.Name = "toolStripTextBoxX";
     this.toolStripTextBoxX.ReadOnly = true;
     this.toolStripTextBoxX.Size = new System.Drawing.Size(100, 24);
     this.toolStripTextBoxX.Text = "0";
     //
     // toolStripTextBoxY
     //
     this.toolStripTextBoxY.BackColor = System.Drawing.Color.White;
     this.toolStripTextBoxY.BorderStyle = System.Windows.Forms.BorderStyle.None;
     this.toolStripTextBoxY.ForeColor = System.Drawing.Color.Black;
     this.toolStripTextBoxY.Name = "toolStripTextBoxY";
     this.toolStripTextBoxY.ReadOnly = true;
     this.toolStripTextBoxY.Size = new System.Drawing.Size(100, 24);
     this.toolStripTextBoxY.Text = "0";
     //
     // toolStripSeparator1
     //
     this.toolStripSeparator1.Name = "toolStripSeparator1";
     this.toolStripSeparator1.Size = new System.Drawing.Size(203, 6);
     //
     // 网格显示ToolStripMenuItem
     //
     this.网格显示ToolStripMenuItem.Checked = true;
     this.网格显示ToolStripMenuItem.CheckState = System.Windows.Forms.CheckState.Checked;
     this.网格显示ToolStripMenuItem.Name = "网格显示ToolStripMenuItem";
     this.网格显示ToolStripMenuItem.Size = new System.Drawing.Size(206, 28);
     this.网格显示ToolStripMenuItem.Text = "网格显示";
     //
     // 放大选取框功能ToolStripMenuItem
     //
     this.放大选取框功能ToolStripMenuItem.Name = "放大选取框功能ToolStripMenuItem";
     this.放大选取框功能ToolStripMenuItem.Size = new System.Drawing.Size(206, 28);
     this.放大选取框功能ToolStripMenuItem.Text = "放大选取框功能";
     //
     // 坐标自动调整ToolStripMenuItem
     //
     this.坐标自动调整ToolStripMenuItem.Checked = true;
     this.坐标自动调整ToolStripMenuItem.CheckState = System.Windows.Forms.CheckState.Checked;
     this.坐标自动调整ToolStripMenuItem.Name = "坐标自动调整ToolStripMenuItem";
     this.坐标自动调整ToolStripMenuItem.Size = new System.Drawing.Size(206, 28);
     this.坐标自动调整ToolStripMenuItem.Text = "坐标自动调整";
     //
     // 默认坐标范围ToolStripMenuItem
     //
     this.默认坐标范围ToolStripMenuItem.Name = "默认坐标范围ToolStripMenuItem";
     this.默认坐标范围ToolStripMenuItem.Size = new System.Drawing.Size(206, 28);
     this.默认坐标范围ToolStripMenuItem.Text = "默认坐标范围";
     //
     // slide
     //
     this.slide.Border = NationalInstruments.UI.Border.Etched;
     this.slide.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.slide.FillStyle = NationalInstruments.UI.FillStyle.HorizontalGradient;
     this.slide.Location = new System.Drawing.Point(0, 568);
     this.slide.Margin = new System.Windows.Forms.Padding(4);
     this.slide.Name = "slide";
     this.slide.Range = new NationalInstruments.UI.Range(0D, 100D);
     this.slide.ScalePosition = NationalInstruments.UI.NumericScalePosition.Bottom;
     this.slide.Size = new System.Drawing.Size(1082, 54);
     this.slide.SlideStyle = NationalInstruments.UI.SlideStyle.SunkenWithGrip;
     this.slide.TabIndex = 22;
     this.slide.Value = 100D;
     //
     // panel_itemsIN
     //
     this.panel_itemsIN.BackColor = System.Drawing.Color.Transparent;
     this.panel_itemsIN.Controls.Add(this.BTN_切换Y轴);
     this.panel_itemsIN.Controls.Add(this.BTN_停止显示);
     this.panel_itemsIN.Controls.Add(this.buttonReXY);
     this.panel_itemsIN.Controls.Add(this.buttonModeXY);
     this.panel_itemsIN.Controls.Add(this.buttonBigModeXY);
     this.panel_itemsIN.Controls.Add(this.buttonLinesShowXY);
     this.panel_itemsIN.Controls.Add(this.btn_调整坐标轴);
     this.panel_itemsIN.Dock = System.Windows.Forms.DockStyle.Right;
     this.panel_itemsIN.Location = new System.Drawing.Point(1028, 33);
     this.panel_itemsIN.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
     this.panel_itemsIN.Name = "panel_itemsIN";
     this.panel_itemsIN.Size = new System.Drawing.Size(54, 535);
     this.panel_itemsIN.TabIndex = 1;
     //
     // BTN_切换Y轴
     //
     this.BTN_切换Y轴.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.BTN_切换Y轴.BackColor = System.Drawing.Color.Transparent;
     this.BTN_切换Y轴.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.BTN_切换Y轴.Font = new System.Drawing.Font("宋体", 15F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.BTN_切换Y轴.ForeColor = System.Drawing.Color.Transparent;
     this.BTN_切换Y轴.Image = global::控件库.Properties.Resources.AutoCorrect_Icon;
     this.BTN_切换Y轴.Location = new System.Drawing.Point(2, 0);
     this.BTN_切换Y轴.Margin = new System.Windows.Forms.Padding(2, 0, 0, 0);
     this.BTN_切换Y轴.Name = "BTN_切换Y轴";
     this.BTN_切换Y轴.Size = new System.Drawing.Size(48, 48);
     this.BTN_切换Y轴.TabIndex = 13;
     this.BTN_切换Y轴.TabStop = false;
     this.BTN_切换Y轴.UseVisualStyleBackColor = false;
     this.BTN_切换Y轴.Click += new System.EventHandler(this.BTN_切换Y轴_Click);
     this.BTN_切换Y轴.MouseEnter += new System.EventHandler(this.BTN_切换Y轴_MouseEnter);
     this.BTN_切换Y轴.MouseLeave += new System.EventHandler(this.BTN_切换Y轴_MouseLeave);
     //
     // BTN_停止显示
     //
     this.BTN_停止显示.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.BTN_停止显示.BackColor = System.Drawing.Color.Transparent;
     this.BTN_停止显示.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.BTN_停止显示.Font = new System.Drawing.Font("宋体", 15F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.BTN_停止显示.ForeColor = System.Drawing.Color.Transparent;
     this.BTN_停止显示.Image = global::控件库.Properties.Resources.Action_Exit_32x32;
     this.BTN_停止显示.Location = new System.Drawing.Point(2, 48);
     this.BTN_停止显示.Margin = new System.Windows.Forms.Padding(2, 0, 0, 0);
     this.BTN_停止显示.Name = "BTN_停止显示";
     this.BTN_停止显示.Size = new System.Drawing.Size(48, 48);
     this.BTN_停止显示.TabIndex = 13;
     this.BTN_停止显示.TabStop = false;
     this.BTN_停止显示.UseVisualStyleBackColor = false;
     this.BTN_停止显示.Click += new System.EventHandler(this.BTN_停止显示_Click);
     this.BTN_停止显示.MouseEnter += new System.EventHandler(this.BTN_停止显示_MouseEnter);
     this.BTN_停止显示.MouseLeave += new System.EventHandler(this.BTN_停止显示_MouseLeave);
     //
     // buttonReXY
     //
     this.buttonReXY.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.buttonReXY.BackColor = System.Drawing.Color.Transparent;
     this.buttonReXY.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.buttonReXY.Font = new System.Drawing.Font("宋体", 15F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.buttonReXY.ForeColor = System.Drawing.Color.Transparent;
     this.buttonReXY.Image = global::控件库.Properties.Resources.reflash;
     this.buttonReXY.Location = new System.Drawing.Point(2, 96);
     this.buttonReXY.Margin = new System.Windows.Forms.Padding(2, 0, 0, 0);
     this.buttonReXY.Name = "buttonReXY";
     this.buttonReXY.Size = new System.Drawing.Size(48, 48);
     this.buttonReXY.TabIndex = 13;
     this.buttonReXY.TabStop = false;
     this.buttonReXY.UseVisualStyleBackColor = false;
     this.buttonReXY.Click += new System.EventHandler(this.buttonReXY_Click);
     this.buttonReXY.MouseEnter += new System.EventHandler(this.buttonReXY_MouseEnter);
     this.buttonReXY.MouseLeave += new System.EventHandler(this.buttonReXY_MouseLeave);
     //
     // buttonModeXY
     //
     this.buttonModeXY.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.buttonModeXY.BackColor = System.Drawing.Color.Transparent;
     this.buttonModeXY.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.buttonModeXY.Font = new System.Drawing.Font("宋体", 15F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.buttonModeXY.ForeColor = System.Drawing.Color.Transparent;
     this.buttonModeXY.Image = global::控件库.Properties.Resources.CrosshairCursorControl_Icon;
     this.buttonModeXY.Location = new System.Drawing.Point(2, 144);
     this.buttonModeXY.Margin = new System.Windows.Forms.Padding(2, 0, 0, 0);
     this.buttonModeXY.Name = "buttonModeXY";
     this.buttonModeXY.Size = new System.Drawing.Size(48, 48);
     this.buttonModeXY.TabIndex = 12;
     this.buttonModeXY.TabStop = false;
     this.buttonModeXY.UseVisualStyleBackColor = false;
     this.buttonModeXY.Click += new System.EventHandler(this.buttonModeXY_Click);
     this.buttonModeXY.MouseEnter += new System.EventHandler(this.buttonModeXY_MouseEnter);
     this.buttonModeXY.MouseLeave += new System.EventHandler(this.buttonModeXY_MouseLeave);
     //
     // buttonBigModeXY
     //
     this.buttonBigModeXY.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.buttonBigModeXY.BackColor = System.Drawing.Color.Transparent;
     this.buttonBigModeXY.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.buttonBigModeXY.Font = new System.Drawing.Font("宋体", 15F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.buttonBigModeXY.ForeColor = System.Drawing.Color.Transparent;
     this.buttonBigModeXY.Image = global::控件库.Properties.Resources.ChartDemoScrollingAndZooming_Icon;
     this.buttonBigModeXY.Location = new System.Drawing.Point(2, 192);
     this.buttonBigModeXY.Margin = new System.Windows.Forms.Padding(2, 0, 0, 0);
     this.buttonBigModeXY.Name = "buttonBigModeXY";
     this.buttonBigModeXY.Size = new System.Drawing.Size(48, 48);
     this.buttonBigModeXY.TabIndex = 11;
     this.buttonBigModeXY.TabStop = false;
     this.buttonBigModeXY.UseVisualStyleBackColor = false;
     this.buttonBigModeXY.Click += new System.EventHandler(this.buttonBigModeXY_Click);
     this.buttonBigModeXY.MouseEnter += new System.EventHandler(this.buttonBigModeXY_MouseEnter);
     this.buttonBigModeXY.MouseLeave += new System.EventHandler(this.buttonBigModeXY_MouseLeave);
     //
     // buttonLinesShowXY
     //
     this.buttonLinesShowXY.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.buttonLinesShowXY.BackColor = System.Drawing.Color.Transparent;
     this.buttonLinesShowXY.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.buttonLinesShowXY.Font = new System.Drawing.Font("宋体", 15F, System.Drawing.FontStyle.Bold);
     this.buttonLinesShowXY.ForeColor = System.Drawing.Color.Transparent;
     this.buttonLinesShowXY.Image = global::控件库.Properties.Resources.ChartDemoDateTimeGridAlignment_Icon;
     this.buttonLinesShowXY.Location = new System.Drawing.Point(2, 240);
     this.buttonLinesShowXY.Margin = new System.Windows.Forms.Padding(2, 0, 0, 0);
     this.buttonLinesShowXY.Name = "buttonLinesShowXY";
     this.buttonLinesShowXY.Size = new System.Drawing.Size(48, 48);
     this.buttonLinesShowXY.TabIndex = 0;
     this.buttonLinesShowXY.TabStop = false;
     this.buttonLinesShowXY.UseVisualStyleBackColor = false;
     this.buttonLinesShowXY.Click += new System.EventHandler(this.buttonLinesShowXY_Click);
     this.buttonLinesShowXY.MouseEnter += new System.EventHandler(this.buttonLinesShowXY_MouseEnter);
     this.buttonLinesShowXY.MouseLeave += new System.EventHandler(this.buttonLinesShowXY_MouseLeave);
     //
     // btn_调整坐标轴
     //
     this.btn_调整坐标轴.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.btn_调整坐标轴.BackColor = System.Drawing.Color.Transparent;
     this.btn_调整坐标轴.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.btn_调整坐标轴.Font = new System.Drawing.Font("宋体", 15F, System.Drawing.FontStyle.Bold);
     this.btn_调整坐标轴.ForeColor = System.Drawing.Color.Transparent;
     this.btn_调整坐标轴.Image = global::控件库.Properties.Resources.ChartDemoDateTimeScaleMode_Icon;
     this.btn_调整坐标轴.Location = new System.Drawing.Point(2, 288);
     this.btn_调整坐标轴.Margin = new System.Windows.Forms.Padding(2, 0, 0, 0);
     this.btn_调整坐标轴.Name = "btn_调整坐标轴";
     this.btn_调整坐标轴.Size = new System.Drawing.Size(48, 48);
     this.btn_调整坐标轴.TabIndex = 0;
     this.btn_调整坐标轴.TabStop = false;
     this.btn_调整坐标轴.UseVisualStyleBackColor = false;
     this.btn_调整坐标轴.Click += new System.EventHandler(this.btn_调整坐标轴_Click);
     this.btn_调整坐标轴.MouseEnter += new System.EventHandler(this.btn_调整坐标轴_MouseEnter);
     this.btn_调整坐标轴.MouseLeave += new System.EventHandler(this.btn_调整坐标轴_MouseLeave);
     //
     // legend1
     //
     this.legend1.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.legend1.ItemSize = new System.Drawing.Size(30, 15);
     this.legend1.Location = new System.Drawing.Point(0, 530);
     this.legend1.Margin = new System.Windows.Forms.Padding(4);
     this.legend1.Name = "legend1";
     this.legend1.Padding = new System.Windows.Forms.Padding(2, 0, 4, 0);
     this.legend1.Size = new System.Drawing.Size(1028, 38);
     this.legend1.TabIndex = 24;
     //
     // xAxis_Looking
     //
     this.xAxis_Looking.BaseLineVisible = true;
     this.xAxis_Looking.MajorDivisions.LabelFormat = new NationalInstruments.UI.FormatString(NationalInstruments.UI.FormatStringMode.DateTime, "dd HH:mm:ss");
     this.xAxis_Looking.Mode = NationalInstruments.UI.AxisMode.AutoScaleExact;
     this.xAxis_Looking.Range = new NationalInstruments.UI.Range(0D, 10.5D);
     //
     // Graph_View
     //
     this.Graph_View.Border = NationalInstruments.UI.Border.None;
     this.Graph_View.Cursors.AddRange(new NationalInstruments.UI.XYCursor[] {
     this.xyCursorB,
     this.xyCursorE});
     this.Graph_View.Dock = System.Windows.Forms.DockStyle.Fill;
     this.Graph_View.Location = new System.Drawing.Point(0, 33);
     this.Graph_View.Margin = new System.Windows.Forms.Padding(4);
     this.Graph_View.Name = "Graph_View";
     this.Graph_View.Padding = new System.Windows.Forms.Padding(0, 0, 4, 0);
     this.Graph_View.Plots.AddRange(new NationalInstruments.UI.ScatterPlot[] {
     this.scatterPlot2});
     this.Graph_View.Size = new System.Drawing.Size(1028, 497);
     this.Graph_View.TabIndex = 25;
     this.Graph_View.UseColorGenerator = true;
     this.Graph_View.XAxes.AddRange(new NationalInstruments.UI.XAxis[] {
     this.xAxis_Looking});
     this.Graph_View.YAxes.AddRange(new NationalInstruments.UI.YAxis[] {
     this.yAxis1});
     this.Graph_View.AfterDrawPlot += new NationalInstruments.UI.AfterDrawXYPlotEventHandler(this.Graph_View_AfterDrawPlot);
     this.Graph_View.MouseDown += new System.Windows.Forms.MouseEventHandler(this.Graph_View_MouseDown);
     this.Graph_View.MouseLeave += new System.EventHandler(this.Graph_View_MouseLeave);
     this.Graph_View.MouseMove += new System.Windows.Forms.MouseEventHandler(this.Graph_View_MouseMove);
     this.Graph_View.MouseUp += new System.Windows.Forms.MouseEventHandler(this.Graph_View_MouseUp);
     //
     // xyCursorB
     //
     this.xyCursorB.Color = System.Drawing.Color.Gold;
     this.xyCursorB.Plot = this.scatterPlot2;
     this.xyCursorB.SnapMode = NationalInstruments.UI.CursorSnapMode.NearestPoint;
     this.xyCursorB.Visible = false;
     //
     // scatterPlot2
     //
     this.scatterPlot2.Visible = false;
     this.scatterPlot2.XAxis = this.xAxis_Looking;
     this.scatterPlot2.YAxis = this.yAxis1;
     //
     // yAxis1
     //
     this.yAxis1.BaseLineColor = System.Drawing.SystemColors.ControlText;
     this.yAxis1.Caption = "111";
     this.yAxis1.MajorDivisions.LabelFormat = new NationalInstruments.UI.FormatString(NationalInstruments.UI.FormatStringMode.Numeric, "F1");
     //
     // xyCursorE
     //
     this.xyCursorE.Color = System.Drawing.Color.Gold;
     this.xyCursorE.Plot = this.scatterPlot2;
     this.xyCursorE.SnapMode = NationalInstruments.UI.CursorSnapMode.NearestPoint;
     this.xyCursorE.Visible = false;
     //
     // panel_text
     //
     this.panel_text.Dock = System.Windows.Forms.DockStyle.Top;
     this.panel_text.Location = new System.Drawing.Point(0, 0);
     this.panel_text.Margin = new System.Windows.Forms.Padding(4);
     this.panel_text.Name = "panel_text";
     this.panel_text.Size = new System.Drawing.Size(1082, 33);
     this.panel_text.TabIndex = 26;
     this.panel_text.Paint += new System.Windows.Forms.PaintEventHandler(this.panel_text_Paint);
     //
     // XYGraph
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(9F, 18F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.Controls.Add(this.Graph_View);
     this.Controls.Add(this.legend1);
     this.Controls.Add(this.panel_itemsIN);
     this.Controls.Add(this.panel_text);
     this.Controls.Add(this.panelBigXY);
     this.Controls.Add(this.labelItemShuoMing);
     this.Controls.Add(this.pictureBoxBigXY);
     this.Controls.Add(this.slide);
     this.Margin = new System.Windows.Forms.Padding(4);
     this.Name = "XYGraph";
     this.Size = new System.Drawing.Size(1082, 622);
     this.panelBigXY.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.pictureBoxBigXY)).EndInit();
     this.MenuRightClick.ResumeLayout(false);
     this.MenuRightClick.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.slide)).EndInit();
     this.panel_itemsIN.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.legend1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.Graph_View)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.xyCursorB)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.xyCursorE)).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.btnSave = new DevExpress.XtraEditors.SimpleButton();
     this.btnClose = new DevExpress.XtraEditors.SimpleButton();
     this.btnXemTruoc = new DevExpress.XtraEditors.SimpleButton();
     this.flowLayoutPanel1 = new System.Windows.Forms.FlowLayoutPanel();
     this.panelControl1 = new DevExpress.XtraEditors.PanelControl();
     this.groupControlConfig = new DevExpress.XtraEditors.GroupControl();
     this.xtraScrollableControlConfig = new DevExpress.XtraEditors.XtraScrollableControl();
     this.flowLayoutPanelLabel = new System.Windows.Forms.FlowLayoutPanel();
     this.flowLayoutPanelPattern = new System.Windows.Forms.FlowLayoutPanel();
     this.groupControlExample = new DevExpress.XtraEditors.GroupControl();
     this.xtraScrollableControlExample = new DevExpress.XtraEditors.XtraScrollableControl();
     this.flowLayoutPanelDemo = new System.Windows.Forms.FlowLayoutPanel();
     this.panelControl2 = new DevExpress.XtraEditors.PanelControl();
     this.flowLayoutPanel1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).BeginInit();
     this.panelControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.groupControlConfig)).BeginInit();
     this.groupControlConfig.SuspendLayout();
     this.xtraScrollableControlConfig.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.groupControlExample)).BeginInit();
     this.groupControlExample.SuspendLayout();
     this.xtraScrollableControlExample.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl2)).BeginInit();
     this.panelControl2.SuspendLayout();
     this.SuspendLayout();
     //
     // btnSave
     //
     this.btnSave.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.btnSave.Location = new System.Drawing.Point(100, 3);
     this.btnSave.Name = "btnSave";
     this.btnSave.Size = new System.Drawing.Size(75, 23);
     this.btnSave.TabIndex = 2;
     this.btnSave.Text = "&Lưu";
     this.btnSave.Click += new System.EventHandler(this.btnSave_Click);
     //
     // btnClose
     //
     this.btnClose.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.btnClose.Location = new System.Drawing.Point(181, 3);
     this.btnClose.Name = "btnClose";
     this.btnClose.Size = new System.Drawing.Size(75, 23);
     this.btnClose.TabIndex = 3;
     this.btnClose.Text = "Đón&g";
     this.btnClose.Click += new System.EventHandler(this.btnClose_Click);
     //
     // btnXemTruoc
     //
     this.btnXemTruoc.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.btnXemTruoc.Location = new System.Drawing.Point(3, 3);
     this.btnXemTruoc.Name = "btnXemTruoc";
     this.btnXemTruoc.Size = new System.Drawing.Size(91, 23);
     this.btnXemTruoc.TabIndex = 1;
     this.btnXemTruoc.Text = "Xem t&rước";
     this.btnXemTruoc.Click += new System.EventHandler(this.btnXemTruoc_Click);
     //
     // flowLayoutPanel1
     //
     this.flowLayoutPanel1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.flowLayoutPanel1.Controls.Add(this.btnXemTruoc);
     this.flowLayoutPanel1.Controls.Add(this.btnSave);
     this.flowLayoutPanel1.Controls.Add(this.btnClose);
     this.flowLayoutPanel1.Location = new System.Drawing.Point(392, 6);
     this.flowLayoutPanel1.Name = "flowLayoutPanel1";
     this.flowLayoutPanel1.Size = new System.Drawing.Size(263, 31);
     this.flowLayoutPanel1.TabIndex = 3;
     //
     // panelControl1
     //
     this.panelControl1.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.panelControl1.Controls.Add(this.flowLayoutPanel1);
     this.panelControl1.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.panelControl1.Location = new System.Drawing.Point(0, 65);
     this.panelControl1.Name = "panelControl1";
     this.panelControl1.Size = new System.Drawing.Size(657, 37);
     this.panelControl1.TabIndex = 6;
     //
     // groupControlConfig
     //
     this.groupControlConfig.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                 | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.groupControlConfig.Controls.Add(this.xtraScrollableControlConfig);
     this.groupControlConfig.Location = new System.Drawing.Point(3, 3);
     this.groupControlConfig.Name = "groupControlConfig";
     this.groupControlConfig.Size = new System.Drawing.Size(473, 56);
     this.groupControlConfig.TabIndex = 0;
     this.groupControlConfig.Text = "Định dạng phát sinh số phiếu";
     //
     // xtraScrollableControlConfig
     //
     this.xtraScrollableControlConfig.Controls.Add(this.flowLayoutPanelLabel);
     this.xtraScrollableControlConfig.Controls.Add(this.flowLayoutPanelPattern);
     this.xtraScrollableControlConfig.Dock = System.Windows.Forms.DockStyle.Fill;
     this.xtraScrollableControlConfig.FireScrollEventOnMouseWheel = true;
     this.xtraScrollableControlConfig.Location = new System.Drawing.Point(2, 22);
     this.xtraScrollableControlConfig.Name = "xtraScrollableControlConfig";
     this.xtraScrollableControlConfig.Size = new System.Drawing.Size(469, 32);
     this.xtraScrollableControlConfig.TabIndex = 2;
     this.xtraScrollableControlConfig.Scroll += new DevExpress.XtraEditors.XtraScrollEventHandler(this.xtraScrollableControlConfig_Scroll);
     //
     // flowLayoutPanelLabel
     //
     this.flowLayoutPanelLabel.AutoSize = true;
     this.flowLayoutPanelLabel.FlowDirection = System.Windows.Forms.FlowDirection.TopDown;
     this.flowLayoutPanelLabel.Location = new System.Drawing.Point(7, 3);
     this.flowLayoutPanelLabel.Name = "flowLayoutPanelLabel";
     this.flowLayoutPanelLabel.Size = new System.Drawing.Size(183, 25);
     this.flowLayoutPanelLabel.TabIndex = 0;
     //
     // flowLayoutPanelPattern
     //
     this.flowLayoutPanelPattern.AutoSize = true;
     this.flowLayoutPanelPattern.FlowDirection = System.Windows.Forms.FlowDirection.TopDown;
     this.flowLayoutPanelPattern.Location = new System.Drawing.Point(196, 3);
     this.flowLayoutPanelPattern.Name = "flowLayoutPanelPattern";
     this.flowLayoutPanelPattern.Size = new System.Drawing.Size(270, 25);
     this.flowLayoutPanelPattern.TabIndex = 1;
     //
     // groupControlExample
     //
     this.groupControlExample.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.groupControlExample.Controls.Add(this.xtraScrollableControlExample);
     this.groupControlExample.Location = new System.Drawing.Point(482, 3);
     this.groupControlExample.Name = "groupControlExample";
     this.groupControlExample.Size = new System.Drawing.Size(173, 56);
     this.groupControlExample.TabIndex = 7;
     this.groupControlExample.Text = "Minh họa";
     //
     // xtraScrollableControlExample
     //
     this.xtraScrollableControlExample.Controls.Add(this.flowLayoutPanelDemo);
     this.xtraScrollableControlExample.Dock = System.Windows.Forms.DockStyle.Fill;
     this.xtraScrollableControlExample.FireScrollEventOnMouseWheel = true;
     this.xtraScrollableControlExample.Location = new System.Drawing.Point(2, 22);
     this.xtraScrollableControlExample.Name = "xtraScrollableControlExample";
     this.xtraScrollableControlExample.Size = new System.Drawing.Size(169, 32);
     this.xtraScrollableControlExample.TabIndex = 1;
     this.xtraScrollableControlExample.Scroll += new DevExpress.XtraEditors.XtraScrollEventHandler(this.xtraScrollableControlExample_Scroll);
     //
     // flowLayoutPanelDemo
     //
     this.flowLayoutPanelDemo.AutoSize = true;
     this.flowLayoutPanelDemo.FlowDirection = System.Windows.Forms.FlowDirection.TopDown;
     this.flowLayoutPanelDemo.Location = new System.Drawing.Point(3, 3);
     this.flowLayoutPanelDemo.Name = "flowLayoutPanelDemo";
     this.flowLayoutPanelDemo.Size = new System.Drawing.Size(158, 25);
     this.flowLayoutPanelDemo.TabIndex = 2;
     //
     // panelControl2
     //
     this.panelControl2.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.panelControl2.Controls.Add(this.groupControlExample);
     this.panelControl2.Controls.Add(this.groupControlConfig);
     this.panelControl2.Dock = System.Windows.Forms.DockStyle.Fill;
     this.panelControl2.Location = new System.Drawing.Point(0, 0);
     this.panelControl2.Name = "panelControl2";
     this.panelControl2.Size = new System.Drawing.Size(657, 65);
     this.panelControl2.TabIndex = 11;
     //
     // frmCauHinhMauPhieu
     //
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.None;
     this.ClientSize = new System.Drawing.Size(657, 102);
     this.Controls.Add(this.panelControl2);
     this.Controls.Add(this.panelControl1);
     this.MaximizeBox = false;
     this.MinimizeBox = false;
     this.Name = "frmCauHinhMauPhieu";
     this.Text = "Thiết lập định dạng số phiếu";
     this.flowLayoutPanel1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).EndInit();
     this.panelControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.groupControlConfig)).EndInit();
     this.groupControlConfig.ResumeLayout(false);
     this.xtraScrollableControlConfig.ResumeLayout(false);
     this.xtraScrollableControlConfig.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.groupControlExample)).EndInit();
     this.groupControlExample.ResumeLayout(false);
     this.xtraScrollableControlExample.ResumeLayout(false);
     this.xtraScrollableControlExample.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl2)).EndInit();
     this.panelControl2.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();
     System.Windows.Forms.Panel _pnlContent;
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(ExternalsConfigurationComponentControl));
     System.Windows.Forms.FlowLayoutPanel           _pnlButtons;
     this._listExternals    = new System.Windows.Forms.ListView();
     this.colLabel          = new System.Windows.Forms.ColumnHeader();
     this.colDescription    = new System.Windows.Forms.ColumnHeader();
     this._btnAdd           = new System.Windows.Forms.Button();
     this._btnRemove        = new System.Windows.Forms.Button();
     this._btnEdit          = new System.Windows.Forms.Button();
     this._mnuExternalTypes = new System.Windows.Forms.ContextMenuStrip(this.components);
     _pnlContent            = new System.Windows.Forms.Panel();
     _pnlButtons            = new System.Windows.Forms.FlowLayoutPanel();
     _pnlContent.SuspendLayout();
     _pnlButtons.SuspendLayout();
     this.SuspendLayout();
     //
     // _pnlContent
     //
     _pnlContent.Controls.Add(this._listExternals);
     _pnlContent.Controls.Add(_pnlButtons);
     resources.ApplyResources(_pnlContent, "_pnlContent");
     _pnlContent.Name = "_pnlContent";
     //
     // _listExternals
     //
     this._listExternals.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
         this.colLabel,
         this.colDescription
     });
     resources.ApplyResources(this._listExternals, "_listExternals");
     this._listExternals.FullRowSelect = true;
     this._listExternals.GridLines     = true;
     this._listExternals.HeaderStyle   = System.Windows.Forms.ColumnHeaderStyle.Nonclickable;
     this._listExternals.HideSelection = false;
     this._listExternals.LabelEdit     = true;
     this._listExternals.MultiSelect   = false;
     this._listExternals.Name          = "_listExternals";
     this._listExternals.UseCompatibleStateImageBehavior = false;
     this._listExternals.View                  = System.Windows.Forms.View.Details;
     this._listExternals.AfterLabelEdit       += new System.Windows.Forms.LabelEditEventHandler(this._listExternals_AfterLabelEdit);
     this._listExternals.SelectedIndexChanged += new System.EventHandler(this._listExternals_SelectedIndexChanged);
     this._listExternals.DoubleClick          += new System.EventHandler(this._listExternals_DoubleClick);
     //
     // colLabel
     //
     resources.ApplyResources(this.colLabel, "colLabel");
     //
     // colDescription
     //
     resources.ApplyResources(this.colDescription, "colDescription");
     //
     // _pnlButtons
     //
     _pnlButtons.Controls.Add(this._btnAdd);
     _pnlButtons.Controls.Add(this._btnRemove);
     _pnlButtons.Controls.Add(this._btnEdit);
     resources.ApplyResources(_pnlButtons, "_pnlButtons");
     _pnlButtons.Name = "_pnlButtons";
     //
     // _btnAdd
     //
     resources.ApplyResources(this._btnAdd, "_btnAdd");
     this._btnAdd.Name = "_btnAdd";
     this._btnAdd.UseVisualStyleBackColor = true;
     this._btnAdd.Click += new System.EventHandler(this._btnAdd_Click);
     //
     // _btnRemove
     //
     resources.ApplyResources(this._btnRemove, "_btnRemove");
     this._btnRemove.Name = "_btnRemove";
     this._btnRemove.UseVisualStyleBackColor = true;
     this._btnRemove.Click += new System.EventHandler(this._btnRemove_Click);
     //
     // _btnEdit
     //
     resources.ApplyResources(this._btnEdit, "_btnEdit");
     this._btnEdit.Name = "_btnEdit";
     this._btnEdit.UseVisualStyleBackColor = true;
     this._btnEdit.Click += new System.EventHandler(this._btnEdit_Click);
     //
     // _mnuExternalTypes
     //
     this._mnuExternalTypes.Name = "_mnuExternalTypes";
     resources.ApplyResources(this._mnuExternalTypes, "_mnuExternalTypes");
     //
     // ExternalsConfigurationComponentControl
     //
     resources.ApplyResources(this, "$this");
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.Controls.Add(_pnlContent);
     this.Name = "ExternalsConfigurationComponentControl";
     _pnlContent.ResumeLayout(false);
     _pnlButtons.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.panel5 = new System.Windows.Forms.Panel();
     this.label13 = new System.Windows.Forms.Label();
     this.label1 = new System.Windows.Forms.Label();
     this.panel2 = new System.Windows.Forms.Panel();
     this.btnCreateReport = new System.Windows.Forms.Button();
     this.btnPrev = new System.Windows.Forms.Button();
     this.btnSave = new System.Windows.Forms.Button();
     this.panel3 = new System.Windows.Forms.Panel();
     this.panel4 = new System.Windows.Forms.Panel();
     this.btnAddNotification = new System.Windows.Forms.Button();
     this.splitter1 = new System.Windows.Forms.Splitter();
     this.btnPensionAndDeath = new System.Windows.Forms.Button();
     this.cbxPensionAndDeath = new System.Windows.Forms.CheckBox();
     this.btnReAppoinment = new System.Windows.Forms.Button();
     this.cbxReAppoinment = new System.Windows.Forms.CheckBox();
     this.btnResignation = new System.Windows.Forms.Button();
     this.cbxResignation = new System.Windows.Forms.CheckBox();
     this.btnInterdict = new System.Windows.Forms.Button();
     this.cbxInterdict = new System.Windows.Forms.CheckBox();
     this.btnJobStatus = new System.Windows.Forms.Button();
     this.cbxJobStatus = new System.Windows.Forms.CheckBox();
     this.btnTraining = new System.Windows.Forms.Button();
     this.cbxTraining = new System.Windows.Forms.CheckBox();
     this.btnDisciplinaryAction = new System.Windows.Forms.Button();
     this.cbxDeciplinaryAction = new System.Windows.Forms.CheckBox();
     this.btnLeaveRequest = new System.Windows.Forms.Button();
     this.cbxLeaveRequest = new System.Windows.Forms.CheckBox();
     this.btnVisaDetails = new System.Windows.Forms.Button();
     this.cbxVisaDetails = new System.Windows.Forms.CheckBox();
     this.btnEditDetails = new System.Windows.Forms.Button();
     this.imgEmployee = new System.Windows.Forms.PictureBox();
     this.flowLayoutPanel = new System.Windows.Forms.FlowLayoutPanel();
     this.panel1 = new System.Windows.Forms.Panel();
     this.label4 = new System.Windows.Forms.Label();
     this.employee_nic = new System.Windows.Forms.ComboBox();
     this.label3 = new System.Windows.Forms.Label();
     this.employee_name = new System.Windows.Forms.ComboBox();
     this.label2 = new System.Windows.Forms.Label();
     this.employee_no = new System.Windows.Forms.ComboBox();
     this.panel9 = new System.Windows.Forms.Panel();
     this.label17 = new System.Windows.Forms.Label();
     this.panel12 = new System.Windows.Forms.Panel();
     this.tabControl1 = new System.Windows.Forms.TabControl();
     this.tabPage1 = new System.Windows.Forms.TabPage();
     this.marry_date = new System.Windows.Forms.DateTimePicker();
     this.dob_date = new System.Windows.Forms.DateTimePicker();
     this.label21 = new System.Windows.Forms.Label();
     this.blood_group = new System.Windows.Forms.ComboBox();
     this.label18 = new System.Windows.Forms.Label();
     this.religion = new System.Windows.Forms.TextBox();
     this.date_issued = new System.Windows.Forms.TextBox();
     this.old_employee_no = new System.Windows.Forms.TextBox();
     this.place_of_birth = new System.Windows.Forms.TextBox();
     this.initials = new System.Windows.Forms.TextBox();
     this.first_name = new System.Windows.Forms.TextBox();
     this.last_name = new System.Windows.Forms.TextBox();
     this.nic_no = new System.Windows.Forms.TextBox();
     this.nationality = new System.Windows.Forms.TextBox();
     this.epf_no = new System.Windows.Forms.TextBox();
     this.txt_em_no = new System.Windows.Forms.TextBox();
     this.label22 = new System.Windows.Forms.Label();
     this.label23 = new System.Windows.Forms.Label();
     this.label24 = new System.Windows.Forms.Label();
     this.action_status = new System.Windows.Forms.ComboBox();
     this.married = new System.Windows.Forms.CheckBox();
     this.label25 = new System.Windows.Forms.Label();
     this.label26 = new System.Windows.Forms.Label();
     this.label27 = new System.Windows.Forms.Label();
     this.label28 = new System.Windows.Forms.Label();
     this.label29 = new System.Windows.Forms.Label();
     this.label30 = new System.Windows.Forms.Label();
     this.occupation = new System.Windows.Forms.ComboBox();
     this.employee_type = new System.Windows.Forms.ComboBox();
     this.label31 = new System.Windows.Forms.Label();
     this.label32 = new System.Windows.Forms.Label();
     this.label33 = new System.Windows.Forms.Label();
     this.label34 = new System.Windows.Forms.Label();
     this.salutation = new System.Windows.Forms.ComboBox();
     this.label35 = new System.Windows.Forms.Label();
     this.label36 = new System.Windows.Forms.Label();
     this.label37 = new System.Windows.Forms.Label();
     this.tabPage2 = new System.Windows.Forms.TabPage();
     this.label38 = new System.Windows.Forms.Label();
     this.label39 = new System.Windows.Forms.Label();
     this.cur_email = new System.Windows.Forms.TextBox();
     this.cur_fax = new System.Windows.Forms.TextBox();
     this.cur_mobile = new System.Windows.Forms.TextBox();
     this.cur_teleophone = new System.Windows.Forms.TextBox();
     this.cur_city = new System.Windows.Forms.TextBox();
     this.cur_address = new System.Windows.Forms.TextBox();
     this.cur_home_no = new System.Windows.Forms.TextBox();
     this.perm_email = new System.Windows.Forms.TextBox();
     this.perm_fax = new System.Windows.Forms.TextBox();
     this.perm_mobile = new System.Windows.Forms.TextBox();
     this.perm_teleophone = new System.Windows.Forms.TextBox();
     this.perm_city = new System.Windows.Forms.TextBox();
     this.perm_address = new System.Windows.Forms.TextBox();
     this.perm_home_no = new System.Windows.Forms.TextBox();
     this.label40 = new System.Windows.Forms.Label();
     this.label41 = new System.Windows.Forms.Label();
     this.label42 = new System.Windows.Forms.Label();
     this.label43 = new System.Windows.Forms.Label();
     this.cur_polling_division = new System.Windows.Forms.ComboBox();
     this.label44 = new System.Windows.Forms.Label();
     this.cur_grama = new System.Windows.Forms.ComboBox();
     this.label45 = new System.Windows.Forms.Label();
     this.cur_uc = new System.Windows.Forms.ComboBox();
     this.label46 = new System.Windows.Forms.Label();
     this.cur_district = new System.Windows.Forms.ComboBox();
     this.label47 = new System.Windows.Forms.Label();
     this.cur_province = new System.Windows.Forms.ComboBox();
     this.label48 = new System.Windows.Forms.Label();
     this.label49 = new System.Windows.Forms.Label();
     this.label50 = new System.Windows.Forms.Label();
     this.label51 = new System.Windows.Forms.Label();
     this.label52 = new System.Windows.Forms.Label();
     this.label53 = new System.Windows.Forms.Label();
     this.label54 = new System.Windows.Forms.Label();
     this.label55 = new System.Windows.Forms.Label();
     this.label56 = new System.Windows.Forms.Label();
     this.perm_polling_division = new System.Windows.Forms.ComboBox();
     this.label57 = new System.Windows.Forms.Label();
     this.perm_grama = new System.Windows.Forms.ComboBox();
     this.label58 = new System.Windows.Forms.Label();
     this.perm_uc = new System.Windows.Forms.ComboBox();
     this.label59 = new System.Windows.Forms.Label();
     this.perm_district = new System.Windows.Forms.ComboBox();
     this.label60 = new System.Windows.Forms.Label();
     this.perm_province = new System.Windows.Forms.ComboBox();
     this.label61 = new System.Windows.Forms.Label();
     this.label62 = new System.Windows.Forms.Label();
     this.label63 = new System.Windows.Forms.Label();
     this.tabPage3 = new System.Windows.Forms.TabPage();
     this.depend_date_of_post_date = new System.Windows.Forms.DateTimePicker();
     this.depend_medical = new System.Windows.Forms.CheckBox();
     this.depend_deathade = new System.Windows.Forms.CheckBox();
     this.label69 = new System.Windows.Forms.Label();
     this.depend_office_tp = new System.Windows.Forms.TextBox();
     this.depend_official_address = new System.Windows.Forms.TextBox();
     this.depend_full_name = new System.Windows.Forms.TextBox();
     this.depend_marriage_certificate = new System.Windows.Forms.TextBox();
     this.depend_birth_certificate = new System.Windows.Forms.TextBox();
     this.depend_note = new System.Windows.Forms.TextBox();
     this.depend_education = new System.Windows.Forms.TextBox();
     this.depend_personal_tp = new System.Windows.Forms.TextBox();
     this.depend_personal_address = new System.Windows.Forms.TextBox();
     this.depend_nic_no = new System.Windows.Forms.TextBox();
     this.label68 = new System.Windows.Forms.Label();
     this.label67 = new System.Windows.Forms.Label();
     this.label66 = new System.Windows.Forms.Label();
     this.button2 = new System.Windows.Forms.Button();
     this.button1 = new System.Windows.Forms.Button();
     this.label65 = new System.Windows.Forms.Label();
     this.label64 = new System.Windows.Forms.Label();
     this.label70 = new System.Windows.Forms.Label();
     this.label71 = new System.Windows.Forms.Label();
     this.depend_status = new System.Windows.Forms.ComboBox();
     this.label72 = new System.Windows.Forms.Label();
     this.label73 = new System.Windows.Forms.Label();
     this.label74 = new System.Windows.Forms.Label();
     this.label75 = new System.Windows.Forms.Label();
     this.label76 = new System.Windows.Forms.Label();
     this.depend_relation = new System.Windows.Forms.ComboBox();
     this.label77 = new System.Windows.Forms.Label();
     this.depend_salutation = new System.Windows.Forms.ComboBox();
     this.tabPage4 = new System.Windows.Forms.TabPage();
     this.label81 = new System.Windows.Forms.Label();
     this.emg_employee_no = new System.Windows.Forms.TextBox();
     this.emg_office_tp = new System.Windows.Forms.TextBox();
     this.emg_mobile_no = new System.Windows.Forms.TextBox();
     this.emg_personal_tp = new System.Windows.Forms.TextBox();
     this.emg_official_address = new System.Windows.Forms.TextBox();
     this.emg_full_name = new System.Windows.Forms.TextBox();
     this.emg_personal_address = new System.Windows.Forms.TextBox();
     this.emg_nic_no = new System.Windows.Forms.TextBox();
     this.label80 = new System.Windows.Forms.Label();
     this.label79 = new System.Windows.Forms.Label();
     this.emg_priority = new System.Windows.Forms.ComboBox();
     this.label78 = new System.Windows.Forms.Label();
     this.emg_int_ext = new System.Windows.Forms.ComboBox();
     this.label82 = new System.Windows.Forms.Label();
     this.label83 = new System.Windows.Forms.Label();
     this.label84 = new System.Windows.Forms.Label();
     this.label85 = new System.Windows.Forms.Label();
     this.label86 = new System.Windows.Forms.Label();
     this.label87 = new System.Windows.Forms.Label();
     this.label88 = new System.Windows.Forms.Label();
     this.emg_relation = new System.Windows.Forms.ComboBox();
     this.label89 = new System.Windows.Forms.Label();
     this.emg_salutation = new System.Windows.Forms.ComboBox();
     this.tabPage5 = new System.Windows.Forms.TabPage();
     this.wsd_date_of_post_date = new System.Windows.Forms.DateTimePicker();
     this.label90 = new System.Windows.Forms.Label();
     this.label91 = new System.Windows.Forms.Label();
     this.label92 = new System.Windows.Forms.Label();
     this.label93 = new System.Windows.Forms.Label();
     this.label94 = new System.Windows.Forms.Label();
     this.wsd_power = new System.Windows.Forms.ComboBox();
     this.wsd_post = new System.Windows.Forms.ComboBox();
     this.wsd_responsibility = new System.Windows.Forms.ComboBox();
     this.wsd_salary_station = new System.Windows.Forms.ComboBox();
     this.wsd_rank = new System.Windows.Forms.ComboBox();
     this.label95 = new System.Windows.Forms.Label();
     this.wsd_division = new System.Windows.Forms.ComboBox();
     this.label96 = new System.Windows.Forms.Label();
     this.panel6 = new System.Windows.Forms.Panel();
     this.label122 = new System.Windows.Forms.Label();
     this.tabControl2 = new System.Windows.Forms.TabControl();
     this.tabPersonalDetails = new System.Windows.Forms.TabPage();
     this.label11 = new System.Windows.Forms.Label();
     this.label12 = new System.Windows.Forms.Label();
     this.label19 = new System.Windows.Forms.Label();
     this.label20 = new System.Windows.Forms.Label();
     this.label142 = new System.Windows.Forms.Label();
     this.label143 = new System.Windows.Forms.Label();
     this.label144 = new System.Windows.Forms.Label();
     this.label145 = new System.Windows.Forms.Label();
     this.label146 = new System.Windows.Forms.Label();
     this.label147 = new System.Windows.Forms.Label();
     this.label148 = new System.Windows.Forms.Label();
     this.label149 = new System.Windows.Forms.Label();
     this.label150 = new System.Windows.Forms.Label();
     this.label151 = new System.Windows.Forms.Label();
     this.label152 = new System.Windows.Forms.Label();
     this.label153 = new System.Windows.Forms.Label();
     this.label154 = new System.Windows.Forms.Label();
     this.label155 = new System.Windows.Forms.Label();
     this.label156 = new System.Windows.Forms.Label();
     this.tabPage6 = new System.Windows.Forms.TabPage();
     this.label10 = new System.Windows.Forms.Label();
     this.qual_highest_qualification = new System.Windows.Forms.CheckBox();
     this.label8 = new System.Windows.Forms.Label();
     this.qual_year = new System.Windows.Forms.TextBox();
     this.qual_qualification = new System.Windows.Forms.TextBox();
     this.qual_note = new System.Windows.Forms.TextBox();
     this.qual_months = new System.Windows.Forms.TextBox();
     this.qualification_no = new System.Windows.Forms.TextBox();
     this.qual_institute = new System.Windows.Forms.TextBox();
     this.label7 = new System.Windows.Forms.Label();
     this.label5 = new System.Windows.Forms.Label();
     this.label6 = new System.Windows.Forms.Label();
     this.qual_status = new System.Windows.Forms.ComboBox();
     this.qual_occupation_relevant = new System.Windows.Forms.CheckBox();
     this.label9 = new System.Windows.Forms.Label();
     this.label14 = new System.Windows.Forms.Label();
     this.label15 = new System.Windows.Forms.Label();
     this.tabPage7 = new System.Windows.Forms.TabPage();
     this.we_date_perma_date = new System.Windows.Forms.DateTimePicker();
     this.we_date_to_date = new System.Windows.Forms.DateTimePicker();
     this.we_date_from_date = new System.Windows.Forms.DateTimePicker();
     this.label16 = new System.Windows.Forms.Label();
     this.we_award = new System.Windows.Forms.TextBox();
     this.we_responsibility = new System.Windows.Forms.TextBox();
     this.we_resign_reason = new System.Windows.Forms.TextBox();
     this.we_contact = new System.Windows.Forms.TextBox();
     this.we_department = new System.Windows.Forms.TextBox();
     this.we_email = new System.Windows.Forms.TextBox();
     this.we_telephone = new System.Windows.Forms.TextBox();
     this.we_address = new System.Windows.Forms.TextBox();
     this.we_institute = new System.Windows.Forms.TextBox();
     this.label97 = new System.Windows.Forms.Label();
     this.label98 = new System.Windows.Forms.Label();
     this.we_occupation_relevant = new System.Windows.Forms.CheckBox();
     this.label99 = new System.Windows.Forms.Label();
     this.label100 = new System.Windows.Forms.Label();
     this.label101 = new System.Windows.Forms.Label();
     this.label102 = new System.Windows.Forms.Label();
     this.label103 = new System.Windows.Forms.Label();
     this.label104 = new System.Windows.Forms.Label();
     this.label105 = new System.Windows.Forms.Label();
     this.label106 = new System.Windows.Forms.Label();
     this.label107 = new System.Windows.Forms.Label();
     this.tabPage8 = new System.Windows.Forms.TabPage();
     this.label108 = new System.Windows.Forms.Label();
     this.ea_award = new System.Windows.Forms.TextBox();
     this.ea_method = new System.Windows.Forms.TextBox();
     this.label109 = new System.Windows.Forms.Label();
     this.ea_type = new System.Windows.Forms.ComboBox();
     this.label110 = new System.Windows.Forms.Label();
     this.tabPage9 = new System.Windows.Forms.TabPage();
     this.member_active_date_insti_date = new System.Windows.Forms.DateTimePicker();
     this.member_active_date_person_date = new System.Windows.Forms.DateTimePicker();
     this.member_renewal_date = new System.Windows.Forms.DateTimePicker();
     this.member_begin_date_date = new System.Windows.Forms.DateTimePicker();
     this.label111 = new System.Windows.Forms.Label();
     this.label112 = new System.Windows.Forms.Label();
     this.member_institutional_payment = new System.Windows.Forms.CheckBox();
     this.member_personal_payment = new System.Windows.Forms.CheckBox();
     this.label113 = new System.Windows.Forms.Label();
     this.member_status = new System.Windows.Forms.ComboBox();
     this.label114 = new System.Windows.Forms.Label();
     this.label115 = new System.Windows.Forms.Label();
     this.label116 = new System.Windows.Forms.Label();
     this.member_contribution = new System.Windows.Forms.TextBox();
     this.member_id = new System.Windows.Forms.TextBox();
     this.member_institute = new System.Windows.Forms.TextBox();
     this.label117 = new System.Windows.Forms.Label();
     this.label118 = new System.Windows.Forms.Label();
     this.member_method = new System.Windows.Forms.ComboBox();
     this.label119 = new System.Windows.Forms.Label();
     this.memebr_post_name = new System.Windows.Forms.ComboBox();
     this.label120 = new System.Windows.Forms.Label();
     this.tabPage10 = new System.Windows.Forms.TabPage();
     this.button3 = new System.Windows.Forms.Button();
     this.label121 = new System.Windows.Forms.Label();
     this.language_name = new System.Windows.Forms.ComboBox();
     this.panel7 = new System.Windows.Forms.Panel();
     this.label141 = new System.Windows.Forms.Label();
     this.tabControl3 = new System.Windows.Forms.TabControl();
     this.tabPage11 = new System.Windows.Forms.TabPage();
     this.bank_account_closed_year = new System.Windows.Forms.DateTimePicker();
     this.bank_account_started_year = new System.Windows.Forms.DateTimePicker();
     this.label129 = new System.Windows.Forms.Label();
     this.bank_qualified_year = new System.Windows.Forms.TextBox();
     this.bank_qualification = new System.Windows.Forms.TextBox();
     this.label130 = new System.Windows.Forms.Label();
     this.label123 = new System.Windows.Forms.Label();
     this.bank_account_name = new System.Windows.Forms.TextBox();
     this.label124 = new System.Windows.Forms.Label();
     this.bank_account_type = new System.Windows.Forms.ComboBox();
     this.bank_name = new System.Windows.Forms.ComboBox();
     this.label125 = new System.Windows.Forms.Label();
     this.bank_branch_name = new System.Windows.Forms.TextBox();
     this.label126 = new System.Windows.Forms.Label();
     this.label127 = new System.Windows.Forms.Label();
     this.label128 = new System.Windows.Forms.Label();
     this.tabPage12 = new System.Windows.Forms.TabPage();
     this.insurance_ended_year = new System.Windows.Forms.DateTimePicker();
     this.insurance_started_date = new System.Windows.Forms.DateTimePicker();
     this.insurance_type = new System.Windows.Forms.ComboBox();
     this.label131 = new System.Windows.Forms.Label();
     this.label132 = new System.Windows.Forms.Label();
     this.insurance_notes = new System.Windows.Forms.TextBox();
     this.label133 = new System.Windows.Forms.Label();
     this.insurance_value = new System.Windows.Forms.TextBox();
     this.label134 = new System.Windows.Forms.Label();
     this.label135 = new System.Windows.Forms.Label();
     this.tabPage13 = new System.Windows.Forms.TabPage();
     this.label136 = new System.Windows.Forms.Label();
     this.label137 = new System.Windows.Forms.Label();
     this.tax_no = new System.Windows.Forms.TextBox();
     this.tax_status = new System.Windows.Forms.ComboBox();
     this.label138 = new System.Windows.Forms.Label();
     this.tax_notes = new System.Windows.Forms.TextBox();
     this.tax_type = new System.Windows.Forms.TextBox();
     this.label139 = new System.Windows.Forms.Label();
     this.tax_paying_method = new System.Windows.Forms.ComboBox();
     this.label140 = new System.Windows.Forms.Label();
     this.panel8 = new System.Windows.Forms.Panel();
     this.label169 = new System.Windows.Forms.Label();
     this.tabControl4 = new System.Windows.Forms.TabControl();
     this.tabPage14 = new System.Windows.Forms.TabPage();
     this.remun_salary_increase_date = new System.Windows.Forms.DateTimePicker();
     this.label157 = new System.Windows.Forms.Label();
     this.label158 = new System.Windows.Forms.Label();
     this.label159 = new System.Windows.Forms.Label();
     this.label160 = new System.Windows.Forms.Label();
     this.label161 = new System.Windows.Forms.Label();
     this.label170 = new System.Windows.Forms.Label();
     this.label171 = new System.Windows.Forms.Label();
     this.label172 = new System.Windows.Forms.Label();
     this.label173 = new System.Windows.Forms.Label();
     this.label174 = new System.Windows.Forms.Label();
     this.label175 = new System.Windows.Forms.Label();
     this.label176 = new System.Windows.Forms.Label();
     this.label177 = new System.Windows.Forms.Label();
     this.label178 = new System.Windows.Forms.Label();
     this.label179 = new System.Windows.Forms.Label();
     this.label180 = new System.Windows.Forms.Label();
     this.label181 = new System.Windows.Forms.Label();
     this.remun_salary_slip_no = new System.Windows.Forms.TextBox();
     this.remun_salary_grade = new System.Windows.Forms.TextBox();
     this.remun_transport_allowance = new System.Windows.Forms.TextBox();
     this.remun_basic_salary = new System.Windows.Forms.TextBox();
     this.label182 = new System.Windows.Forms.Label();
     this.label183 = new System.Windows.Forms.Label();
     this.remun_mobile_phone_allowance = new System.Windows.Forms.TextBox();
     this.remun_current_total_salary = new System.Windows.Forms.TextBox();
     this.remun_salary_increase_amount = new System.Windows.Forms.TextBox();
     this.remun_fuel_allowance = new System.Windows.Forms.TextBox();
     this.remun_other_allowance = new System.Windows.Forms.TextBox();
     this.remun_housing_allowance = new System.Windows.Forms.TextBox();
     this.tabPage15 = new System.Windows.Forms.TabPage();
     this.cash_issued_date = new System.Windows.Forms.DateTimePicker();
     this.label184 = new System.Windows.Forms.Label();
     this.label185 = new System.Windows.Forms.Label();
     this.label186 = new System.Windows.Forms.Label();
     this.cash_issued_price = new System.Windows.Forms.TextBox();
     this.cash_approved_benefit = new System.Windows.Forms.TextBox();
     this.tabPage16 = new System.Windows.Forms.TabPage();
     this.noncash_issued_date = new System.Windows.Forms.DateTimePicker();
     this.label187 = new System.Windows.Forms.Label();
     this.label188 = new System.Windows.Forms.Label();
     this.label189 = new System.Windows.Forms.Label();
     this.label190 = new System.Windows.Forms.Label();
     this.noncash_price = new System.Windows.Forms.TextBox();
     this.noncash_quantity = new System.Windows.Forms.TextBox();
     this.noncash_approved_benefit = new System.Windows.Forms.TextBox();
     this.panel11 = new System.Windows.Forms.Panel();
     this.label197 = new System.Windows.Forms.Label();
     this.panel10 = new System.Windows.Forms.Panel();
     this.passport_renewal_date = new System.Windows.Forms.DateTimePicker();
     this.passport_issued_date = new System.Windows.Forms.DateTimePicker();
     this.passport_status_deactive = new System.Windows.Forms.RadioButton();
     this.passport_status_active = new System.Windows.Forms.RadioButton();
     this.label162 = new System.Windows.Forms.Label();
     this.label163 = new System.Windows.Forms.Label();
     this.label164 = new System.Windows.Forms.Label();
     this.label165 = new System.Windows.Forms.Label();
     this.label166 = new System.Windows.Forms.Label();
     this.label167 = new System.Windows.Forms.Label();
     this.label168 = new System.Windows.Forms.Label();
     this.passport_post = new System.Windows.Forms.TextBox();
     this.passport_rank = new System.Windows.Forms.TextBox();
     this.passport_issued_place = new System.Windows.Forms.TextBox();
     this.passport_no = new System.Windows.Forms.TextBox();
     this.panel5.SuspendLayout();
     this.panel2.SuspendLayout();
     this.panel3.SuspendLayout();
     this.panel4.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.imgEmployee)).BeginInit();
     this.flowLayoutPanel.SuspendLayout();
     this.panel1.SuspendLayout();
     this.panel9.SuspendLayout();
     this.panel12.SuspendLayout();
     this.tabControl1.SuspendLayout();
     this.tabPage1.SuspendLayout();
     this.tabPage2.SuspendLayout();
     this.tabPage3.SuspendLayout();
     this.tabPage4.SuspendLayout();
     this.tabPage5.SuspendLayout();
     this.panel6.SuspendLayout();
     this.tabControl2.SuspendLayout();
     this.tabPersonalDetails.SuspendLayout();
     this.tabPage6.SuspendLayout();
     this.tabPage7.SuspendLayout();
     this.tabPage8.SuspendLayout();
     this.tabPage9.SuspendLayout();
     this.tabPage10.SuspendLayout();
     this.panel7.SuspendLayout();
     this.tabControl3.SuspendLayout();
     this.tabPage11.SuspendLayout();
     this.tabPage12.SuspendLayout();
     this.tabPage13.SuspendLayout();
     this.panel8.SuspendLayout();
     this.tabControl4.SuspendLayout();
     this.tabPage14.SuspendLayout();
     this.tabPage15.SuspendLayout();
     this.tabPage16.SuspendLayout();
     this.panel11.SuspendLayout();
     this.panel10.SuspendLayout();
     this.SuspendLayout();
     //
     // panel5
     //
     this.panel5.BackColor = System.Drawing.Color.Teal;
     this.panel5.Controls.Add(this.label13);
     this.panel5.Controls.Add(this.label1);
     this.panel5.Dock = System.Windows.Forms.DockStyle.Top;
     this.panel5.Location = new System.Drawing.Point(0, 0);
     this.panel5.Name = "panel5";
     this.panel5.Size = new System.Drawing.Size(1360, 60);
     this.panel5.TabIndex = 4;
     //
     // label13
     //
     this.label13.AutoSize = true;
     this.label13.Font = new System.Drawing.Font("Calibri", 27.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label13.ForeColor = System.Drawing.Color.White;
     this.label13.Location = new System.Drawing.Point(109, 9);
     this.label13.Name = "label13";
     this.label13.Size = new System.Drawing.Size(121, 45);
     this.label13.TabIndex = 1;
     this.label13.Text = "Details";
     //
     // label1
     //
     this.label1.AutoSize = true;
     this.label1.Font = new System.Drawing.Font("Calibri", 27.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label1.ForeColor = System.Drawing.Color.LightGray;
     this.label1.Location = new System.Drawing.Point(2, 9);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(120, 45);
     this.label1.TabIndex = 0;
     this.label1.Text = "Search";
     //
     // panel2
     //
     this.panel2.BackColor = System.Drawing.Color.Teal;
     this.panel2.Controls.Add(this.btnCreateReport);
     this.panel2.Controls.Add(this.btnPrev);
     this.panel2.Controls.Add(this.btnSave);
     this.panel2.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.panel2.ForeColor = System.Drawing.Color.Teal;
     this.panel2.Location = new System.Drawing.Point(0, 708);
     this.panel2.Name = "panel2";
     this.panel2.Size = new System.Drawing.Size(1360, 60);
     this.panel2.TabIndex = 5;
     //
     // btnCreateReport
     //
     this.btnCreateReport.BackColor = System.Drawing.SystemColors.ControlLightLight;
     this.btnCreateReport.Font = new System.Drawing.Font("Calibri", 15.75F);
     this.btnCreateReport.ForeColor = System.Drawing.SystemColors.ActiveCaptionText;
     this.btnCreateReport.Location = new System.Drawing.Point(1172, 13);
     this.btnCreateReport.Name = "btnCreateReport";
     this.btnCreateReport.Size = new System.Drawing.Size(164, 35);
     this.btnCreateReport.TabIndex = 4;
     this.btnCreateReport.Text = "වාර්තාව";
     this.btnCreateReport.UseVisualStyleBackColor = false;
     this.btnCreateReport.Click += new System.EventHandler(this.btnCreateReport_Click);
     //
     // btnPrev
     //
     this.btnPrev.AutoSize = true;
     this.btnPrev.BackColor = System.Drawing.SystemColors.ControlLightLight;
     this.btnPrev.Font = new System.Drawing.Font("Calibri", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btnPrev.ForeColor = System.Drawing.SystemColors.ActiveCaptionText;
     this.btnPrev.Location = new System.Drawing.Point(8, 10);
     this.btnPrev.Name = "btnPrev";
     this.btnPrev.Size = new System.Drawing.Size(75, 42);
     this.btnPrev.TabIndex = 3;
     this.btnPrev.Text = "Previous";
     this.btnPrev.UseVisualStyleBackColor = false;
     this.btnPrev.Click += new System.EventHandler(this.btnPrev_Click);
     //
     // btnSave
     //
     this.btnSave.BackColor = System.Drawing.SystemColors.ControlLightLight;
     this.btnSave.Font = new System.Drawing.Font("Calibri", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btnSave.ForeColor = System.Drawing.SystemColors.ActiveCaptionText;
     this.btnSave.Location = new System.Drawing.Point(1002, 13);
     this.btnSave.Name = "btnSave";
     this.btnSave.Size = new System.Drawing.Size(164, 35);
     this.btnSave.TabIndex = 0;
     this.btnSave.Text = "තැන්පතු කරන්න ";
     this.btnSave.UseVisualStyleBackColor = false;
     this.btnSave.Click += new System.EventHandler(this.btnSave_Click);
     //
     // panel3
     //
     this.panel3.BackColor = System.Drawing.Color.White;
     this.panel3.Controls.Add(this.panel4);
     this.panel3.Location = new System.Drawing.Point(0, 66);
     this.panel3.Name = "panel3";
     this.panel3.Size = new System.Drawing.Size(277, 702);
     this.panel3.TabIndex = 6;
     //
     // panel4
     //
     this.panel4.BackColor = System.Drawing.SystemColors.ControlLightLight;
     this.panel4.Controls.Add(this.btnAddNotification);
     this.panel4.Controls.Add(this.splitter1);
     this.panel4.Controls.Add(this.btnPensionAndDeath);
     this.panel4.Controls.Add(this.cbxPensionAndDeath);
     this.panel4.Controls.Add(this.btnReAppoinment);
     this.panel4.Controls.Add(this.cbxReAppoinment);
     this.panel4.Controls.Add(this.btnResignation);
     this.panel4.Controls.Add(this.cbxResignation);
     this.panel4.Controls.Add(this.btnInterdict);
     this.panel4.Controls.Add(this.cbxInterdict);
     this.panel4.Controls.Add(this.btnJobStatus);
     this.panel4.Controls.Add(this.cbxJobStatus);
     this.panel4.Controls.Add(this.btnTraining);
     this.panel4.Controls.Add(this.cbxTraining);
     this.panel4.Controls.Add(this.btnDisciplinaryAction);
     this.panel4.Controls.Add(this.cbxDeciplinaryAction);
     this.panel4.Controls.Add(this.btnLeaveRequest);
     this.panel4.Controls.Add(this.cbxLeaveRequest);
     this.panel4.Controls.Add(this.btnVisaDetails);
     this.panel4.Controls.Add(this.cbxVisaDetails);
     this.panel4.Controls.Add(this.btnEditDetails);
     this.panel4.Location = new System.Drawing.Point(7, -2);
     this.panel4.Name = "panel4";
     this.panel4.Size = new System.Drawing.Size(278, 638);
     this.panel4.TabIndex = 6;
     //
     // btnAddNotification
     //
     this.btnAddNotification.BackColor = System.Drawing.Color.Teal;
     this.btnAddNotification.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.btnAddNotification.Font = new System.Drawing.Font("Calibri", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btnAddNotification.ForeColor = System.Drawing.SystemColors.ControlLightLight;
     this.btnAddNotification.Location = new System.Drawing.Point(5, 93);
     this.btnAddNotification.Name = "btnAddNotification";
     this.btnAddNotification.Size = new System.Drawing.Size(262, 87);
     this.btnAddNotification.TabIndex = 20;
     this.btnAddNotification.Text = "Add Notification";
     this.btnAddNotification.UseVisualStyleBackColor = false;
     this.btnAddNotification.Click += new System.EventHandler(this.btnAddNotification_Click);
     //
     // splitter1
     //
     this.splitter1.Location = new System.Drawing.Point(0, 0);
     this.splitter1.Name = "splitter1";
     this.splitter1.Size = new System.Drawing.Size(3, 638);
     this.splitter1.TabIndex = 19;
     this.splitter1.TabStop = false;
     //
     // btnPensionAndDeath
     //
     this.btnPensionAndDeath.BackColor = System.Drawing.Color.Teal;
     this.btnPensionAndDeath.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.btnPensionAndDeath.Font = new System.Drawing.Font("Calibri", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btnPensionAndDeath.ForeColor = System.Drawing.SystemColors.ControlLightLight;
     this.btnPensionAndDeath.Location = new System.Drawing.Point(45, 584);
     this.btnPensionAndDeath.Name = "btnPensionAndDeath";
     this.btnPensionAndDeath.Size = new System.Drawing.Size(222, 42);
     this.btnPensionAndDeath.TabIndex = 18;
     this.btnPensionAndDeath.Text = "Pension and Death";
     this.btnPensionAndDeath.UseVisualStyleBackColor = false;
     this.btnPensionAndDeath.Click += new System.EventHandler(this.btnPensionAndDeath_Click);
     //
     // cbxPensionAndDeath
     //
     this.cbxPensionAndDeath.AutoSize = true;
     this.cbxPensionAndDeath.Location = new System.Drawing.Point(17, 598);
     this.cbxPensionAndDeath.Name = "cbxPensionAndDeath";
     this.cbxPensionAndDeath.Size = new System.Drawing.Size(15, 14);
     this.cbxPensionAndDeath.TabIndex = 17;
     this.cbxPensionAndDeath.UseVisualStyleBackColor = true;
     //
     // btnReAppoinment
     //
     this.btnReAppoinment.BackColor = System.Drawing.Color.Teal;
     this.btnReAppoinment.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.btnReAppoinment.Font = new System.Drawing.Font("Calibri", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btnReAppoinment.ForeColor = System.Drawing.SystemColors.ControlLightLight;
     this.btnReAppoinment.Location = new System.Drawing.Point(45, 536);
     this.btnReAppoinment.Name = "btnReAppoinment";
     this.btnReAppoinment.Size = new System.Drawing.Size(222, 42);
     this.btnReAppoinment.TabIndex = 16;
     this.btnReAppoinment.Text = "Re-appoinment";
     this.btnReAppoinment.UseVisualStyleBackColor = false;
     this.btnReAppoinment.Click += new System.EventHandler(this.btnReAppoinment_Click);
     //
     // cbxReAppoinment
     //
     this.cbxReAppoinment.AutoSize = true;
     this.cbxReAppoinment.Location = new System.Drawing.Point(17, 550);
     this.cbxReAppoinment.Name = "cbxReAppoinment";
     this.cbxReAppoinment.Size = new System.Drawing.Size(15, 14);
     this.cbxReAppoinment.TabIndex = 15;
     this.cbxReAppoinment.UseVisualStyleBackColor = true;
     //
     // btnResignation
     //
     this.btnResignation.BackColor = System.Drawing.Color.Teal;
     this.btnResignation.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.btnResignation.Font = new System.Drawing.Font("Calibri", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btnResignation.ForeColor = System.Drawing.SystemColors.ControlLightLight;
     this.btnResignation.Location = new System.Drawing.Point(45, 488);
     this.btnResignation.Name = "btnResignation";
     this.btnResignation.Size = new System.Drawing.Size(222, 42);
     this.btnResignation.TabIndex = 14;
     this.btnResignation.Text = "Resignation";
     this.btnResignation.UseVisualStyleBackColor = false;
     this.btnResignation.Click += new System.EventHandler(this.btnResignation_Click);
     //
     // cbxResignation
     //
     this.cbxResignation.AutoSize = true;
     this.cbxResignation.Location = new System.Drawing.Point(17, 502);
     this.cbxResignation.Name = "cbxResignation";
     this.cbxResignation.Size = new System.Drawing.Size(15, 14);
     this.cbxResignation.TabIndex = 13;
     this.cbxResignation.UseVisualStyleBackColor = true;
     //
     // btnInterdict
     //
     this.btnInterdict.BackColor = System.Drawing.Color.Teal;
     this.btnInterdict.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.btnInterdict.Font = new System.Drawing.Font("Calibri", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btnInterdict.ForeColor = System.Drawing.SystemColors.ControlLightLight;
     this.btnInterdict.Location = new System.Drawing.Point(45, 440);
     this.btnInterdict.Name = "btnInterdict";
     this.btnInterdict.Size = new System.Drawing.Size(222, 42);
     this.btnInterdict.TabIndex = 12;
     this.btnInterdict.Text = "Interdict/Suspend";
     this.btnInterdict.UseVisualStyleBackColor = false;
     this.btnInterdict.Click += new System.EventHandler(this.btnInterdict_Click);
     //
     // cbxInterdict
     //
     this.cbxInterdict.AutoSize = true;
     this.cbxInterdict.Location = new System.Drawing.Point(17, 454);
     this.cbxInterdict.Name = "cbxInterdict";
     this.cbxInterdict.Size = new System.Drawing.Size(15, 14);
     this.cbxInterdict.TabIndex = 11;
     this.cbxInterdict.UseVisualStyleBackColor = true;
     //
     // btnJobStatus
     //
     this.btnJobStatus.BackColor = System.Drawing.Color.Teal;
     this.btnJobStatus.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.btnJobStatus.Font = new System.Drawing.Font("Calibri", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btnJobStatus.ForeColor = System.Drawing.SystemColors.ControlLightLight;
     this.btnJobStatus.Location = new System.Drawing.Point(45, 392);
     this.btnJobStatus.Name = "btnJobStatus";
     this.btnJobStatus.Size = new System.Drawing.Size(222, 42);
     this.btnJobStatus.TabIndex = 10;
     this.btnJobStatus.Text = "Job Status";
     this.btnJobStatus.UseVisualStyleBackColor = false;
     this.btnJobStatus.Click += new System.EventHandler(this.btnJobStatus_Click);
     //
     // cbxJobStatus
     //
     this.cbxJobStatus.AutoSize = true;
     this.cbxJobStatus.Location = new System.Drawing.Point(17, 406);
     this.cbxJobStatus.Name = "cbxJobStatus";
     this.cbxJobStatus.Size = new System.Drawing.Size(15, 14);
     this.cbxJobStatus.TabIndex = 9;
     this.cbxJobStatus.UseVisualStyleBackColor = true;
     //
     // btnTraining
     //
     this.btnTraining.BackColor = System.Drawing.Color.Teal;
     this.btnTraining.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.btnTraining.Font = new System.Drawing.Font("Calibri", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btnTraining.ForeColor = System.Drawing.SystemColors.ControlLightLight;
     this.btnTraining.Location = new System.Drawing.Point(45, 344);
     this.btnTraining.Name = "btnTraining";
     this.btnTraining.Size = new System.Drawing.Size(222, 42);
     this.btnTraining.TabIndex = 8;
     this.btnTraining.Text = "Training";
     this.btnTraining.UseVisualStyleBackColor = false;
     this.btnTraining.Click += new System.EventHandler(this.btnTraining_Click);
     //
     // cbxTraining
     //
     this.cbxTraining.AutoSize = true;
     this.cbxTraining.Location = new System.Drawing.Point(17, 358);
     this.cbxTraining.Name = "cbxTraining";
     this.cbxTraining.Size = new System.Drawing.Size(15, 14);
     this.cbxTraining.TabIndex = 7;
     this.cbxTraining.UseVisualStyleBackColor = true;
     //
     // btnDisciplinaryAction
     //
     this.btnDisciplinaryAction.BackColor = System.Drawing.Color.Teal;
     this.btnDisciplinaryAction.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.btnDisciplinaryAction.Font = new System.Drawing.Font("Calibri", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btnDisciplinaryAction.ForeColor = System.Drawing.SystemColors.ControlLightLight;
     this.btnDisciplinaryAction.Location = new System.Drawing.Point(45, 296);
     this.btnDisciplinaryAction.Name = "btnDisciplinaryAction";
     this.btnDisciplinaryAction.Size = new System.Drawing.Size(222, 42);
     this.btnDisciplinaryAction.TabIndex = 6;
     this.btnDisciplinaryAction.Text = "Deciplinary Action";
     this.btnDisciplinaryAction.UseVisualStyleBackColor = false;
     this.btnDisciplinaryAction.Click += new System.EventHandler(this.btnDisciplinaryAction_Click);
     //
     // cbxDeciplinaryAction
     //
     this.cbxDeciplinaryAction.AutoSize = true;
     this.cbxDeciplinaryAction.Location = new System.Drawing.Point(17, 310);
     this.cbxDeciplinaryAction.Name = "cbxDeciplinaryAction";
     this.cbxDeciplinaryAction.Size = new System.Drawing.Size(15, 14);
     this.cbxDeciplinaryAction.TabIndex = 5;
     this.cbxDeciplinaryAction.UseVisualStyleBackColor = true;
     //
     // btnLeaveRequest
     //
     this.btnLeaveRequest.BackColor = System.Drawing.Color.Teal;
     this.btnLeaveRequest.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.btnLeaveRequest.Font = new System.Drawing.Font("Calibri", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btnLeaveRequest.ForeColor = System.Drawing.SystemColors.ControlLightLight;
     this.btnLeaveRequest.Location = new System.Drawing.Point(45, 248);
     this.btnLeaveRequest.Name = "btnLeaveRequest";
     this.btnLeaveRequest.Size = new System.Drawing.Size(222, 42);
     this.btnLeaveRequest.TabIndex = 4;
     this.btnLeaveRequest.Text = "Leave Request";
     this.btnLeaveRequest.UseVisualStyleBackColor = false;
     this.btnLeaveRequest.Click += new System.EventHandler(this.btnLeaveRequest_Click);
     //
     // cbxLeaveRequest
     //
     this.cbxLeaveRequest.AutoSize = true;
     this.cbxLeaveRequest.Location = new System.Drawing.Point(17, 262);
     this.cbxLeaveRequest.Name = "cbxLeaveRequest";
     this.cbxLeaveRequest.Size = new System.Drawing.Size(15, 14);
     this.cbxLeaveRequest.TabIndex = 3;
     this.cbxLeaveRequest.UseVisualStyleBackColor = true;
     //
     // btnVisaDetails
     //
     this.btnVisaDetails.BackColor = System.Drawing.Color.Teal;
     this.btnVisaDetails.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.btnVisaDetails.Font = new System.Drawing.Font("Calibri", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btnVisaDetails.ForeColor = System.Drawing.SystemColors.ControlLightLight;
     this.btnVisaDetails.Location = new System.Drawing.Point(45, 200);
     this.btnVisaDetails.Name = "btnVisaDetails";
     this.btnVisaDetails.Size = new System.Drawing.Size(222, 42);
     this.btnVisaDetails.TabIndex = 2;
     this.btnVisaDetails.Text = "Visa Details";
     this.btnVisaDetails.UseVisualStyleBackColor = false;
     this.btnVisaDetails.Click += new System.EventHandler(this.btnVisaDetails_Click);
     //
     // cbxVisaDetails
     //
     this.cbxVisaDetails.AutoSize = true;
     this.cbxVisaDetails.Location = new System.Drawing.Point(17, 214);
     this.cbxVisaDetails.Name = "cbxVisaDetails";
     this.cbxVisaDetails.Size = new System.Drawing.Size(15, 14);
     this.cbxVisaDetails.TabIndex = 1;
     this.cbxVisaDetails.UseVisualStyleBackColor = true;
     //
     // btnEditDetails
     //
     this.btnEditDetails.BackColor = System.Drawing.Color.Teal;
     this.btnEditDetails.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.btnEditDetails.Font = new System.Drawing.Font("Calibri", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btnEditDetails.ForeColor = System.Drawing.SystemColors.ControlLightLight;
     this.btnEditDetails.Location = new System.Drawing.Point(5, 0);
     this.btnEditDetails.Name = "btnEditDetails";
     this.btnEditDetails.Size = new System.Drawing.Size(262, 87);
     this.btnEditDetails.TabIndex = 0;
     this.btnEditDetails.Text = "Edit Details";
     this.btnEditDetails.UseVisualStyleBackColor = false;
     this.btnEditDetails.Click += new System.EventHandler(this.btnEditDetails_Click);
     //
     // imgEmployee
     //
     this.imgEmployee.ImageLocation = "C:\\Users\\Eranga\\Pictures\\FB Cover Photos & Profile Pics\\Google Profile Picture 00" +
     "2.bmp";
     this.imgEmployee.Location = new System.Drawing.Point(457, 14);
     this.imgEmployee.Name = "imgEmployee";
     this.imgEmployee.Size = new System.Drawing.Size(150, 154);
     this.imgEmployee.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
     this.imgEmployee.TabIndex = 0;
     this.imgEmployee.TabStop = false;
     //
     // flowLayoutPanel
     //
     this.flowLayoutPanel.AutoScroll = true;
     this.flowLayoutPanel.Controls.Add(this.panel1);
     this.flowLayoutPanel.Controls.Add(this.panel9);
     this.flowLayoutPanel.Controls.Add(this.panel12);
     this.flowLayoutPanel.Controls.Add(this.tabControl1);
     this.flowLayoutPanel.Controls.Add(this.panel6);
     this.flowLayoutPanel.Controls.Add(this.tabControl2);
     this.flowLayoutPanel.Controls.Add(this.panel7);
     this.flowLayoutPanel.Controls.Add(this.tabControl3);
     this.flowLayoutPanel.Controls.Add(this.panel8);
     this.flowLayoutPanel.Controls.Add(this.tabControl4);
     this.flowLayoutPanel.Controls.Add(this.panel11);
     this.flowLayoutPanel.Controls.Add(this.panel10);
     this.flowLayoutPanel.FlowDirection = System.Windows.Forms.FlowDirection.TopDown;
     this.flowLayoutPanel.Location = new System.Drawing.Point(284, 61);
     this.flowLayoutPanel.Name = "flowLayoutPanel";
     this.flowLayoutPanel.Size = new System.Drawing.Size(1076, 626);
     this.flowLayoutPanel.TabIndex = 7;
     this.flowLayoutPanel.WrapContents = false;
     //
     // panel1
     //
     this.panel1.BackColor = System.Drawing.Color.LightGray;
     this.panel1.Controls.Add(this.label4);
     this.panel1.Controls.Add(this.employee_nic);
     this.panel1.Controls.Add(this.label3);
     this.panel1.Controls.Add(this.employee_name);
     this.panel1.Controls.Add(this.label2);
     this.panel1.Controls.Add(this.employee_no);
     this.panel1.Location = new System.Drawing.Point(3, 3);
     this.panel1.Name = "panel1";
     this.panel1.Size = new System.Drawing.Size(1049, 78);
     this.panel1.TabIndex = 0;
     //
     // label4
     //
     this.label4.AutoSize = true;
     this.label4.Font = new System.Drawing.Font("Calibri", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label4.ForeColor = System.Drawing.SystemColors.ActiveCaptionText;
     this.label4.Location = new System.Drawing.Point(765, 23);
     this.label4.Name = "label4";
     this.label4.Size = new System.Drawing.Size(104, 23);
     this.label4.TabIndex = 10;
     this.label4.Text = "ජා.හැ. අංකය";
     //
     // employee_nic
     //
     this.employee_nic.Font = new System.Drawing.Font("Microsoft Sans Serif", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.employee_nic.FormattingEnabled = true;
     this.employee_nic.Location = new System.Drawing.Point(875, 20);
     this.employee_nic.Name = "employee_nic";
     this.employee_nic.Size = new System.Drawing.Size(150, 32);
     this.employee_nic.TabIndex = 11;
     //
     // label3
     //
     this.label3.AutoSize = true;
     this.label3.Font = new System.Drawing.Font("Calibri", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label3.ForeColor = System.Drawing.SystemColors.ActiveCaptionText;
     this.label3.Location = new System.Drawing.Point(359, 23);
     this.label3.Name = "label3";
     this.label3.Size = new System.Drawing.Size(38, 23);
     this.label3.TabIndex = 8;
     this.label3.Text = "නම";
     //
     // employee_name
     //
     this.employee_name.Font = new System.Drawing.Font("Microsoft Sans Serif", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.employee_name.FormattingEnabled = true;
     this.employee_name.Location = new System.Drawing.Point(403, 20);
     this.employee_name.Name = "employee_name";
     this.employee_name.Size = new System.Drawing.Size(293, 32);
     this.employee_name.TabIndex = 9;
     //
     // label2
     //
     this.label2.AutoSize = true;
     this.label2.Font = new System.Drawing.Font("Calibri", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label2.ForeColor = System.Drawing.SystemColors.ActiveCaptionText;
     this.label2.Location = new System.Drawing.Point(20, 23);
     this.label2.Name = "label2";
     this.label2.Size = new System.Drawing.Size(110, 23);
     this.label2.TabIndex = 6;
     this.label2.Text = "සේවක අංකය";
     //
     // employee_no
     //
     this.employee_no.Font = new System.Drawing.Font("Microsoft Sans Serif", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.employee_no.FormattingEnabled = true;
     this.employee_no.Location = new System.Drawing.Point(136, 20);
     this.employee_no.Name = "employee_no";
     this.employee_no.Size = new System.Drawing.Size(150, 32);
     this.employee_no.TabIndex = 7;
     this.employee_no.SelectedIndexChanged += new System.EventHandler(this.employee_no_SelectedIndexChanged);
     //
     // panel9
     //
     this.panel9.BackColor = System.Drawing.Color.LightGray;
     this.panel9.Controls.Add(this.label17);
     this.panel9.Location = new System.Drawing.Point(3, 87);
     this.panel9.Name = "panel9";
     this.panel9.Size = new System.Drawing.Size(1049, 42);
     this.panel9.TabIndex = 14;
     //
     // label17
     //
     this.label17.AutoSize = true;
     this.label17.Font = new System.Drawing.Font("Microsoft Sans Serif", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label17.ForeColor = System.Drawing.SystemColors.ActiveCaptionText;
     this.label17.Location = new System.Drawing.Point(450, 9);
     this.label17.Name = "label17";
     this.label17.Size = new System.Drawing.Size(168, 24);
     this.label17.TabIndex = 6;
     this.label17.Text = "පෞද්ගලික තොරතුරු";
     //
     // panel12
     //
     this.panel12.BackColor = System.Drawing.SystemColors.ControlLightLight;
     this.panel12.Controls.Add(this.imgEmployee);
     this.panel12.Location = new System.Drawing.Point(3, 135);
     this.panel12.Name = "panel12";
     this.panel12.Size = new System.Drawing.Size(1049, 191);
     this.panel12.TabIndex = 15;
     //
     // tabControl1
     //
     this.tabControl1.Controls.Add(this.tabPage1);
     this.tabControl1.Controls.Add(this.tabPage2);
     this.tabControl1.Controls.Add(this.tabPage3);
     this.tabControl1.Controls.Add(this.tabPage4);
     this.tabControl1.Controls.Add(this.tabPage5);
     this.tabControl1.Font = new System.Drawing.Font("Calibri", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.tabControl1.ItemSize = new System.Drawing.Size(300, 30);
     this.tabControl1.Location = new System.Drawing.Point(3, 332);
     this.tabControl1.Name = "tabControl1";
     this.tabControl1.SelectedIndex = 0;
     this.tabControl1.Size = new System.Drawing.Size(1049, 708);
     this.tabControl1.TabIndex = 15;
     //
     // tabPage1
     //
     this.tabPage1.BackColor = System.Drawing.Color.White;
     this.tabPage1.Controls.Add(this.marry_date);
     this.tabPage1.Controls.Add(this.dob_date);
     this.tabPage1.Controls.Add(this.label21);
     this.tabPage1.Controls.Add(this.blood_group);
     this.tabPage1.Controls.Add(this.label18);
     this.tabPage1.Controls.Add(this.religion);
     this.tabPage1.Controls.Add(this.date_issued);
     this.tabPage1.Controls.Add(this.old_employee_no);
     this.tabPage1.Controls.Add(this.place_of_birth);
     this.tabPage1.Controls.Add(this.initials);
     this.tabPage1.Controls.Add(this.first_name);
     this.tabPage1.Controls.Add(this.last_name);
     this.tabPage1.Controls.Add(this.nic_no);
     this.tabPage1.Controls.Add(this.nationality);
     this.tabPage1.Controls.Add(this.epf_no);
     this.tabPage1.Controls.Add(this.txt_em_no);
     this.tabPage1.Controls.Add(this.label22);
     this.tabPage1.Controls.Add(this.label23);
     this.tabPage1.Controls.Add(this.label24);
     this.tabPage1.Controls.Add(this.action_status);
     this.tabPage1.Controls.Add(this.married);
     this.tabPage1.Controls.Add(this.label25);
     this.tabPage1.Controls.Add(this.label26);
     this.tabPage1.Controls.Add(this.label27);
     this.tabPage1.Controls.Add(this.label28);
     this.tabPage1.Controls.Add(this.label29);
     this.tabPage1.Controls.Add(this.label30);
     this.tabPage1.Controls.Add(this.occupation);
     this.tabPage1.Controls.Add(this.employee_type);
     this.tabPage1.Controls.Add(this.label31);
     this.tabPage1.Controls.Add(this.label32);
     this.tabPage1.Controls.Add(this.label33);
     this.tabPage1.Controls.Add(this.label34);
     this.tabPage1.Controls.Add(this.salutation);
     this.tabPage1.Controls.Add(this.label35);
     this.tabPage1.Controls.Add(this.label36);
     this.tabPage1.Controls.Add(this.label37);
     this.tabPage1.Font = new System.Drawing.Font("Calibri", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.tabPage1.Location = new System.Drawing.Point(4, 34);
     this.tabPage1.Name = "tabPage1";
     this.tabPage1.Padding = new System.Windows.Forms.Padding(3);
     this.tabPage1.Size = new System.Drawing.Size(1041, 670);
     this.tabPage1.TabIndex = 0;
     this.tabPage1.Text = "Personal Details";
     //
     // marry_date
     //
     this.marry_date.Location = new System.Drawing.Point(243, 490);
     this.marry_date.Name = "marry_date";
     this.marry_date.Size = new System.Drawing.Size(331, 33);
     this.marry_date.TabIndex = 59;
     //
     // dob_date
     //
     this.dob_date.Location = new System.Drawing.Point(243, 422);
     this.dob_date.Name = "dob_date";
     this.dob_date.Size = new System.Drawing.Size(331, 33);
     this.dob_date.TabIndex = 58;
     //
     // label21
     //
     this.label21.AutoSize = true;
     this.label21.Location = new System.Drawing.Point(681, 569);
     this.label21.Name = "label21";
     this.label21.Size = new System.Drawing.Size(97, 26);
     this.label21.TabIndex = 51;
     this.label21.Text = "ලේ වර්ගය";
     //
     // blood_group
     //
     this.blood_group.FormattingEnabled = true;
     this.blood_group.Items.AddRange(new object[] {
     "2020",
     "2019",
     "2018",
     "2017",
     "2016",
     "2015",
     "2014",
     "2013",
     "2012",
     "2011",
     "2010",
     "2009",
     "2008",
     "2007",
     "2006",
     "2005",
     "2004",
     "2003",
     "2002",
     "2001",
     "2000",
     "1999",
     "1998",
     "1997",
     "1996",
     "1995",
     "1994",
     "1993",
     "1992",
     "1991",
     "1990",
     "1989",
     "1988",
     "1987",
     "1986",
     "1985",
     "1984",
     "1983",
     "1982",
     "1981",
     "1980",
     "1979",
     "1978",
     "1977",
     "1976",
     "1975",
     "1974",
     "1973",
     "1972",
     "1971",
     "1970",
     "1969",
     "1968",
     "1967",
     "1966",
     "1965",
     "1964",
     "1963",
     "1962",
     "1961",
     "1960",
     "1959",
     "1958",
     "1957",
     "1956",
     "1955",
     "1954",
     "1953",
     "1952",
     "1951",
     "1950",
     "1949",
     "1948",
     "1947",
     "1946"});
     this.blood_group.Location = new System.Drawing.Point(788, 566);
     this.blood_group.Name = "blood_group";
     this.blood_group.Size = new System.Drawing.Size(200, 34);
     this.blood_group.TabIndex = 50;
     //
     // label18
     //
     this.label18.AutoSize = true;
     this.label18.Location = new System.Drawing.Point(711, 422);
     this.label18.Name = "label18";
     this.label18.Size = new System.Drawing.Size(61, 26);
     this.label18.TabIndex = 49;
     this.label18.Text = "ආගම";
     //
     // religion
     //
     this.religion.Location = new System.Drawing.Point(785, 419);
     this.religion.Name = "religion";
     this.religion.Size = new System.Drawing.Size(200, 33);
     this.religion.TabIndex = 48;
     //
     // date_issued
     //
     this.date_issued.Location = new System.Drawing.Point(785, 380);
     this.date_issued.Name = "date_issued";
     this.date_issued.Size = new System.Drawing.Size(200, 33);
     this.date_issued.TabIndex = 41;
     //
     // old_employee_no
     //
     this.old_employee_no.Location = new System.Drawing.Point(785, 68);
     this.old_employee_no.Name = "old_employee_no";
     this.old_employee_no.Size = new System.Drawing.Size(200, 33);
     this.old_employee_no.TabIndex = 29;
     //
     // place_of_birth
     //
     this.place_of_birth.Location = new System.Drawing.Point(785, 458);
     this.place_of_birth.Name = "place_of_birth";
     this.place_of_birth.Size = new System.Drawing.Size(200, 33);
     this.place_of_birth.TabIndex = 27;
     //
     // initials
     //
     this.initials.Location = new System.Drawing.Point(243, 226);
     this.initials.Name = "initials";
     this.initials.Size = new System.Drawing.Size(200, 33);
     this.initials.TabIndex = 24;
     //
     // first_name
     //
     this.first_name.Location = new System.Drawing.Point(243, 265);
     this.first_name.Name = "first_name";
     this.first_name.Size = new System.Drawing.Size(301, 33);
     this.first_name.TabIndex = 23;
     //
     // last_name
     //
     this.last_name.Location = new System.Drawing.Point(243, 304);
     this.last_name.Name = "last_name";
     this.last_name.Size = new System.Drawing.Size(301, 33);
     this.last_name.TabIndex = 22;
     //
     // nic_no
     //
     this.nic_no.Location = new System.Drawing.Point(243, 343);
     this.nic_no.Name = "nic_no";
     this.nic_no.Size = new System.Drawing.Size(200, 33);
     this.nic_no.TabIndex = 15;
     //
     // nationality
     //
     this.nationality.Location = new System.Drawing.Point(243, 382);
     this.nationality.Name = "nationality";
     this.nationality.Size = new System.Drawing.Size(200, 33);
     this.nationality.TabIndex = 14;
     //
     // epf_no
     //
     this.epf_no.Location = new System.Drawing.Point(243, 108);
     this.epf_no.Name = "epf_no";
     this.epf_no.Size = new System.Drawing.Size(200, 33);
     this.epf_no.TabIndex = 7;
     //
     // txt_em_no
     //
     this.txt_em_no.Location = new System.Drawing.Point(243, 30);
     this.txt_em_no.Name = "txt_em_no";
     this.txt_em_no.Size = new System.Drawing.Size(201, 33);
     this.txt_em_no.TabIndex = 5;
     //
     // label22
     //
     this.label22.AutoSize = true;
     this.label22.Location = new System.Drawing.Point(111, 495);
     this.label22.Name = "label22";
     this.label22.Size = new System.Drawing.Size(126, 26);
     this.label22.TabIndex = 44;
     this.label22.Text = "විවාහ වූ දිනය";
     //
     // label23
     //
     this.label23.AutoSize = true;
     this.label23.Location = new System.Drawing.Point(625, 383);
     this.label23.Name = "label23";
     this.label23.Size = new System.Drawing.Size(146, 26);
     this.label23.TabIndex = 42;
     this.label23.Text = "නිකුත් කල දිනය";
     //
     // label24
     //
     this.label24.AutoSize = true;
     this.label24.Location = new System.Drawing.Point(84, 532);
     this.label24.Name = "label24";
     this.label24.Size = new System.Drawing.Size(154, 26);
     this.label24.TabIndex = 40;
     this.label24.Text = "ක්‍රියාකාරී තත්වය";
     //
     // action_status
     //
     this.action_status.FormattingEnabled = true;
     this.action_status.Items.AddRange(new object[] {
     "2020",
     "2019",
     "2018",
     "2017",
     "2016",
     "2015",
     "2014",
     "2013",
     "2012",
     "2011",
     "2010",
     "2009",
     "2008",
     "2007",
     "2006",
     "2005",
     "2004",
     "2003",
     "2002",
     "2001",
     "2000",
     "1999",
     "1998",
     "1997",
     "1996",
     "1995",
     "1994",
     "1993",
     "1992",
     "1991",
     "1990",
     "1989",
     "1988",
     "1987",
     "1986",
     "1985",
     "1984",
     "1983",
     "1982",
     "1981",
     "1980",
     "1979",
     "1978",
     "1977",
     "1976",
     "1975",
     "1974",
     "1973",
     "1972",
     "1971",
     "1970",
     "1969",
     "1968",
     "1967",
     "1966",
     "1965",
     "1964",
     "1963",
     "1962",
     "1961",
     "1960",
     "1959",
     "1958",
     "1957",
     "1956",
     "1955",
     "1954",
     "1953",
     "1952",
     "1951",
     "1950",
     "1949",
     "1948",
     "1947",
     "1946"});
     this.action_status.Location = new System.Drawing.Point(243, 529);
     this.action_status.Name = "action_status";
     this.action_status.Size = new System.Drawing.Size(204, 34);
     this.action_status.TabIndex = 39;
     //
     // married
     //
     this.married.AutoSize = true;
     this.married.CheckAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.married.Location = new System.Drawing.Point(155, 460);
     this.married.Name = "married";
     this.married.Size = new System.Drawing.Size(104, 30);
     this.married.TabIndex = 38;
     this.married.Text = "විවාහක ";
     this.married.UseVisualStyleBackColor = true;
     //
     // label25
     //
     this.label25.AutoSize = true;
     this.label25.Location = new System.Drawing.Point(171, 385);
     this.label25.Name = "label25";
     this.label25.Size = new System.Drawing.Size(64, 26);
     this.label25.TabIndex = 31;
     this.label25.Text = "ජාතිය";
     //
     // label26
     //
     this.label26.AutoSize = true;
     this.label26.Location = new System.Drawing.Point(588, 71);
     this.label26.Name = "label26";
     this.label26.Size = new System.Drawing.Size(184, 26);
     this.label26.TabIndex = 30;
     this.label26.Text = "පැරණි සේවක අංකය";
     //
     // label27
     //
     this.label27.AutoSize = true;
     this.label27.Location = new System.Drawing.Point(647, 461);
     this.label27.Name = "label27";
     this.label27.Size = new System.Drawing.Size(127, 26);
     this.label27.TabIndex = 28;
     this.label27.Text = "උපන් ස්ථානය";
     //
     // label28
     //
     this.label28.AutoSize = true;
     this.label28.Location = new System.Drawing.Point(160, 268);
     this.label28.Name = "label28";
     this.label28.Size = new System.Drawing.Size(75, 26);
     this.label28.TabIndex = 26;
     this.label28.Text = "මුල් නම";
     //
     // label29
     //
     this.label29.AutoSize = true;
     this.label29.Location = new System.Drawing.Point(123, 307);
     this.label29.Name = "label29";
     this.label29.Size = new System.Drawing.Size(112, 26);
     this.label29.TabIndex = 25;
     this.label29.Text = "අවසාන නම";
     //
     // label30
     //
     this.label30.AutoSize = true;
     this.label30.Location = new System.Drawing.Point(157, 189);
     this.label30.Name = "label30";
     this.label30.Size = new System.Drawing.Size(80, 26);
     this.label30.TabIndex = 21;
     this.label30.Text = "වෘත්තීය";
     //
     // occupation
     //
     this.occupation.FormattingEnabled = true;
     this.occupation.Location = new System.Drawing.Point(243, 186);
     this.occupation.Name = "occupation";
     this.occupation.Size = new System.Drawing.Size(200, 34);
     this.occupation.TabIndex = 20;
     //
     // employee_type
     //
     this.employee_type.FormattingEnabled = true;
     this.employee_type.Location = new System.Drawing.Point(243, 69);
     this.employee_type.Name = "employee_type";
     this.employee_type.Size = new System.Drawing.Size(200, 34);
     this.employee_type.TabIndex = 19;
     //
     // label31
     //
     this.label31.AutoSize = true;
     this.label31.Location = new System.Drawing.Point(135, 425);
     this.label31.Name = "label31";
     this.label31.Size = new System.Drawing.Size(101, 26);
     this.label31.TabIndex = 16;
     this.label31.Text = "උපන් දිනය";
     //
     // label32
     //
     this.label32.AutoSize = true;
     this.label32.Location = new System.Drawing.Point(10, 346);
     this.label32.Name = "label32";
     this.label32.Size = new System.Drawing.Size(225, 26);
     this.label32.TabIndex = 13;
     this.label32.Text = "ජාතික හැඳුනුම්පත් අංකය";
     //
     // label33
     //
     this.label33.AutoSize = true;
     this.label33.Location = new System.Drawing.Point(143, 229);
     this.label33.Name = "label33";
     this.label33.Size = new System.Drawing.Size(92, 26);
     this.label33.TabIndex = 11;
     this.label33.Text = "මුල අකුරු";
     //
     // label34
     //
     this.label34.AutoSize = true;
     this.label34.Location = new System.Drawing.Point(123, 150);
     this.label34.Name = "label34";
     this.label34.Size = new System.Drawing.Size(114, 26);
     this.label34.TabIndex = 10;
     this.label34.Text = "ආමන්ත්‍රණය";
     //
     // salutation
     //
     this.salutation.FormattingEnabled = true;
     this.salutation.Location = new System.Drawing.Point(243, 147);
     this.salutation.Name = "salutation";
     this.salutation.Size = new System.Drawing.Size(201, 34);
     this.salutation.TabIndex = 9;
     //
     // label35
     //
     this.label35.AutoSize = true;
     this.label35.Location = new System.Drawing.Point(105, 111);
     this.label35.Name = "label35";
     this.label35.Size = new System.Drawing.Size(133, 26);
     this.label35.TabIndex = 6;
     this.label35.Text = "ඊ.පි.එෆ් අංකය";
     //
     // label36
     //
     this.label36.AutoSize = true;
     this.label36.Location = new System.Drawing.Point(54, 72);
     this.label36.Name = "label36";
     this.label36.Size = new System.Drawing.Size(184, 26);
     this.label36.TabIndex = 4;
     this.label36.Text = "සේවකයාගේ  වර්ගය";
     //
     // label37
     //
     this.label37.AutoSize = true;
     this.label37.Location = new System.Drawing.Point(105, 33);
     this.label37.Name = "label37";
     this.label37.Size = new System.Drawing.Size(132, 26);
     this.label37.TabIndex = 0;
     this.label37.Text = " සේවක අංකය";
     //
     // tabPage2
     //
     this.tabPage2.BackColor = System.Drawing.Color.White;
     this.tabPage2.Controls.Add(this.label38);
     this.tabPage2.Controls.Add(this.label39);
     this.tabPage2.Controls.Add(this.cur_email);
     this.tabPage2.Controls.Add(this.cur_fax);
     this.tabPage2.Controls.Add(this.cur_mobile);
     this.tabPage2.Controls.Add(this.cur_teleophone);
     this.tabPage2.Controls.Add(this.cur_city);
     this.tabPage2.Controls.Add(this.cur_address);
     this.tabPage2.Controls.Add(this.cur_home_no);
     this.tabPage2.Controls.Add(this.perm_email);
     this.tabPage2.Controls.Add(this.perm_fax);
     this.tabPage2.Controls.Add(this.perm_mobile);
     this.tabPage2.Controls.Add(this.perm_teleophone);
     this.tabPage2.Controls.Add(this.perm_city);
     this.tabPage2.Controls.Add(this.perm_address);
     this.tabPage2.Controls.Add(this.perm_home_no);
     this.tabPage2.Controls.Add(this.label40);
     this.tabPage2.Controls.Add(this.label41);
     this.tabPage2.Controls.Add(this.label42);
     this.tabPage2.Controls.Add(this.label43);
     this.tabPage2.Controls.Add(this.cur_polling_division);
     this.tabPage2.Controls.Add(this.label44);
     this.tabPage2.Controls.Add(this.cur_grama);
     this.tabPage2.Controls.Add(this.label45);
     this.tabPage2.Controls.Add(this.cur_uc);
     this.tabPage2.Controls.Add(this.label46);
     this.tabPage2.Controls.Add(this.cur_district);
     this.tabPage2.Controls.Add(this.label47);
     this.tabPage2.Controls.Add(this.cur_province);
     this.tabPage2.Controls.Add(this.label48);
     this.tabPage2.Controls.Add(this.label49);
     this.tabPage2.Controls.Add(this.label50);
     this.tabPage2.Controls.Add(this.label51);
     this.tabPage2.Controls.Add(this.label52);
     this.tabPage2.Controls.Add(this.label53);
     this.tabPage2.Controls.Add(this.label54);
     this.tabPage2.Controls.Add(this.label55);
     this.tabPage2.Controls.Add(this.label56);
     this.tabPage2.Controls.Add(this.perm_polling_division);
     this.tabPage2.Controls.Add(this.label57);
     this.tabPage2.Controls.Add(this.perm_grama);
     this.tabPage2.Controls.Add(this.label58);
     this.tabPage2.Controls.Add(this.perm_uc);
     this.tabPage2.Controls.Add(this.label59);
     this.tabPage2.Controls.Add(this.perm_district);
     this.tabPage2.Controls.Add(this.label60);
     this.tabPage2.Controls.Add(this.perm_province);
     this.tabPage2.Controls.Add(this.label61);
     this.tabPage2.Controls.Add(this.label62);
     this.tabPage2.Controls.Add(this.label63);
     this.tabPage2.Location = new System.Drawing.Point(4, 34);
     this.tabPage2.Name = "tabPage2";
     this.tabPage2.Padding = new System.Windows.Forms.Padding(3);
     this.tabPage2.Size = new System.Drawing.Size(1041, 670);
     this.tabPage2.TabIndex = 1;
     this.tabPage2.Text = "Contact Details";
     //
     // label38
     //
     this.label38.AutoSize = true;
     this.label38.Location = new System.Drawing.Point(685, 20);
     this.label38.Name = "label38";
     this.label38.Size = new System.Drawing.Size(180, 26);
     this.label38.TabIndex = 51;
     this.label38.Text = "වර්තමාන තොරතුරු";
     //
     // label39
     //
     this.label39.AutoSize = true;
     this.label39.Location = new System.Drawing.Point(541, 545);
     this.label39.Name = "label39";
     this.label39.Size = new System.Drawing.Size(135, 26);
     this.label39.TabIndex = 50;
     this.label39.Text = "ඊ-මේල් ලිපිනය";
     //
     // cur_email
     //
     this.cur_email.Location = new System.Drawing.Point(690, 542);
     this.cur_email.Name = "cur_email";
     this.cur_email.Size = new System.Drawing.Size(200, 33);
     this.cur_email.TabIndex = 49;
     //
     // cur_fax
     //
     this.cur_fax.Location = new System.Drawing.Point(690, 503);
     this.cur_fax.Name = "cur_fax";
     this.cur_fax.Size = new System.Drawing.Size(200, 33);
     this.cur_fax.TabIndex = 47;
     //
     // cur_mobile
     //
     this.cur_mobile.Location = new System.Drawing.Point(690, 464);
     this.cur_mobile.Name = "cur_mobile";
     this.cur_mobile.Size = new System.Drawing.Size(200, 33);
     this.cur_mobile.TabIndex = 45;
     //
     // cur_teleophone
     //
     this.cur_teleophone.Location = new System.Drawing.Point(690, 425);
     this.cur_teleophone.Name = "cur_teleophone";
     this.cur_teleophone.Size = new System.Drawing.Size(200, 33);
     this.cur_teleophone.TabIndex = 43;
     //
     // cur_city
     //
     this.cur_city.Location = new System.Drawing.Point(690, 185);
     this.cur_city.Name = "cur_city";
     this.cur_city.Size = new System.Drawing.Size(200, 33);
     this.cur_city.TabIndex = 31;
     //
     // cur_address
     //
     this.cur_address.Location = new System.Drawing.Point(690, 97);
     this.cur_address.Multiline = true;
     this.cur_address.Name = "cur_address";
     this.cur_address.Size = new System.Drawing.Size(350, 82);
     this.cur_address.TabIndex = 29;
     //
     // cur_home_no
     //
     this.cur_home_no.Location = new System.Drawing.Point(690, 58);
     this.cur_home_no.Name = "cur_home_no";
     this.cur_home_no.Size = new System.Drawing.Size(200, 33);
     this.cur_home_no.TabIndex = 27;
     //
     // perm_email
     //
     this.perm_email.Location = new System.Drawing.Point(234, 542);
     this.perm_email.Name = "perm_email";
     this.perm_email.Size = new System.Drawing.Size(200, 33);
     this.perm_email.TabIndex = 24;
     //
     // perm_fax
     //
     this.perm_fax.Location = new System.Drawing.Point(234, 503);
     this.perm_fax.Name = "perm_fax";
     this.perm_fax.Size = new System.Drawing.Size(200, 33);
     this.perm_fax.TabIndex = 22;
     //
     // perm_mobile
     //
     this.perm_mobile.Location = new System.Drawing.Point(233, 463);
     this.perm_mobile.Name = "perm_mobile";
     this.perm_mobile.Size = new System.Drawing.Size(200, 33);
     this.perm_mobile.TabIndex = 20;
     //
     // perm_teleophone
     //
     this.perm_teleophone.Location = new System.Drawing.Point(233, 424);
     this.perm_teleophone.Name = "perm_teleophone";
     this.perm_teleophone.Size = new System.Drawing.Size(200, 33);
     this.perm_teleophone.TabIndex = 18;
     //
     // perm_city
     //
     this.perm_city.Location = new System.Drawing.Point(233, 185);
     this.perm_city.Name = "perm_city";
     this.perm_city.Size = new System.Drawing.Size(200, 33);
     this.perm_city.TabIndex = 6;
     //
     // perm_address
     //
     this.perm_address.Location = new System.Drawing.Point(233, 97);
     this.perm_address.Multiline = true;
     this.perm_address.Name = "perm_address";
     this.perm_address.Size = new System.Drawing.Size(350, 82);
     this.perm_address.TabIndex = 2;
     //
     // perm_home_no
     //
     this.perm_home_no.Location = new System.Drawing.Point(233, 58);
     this.perm_home_no.Name = "perm_home_no";
     this.perm_home_no.Size = new System.Drawing.Size(200, 33);
     this.perm_home_no.TabIndex = 0;
     //
     // label40
     //
     this.label40.AutoSize = true;
     this.label40.Location = new System.Drawing.Point(555, 506);
     this.label40.Name = "label40";
     this.label40.Size = new System.Drawing.Size(121, 26);
     this.label40.TabIndex = 48;
     this.label40.Text = "ෆැක්ස් අංකය";
     //
     // label41
     //
     this.label41.AutoSize = true;
     this.label41.Location = new System.Drawing.Point(478, 467);
     this.label41.Name = "label41";
     this.label41.Size = new System.Drawing.Size(197, 26);
     this.label41.TabIndex = 46;
     this.label41.Text = "ජංගම දුරකථන අංකය";
     //
     // label42
     //
     this.label42.AutoSize = true;
     this.label42.Location = new System.Drawing.Point(535, 428);
     this.label42.Name = "label42";
     this.label42.Size = new System.Drawing.Size(140, 26);
     this.label42.TabIndex = 44;
     this.label42.Text = "දුරකථන අංකය";
     //
     // label43
     //
     this.label43.AutoSize = true;
     this.label43.Location = new System.Drawing.Point(475, 388);
     this.label43.Name = "label43";
     this.label43.Size = new System.Drawing.Size(200, 26);
     this.label43.TabIndex = 42;
     this.label43.Text = "මැතිවරණ කොට්ඨාශය";
     //
     // cur_polling_division
     //
     this.cur_polling_division.FormattingEnabled = true;
     this.cur_polling_division.Location = new System.Drawing.Point(690, 385);
     this.cur_polling_division.Name = "cur_polling_division";
     this.cur_polling_division.Size = new System.Drawing.Size(200, 34);
     this.cur_polling_division.TabIndex = 41;
     //
     // label44
     //
     this.label44.AutoSize = true;
     this.label44.Location = new System.Drawing.Point(511, 348);
     this.label44.Name = "label44";
     this.label44.Size = new System.Drawing.Size(164, 26);
     this.label44.TabIndex = 40;
     this.label44.Text = "ග්‍රාම නිලධාරී වසම";
     //
     // cur_grama
     //
     this.cur_grama.FormattingEnabled = true;
     this.cur_grama.Location = new System.Drawing.Point(690, 345);
     this.cur_grama.Name = "cur_grama";
     this.cur_grama.Size = new System.Drawing.Size(200, 34);
     this.cur_grama.TabIndex = 39;
     //
     // label45
     //
     this.label45.AutoSize = true;
     this.label45.Location = new System.Drawing.Point(498, 308);
     this.label45.Name = "label45";
     this.label45.Size = new System.Drawing.Size(177, 26);
     this.label45.TabIndex = 38;
     this.label45.Text = "ප්‍රා. ලේ. කොට්ඨාශය";
     //
     // cur_uc
     //
     this.cur_uc.FormattingEnabled = true;
     this.cur_uc.Location = new System.Drawing.Point(690, 305);
     this.cur_uc.Name = "cur_uc";
     this.cur_uc.Size = new System.Drawing.Size(200, 34);
     this.cur_uc.TabIndex = 37;
     //
     // label46
     //
     this.label46.AutoSize = true;
     this.label46.Location = new System.Drawing.Point(572, 268);
     this.label46.Name = "label46";
     this.label46.Size = new System.Drawing.Size(104, 26);
     this.label46.TabIndex = 36;
     this.label46.Text = "දිස්ත්‍රික්කය";
     //
     // cur_district
     //
     this.cur_district.FormattingEnabled = true;
     this.cur_district.Location = new System.Drawing.Point(690, 265);
     this.cur_district.Name = "cur_district";
     this.cur_district.Size = new System.Drawing.Size(200, 34);
     this.cur_district.TabIndex = 35;
     //
     // label47
     //
     this.label47.AutoSize = true;
     this.label47.Location = new System.Drawing.Point(613, 228);
     this.label47.Name = "label47";
     this.label47.Size = new System.Drawing.Size(63, 26);
     this.label47.TabIndex = 34;
     this.label47.Text = "පළාත";
     //
     // cur_province
     //
     this.cur_province.FormattingEnabled = true;
     this.cur_province.Location = new System.Drawing.Point(690, 225);
     this.cur_province.Name = "cur_province";
     this.cur_province.Size = new System.Drawing.Size(200, 34);
     this.cur_province.TabIndex = 33;
     //
     // label48
     //
     this.label48.AutoSize = true;
     this.label48.Location = new System.Drawing.Point(604, 188);
     this.label48.Name = "label48";
     this.label48.Size = new System.Drawing.Size(71, 26);
     this.label48.TabIndex = 32;
     this.label48.Text = "නගරය";
     //
     // label49
     //
     this.label49.AutoSize = true;
     this.label49.Location = new System.Drawing.Point(605, 100);
     this.label49.Name = "label49";
     this.label49.Size = new System.Drawing.Size(70, 26);
     this.label49.TabIndex = 30;
     this.label49.Text = "ලිපිනය";
     //
     // label50
     //
     this.label50.AutoSize = true;
     this.label50.Location = new System.Drawing.Point(549, 61);
     this.label50.Name = "label50";
     this.label50.Size = new System.Drawing.Size(126, 26);
     this.label50.TabIndex = 28;
     this.label50.Text = "නිවසේ අංකය";
     //
     // label51
     //
     this.label51.AutoSize = true;
     this.label51.Location = new System.Drawing.Point(233, 20);
     this.label51.Name = "label51";
     this.label51.Size = new System.Drawing.Size(141, 26);
     this.label51.TabIndex = 26;
     this.label51.Text = "ස්ථිර තොරතුරු";
     //
     // label52
     //
     this.label52.AutoSize = true;
     this.label52.Location = new System.Drawing.Point(89, 545);
     this.label52.Name = "label52";
     this.label52.Size = new System.Drawing.Size(135, 26);
     this.label52.TabIndex = 25;
     this.label52.Text = "ඊ-මේල් ලිපිනය";
     //
     // label53
     //
     this.label53.AutoSize = true;
     this.label53.Location = new System.Drawing.Point(103, 506);
     this.label53.Name = "label53";
     this.label53.Size = new System.Drawing.Size(121, 26);
     this.label53.TabIndex = 23;
     this.label53.Text = "ෆැක්ස් අංකය";
     //
     // label54
     //
     this.label54.AutoSize = true;
     this.label54.Location = new System.Drawing.Point(26, 467);
     this.label54.Name = "label54";
     this.label54.Size = new System.Drawing.Size(197, 26);
     this.label54.TabIndex = 21;
     this.label54.Text = "ජංගම දුරකථන අංකය";
     //
     // label55
     //
     this.label55.AutoSize = true;
     this.label55.Location = new System.Drawing.Point(83, 428);
     this.label55.Name = "label55";
     this.label55.Size = new System.Drawing.Size(140, 26);
     this.label55.TabIndex = 19;
     this.label55.Text = "දුරකථන අංකය";
     //
     // label56
     //
     this.label56.AutoSize = true;
     this.label56.Location = new System.Drawing.Point(23, 388);
     this.label56.Name = "label56";
     this.label56.Size = new System.Drawing.Size(200, 26);
     this.label56.TabIndex = 17;
     this.label56.Text = "මැතිවරණ කොට්ඨාශය";
     //
     // perm_polling_division
     //
     this.perm_polling_division.FormattingEnabled = true;
     this.perm_polling_division.Location = new System.Drawing.Point(233, 384);
     this.perm_polling_division.Name = "perm_polling_division";
     this.perm_polling_division.Size = new System.Drawing.Size(200, 34);
     this.perm_polling_division.TabIndex = 16;
     //
     // label57
     //
     this.label57.AutoSize = true;
     this.label57.Location = new System.Drawing.Point(59, 348);
     this.label57.Name = "label57";
     this.label57.Size = new System.Drawing.Size(164, 26);
     this.label57.TabIndex = 15;
     this.label57.Text = "ග්‍රාම නිලධාරී වසම";
     //
     // perm_grama
     //
     this.perm_grama.FormattingEnabled = true;
     this.perm_grama.Location = new System.Drawing.Point(233, 344);
     this.perm_grama.Name = "perm_grama";
     this.perm_grama.Size = new System.Drawing.Size(200, 34);
     this.perm_grama.TabIndex = 14;
     //
     // label58
     //
     this.label58.AutoSize = true;
     this.label58.Location = new System.Drawing.Point(46, 308);
     this.label58.Name = "label58";
     this.label58.Size = new System.Drawing.Size(177, 26);
     this.label58.TabIndex = 13;
     this.label58.Text = "ප්‍රා. ලේ. කොට්ඨාශය";
     //
     // perm_uc
     //
     this.perm_uc.FormattingEnabled = true;
     this.perm_uc.Location = new System.Drawing.Point(233, 304);
     this.perm_uc.Name = "perm_uc";
     this.perm_uc.Size = new System.Drawing.Size(200, 34);
     this.perm_uc.TabIndex = 12;
     //
     // label59
     //
     this.label59.AutoSize = true;
     this.label59.Location = new System.Drawing.Point(120, 268);
     this.label59.Name = "label59";
     this.label59.Size = new System.Drawing.Size(104, 26);
     this.label59.TabIndex = 11;
     this.label59.Text = "දිස්ත්‍රික්කය";
     //
     // perm_district
     //
     this.perm_district.FormattingEnabled = true;
     this.perm_district.Location = new System.Drawing.Point(233, 264);
     this.perm_district.Name = "perm_district";
     this.perm_district.Size = new System.Drawing.Size(200, 34);
     this.perm_district.TabIndex = 10;
     //
     // label60
     //
     this.label60.AutoSize = true;
     this.label60.Location = new System.Drawing.Point(161, 228);
     this.label60.Name = "label60";
     this.label60.Size = new System.Drawing.Size(63, 26);
     this.label60.TabIndex = 9;
     this.label60.Text = "පළාත";
     //
     // perm_province
     //
     this.perm_province.FormattingEnabled = true;
     this.perm_province.ItemHeight = 26;
     this.perm_province.Location = new System.Drawing.Point(233, 224);
     this.perm_province.Name = "perm_province";
     this.perm_province.Size = new System.Drawing.Size(200, 34);
     this.perm_province.TabIndex = 8;
     //
     // label61
     //
     this.label61.AutoSize = true;
     this.label61.Location = new System.Drawing.Point(152, 188);
     this.label61.Name = "label61";
     this.label61.Size = new System.Drawing.Size(71, 26);
     this.label61.TabIndex = 7;
     this.label61.Text = "නගරය";
     //
     // label62
     //
     this.label62.AutoSize = true;
     this.label62.Location = new System.Drawing.Point(153, 100);
     this.label62.Name = "label62";
     this.label62.Size = new System.Drawing.Size(70, 26);
     this.label62.TabIndex = 3;
     this.label62.Text = "ලිපිනය";
     //
     // label63
     //
     this.label63.AutoSize = true;
     this.label63.Location = new System.Drawing.Point(97, 61);
     this.label63.Name = "label63";
     this.label63.Size = new System.Drawing.Size(126, 26);
     this.label63.TabIndex = 1;
     this.label63.Text = "නිවසේ අංකය";
     //
     // tabPage3
     //
     this.tabPage3.Controls.Add(this.depend_date_of_post_date);
     this.tabPage3.Controls.Add(this.depend_medical);
     this.tabPage3.Controls.Add(this.depend_deathade);
     this.tabPage3.Controls.Add(this.label69);
     this.tabPage3.Controls.Add(this.depend_office_tp);
     this.tabPage3.Controls.Add(this.depend_official_address);
     this.tabPage3.Controls.Add(this.depend_full_name);
     this.tabPage3.Controls.Add(this.depend_marriage_certificate);
     this.tabPage3.Controls.Add(this.depend_birth_certificate);
     this.tabPage3.Controls.Add(this.depend_note);
     this.tabPage3.Controls.Add(this.depend_education);
     this.tabPage3.Controls.Add(this.depend_personal_tp);
     this.tabPage3.Controls.Add(this.depend_personal_address);
     this.tabPage3.Controls.Add(this.depend_nic_no);
     this.tabPage3.Controls.Add(this.label68);
     this.tabPage3.Controls.Add(this.label67);
     this.tabPage3.Controls.Add(this.label66);
     this.tabPage3.Controls.Add(this.button2);
     this.tabPage3.Controls.Add(this.button1);
     this.tabPage3.Controls.Add(this.label65);
     this.tabPage3.Controls.Add(this.label64);
     this.tabPage3.Controls.Add(this.label70);
     this.tabPage3.Controls.Add(this.label71);
     this.tabPage3.Controls.Add(this.depend_status);
     this.tabPage3.Controls.Add(this.label72);
     this.tabPage3.Controls.Add(this.label73);
     this.tabPage3.Controls.Add(this.label74);
     this.tabPage3.Controls.Add(this.label75);
     this.tabPage3.Controls.Add(this.label76);
     this.tabPage3.Controls.Add(this.depend_relation);
     this.tabPage3.Controls.Add(this.label77);
     this.tabPage3.Controls.Add(this.depend_salutation);
     this.tabPage3.Location = new System.Drawing.Point(4, 34);
     this.tabPage3.Name = "tabPage3";
     this.tabPage3.Size = new System.Drawing.Size(1041, 670);
     this.tabPage3.TabIndex = 2;
     this.tabPage3.Text = "Dependent Details";
     this.tabPage3.UseVisualStyleBackColor = true;
     //
     // depend_date_of_post_date
     //
     this.depend_date_of_post_date.Location = new System.Drawing.Point(719, 69);
     this.depend_date_of_post_date.Name = "depend_date_of_post_date";
     this.depend_date_of_post_date.Size = new System.Drawing.Size(322, 33);
     this.depend_date_of_post_date.TabIndex = 59;
     //
     // depend_medical
     //
     this.depend_medical.AutoSize = true;
     this.depend_medical.Location = new System.Drawing.Point(930, 257);
     this.depend_medical.Name = "depend_medical";
     this.depend_medical.Size = new System.Drawing.Size(89, 30);
     this.depend_medical.TabIndex = 33;
     this.depend_medical.Text = "වෛද්‍ය";
     this.depend_medical.UseVisualStyleBackColor = true;
     //
     // depend_deathade
     //
     this.depend_deathade.AutoSize = true;
     this.depend_deathade.Location = new System.Drawing.Point(719, 258);
     this.depend_deathade.Name = "depend_deathade";
     this.depend_deathade.Size = new System.Drawing.Size(118, 30);
     this.depend_deathade.TabIndex = 32;
     this.depend_deathade.Text = "මරණාධාර";
     this.depend_deathade.UseVisualStyleBackColor = true;
     //
     // label69
     //
     this.label69.AutoSize = true;
     this.label69.Location = new System.Drawing.Point(581, 112);
     this.label69.Name = "label69";
     this.label69.Size = new System.Drawing.Size(132, 26);
     this.label69.TabIndex = 31;
     this.label69.Text = "කාර්යාලීය දු.අ.";
     //
     // depend_office_tp
     //
     this.depend_office_tp.Location = new System.Drawing.Point(719, 109);
     this.depend_office_tp.Name = "depend_office_tp";
     this.depend_office_tp.Size = new System.Drawing.Size(200, 33);
     this.depend_office_tp.TabIndex = 30;
     //
     // depend_official_address
     //
     this.depend_official_address.Location = new System.Drawing.Point(719, 147);
     this.depend_official_address.Multiline = true;
     this.depend_official_address.Name = "depend_official_address";
     this.depend_official_address.Size = new System.Drawing.Size(300, 99);
     this.depend_official_address.TabIndex = 28;
     //
     // depend_full_name
     //
     this.depend_full_name.Location = new System.Drawing.Point(719, 30);
     this.depend_full_name.Name = "depend_full_name";
     this.depend_full_name.Size = new System.Drawing.Size(200, 33);
     this.depend_full_name.TabIndex = 22;
     //
     // depend_marriage_certificate
     //
     this.depend_marriage_certificate.Location = new System.Drawing.Point(243, 518);
     this.depend_marriage_certificate.Name = "depend_marriage_certificate";
     this.depend_marriage_certificate.Size = new System.Drawing.Size(600, 33);
     this.depend_marriage_certificate.TabIndex = 19;
     //
     // depend_birth_certificate
     //
     this.depend_birth_certificate.Location = new System.Drawing.Point(243, 479);
     this.depend_birth_certificate.Name = "depend_birth_certificate";
     this.depend_birth_certificate.Size = new System.Drawing.Size(600, 33);
     this.depend_birth_certificate.TabIndex = 17;
     //
     // depend_note
     //
     this.depend_note.Location = new System.Drawing.Point(243, 374);
     this.depend_note.Multiline = true;
     this.depend_note.Name = "depend_note";
     this.depend_note.Size = new System.Drawing.Size(600, 99);
     this.depend_note.TabIndex = 14;
     //
     // depend_education
     //
     this.depend_education.Location = new System.Drawing.Point(243, 295);
     this.depend_education.Name = "depend_education";
     this.depend_education.Size = new System.Drawing.Size(200, 33);
     this.depend_education.TabIndex = 10;
     //
     // depend_personal_tp
     //
     this.depend_personal_tp.Location = new System.Drawing.Point(243, 255);
     this.depend_personal_tp.Name = "depend_personal_tp";
     this.depend_personal_tp.Size = new System.Drawing.Size(200, 33);
     this.depend_personal_tp.TabIndex = 8;
     //
     // depend_personal_address
     //
     this.depend_personal_address.Location = new System.Drawing.Point(243, 150);
     this.depend_personal_address.Multiline = true;
     this.depend_personal_address.Name = "depend_personal_address";
     this.depend_personal_address.Size = new System.Drawing.Size(300, 99);
     this.depend_personal_address.TabIndex = 6;
     //
     // depend_nic_no
     //
     this.depend_nic_no.Location = new System.Drawing.Point(243, 111);
     this.depend_nic_no.Name = "depend_nic_no";
     this.depend_nic_no.Size = new System.Drawing.Size(200, 33);
     this.depend_nic_no.TabIndex = 4;
     //
     // label68
     //
     this.label68.AutoSize = true;
     this.label68.Location = new System.Drawing.Point(553, 150);
     this.label68.Name = "label68";
     this.label68.Size = new System.Drawing.Size(160, 26);
     this.label68.TabIndex = 29;
     this.label68.Text = "කාර්යාලීය ලිපිනය";
     //
     // label67
     //
     this.label67.AutoSize = true;
     this.label67.Location = new System.Drawing.Point(537, 73);
     this.label67.Name = "label67";
     this.label67.Size = new System.Drawing.Size(176, 26);
     this.label67.TabIndex = 24;
     this.label67.Text = "මුල් පත්වීම ලද දිනය";
     //
     // label66
     //
     this.label66.AutoSize = true;
     this.label66.Location = new System.Drawing.Point(589, 33);
     this.label66.Name = "label66";
     this.label66.Size = new System.Drawing.Size(124, 26);
     this.label66.TabIndex = 23;
     this.label66.Text = "සම්පුර්ණ නම";
     //
     // button2
     //
     this.button2.Location = new System.Drawing.Point(849, 518);
     this.button2.Name = "button2";
     this.button2.Size = new System.Drawing.Size(105, 33);
     this.button2.TabIndex = 21;
     this.button2.Text = "Browse";
     this.button2.UseVisualStyleBackColor = true;
     //
     // button1
     //
     this.button1.Location = new System.Drawing.Point(849, 479);
     this.button1.Name = "button1";
     this.button1.Size = new System.Drawing.Size(105, 33);
     this.button1.TabIndex = 20;
     this.button1.Text = "Browse";
     this.button1.UseVisualStyleBackColor = true;
     //
     // label65
     //
     this.label65.AutoSize = true;
     this.label65.Location = new System.Drawing.Point(89, 521);
     this.label65.Name = "label65";
     this.label65.Size = new System.Drawing.Size(148, 26);
     this.label65.TabIndex = 18;
     this.label65.Text = "විවාහ සහතිකය";
     //
     // label64
     //
     this.label64.AutoSize = true;
     this.label64.Location = new System.Drawing.Point(60, 482);
     this.label64.Name = "label64";
     this.label64.Size = new System.Drawing.Size(177, 26);
     this.label64.TabIndex = 16;
     this.label64.Text = "උප්පැන්න සහතිකය";
     //
     // label70
     //
     this.label70.AutoSize = true;
     this.label70.Location = new System.Drawing.Point(163, 377);
     this.label70.Name = "label70";
     this.label70.Size = new System.Drawing.Size(74, 26);
     this.label70.TabIndex = 15;
     this.label70.Text = "සටහන්";
     //
     // label71
     //
     this.label71.AutoSize = true;
     this.label71.Location = new System.Drawing.Point(147, 337);
     this.label71.Name = "label71";
     this.label71.Size = new System.Drawing.Size(90, 26);
     this.label71.TabIndex = 13;
     this.label71.Text = "තත්ත්වය";
     //
     // depend_status
     //
     this.depend_status.FormattingEnabled = true;
     this.depend_status.Location = new System.Drawing.Point(243, 334);
     this.depend_status.Name = "depend_status";
     this.depend_status.Size = new System.Drawing.Size(200, 34);
     this.depend_status.TabIndex = 12;
     //
     // label72
     //
     this.label72.AutoSize = true;
     this.label72.Location = new System.Drawing.Point(135, 298);
     this.label72.Name = "label72";
     this.label72.Size = new System.Drawing.Size(102, 26);
     this.label72.TabIndex = 11;
     this.label72.Text = "අධ්‍යාපනය";
     //
     // label73
     //
     this.label73.AutoSize = true;
     this.label73.Location = new System.Drawing.Point(97, 258);
     this.label73.Name = "label73";
     this.label73.Size = new System.Drawing.Size(140, 26);
     this.label73.TabIndex = 9;
     this.label73.Text = "පෞද්ගලික දු.අ.";
     //
     // label74
     //
     this.label74.AutoSize = true;
     this.label74.Location = new System.Drawing.Point(69, 150);
     this.label74.Name = "label74";
     this.label74.Size = new System.Drawing.Size(168, 26);
     this.label74.TabIndex = 7;
     this.label74.Text = "පෞද්ගලික ලිපිනය";
     //
     // label75
     //
     this.label75.AutoSize = true;
     this.label75.Location = new System.Drawing.Point(12, 114);
     this.label75.Name = "label75";
     this.label75.Size = new System.Drawing.Size(225, 26);
     this.label75.TabIndex = 5;
     this.label75.Text = "ජාතික හැඳුනුම්පත් අංකය";
     //
     // label76
     //
     this.label76.AutoSize = true;
     this.label76.Location = new System.Drawing.Point(139, 73);
     this.label76.Name = "label76";
     this.label76.Size = new System.Drawing.Size(98, 26);
     this.label76.TabIndex = 3;
     this.label76.Text = "ඥාතිත්වය";
     //
     // depend_relation
     //
     this.depend_relation.FormattingEnabled = true;
     this.depend_relation.Location = new System.Drawing.Point(243, 70);
     this.depend_relation.Name = "depend_relation";
     this.depend_relation.Size = new System.Drawing.Size(200, 34);
     this.depend_relation.TabIndex = 2;
     //
     // label77
     //
     this.label77.AutoSize = true;
     this.label77.Location = new System.Drawing.Point(123, 33);
     this.label77.Name = "label77";
     this.label77.Size = new System.Drawing.Size(114, 26);
     this.label77.TabIndex = 1;
     this.label77.Text = "ආමන්ත්‍රණය";
     //
     // depend_salutation
     //
     this.depend_salutation.FormattingEnabled = true;
     this.depend_salutation.Location = new System.Drawing.Point(243, 30);
     this.depend_salutation.Name = "depend_salutation";
     this.depend_salutation.Size = new System.Drawing.Size(200, 34);
     this.depend_salutation.TabIndex = 0;
     //
     // tabPage4
     //
     this.tabPage4.Controls.Add(this.label81);
     this.tabPage4.Controls.Add(this.emg_employee_no);
     this.tabPage4.Controls.Add(this.emg_office_tp);
     this.tabPage4.Controls.Add(this.emg_mobile_no);
     this.tabPage4.Controls.Add(this.emg_personal_tp);
     this.tabPage4.Controls.Add(this.emg_official_address);
     this.tabPage4.Controls.Add(this.emg_full_name);
     this.tabPage4.Controls.Add(this.emg_personal_address);
     this.tabPage4.Controls.Add(this.emg_nic_no);
     this.tabPage4.Controls.Add(this.label80);
     this.tabPage4.Controls.Add(this.label79);
     this.tabPage4.Controls.Add(this.emg_priority);
     this.tabPage4.Controls.Add(this.label78);
     this.tabPage4.Controls.Add(this.emg_int_ext);
     this.tabPage4.Controls.Add(this.label82);
     this.tabPage4.Controls.Add(this.label83);
     this.tabPage4.Controls.Add(this.label84);
     this.tabPage4.Controls.Add(this.label85);
     this.tabPage4.Controls.Add(this.label86);
     this.tabPage4.Controls.Add(this.label87);
     this.tabPage4.Controls.Add(this.label88);
     this.tabPage4.Controls.Add(this.emg_relation);
     this.tabPage4.Controls.Add(this.label89);
     this.tabPage4.Controls.Add(this.emg_salutation);
     this.tabPage4.Location = new System.Drawing.Point(4, 34);
     this.tabPage4.Name = "tabPage4";
     this.tabPage4.Size = new System.Drawing.Size(1041, 670);
     this.tabPage4.TabIndex = 3;
     this.tabPage4.Text = "Emergency Contact";
     this.tabPage4.UseVisualStyleBackColor = true;
     //
     // label81
     //
     this.label81.AutoSize = true;
     this.label81.Location = new System.Drawing.Point(589, 304);
     this.label81.Name = "label81";
     this.label81.Size = new System.Drawing.Size(127, 26);
     this.label81.TabIndex = 53;
     this.label81.Text = "සේවක අංකය";
     //
     // emg_employee_no
     //
     this.emg_employee_no.Location = new System.Drawing.Point(722, 301);
     this.emg_employee_no.Name = "emg_employee_no";
     this.emg_employee_no.Size = new System.Drawing.Size(200, 33);
     this.emg_employee_no.TabIndex = 52;
     //
     // emg_office_tp
     //
     this.emg_office_tp.Location = new System.Drawing.Point(722, 262);
     this.emg_office_tp.Name = "emg_office_tp";
     this.emg_office_tp.Size = new System.Drawing.Size(200, 33);
     this.emg_office_tp.TabIndex = 50;
     //
     // emg_mobile_no
     //
     this.emg_mobile_no.Location = new System.Drawing.Point(246, 301);
     this.emg_mobile_no.Name = "emg_mobile_no";
     this.emg_mobile_no.Size = new System.Drawing.Size(200, 33);
     this.emg_mobile_no.TabIndex = 44;
     //
     // emg_personal_tp
     //
     this.emg_personal_tp.Location = new System.Drawing.Point(246, 262);
     this.emg_personal_tp.Name = "emg_personal_tp";
     this.emg_personal_tp.Size = new System.Drawing.Size(200, 33);
     this.emg_personal_tp.TabIndex = 42;
     //
     // emg_official_address
     //
     this.emg_official_address.Location = new System.Drawing.Point(722, 154);
     this.emg_official_address.Multiline = true;
     this.emg_official_address.Name = "emg_official_address";
     this.emg_official_address.Size = new System.Drawing.Size(300, 99);
     this.emg_official_address.TabIndex = 40;
     //
     // emg_full_name
     //
     this.emg_full_name.Location = new System.Drawing.Point(722, 37);
     this.emg_full_name.Name = "emg_full_name";
     this.emg_full_name.Size = new System.Drawing.Size(200, 33);
     this.emg_full_name.TabIndex = 38;
     //
     // emg_personal_address
     //
     this.emg_personal_address.Location = new System.Drawing.Point(246, 157);
     this.emg_personal_address.Multiline = true;
     this.emg_personal_address.Name = "emg_personal_address";
     this.emg_personal_address.Size = new System.Drawing.Size(300, 99);
     this.emg_personal_address.TabIndex = 36;
     //
     // emg_nic_no
     //
     this.emg_nic_no.Location = new System.Drawing.Point(246, 118);
     this.emg_nic_no.Name = "emg_nic_no";
     this.emg_nic_no.Size = new System.Drawing.Size(200, 33);
     this.emg_nic_no.TabIndex = 34;
     //
     // label80
     //
     this.label80.AutoSize = true;
     this.label80.Location = new System.Drawing.Point(574, 265);
     this.label80.Name = "label80";
     this.label80.Size = new System.Drawing.Size(142, 26);
     this.label80.TabIndex = 51;
     this.label80.Text = "කාර්යාලීය  දු. අ.";
     //
     // label79
     //
     this.label79.AutoSize = true;
     this.label79.Location = new System.Drawing.Point(145, 383);
     this.label79.Name = "label79";
     this.label79.Size = new System.Drawing.Size(95, 26);
     this.label79.TabIndex = 49;
     this.label79.Text = "ප්‍රමුකතාව";
     //
     // emg_priority
     //
     this.emg_priority.FormattingEnabled = true;
     this.emg_priority.Location = new System.Drawing.Point(246, 380);
     this.emg_priority.Name = "emg_priority";
     this.emg_priority.Size = new System.Drawing.Size(200, 34);
     this.emg_priority.TabIndex = 48;
     //
     // label78
     //
     this.label78.AutoSize = true;
     this.label78.Location = new System.Drawing.Point(83, 343);
     this.label78.Name = "label78";
     this.label78.Size = new System.Drawing.Size(157, 26);
     this.label78.TabIndex = 47;
     this.label78.Text = "අභ්‍යන්තර/බාහිර";
     //
     // emg_int_ext
     //
     this.emg_int_ext.FormattingEnabled = true;
     this.emg_int_ext.Location = new System.Drawing.Point(246, 340);
     this.emg_int_ext.Name = "emg_int_ext";
     this.emg_int_ext.Size = new System.Drawing.Size(200, 34);
     this.emg_int_ext.TabIndex = 46;
     //
     // label82
     //
     this.label82.AutoSize = true;
     this.label82.Location = new System.Drawing.Point(141, 304);
     this.label82.Name = "label82";
     this.label82.Size = new System.Drawing.Size(99, 26);
     this.label82.TabIndex = 45;
     this.label82.Text = "ජංගම දු.අ.";
     //
     // label83
     //
     this.label83.AutoSize = true;
     this.label83.Location = new System.Drawing.Point(95, 265);
     this.label83.Name = "label83";
     this.label83.Size = new System.Drawing.Size(145, 26);
     this.label83.TabIndex = 43;
     this.label83.Text = "පෞද්ගලික දු. අ.";
     //
     // label84
     //
     this.label84.AutoSize = true;
     this.label84.Location = new System.Drawing.Point(556, 157);
     this.label84.Name = "label84";
     this.label84.Size = new System.Drawing.Size(160, 26);
     this.label84.TabIndex = 41;
     this.label84.Text = "කාර්යාලීය ලිපිනය";
     //
     // label85
     //
     this.label85.AutoSize = true;
     this.label85.Location = new System.Drawing.Point(592, 40);
     this.label85.Name = "label85";
     this.label85.Size = new System.Drawing.Size(124, 26);
     this.label85.TabIndex = 39;
     this.label85.Text = "සම්පුර්ණ නම";
     //
     // label86
     //
     this.label86.AutoSize = true;
     this.label86.Location = new System.Drawing.Point(72, 157);
     this.label86.Name = "label86";
     this.label86.Size = new System.Drawing.Size(168, 26);
     this.label86.TabIndex = 37;
     this.label86.Text = "පෞද්ගලික ලිපිනය";
     //
     // label87
     //
     this.label87.AutoSize = true;
     this.label87.Location = new System.Drawing.Point(15, 121);
     this.label87.Name = "label87";
     this.label87.Size = new System.Drawing.Size(225, 26);
     this.label87.TabIndex = 35;
     this.label87.Text = "ජාතික හැඳුනුම්පත් අංකය";
     //
     // label88
     //
     this.label88.AutoSize = true;
     this.label88.Location = new System.Drawing.Point(142, 80);
     this.label88.Name = "label88";
     this.label88.Size = new System.Drawing.Size(98, 26);
     this.label88.TabIndex = 33;
     this.label88.Text = "ඥාතිත්වය";
     //
     // emg_relation
     //
     this.emg_relation.FormattingEnabled = true;
     this.emg_relation.Location = new System.Drawing.Point(246, 77);
     this.emg_relation.Name = "emg_relation";
     this.emg_relation.Size = new System.Drawing.Size(200, 34);
     this.emg_relation.TabIndex = 32;
     //
     // label89
     //
     this.label89.AutoSize = true;
     this.label89.Location = new System.Drawing.Point(126, 40);
     this.label89.Name = "label89";
     this.label89.Size = new System.Drawing.Size(114, 26);
     this.label89.TabIndex = 31;
     this.label89.Text = "ආමන්ත්‍රණය";
     //
     // emg_salutation
     //
     this.emg_salutation.FormattingEnabled = true;
     this.emg_salutation.Location = new System.Drawing.Point(246, 37);
     this.emg_salutation.Name = "emg_salutation";
     this.emg_salutation.Size = new System.Drawing.Size(200, 34);
     this.emg_salutation.TabIndex = 30;
     //
     // tabPage5
     //
     this.tabPage5.Controls.Add(this.wsd_date_of_post_date);
     this.tabPage5.Controls.Add(this.label90);
     this.tabPage5.Controls.Add(this.label91);
     this.tabPage5.Controls.Add(this.label92);
     this.tabPage5.Controls.Add(this.label93);
     this.tabPage5.Controls.Add(this.label94);
     this.tabPage5.Controls.Add(this.wsd_power);
     this.tabPage5.Controls.Add(this.wsd_post);
     this.tabPage5.Controls.Add(this.wsd_responsibility);
     this.tabPage5.Controls.Add(this.wsd_salary_station);
     this.tabPage5.Controls.Add(this.wsd_rank);
     this.tabPage5.Controls.Add(this.label95);
     this.tabPage5.Controls.Add(this.wsd_division);
     this.tabPage5.Controls.Add(this.label96);
     this.tabPage5.Location = new System.Drawing.Point(4, 34);
     this.tabPage5.Name = "tabPage5";
     this.tabPage5.Size = new System.Drawing.Size(1041, 670);
     this.tabPage5.TabIndex = 4;
     this.tabPage5.Text = "WorkstationDetails";
     this.tabPage5.UseVisualStyleBackColor = true;
     //
     // wsd_date_of_post_date
     //
     this.wsd_date_of_post_date.Location = new System.Drawing.Point(243, 150);
     this.wsd_date_of_post_date.Name = "wsd_date_of_post_date";
     this.wsd_date_of_post_date.Size = new System.Drawing.Size(320, 33);
     this.wsd_date_of_post_date.TabIndex = 61;
     //
     // label90
     //
     this.label90.AutoSize = true;
     this.label90.Location = new System.Drawing.Point(153, 272);
     this.label90.Name = "label90";
     this.label90.Size = new System.Drawing.Size(75, 26);
     this.label90.TabIndex = 13;
     this.label90.Text = "බල තල";
     //
     // label91
     //
     this.label91.AutoSize = true;
     this.label91.Location = new System.Drawing.Point(153, 113);
     this.label91.Name = "label91";
     this.label91.Size = new System.Drawing.Size(75, 26);
     this.label91.TabIndex = 12;
     this.label91.Text = "තනතුර";
     //
     // label92
     //
     this.label92.AutoSize = true;
     this.label92.Location = new System.Drawing.Point(54, 153);
     this.label92.Name = "label92";
     this.label92.Size = new System.Drawing.Size(176, 26);
     this.label92.TabIndex = 11;
     this.label92.Text = "මුල් පත්වීම ලද දිනය";
     //
     // label93
     //
     this.label93.AutoSize = true;
     this.label93.Location = new System.Drawing.Point(61, 192);
     this.label93.Name = "label93";
     this.label93.Size = new System.Drawing.Size(169, 26);
     this.label93.TabIndex = 10;
     this.label93.Text = "වැටුප් මධ්‍යස්ථානය";
     //
     // label94
     //
     this.label94.AutoSize = true;
     this.label94.Location = new System.Drawing.Point(157, 232);
     this.label94.Name = "label94";
     this.label94.Size = new System.Drawing.Size(73, 26);
     this.label94.TabIndex = 9;
     this.label94.Text = "වගකීම";
     //
     // wsd_power
     //
     this.wsd_power.FormattingEnabled = true;
     this.wsd_power.Location = new System.Drawing.Point(243, 269);
     this.wsd_power.Name = "wsd_power";
     this.wsd_power.Size = new System.Drawing.Size(200, 34);
     this.wsd_power.TabIndex = 8;
     //
     // wsd_post
     //
     this.wsd_post.FormattingEnabled = true;
     this.wsd_post.Location = new System.Drawing.Point(243, 110);
     this.wsd_post.Name = "wsd_post";
     this.wsd_post.Size = new System.Drawing.Size(200, 34);
     this.wsd_post.TabIndex = 7;
     //
     // wsd_responsibility
     //
     this.wsd_responsibility.FormattingEnabled = true;
     this.wsd_responsibility.Location = new System.Drawing.Point(243, 229);
     this.wsd_responsibility.Name = "wsd_responsibility";
     this.wsd_responsibility.Size = new System.Drawing.Size(200, 34);
     this.wsd_responsibility.TabIndex = 6;
     //
     // wsd_salary_station
     //
     this.wsd_salary_station.FormattingEnabled = true;
     this.wsd_salary_station.Location = new System.Drawing.Point(243, 189);
     this.wsd_salary_station.Name = "wsd_salary_station";
     this.wsd_salary_station.Size = new System.Drawing.Size(200, 34);
     this.wsd_salary_station.TabIndex = 5;
     //
     // wsd_rank
     //
     this.wsd_rank.FormattingEnabled = true;
     this.wsd_rank.Location = new System.Drawing.Point(243, 30);
     this.wsd_rank.Name = "wsd_rank";
     this.wsd_rank.Size = new System.Drawing.Size(200, 34);
     this.wsd_rank.TabIndex = 4;
     this.wsd_rank.SelectedIndexChanged += new System.EventHandler(this.wsd_rank_SelectedIndexChanged);
     //
     // label95
     //
     this.label95.AutoSize = true;
     this.label95.Location = new System.Drawing.Point(115, 73);
     this.label95.Name = "label95";
     this.label95.Size = new System.Drawing.Size(113, 26);
     this.label95.TabIndex = 3;
     this.label95.Text = "කොට්ඨාශය";
     //
     // wsd_division
     //
     this.wsd_division.FormattingEnabled = true;
     this.wsd_division.Location = new System.Drawing.Point(243, 70);
     this.wsd_division.Name = "wsd_division";
     this.wsd_division.Size = new System.Drawing.Size(200, 34);
     this.wsd_division.TabIndex = 2;
     //
     // label96
     //
     this.label96.AutoSize = true;
     this.label96.Location = new System.Drawing.Point(172, 33);
     this.label96.Name = "label96";
     this.label96.Size = new System.Drawing.Size(56, 26);
     this.label96.TabIndex = 0;
     this.label96.Text = "නිලය";
     //
     // panel6
     //
     this.panel6.BackColor = System.Drawing.Color.LightGray;
     this.panel6.Controls.Add(this.label122);
     this.panel6.ForeColor = System.Drawing.Color.Teal;
     this.panel6.Location = new System.Drawing.Point(3, 1046);
     this.panel6.Name = "panel6";
     this.panel6.Size = new System.Drawing.Size(1049, 42);
     this.panel6.TabIndex = 15;
     //
     // label122
     //
     this.label122.AutoSize = true;
     this.label122.Font = new System.Drawing.Font("Microsoft Sans Serif", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label122.ForeColor = System.Drawing.SystemColors.ActiveCaptionText;
     this.label122.Location = new System.Drawing.Point(465, 11);
     this.label122.Name = "label122";
     this.label122.Size = new System.Drawing.Size(133, 24);
     this.label122.TabIndex = 6;
     this.label122.Text = "විශේෂ තොරතුරු";
     //
     // tabControl2
     //
     this.tabControl2.Controls.Add(this.tabPersonalDetails);
     this.tabControl2.Controls.Add(this.tabPage6);
     this.tabControl2.Controls.Add(this.tabPage7);
     this.tabControl2.Controls.Add(this.tabPage8);
     this.tabControl2.Controls.Add(this.tabPage9);
     this.tabControl2.Controls.Add(this.tabPage10);
     this.tabControl2.Font = new System.Drawing.Font("Calibri", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.tabControl2.ItemSize = new System.Drawing.Size(300, 30);
     this.tabControl2.Location = new System.Drawing.Point(3, 1094);
     this.tabControl2.Name = "tabControl2";
     this.tabControl2.SelectedIndex = 0;
     this.tabControl2.Size = new System.Drawing.Size(1049, 651);
     this.tabControl2.TabIndex = 16;
     //
     // tabPersonalDetails
     //
     this.tabPersonalDetails.BackColor = System.Drawing.Color.White;
     this.tabPersonalDetails.Controls.Add(this.label11);
     this.tabPersonalDetails.Controls.Add(this.label12);
     this.tabPersonalDetails.Controls.Add(this.label19);
     this.tabPersonalDetails.Controls.Add(this.label20);
     this.tabPersonalDetails.Controls.Add(this.label142);
     this.tabPersonalDetails.Controls.Add(this.label143);
     this.tabPersonalDetails.Controls.Add(this.label144);
     this.tabPersonalDetails.Controls.Add(this.label145);
     this.tabPersonalDetails.Controls.Add(this.label146);
     this.tabPersonalDetails.Controls.Add(this.label147);
     this.tabPersonalDetails.Controls.Add(this.label148);
     this.tabPersonalDetails.Controls.Add(this.label149);
     this.tabPersonalDetails.Controls.Add(this.label150);
     this.tabPersonalDetails.Controls.Add(this.label151);
     this.tabPersonalDetails.Controls.Add(this.label152);
     this.tabPersonalDetails.Controls.Add(this.label153);
     this.tabPersonalDetails.Controls.Add(this.label154);
     this.tabPersonalDetails.Controls.Add(this.label155);
     this.tabPersonalDetails.Controls.Add(this.label156);
     this.tabPersonalDetails.Font = new System.Drawing.Font("Calibri", 15F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.tabPersonalDetails.ForeColor = System.Drawing.Color.Transparent;
     this.tabPersonalDetails.Location = new System.Drawing.Point(4, 34);
     this.tabPersonalDetails.Name = "tabPersonalDetails";
     this.tabPersonalDetails.Padding = new System.Windows.Forms.Padding(3);
     this.tabPersonalDetails.Size = new System.Drawing.Size(1041, 613);
     this.tabPersonalDetails.TabIndex = 0;
     this.tabPersonalDetails.Text = "Remuneration";
     //
     // label11
     //
     this.label11.AutoSize = true;
     this.label11.Font = new System.Drawing.Font("Calibri", 15.75F);
     this.label11.ForeColor = System.Drawing.Color.Black;
     this.label11.Location = new System.Drawing.Point(186, 78);
     this.label11.Name = "label11";
     this.label11.Size = new System.Drawing.Size(34, 26);
     this.label11.TabIndex = 63;
     this.label11.Text = ".රු";
     this.label11.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // label12
     //
     this.label12.AutoSize = true;
     this.label12.Font = new System.Drawing.Font("Calibri", 15.75F);
     this.label12.ForeColor = System.Drawing.Color.Black;
     this.label12.Location = new System.Drawing.Point(186, 117);
     this.label12.Name = "label12";
     this.label12.Size = new System.Drawing.Size(34, 26);
     this.label12.TabIndex = 66;
     this.label12.Text = ".රු";
     this.label12.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // label19
     //
     this.label19.AutoSize = true;
     this.label19.Font = new System.Drawing.Font("Calibri", 15.75F);
     this.label19.ForeColor = System.Drawing.Color.Black;
     this.label19.Location = new System.Drawing.Point(186, 156);
     this.label19.Name = "label19";
     this.label19.Size = new System.Drawing.Size(34, 26);
     this.label19.TabIndex = 67;
     this.label19.Text = ".රු";
     this.label19.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // label20
     //
     this.label20.AutoSize = true;
     this.label20.Font = new System.Drawing.Font("Calibri", 15.75F);
     this.label20.ForeColor = System.Drawing.Color.Black;
     this.label20.Location = new System.Drawing.Point(186, 233);
     this.label20.Name = "label20";
     this.label20.Size = new System.Drawing.Size(34, 26);
     this.label20.TabIndex = 68;
     this.label20.Text = ".රු";
     this.label20.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // label142
     //
     this.label142.AutoSize = true;
     this.label142.Font = new System.Drawing.Font("Calibri", 15.75F);
     this.label142.ForeColor = System.Drawing.Color.Black;
     this.label142.Location = new System.Drawing.Point(696, 78);
     this.label142.Name = "label142";
     this.label142.Size = new System.Drawing.Size(34, 26);
     this.label142.TabIndex = 57;
     this.label142.Text = ".රු";
     this.label142.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // label143
     //
     this.label143.AutoSize = true;
     this.label143.Font = new System.Drawing.Font("Calibri", 15.75F);
     this.label143.ForeColor = System.Drawing.Color.Black;
     this.label143.Location = new System.Drawing.Point(696, 117);
     this.label143.Name = "label143";
     this.label143.Size = new System.Drawing.Size(34, 26);
     this.label143.TabIndex = 56;
     this.label143.Text = ".රු";
     this.label143.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // label144
     //
     this.label144.AutoSize = true;
     this.label144.Font = new System.Drawing.Font("Calibri", 15.75F);
     this.label144.ForeColor = System.Drawing.Color.Black;
     this.label144.Location = new System.Drawing.Point(696, 156);
     this.label144.Name = "label144";
     this.label144.Size = new System.Drawing.Size(34, 26);
     this.label144.TabIndex = 55;
     this.label144.Text = ".රු";
     this.label144.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // label145
     //
     this.label145.AutoSize = true;
     this.label145.Font = new System.Drawing.Font("Calibri", 15.75F);
     this.label145.ForeColor = System.Drawing.Color.Black;
     this.label145.Location = new System.Drawing.Point(696, 195);
     this.label145.Name = "label145";
     this.label145.Size = new System.Drawing.Size(34, 26);
     this.label145.TabIndex = 54;
     this.label145.Text = ".රු";
     this.label145.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // label146
     //
     this.label146.AutoSize = true;
     this.label146.Font = new System.Drawing.Font("Calibri", 15.75F);
     this.label146.ForeColor = System.Drawing.Color.Black;
     this.label146.Location = new System.Drawing.Point(540, 195);
     this.label146.Name = "label146";
     this.label146.Size = new System.Drawing.Size(150, 26);
     this.label146.TabIndex = 53;
     this.label146.Text = "වැටුප් වැඩිවූ මුදල";
     this.label146.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // label147
     //
     this.label147.AutoSize = true;
     this.label147.Font = new System.Drawing.Font("Calibri", 15.75F);
     this.label147.ForeColor = System.Drawing.Color.Black;
     this.label147.Location = new System.Drawing.Point(67, 195);
     this.label147.Name = "label147";
     this.label147.Size = new System.Drawing.Size(154, 26);
     this.label147.TabIndex = 52;
     this.label147.Text = "වැටුප් වැඩිවූ දිනය";
     this.label147.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // label148
     //
     this.label148.AutoSize = true;
     this.label148.Font = new System.Drawing.Font("Calibri", 15.75F);
     this.label148.ForeColor = System.Drawing.Color.Black;
     this.label148.Location = new System.Drawing.Point(566, 156);
     this.label148.Name = "label148";
     this.label148.Size = new System.Drawing.Size(124, 26);
     this.label148.TabIndex = 51;
     this.label148.Text = "වෙනත් දීමනා";
     this.label148.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // label149
     //
     this.label149.AutoSize = true;
     this.label149.Font = new System.Drawing.Font("Calibri", 15.75F);
     this.label149.ForeColor = System.Drawing.Color.Black;
     this.label149.Location = new System.Drawing.Point(60, 156);
     this.label149.Name = "label149";
     this.label149.Size = new System.Drawing.Size(130, 26);
     this.label149.TabIndex = 50;
     this.label149.Text = "නිවාස දීමනාව";
     this.label149.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // label150
     //
     this.label150.AutoSize = true;
     this.label150.Font = new System.Drawing.Font("Calibri", 15.75F);
     this.label150.ForeColor = System.Drawing.Color.Black;
     this.label150.Location = new System.Drawing.Point(16, 233);
     this.label150.Name = "label150";
     this.label150.Size = new System.Drawing.Size(174, 26);
     this.label150.TabIndex = 47;
     this.label150.Text = "වර්තමාන මුලු වැටුප";
     this.label150.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // label151
     //
     this.label151.AutoSize = true;
     this.label151.Font = new System.Drawing.Font("Calibri", 15.75F);
     this.label151.ForeColor = System.Drawing.Color.Black;
     this.label151.Location = new System.Drawing.Point(544, 78);
     this.label151.Name = "label151";
     this.label151.Size = new System.Drawing.Size(146, 26);
     this.label151.TabIndex = 48;
     this.label151.Text = "ප්‍රවාහන දීමනාව";
     this.label151.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // label152
     //
     this.label152.AutoSize = true;
     this.label152.Font = new System.Drawing.Font("Calibri", 15.75F);
     this.label152.ForeColor = System.Drawing.Color.Black;
     this.label152.Location = new System.Drawing.Point(83, 78);
     this.label152.Name = "label152";
     this.label152.Size = new System.Drawing.Size(107, 26);
     this.label152.TabIndex = 61;
     this.label152.Text = "මූලික වැටුප";
     this.label152.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // label153
     //
     this.label153.AutoSize = true;
     this.label153.Font = new System.Drawing.Font("Calibri", 15.75F);
     this.label153.ForeColor = System.Drawing.Color.Black;
     this.label153.Location = new System.Drawing.Point(484, 117);
     this.label153.Name = "label153";
     this.label153.Size = new System.Drawing.Size(206, 26);
     this.label153.TabIndex = 62;
     this.label153.Text = "ජංගම දුරකථන දීමනාව";
     this.label153.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // label154
     //
     this.label154.AutoSize = true;
     this.label154.Font = new System.Drawing.Font("Calibri", 15.75F);
     this.label154.ForeColor = System.Drawing.Color.Black;
     this.label154.Location = new System.Drawing.Point(51, 117);
     this.label154.Name = "label154";
     this.label154.Size = new System.Drawing.Size(139, 26);
     this.label154.TabIndex = 49;
     this.label154.Text = "ඉන්ධන දීමනාව";
     this.label154.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // label155
     //
     this.label155.AutoSize = true;
     this.label155.Font = new System.Drawing.Font("Calibri", 15.75F);
     this.label155.ForeColor = System.Drawing.Color.Black;
     this.label155.Location = new System.Drawing.Point(589, 39);
     this.label155.Name = "label155";
     this.label155.Size = new System.Drawing.Size(134, 26);
     this.label155.TabIndex = 59;
     this.label155.Text = "පඩි පත් අංකය";
     this.label155.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // label156
     //
     this.label156.AutoSize = true;
     this.label156.Font = new System.Drawing.Font("Calibri", 15.75F);
     this.label156.ForeColor = System.Drawing.Color.Black;
     this.label156.Location = new System.Drawing.Point(96, 39);
     this.label156.Name = "label156";
     this.label156.Size = new System.Drawing.Size(125, 26);
     this.label156.TabIndex = 60;
     this.label156.Text = "වැටුප් ශ්‍රේණිය";
     this.label156.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // tabPage6
     //
     this.tabPage6.BackColor = System.Drawing.Color.White;
     this.tabPage6.Controls.Add(this.label10);
     this.tabPage6.Controls.Add(this.qual_highest_qualification);
     this.tabPage6.Controls.Add(this.label8);
     this.tabPage6.Controls.Add(this.qual_year);
     this.tabPage6.Controls.Add(this.qual_qualification);
     this.tabPage6.Controls.Add(this.qual_note);
     this.tabPage6.Controls.Add(this.qual_months);
     this.tabPage6.Controls.Add(this.qualification_no);
     this.tabPage6.Controls.Add(this.qual_institute);
     this.tabPage6.Controls.Add(this.label7);
     this.tabPage6.Controls.Add(this.label5);
     this.tabPage6.Controls.Add(this.label6);
     this.tabPage6.Controls.Add(this.qual_status);
     this.tabPage6.Controls.Add(this.qual_occupation_relevant);
     this.tabPage6.Controls.Add(this.label9);
     this.tabPage6.Controls.Add(this.label14);
     this.tabPage6.Controls.Add(this.label15);
     this.tabPage6.Font = new System.Drawing.Font("Calibri", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.tabPage6.Location = new System.Drawing.Point(4, 34);
     this.tabPage6.Name = "tabPage6";
     this.tabPage6.Padding = new System.Windows.Forms.Padding(3);
     this.tabPage6.Size = new System.Drawing.Size(1041, 613);
     this.tabPage6.TabIndex = 0;
     this.tabPage6.Text = "Qualifications";
     //
     // label10
     //
     this.label10.AutoSize = true;
     this.label10.Location = new System.Drawing.Point(425, 114);
     this.label10.Name = "label10";
     this.label10.Size = new System.Drawing.Size(48, 26);
     this.label10.TabIndex = 35;
     this.label10.Text = "මාස";
     //
     // qual_highest_qualification
     //
     this.qual_highest_qualification.AutoSize = true;
     this.qual_highest_qualification.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.qual_highest_qualification.Location = new System.Drawing.Point(330, 150);
     this.qual_highest_qualification.Name = "qual_highest_qualification";
     this.qual_highest_qualification.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
     this.qual_highest_qualification.Size = new System.Drawing.Size(233, 31);
     this.qual_highest_qualification.TabIndex = 34;
     this.qual_highest_qualification.Text = "ප්‍රමුඛතම සුදුසුකම         ";
     this.qual_highest_qualification.UseVisualStyleBackColor = true;
     //
     // label8
     //
     this.label8.AutoSize = true;
     this.label8.Location = new System.Drawing.Point(133, 484);
     this.label8.Name = "label8";
     this.label8.Size = new System.Drawing.Size(180, 26);
     this.label8.TabIndex = 33;
     this.label8.Text = "සුදුසුකම් ලැබූ වර්ෂය";
     //
     // qual_year
     //
     this.qual_year.Location = new System.Drawing.Point(319, 477);
     this.qual_year.Name = "qual_year";
     this.qual_year.Size = new System.Drawing.Size(120, 33);
     this.qual_year.TabIndex = 32;
     //
     // qual_qualification
     //
     this.qual_qualification.Location = new System.Drawing.Point(319, 438);
     this.qual_qualification.Name = "qual_qualification";
     this.qual_qualification.Size = new System.Drawing.Size(200, 33);
     this.qual_qualification.TabIndex = 31;
     //
     // qual_note
     //
     this.qual_note.Location = new System.Drawing.Point(319, 227);
     this.qual_note.Multiline = true;
     this.qual_note.Name = "qual_note";
     this.qual_note.Size = new System.Drawing.Size(350, 200);
     this.qual_note.TabIndex = 29;
     //
     // qual_months
     //
     this.qual_months.Location = new System.Drawing.Point(319, 111);
     this.qual_months.Name = "qual_months";
     this.qual_months.Size = new System.Drawing.Size(100, 33);
     this.qual_months.TabIndex = 24;
     //
     // qualification_no
     //
     this.qualification_no.Location = new System.Drawing.Point(319, 34);
     this.qualification_no.Name = "qualification_no";
     this.qualification_no.Size = new System.Drawing.Size(200, 33);
     this.qualification_no.TabIndex = 22;
     //
     // qual_institute
     //
     this.qual_institute.Location = new System.Drawing.Point(319, 73);
     this.qual_institute.Name = "qual_institute";
     this.qual_institute.Size = new System.Drawing.Size(200, 33);
     this.qual_institute.TabIndex = 20;
     //
     // label7
     //
     this.label7.AutoSize = true;
     this.label7.Location = new System.Drawing.Point(230, 441);
     this.label7.Name = "label7";
     this.label7.Size = new System.Drawing.Size(84, 26);
     this.label7.TabIndex = 30;
     this.label7.Text = "සුදුසුකම";
     //
     // label5
     //
     this.label5.AutoSize = true;
     this.label5.Location = new System.Drawing.Point(240, 225);
     this.label5.Name = "label5";
     this.label5.Size = new System.Drawing.Size(74, 26);
     this.label5.TabIndex = 28;
     this.label5.Text = "සටහන්";
     //
     // label6
     //
     this.label6.AutoSize = true;
     this.label6.Location = new System.Drawing.Point(240, 190);
     this.label6.Name = "label6";
     this.label6.Size = new System.Drawing.Size(73, 26);
     this.label6.TabIndex = 27;
     this.label6.Text = "තත්වය";
     //
     // qual_status
     //
     this.qual_status.FormattingEnabled = true;
     this.qual_status.Location = new System.Drawing.Point(319, 187);
     this.qual_status.Name = "qual_status";
     this.qual_status.Size = new System.Drawing.Size(200, 34);
     this.qual_status.TabIndex = 26;
     //
     // qual_occupation_relevant
     //
     this.qual_occupation_relevant.AutoSize = true;
     this.qual_occupation_relevant.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.qual_occupation_relevant.Location = new System.Drawing.Point(94, 150);
     this.qual_occupation_relevant.Name = "qual_occupation_relevant";
     this.qual_occupation_relevant.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
     this.qual_occupation_relevant.Size = new System.Drawing.Size(230, 31);
     this.qual_occupation_relevant.TabIndex = 25;
     this.qual_occupation_relevant.Text = "රැකියාවට අනුකූල         ";
     this.qual_occupation_relevant.UseVisualStyleBackColor = true;
     //
     // label9
     //
     this.label9.AutoSize = true;
     this.label9.Location = new System.Drawing.Point(209, 114);
     this.label9.Name = "label9";
     this.label9.Size = new System.Drawing.Size(104, 26);
     this.label9.TabIndex = 23;
     this.label9.Text = "කාල සීමාව";
     //
     // label14
     //
     this.label14.AutoSize = true;
     this.label14.Location = new System.Drawing.Point(21, 76);
     this.label14.Name = "label14";
     this.label14.Size = new System.Drawing.Size(292, 26);
     this.label14.TabIndex = 21;
     this.label14.Text = "පාසැල / උසස් අධ්‍යාපන ආයතනය";
     //
     // label15
     //
     this.label15.AutoSize = true;
     this.label15.Location = new System.Drawing.Point(172, 41);
     this.label15.Name = "label15";
     this.label15.Size = new System.Drawing.Size(141, 26);
     this.label15.TabIndex = 19;
     this.label15.Text = "සුදුසුකම් අංකය";
     //
     // tabPage7
     //
     this.tabPage7.BackColor = System.Drawing.Color.White;
     this.tabPage7.Controls.Add(this.we_date_perma_date);
     this.tabPage7.Controls.Add(this.we_date_to_date);
     this.tabPage7.Controls.Add(this.we_date_from_date);
     this.tabPage7.Controls.Add(this.label16);
     this.tabPage7.Controls.Add(this.we_award);
     this.tabPage7.Controls.Add(this.we_responsibility);
     this.tabPage7.Controls.Add(this.we_resign_reason);
     this.tabPage7.Controls.Add(this.we_contact);
     this.tabPage7.Controls.Add(this.we_department);
     this.tabPage7.Controls.Add(this.we_email);
     this.tabPage7.Controls.Add(this.we_telephone);
     this.tabPage7.Controls.Add(this.we_address);
     this.tabPage7.Controls.Add(this.we_institute);
     this.tabPage7.Controls.Add(this.label97);
     this.tabPage7.Controls.Add(this.label98);
     this.tabPage7.Controls.Add(this.we_occupation_relevant);
     this.tabPage7.Controls.Add(this.label99);
     this.tabPage7.Controls.Add(this.label100);
     this.tabPage7.Controls.Add(this.label101);
     this.tabPage7.Controls.Add(this.label102);
     this.tabPage7.Controls.Add(this.label103);
     this.tabPage7.Controls.Add(this.label104);
     this.tabPage7.Controls.Add(this.label105);
     this.tabPage7.Controls.Add(this.label106);
     this.tabPage7.Controls.Add(this.label107);
     this.tabPage7.Location = new System.Drawing.Point(4, 34);
     this.tabPage7.Name = "tabPage7";
     this.tabPage7.Padding = new System.Windows.Forms.Padding(3);
     this.tabPage7.Size = new System.Drawing.Size(1041, 613);
     this.tabPage7.TabIndex = 1;
     this.tabPage7.Text = "Working Experience";
     //
     // we_date_perma_date
     //
     this.we_date_perma_date.Location = new System.Drawing.Point(306, 459);
     this.we_date_perma_date.Name = "we_date_perma_date";
     this.we_date_perma_date.Size = new System.Drawing.Size(320, 33);
     this.we_date_perma_date.TabIndex = 63;
     //
     // we_date_to_date
     //
     this.we_date_to_date.Location = new System.Drawing.Point(306, 420);
     this.we_date_to_date.Name = "we_date_to_date";
     this.we_date_to_date.Size = new System.Drawing.Size(320, 33);
     this.we_date_to_date.TabIndex = 62;
     //
     // we_date_from_date
     //
     this.we_date_from_date.Location = new System.Drawing.Point(306, 380);
     this.we_date_from_date.Name = "we_date_from_date";
     this.we_date_from_date.Size = new System.Drawing.Size(320, 33);
     this.we_date_from_date.TabIndex = 61;
     //
     // label16
     //
     this.label16.AutoSize = true;
     this.label16.Location = new System.Drawing.Point(577, 228);
     this.label16.Name = "label16";
     this.label16.Size = new System.Drawing.Size(94, 26);
     this.label16.TabIndex = 25;
     this.label16.Text = "ජයග්‍රහණ";
     //
     // we_award
     //
     this.we_award.Location = new System.Drawing.Point(677, 225);
     this.we_award.Multiline = true;
     this.we_award.Name = "we_award";
     this.we_award.Size = new System.Drawing.Size(350, 150);
     this.we_award.TabIndex = 24;
     //
     // we_responsibility
     //
     this.we_responsibility.Location = new System.Drawing.Point(306, 537);
     this.we_responsibility.Multiline = true;
     this.we_responsibility.Name = "we_responsibility";
     this.we_responsibility.Size = new System.Drawing.Size(200, 29);
     this.we_responsibility.TabIndex = 22;
     //
     // we_resign_reason
     //
     this.we_resign_reason.Location = new System.Drawing.Point(306, 498);
     this.we_resign_reason.Name = "we_resign_reason";
     this.we_resign_reason.Size = new System.Drawing.Size(200, 33);
     this.we_resign_reason.TabIndex = 17;
     //
     // we_contact
     //
     this.we_contact.Location = new System.Drawing.Point(306, 342);
     this.we_contact.Name = "we_contact";
     this.we_contact.Size = new System.Drawing.Size(200, 33);
     this.we_contact.TabIndex = 10;
     //
     // we_department
     //
     this.we_department.Location = new System.Drawing.Point(306, 303);
     this.we_department.Name = "we_department";
     this.we_department.Size = new System.Drawing.Size(200, 33);
     this.we_department.TabIndex = 8;
     //
     // we_email
     //
     this.we_email.Location = new System.Drawing.Point(306, 264);
     this.we_email.Name = "we_email";
     this.we_email.Size = new System.Drawing.Size(200, 33);
     this.we_email.TabIndex = 6;
     //
     // we_telephone
     //
     this.we_telephone.Location = new System.Drawing.Point(306, 225);
     this.we_telephone.Name = "we_telephone";
     this.we_telephone.Size = new System.Drawing.Size(200, 33);
     this.we_telephone.TabIndex = 4;
     //
     // we_address
     //
     this.we_address.Location = new System.Drawing.Point(306, 69);
     this.we_address.Multiline = true;
     this.we_address.Name = "we_address";
     this.we_address.Size = new System.Drawing.Size(350, 150);
     this.we_address.TabIndex = 2;
     //
     // we_institute
     //
     this.we_institute.Location = new System.Drawing.Point(306, 30);
     this.we_institute.Name = "we_institute";
     this.we_institute.Size = new System.Drawing.Size(200, 33);
     this.we_institute.TabIndex = 0;
     //
     // label97
     //
     this.label97.AutoSize = true;
     this.label97.Location = new System.Drawing.Point(227, 540);
     this.label97.Name = "label97";
     this.label97.Size = new System.Drawing.Size(73, 26);
     this.label97.TabIndex = 23;
     this.label97.Text = "වගකීම";
     //
     // label98
     //
     this.label98.AutoSize = true;
     this.label98.Location = new System.Drawing.Point(141, 501);
     this.label98.Name = "label98";
     this.label98.Size = new System.Drawing.Size(159, 26);
     this.label98.TabIndex = 21;
     this.label98.Text = "ඉවත්වීමට හේතුව";
     //
     // we_occupation_relevant
     //
     this.we_occupation_relevant.AutoSize = true;
     this.we_occupation_relevant.Location = new System.Drawing.Point(137, 579);
     this.we_occupation_relevant.Name = "we_occupation_relevant";
     this.we_occupation_relevant.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
     this.we_occupation_relevant.Size = new System.Drawing.Size(179, 30);
     this.we_occupation_relevant.TabIndex = 20;
     this.we_occupation_relevant.Text = "රැකියාවට අනුකූල";
     this.we_occupation_relevant.UseVisualStyleBackColor = true;
     //
     // label99
     //
     this.label99.AutoSize = true;
     this.label99.Location = new System.Drawing.Point(165, 464);
     this.label99.Name = "label99";
     this.label99.Size = new System.Drawing.Size(135, 26);
     this.label99.TabIndex = 19;
     this.label99.Text = "ස්ථිර කළ දිනය";
     //
     // label100
     //
     this.label100.AutoSize = true;
     this.label100.Location = new System.Drawing.Point(208, 425);
     this.label100.Name = "label100";
     this.label100.Size = new System.Drawing.Size(92, 26);
     this.label100.TabIndex = 16;
     this.label100.Text = "දින දක්වා";
     //
     // label101
     //
     this.label101.AutoSize = true;
     this.label101.Location = new System.Drawing.Point(228, 386);
     this.label101.Name = "label101";
     this.label101.Size = new System.Drawing.Size(72, 26);
     this.label101.TabIndex = 14;
     this.label101.Text = "දින සිට";
     //
     // label102
     //
     this.label102.AutoSize = true;
     this.label102.Location = new System.Drawing.Point(16, 345);
     this.label102.Name = "label102";
     this.label102.Size = new System.Drawing.Size(284, 26);
     this.label102.TabIndex = 11;
     this.label102.Text = "සම්බන්ධ කර ගත හැකි පුද්ගලයා";
     //
     // label103
     //
     this.label103.AutoSize = true;
     this.label103.Location = new System.Drawing.Point(81, 306);
     this.label103.Name = "label103";
     this.label103.Size = new System.Drawing.Size(219, 26);
     this.label103.TabIndex = 9;
     this.label103.Text = "දෙපාර්තමේනතුව/ අංශය";
     //
     // label104
     //
     this.label104.AutoSize = true;
     this.label104.Location = new System.Drawing.Point(165, 267);
     this.label104.Name = "label104";
     this.label104.Size = new System.Drawing.Size(135, 26);
     this.label104.TabIndex = 7;
     this.label104.Text = "ඊ-මේල් ලිපිනය";
     //
     // label105
     //
     this.label105.AutoSize = true;
     this.label105.Location = new System.Drawing.Point(160, 228);
     this.label105.Name = "label105";
     this.label105.Size = new System.Drawing.Size(140, 26);
     this.label105.TabIndex = 5;
     this.label105.Text = "දුරකථන අංකය";
     //
     // label106
     //
     this.label106.AutoSize = true;
     this.label106.Location = new System.Drawing.Point(225, 72);
     this.label106.Name = "label106";
     this.label106.Size = new System.Drawing.Size(70, 26);
     this.label106.TabIndex = 3;
     this.label106.Text = "ලිපිනය";
     //
     // label107
     //
     this.label107.AutoSize = true;
     this.label107.Location = new System.Drawing.Point(159, 33);
     this.label107.Name = "label107";
     this.label107.Size = new System.Drawing.Size(141, 26);
     this.label107.TabIndex = 1;
     this.label107.Text = "ආයතනයේ නම";
     //
     // tabPage8
     //
     this.tabPage8.Controls.Add(this.label108);
     this.tabPage8.Controls.Add(this.ea_award);
     this.tabPage8.Controls.Add(this.ea_method);
     this.tabPage8.Controls.Add(this.label109);
     this.tabPage8.Controls.Add(this.ea_type);
     this.tabPage8.Controls.Add(this.label110);
     this.tabPage8.Location = new System.Drawing.Point(4, 34);
     this.tabPage8.Name = "tabPage8";
     this.tabPage8.Size = new System.Drawing.Size(1041, 613);
     this.tabPage8.TabIndex = 2;
     this.tabPage8.Text = "Extra Curricular Activities";
     this.tabPage8.UseVisualStyleBackColor = true;
     //
     // label108
     //
     this.label108.AutoSize = true;
     this.label108.Location = new System.Drawing.Point(206, 112);
     this.label108.Name = "label108";
     this.label108.Size = new System.Drawing.Size(94, 26);
     this.label108.TabIndex = 7;
     this.label108.Text = "ජයග්‍රහණ";
     //
     // ea_award
     //
     this.ea_award.Location = new System.Drawing.Point(306, 109);
     this.ea_award.Multiline = true;
     this.ea_award.Name = "ea_award";
     this.ea_award.Size = new System.Drawing.Size(350, 200);
     this.ea_award.TabIndex = 6;
     //
     // ea_method
     //
     this.ea_method.Location = new System.Drawing.Point(306, 70);
     this.ea_method.Name = "ea_method";
     this.ea_method.Size = new System.Drawing.Size(200, 33);
     this.ea_method.TabIndex = 5;
     //
     // label109
     //
     this.label109.AutoSize = true;
     this.label109.Location = new System.Drawing.Point(218, 73);
     this.label109.Name = "label109";
     this.label109.Size = new System.Drawing.Size(82, 26);
     this.label109.TabIndex = 4;
     this.label109.Text = "ආකාරය";
     //
     // ea_type
     //
     this.ea_type.FormattingEnabled = true;
     this.ea_type.Location = new System.Drawing.Point(306, 30);
     this.ea_type.Name = "ea_type";
     this.ea_type.Size = new System.Drawing.Size(121, 34);
     this.ea_type.TabIndex = 3;
     //
     // label110
     //
     this.label110.AutoSize = true;
     this.label110.Location = new System.Drawing.Point(233, 33);
     this.label110.Name = "label110";
     this.label110.Size = new System.Drawing.Size(67, 26);
     this.label110.TabIndex = 2;
     this.label110.Text = "වර්ගය";
     //
     // tabPage9
     //
     this.tabPage9.Controls.Add(this.member_active_date_insti_date);
     this.tabPage9.Controls.Add(this.member_active_date_person_date);
     this.tabPage9.Controls.Add(this.member_renewal_date);
     this.tabPage9.Controls.Add(this.member_begin_date_date);
     this.tabPage9.Controls.Add(this.label111);
     this.tabPage9.Controls.Add(this.label112);
     this.tabPage9.Controls.Add(this.member_institutional_payment);
     this.tabPage9.Controls.Add(this.member_personal_payment);
     this.tabPage9.Controls.Add(this.label113);
     this.tabPage9.Controls.Add(this.member_status);
     this.tabPage9.Controls.Add(this.label114);
     this.tabPage9.Controls.Add(this.label115);
     this.tabPage9.Controls.Add(this.label116);
     this.tabPage9.Controls.Add(this.member_contribution);
     this.tabPage9.Controls.Add(this.member_id);
     this.tabPage9.Controls.Add(this.member_institute);
     this.tabPage9.Controls.Add(this.label117);
     this.tabPage9.Controls.Add(this.label118);
     this.tabPage9.Controls.Add(this.member_method);
     this.tabPage9.Controls.Add(this.label119);
     this.tabPage9.Controls.Add(this.memebr_post_name);
     this.tabPage9.Controls.Add(this.label120);
     this.tabPage9.Location = new System.Drawing.Point(4, 34);
     this.tabPage9.Name = "tabPage9";
     this.tabPage9.Size = new System.Drawing.Size(1041, 613);
     this.tabPage9.TabIndex = 3;
     this.tabPage9.Text = "Membership";
     this.tabPage9.UseVisualStyleBackColor = true;
     //
     // member_active_date_insti_date
     //
     this.member_active_date_insti_date.Location = new System.Drawing.Point(510, 376);
     this.member_active_date_insti_date.Name = "member_active_date_insti_date";
     this.member_active_date_insti_date.Size = new System.Drawing.Size(320, 33);
     this.member_active_date_insti_date.TabIndex = 71;
     //
     // member_active_date_person_date
     //
     this.member_active_date_person_date.Location = new System.Drawing.Point(510, 339);
     this.member_active_date_person_date.Name = "member_active_date_person_date";
     this.member_active_date_person_date.Size = new System.Drawing.Size(320, 33);
     this.member_active_date_person_date.TabIndex = 70;
     //
     // member_renewal_date
     //
     this.member_renewal_date.Location = new System.Drawing.Point(306, 266);
     this.member_renewal_date.Name = "member_renewal_date";
     this.member_renewal_date.Size = new System.Drawing.Size(320, 33);
     this.member_renewal_date.TabIndex = 69;
     //
     // member_begin_date_date
     //
     this.member_begin_date_date.Location = new System.Drawing.Point(306, 228);
     this.member_begin_date_date.Name = "member_begin_date_date";
     this.member_begin_date_date.Size = new System.Drawing.Size(320, 33);
     this.member_begin_date_date.TabIndex = 68;
     //
     // label111
     //
     this.label111.AutoSize = true;
     this.label111.Location = new System.Drawing.Point(358, 346);
     this.label111.Name = "label111";
     this.label111.Size = new System.Drawing.Size(146, 26);
     this.label111.TabIndex = 22;
     this.label111.Text = "ක්‍රියාත්මක දිනය";
     //
     // label112
     //
     this.label112.AutoSize = true;
     this.label112.Location = new System.Drawing.Point(358, 382);
     this.label112.Name = "label112";
     this.label112.Size = new System.Drawing.Size(146, 26);
     this.label112.TabIndex = 21;
     this.label112.Text = "ක්‍රියාත්මක දිනය";
     //
     // member_institutional_payment
     //
     this.member_institutional_payment.AutoSize = true;
     this.member_institutional_payment.Location = new System.Drawing.Point(95, 381);
     this.member_institutional_payment.Name = "member_institutional_payment";
     this.member_institutional_payment.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
     this.member_institutional_payment.Size = new System.Drawing.Size(224, 30);
     this.member_institutional_payment.TabIndex = 18;
     this.member_institutional_payment.Text = "ගෙවීම ආයතනය මගින්";
     this.member_institutional_payment.UseVisualStyleBackColor = true;
     //
     // member_personal_payment
     //
     this.member_personal_payment.AutoSize = true;
     this.member_personal_payment.Location = new System.Drawing.Point(122, 345);
     this.member_personal_payment.Name = "member_personal_payment";
     this.member_personal_payment.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
     this.member_personal_payment.Size = new System.Drawing.Size(197, 30);
     this.member_personal_payment.TabIndex = 17;
     this.member_personal_payment.Text = "ගෙවීම පෞද්ගලිකව";
     this.member_personal_payment.UseVisualStyleBackColor = true;
     //
     // label113
     //
     this.label113.AutoSize = true;
     this.label113.Location = new System.Drawing.Point(147, 308);
     this.label113.Name = "label113";
     this.label113.Size = new System.Drawing.Size(153, 26);
     this.label113.TabIndex = 16;
     this.label113.Text = "සාමාජික තත්වය";
     //
     // member_status
     //
     this.member_status.FormattingEnabled = true;
     this.member_status.Location = new System.Drawing.Point(306, 305);
     this.member_status.Name = "member_status";
     this.member_status.Size = new System.Drawing.Size(121, 34);
     this.member_status.TabIndex = 15;
     //
     // label114
     //
     this.label114.AutoSize = true;
     this.label114.Location = new System.Drawing.Point(162, 271);
     this.label114.Name = "label114";
     this.label114.Size = new System.Drawing.Size(138, 26);
     this.label114.TabIndex = 14;
     this.label114.Text = "අළුත් කළ දිනය";
     //
     // label115
     //
     this.label115.AutoSize = true;
     this.label115.Location = new System.Drawing.Point(162, 232);
     this.label115.Name = "label115";
     this.label115.Size = new System.Drawing.Size(138, 26);
     this.label115.TabIndex = 12;
     this.label115.Text = "ආරම්භක දිනය";
     //
     // label116
     //
     this.label116.AutoSize = true;
     this.label116.Location = new System.Drawing.Point(195, 191);
     this.label116.Name = "label116";
     this.label116.Size = new System.Drawing.Size(105, 26);
     this.label116.TabIndex = 10;
     this.label116.Text = "දායකත්වය";
     //
     // member_contribution
     //
     this.member_contribution.Location = new System.Drawing.Point(306, 188);
     this.member_contribution.Name = "member_contribution";
     this.member_contribution.Size = new System.Drawing.Size(200, 33);
     this.member_contribution.TabIndex = 9;
     //
     // member_id
     //
     this.member_id.Location = new System.Drawing.Point(306, 149);
     this.member_id.Name = "member_id";
     this.member_id.Size = new System.Drawing.Size(200, 33);
     this.member_id.TabIndex = 7;
     //
     // member_institute
     //
     this.member_institute.Location = new System.Drawing.Point(306, 30);
     this.member_institute.Name = "member_institute";
     this.member_institute.Size = new System.Drawing.Size(200, 33);
     this.member_institute.TabIndex = 1;
     this.member_institute.TextChanged += new System.EventHandler(this.textBox64_TextChanged);
     //
     // label117
     //
     this.label117.AutoSize = true;
     this.label117.Location = new System.Drawing.Point(57, 152);
     this.label117.Name = "label117";
     this.label117.Size = new System.Drawing.Size(243, 26);
     this.label117.TabIndex = 8;
     this.label117.Text = "සාමාජිකත්ව හැඳුනුම් අංකය";
     //
     // label118
     //
     this.label118.AutoSize = true;
     this.label118.Location = new System.Drawing.Point(108, 112);
     this.label118.Name = "label118";
     this.label118.Size = new System.Drawing.Size(192, 26);
     this.label118.TabIndex = 6;
     this.label118.Text = "සාමාජිකත්ව ආකාරය";
     //
     // member_method
     //
     this.member_method.FormattingEnabled = true;
     this.member_method.Location = new System.Drawing.Point(306, 109);
     this.member_method.Name = "member_method";
     this.member_method.Size = new System.Drawing.Size(121, 34);
     this.member_method.TabIndex = 5;
     //
     // label119
     //
     this.label119.AutoSize = true;
     this.label119.Location = new System.Drawing.Point(84, 72);
     this.label119.Name = "label119";
     this.label119.Size = new System.Drawing.Size(216, 26);
     this.label119.TabIndex = 4;
     this.label119.Text = "සාමාජිකත්ව පදවි නාමය";
     //
     // memebr_post_name
     //
     this.memebr_post_name.FormattingEnabled = true;
     this.memebr_post_name.Location = new System.Drawing.Point(306, 69);
     this.memebr_post_name.Name = "memebr_post_name";
     this.memebr_post_name.Size = new System.Drawing.Size(121, 34);
     this.memebr_post_name.TabIndex = 3;
     //
     // label120
     //
     this.label120.AutoSize = true;
     this.label120.Location = new System.Drawing.Point(45, 33);
     this.label120.Name = "label120";
     this.label120.Size = new System.Drawing.Size(255, 26);
     this.label120.TabIndex = 2;
     this.label120.Text = "සාමාජිකත්වය දැරූ ආයතනය";
     //
     // tabPage10
     //
     this.tabPage10.Controls.Add(this.button3);
     this.tabPage10.Controls.Add(this.label121);
     this.tabPage10.Controls.Add(this.language_name);
     this.tabPage10.Location = new System.Drawing.Point(4, 34);
     this.tabPage10.Name = "tabPage10";
     this.tabPage10.Size = new System.Drawing.Size(1041, 613);
     this.tabPage10.TabIndex = 4;
     this.tabPage10.Text = "Language Skills";
     this.tabPage10.UseVisualStyleBackColor = true;
     //
     // button3
     //
     this.button3.Location = new System.Drawing.Point(433, 30);
     this.button3.Name = "button3";
     this.button3.Size = new System.Drawing.Size(75, 33);
     this.button3.TabIndex = 12;
     this.button3.Text = "New";
     this.button3.UseVisualStyleBackColor = true;
     this.button3.Click += new System.EventHandler(this.button3_Click);
     //
     // label121
     //
     this.label121.AutoSize = true;
     this.label121.Location = new System.Drawing.Point(230, 33);
     this.label121.Name = "label121";
     this.label121.Size = new System.Drawing.Size(70, 26);
     this.label121.TabIndex = 11;
     this.label121.Text = "භාෂාව";
     //
     // language_name
     //
     this.language_name.FormattingEnabled = true;
     this.language_name.Location = new System.Drawing.Point(306, 30);
     this.language_name.Name = "language_name";
     this.language_name.Size = new System.Drawing.Size(121, 34);
     this.language_name.TabIndex = 0;
     //
     // panel7
     //
     this.panel7.BackColor = System.Drawing.Color.LightGray;
     this.panel7.Controls.Add(this.label141);
     this.panel7.ForeColor = System.Drawing.Color.Teal;
     this.panel7.Location = new System.Drawing.Point(3, 1751);
     this.panel7.Name = "panel7";
     this.panel7.Size = new System.Drawing.Size(1049, 42);
     this.panel7.TabIndex = 16;
     //
     // label141
     //
     this.label141.AutoSize = true;
     this.label141.Font = new System.Drawing.Font("Microsoft Sans Serif", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label141.ForeColor = System.Drawing.SystemColors.ActiveCaptionText;
     this.label141.Location = new System.Drawing.Point(465, 11);
     this.label141.Name = "label141";
     this.label141.Size = new System.Drawing.Size(121, 24);
     this.label141.TabIndex = 6;
     this.label141.Text = "මුල්‍ය තොරතුරු";
     //
     // tabControl3
     //
     this.tabControl3.Controls.Add(this.tabPage11);
     this.tabControl3.Controls.Add(this.tabPage12);
     this.tabControl3.Controls.Add(this.tabPage13);
     this.tabControl3.Font = new System.Drawing.Font("Calibri", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.tabControl3.ItemSize = new System.Drawing.Size(300, 30);
     this.tabControl3.Location = new System.Drawing.Point(3, 1799);
     this.tabControl3.Name = "tabControl3";
     this.tabControl3.SelectedIndex = 0;
     this.tabControl3.Size = new System.Drawing.Size(1049, 395);
     this.tabControl3.TabIndex = 19;
     //
     // tabPage11
     //
     this.tabPage11.BackColor = System.Drawing.Color.White;
     this.tabPage11.Controls.Add(this.bank_account_closed_year);
     this.tabPage11.Controls.Add(this.bank_account_started_year);
     this.tabPage11.Controls.Add(this.label129);
     this.tabPage11.Controls.Add(this.bank_qualified_year);
     this.tabPage11.Controls.Add(this.bank_qualification);
     this.tabPage11.Controls.Add(this.label130);
     this.tabPage11.Controls.Add(this.label123);
     this.tabPage11.Controls.Add(this.bank_account_name);
     this.tabPage11.Controls.Add(this.label124);
     this.tabPage11.Controls.Add(this.bank_account_type);
     this.tabPage11.Controls.Add(this.bank_name);
     this.tabPage11.Controls.Add(this.label125);
     this.tabPage11.Controls.Add(this.bank_branch_name);
     this.tabPage11.Controls.Add(this.label126);
     this.tabPage11.Controls.Add(this.label127);
     this.tabPage11.Controls.Add(this.label128);
     this.tabPage11.Font = new System.Drawing.Font("Calibri", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.tabPage11.Location = new System.Drawing.Point(4, 34);
     this.tabPage11.Name = "tabPage11";
     this.tabPage11.Padding = new System.Windows.Forms.Padding(3);
     this.tabPage11.Size = new System.Drawing.Size(1041, 357);
     this.tabPage11.TabIndex = 0;
     this.tabPage11.Text = "Bank";
     //
     // bank_account_closed_year
     //
     this.bank_account_closed_year.Location = new System.Drawing.Point(211, 222);
     this.bank_account_closed_year.Name = "bank_account_closed_year";
     this.bank_account_closed_year.Size = new System.Drawing.Size(310, 33);
     this.bank_account_closed_year.TabIndex = 64;
     //
     // bank_account_started_year
     //
     this.bank_account_started_year.Location = new System.Drawing.Point(211, 183);
     this.bank_account_started_year.Name = "bank_account_started_year";
     this.bank_account_started_year.Size = new System.Drawing.Size(310, 33);
     this.bank_account_started_year.TabIndex = 63;
     //
     // label129
     //
     this.label129.AutoSize = true;
     this.label129.Location = new System.Drawing.Point(25, 308);
     this.label129.Name = "label129";
     this.label129.Size = new System.Drawing.Size(180, 26);
     this.label129.TabIndex = 62;
     this.label129.Text = "සුදුසුකම් ලැබූ වර්ෂය";
     //
     // bank_qualified_year
     //
     this.bank_qualified_year.Location = new System.Drawing.Point(211, 301);
     this.bank_qualified_year.Name = "bank_qualified_year";
     this.bank_qualified_year.Size = new System.Drawing.Size(120, 33);
     this.bank_qualified_year.TabIndex = 61;
     //
     // bank_qualification
     //
     this.bank_qualification.Location = new System.Drawing.Point(211, 262);
     this.bank_qualification.Name = "bank_qualification";
     this.bank_qualification.Size = new System.Drawing.Size(200, 33);
     this.bank_qualification.TabIndex = 60;
     //
     // label130
     //
     this.label130.AutoSize = true;
     this.label130.Location = new System.Drawing.Point(122, 265);
     this.label130.Name = "label130";
     this.label130.Size = new System.Drawing.Size(84, 26);
     this.label130.TabIndex = 59;
     this.label130.Text = "සුදුසුකම";
     //
     // label123
     //
     this.label123.AutoSize = true;
     this.label123.Location = new System.Drawing.Point(83, 106);
     this.label123.Name = "label123";
     this.label123.Size = new System.Drawing.Size(120, 26);
     this.label123.TabIndex = 52;
     this.label123.Text = "ගිණුම් අංකය";
     //
     // bank_account_name
     //
     this.bank_account_name.Location = new System.Drawing.Point(211, 103);
     this.bank_account_name.Name = "bank_account_name";
     this.bank_account_name.Size = new System.Drawing.Size(200, 33);
     this.bank_account_name.TabIndex = 51;
     //
     // label124
     //
     this.label124.AutoSize = true;
     this.label124.Location = new System.Drawing.Point(68, 186);
     this.label124.Name = "label124";
     this.label124.Size = new System.Drawing.Size(138, 26);
     this.label124.TabIndex = 50;
     this.label124.Text = "ආරම්භක දිනය";
     //
     // bank_account_type
     //
     this.bank_account_type.FormattingEnabled = true;
     this.bank_account_type.Location = new System.Drawing.Point(211, 141);
     this.bank_account_type.Name = "bank_account_type";
     this.bank_account_type.Size = new System.Drawing.Size(200, 34);
     this.bank_account_type.TabIndex = 49;
     //
     // bank_name
     //
     this.bank_name.FormattingEnabled = true;
     this.bank_name.Location = new System.Drawing.Point(211, 22);
     this.bank_name.Name = "bank_name";
     this.bank_name.Size = new System.Drawing.Size(200, 34);
     this.bank_name.TabIndex = 48;
     //
     // label125
     //
     this.label125.AutoSize = true;
     this.label125.Location = new System.Drawing.Point(83, 225);
     this.label125.Name = "label125";
     this.label125.Size = new System.Drawing.Size(122, 26);
     this.label125.TabIndex = 47;
     this.label125.Text = "අවසාන දිනය";
     //
     // bank_branch_name
     //
     this.bank_branch_name.Location = new System.Drawing.Point(211, 64);
     this.bank_branch_name.Name = "bank_branch_name";
     this.bank_branch_name.Size = new System.Drawing.Size(200, 33);
     this.bank_branch_name.TabIndex = 46;
     //
     // label126
     //
     this.label126.AutoSize = true;
     this.label126.Location = new System.Drawing.Point(88, 67);
     this.label126.Name = "label126";
     this.label126.Size = new System.Drawing.Size(118, 26);
     this.label126.TabIndex = 45;
     this.label126.Text = "ශාඛාවේ නම";
     //
     // label127
     //
     this.label127.AutoSize = true;
     this.label127.Location = new System.Drawing.Point(86, 144);
     this.label127.Name = "label127";
     this.label127.Size = new System.Drawing.Size(123, 26);
     this.label127.TabIndex = 44;
     this.label127.Text = "ගිණුම් වර්ගය";
     //
     // label128
     //
     this.label128.AutoSize = true;
     this.label128.Location = new System.Drawing.Point(86, 25);
     this.label128.Name = "label128";
     this.label128.Size = new System.Drawing.Size(119, 26);
     this.label128.TabIndex = 43;
     this.label128.Text = "බැංකුවේ නම";
     //
     // tabPage12
     //
     this.tabPage12.BackColor = System.Drawing.Color.White;
     this.tabPage12.Controls.Add(this.insurance_ended_year);
     this.tabPage12.Controls.Add(this.insurance_started_date);
     this.tabPage12.Controls.Add(this.insurance_type);
     this.tabPage12.Controls.Add(this.label131);
     this.tabPage12.Controls.Add(this.label132);
     this.tabPage12.Controls.Add(this.insurance_notes);
     this.tabPage12.Controls.Add(this.label133);
     this.tabPage12.Controls.Add(this.insurance_value);
     this.tabPage12.Controls.Add(this.label134);
     this.tabPage12.Controls.Add(this.label135);
     this.tabPage12.Location = new System.Drawing.Point(4, 34);
     this.tabPage12.Name = "tabPage12";
     this.tabPage12.Padding = new System.Windows.Forms.Padding(3);
     this.tabPage12.Size = new System.Drawing.Size(1041, 357);
     this.tabPage12.TabIndex = 1;
     this.tabPage12.Text = "Insurance";
     //
     // insurance_ended_year
     //
     this.insurance_ended_year.Location = new System.Drawing.Point(326, 138);
     this.insurance_ended_year.Name = "insurance_ended_year";
     this.insurance_ended_year.Size = new System.Drawing.Size(310, 33);
     this.insurance_ended_year.TabIndex = 52;
     //
     // insurance_started_date
     //
     this.insurance_started_date.Location = new System.Drawing.Point(326, 101);
     this.insurance_started_date.Name = "insurance_started_date";
     this.insurance_started_date.Size = new System.Drawing.Size(310, 33);
     this.insurance_started_date.TabIndex = 51;
     //
     // insurance_type
     //
     this.insurance_type.FormattingEnabled = true;
     this.insurance_type.Location = new System.Drawing.Point(326, 22);
     this.insurance_type.Name = "insurance_type";
     this.insurance_type.Size = new System.Drawing.Size(121, 34);
     this.insurance_type.TabIndex = 50;
     //
     // label131
     //
     this.label131.AutoSize = true;
     this.label131.Location = new System.Drawing.Point(248, 182);
     this.label131.Name = "label131";
     this.label131.Size = new System.Drawing.Size(74, 26);
     this.label131.TabIndex = 49;
     this.label131.Text = "සටහන්";
     //
     // label132
     //
     this.label132.AutoSize = true;
     this.label132.Location = new System.Drawing.Point(30, 145);
     this.label132.Name = "label132";
     this.label132.Size = new System.Drawing.Size(292, 26);
     this.label132.TabIndex = 48;
     this.label132.Text = "රක්ෂණය කල් ඉකුත්වන කළ දිනය";
     //
     // insurance_notes
     //
     this.insurance_notes.Location = new System.Drawing.Point(326, 179);
     this.insurance_notes.Multiline = true;
     this.insurance_notes.Name = "insurance_notes";
     this.insurance_notes.Size = new System.Drawing.Size(350, 159);
     this.insurance_notes.TabIndex = 47;
     //
     // label133
     //
     this.label133.AutoSize = true;
     this.label133.Location = new System.Drawing.Point(62, 106);
     this.label133.Name = "label133";
     this.label133.Size = new System.Drawing.Size(258, 26);
     this.label133.TabIndex = 46;
     this.label133.Text = "රක්ෂණය ආරම්භක කළ දිනය";
     //
     // insurance_value
     //
     this.insurance_value.Location = new System.Drawing.Point(326, 62);
     this.insurance_value.Name = "insurance_value";
     this.insurance_value.Size = new System.Drawing.Size(200, 33);
     this.insurance_value.TabIndex = 45;
     //
     // label134
     //
     this.label134.AutoSize = true;
     this.label134.Location = new System.Drawing.Point(93, 65);
     this.label134.Name = "label134";
     this.label134.Size = new System.Drawing.Size(227, 26);
     this.label134.TabIndex = 44;
     this.label134.Text = "රක්ෂණයේ වටිනාකම (රු.)";
     //
     // label135
     //
     this.label135.AutoSize = true;
     this.label135.Location = new System.Drawing.Point(185, 25);
     this.label135.Name = "label135";
     this.label135.Size = new System.Drawing.Size(137, 26);
     this.label135.TabIndex = 43;
     this.label135.Text = "රක්ෂණ වර්ගය";
     //
     // tabPage13
     //
     this.tabPage13.Controls.Add(this.label136);
     this.tabPage13.Controls.Add(this.label137);
     this.tabPage13.Controls.Add(this.tax_no);
     this.tabPage13.Controls.Add(this.tax_status);
     this.tabPage13.Controls.Add(this.label138);
     this.tabPage13.Controls.Add(this.tax_notes);
     this.tabPage13.Controls.Add(this.tax_type);
     this.tabPage13.Controls.Add(this.label139);
     this.tabPage13.Controls.Add(this.tax_paying_method);
     this.tabPage13.Controls.Add(this.label140);
     this.tabPage13.Location = new System.Drawing.Point(4, 34);
     this.tabPage13.Name = "tabPage13";
     this.tabPage13.Size = new System.Drawing.Size(1041, 357);
     this.tabPage13.TabIndex = 2;
     this.tabPage13.Text = "Tax";
     this.tabPage13.UseVisualStyleBackColor = true;
     //
     // label136
     //
     this.label136.AutoSize = true;
     this.label136.Location = new System.Drawing.Point(86, 183);
     this.label136.Name = "label136";
     this.label136.Size = new System.Drawing.Size(74, 26);
     this.label136.TabIndex = 21;
     this.label136.Text = "සටහන්";
     //
     // label137
     //
     this.label137.AutoSize = true;
     this.label137.Location = new System.Drawing.Point(65, 64);
     this.label137.Name = "label137";
     this.label137.Size = new System.Drawing.Size(94, 26);
     this.label137.TabIndex = 20;
     this.label137.Text = "බදු අංකය";
     //
     // tax_no
     //
     this.tax_no.Location = new System.Drawing.Point(165, 61);
     this.tax_no.Name = "tax_no";
     this.tax_no.Size = new System.Drawing.Size(200, 33);
     this.tax_no.TabIndex = 19;
     //
     // tax_status
     //
     this.tax_status.FormattingEnabled = true;
     this.tax_status.Location = new System.Drawing.Point(165, 140);
     this.tax_status.Name = "tax_status";
     this.tax_status.Size = new System.Drawing.Size(121, 34);
     this.tax_status.TabIndex = 18;
     //
     // label138
     //
     this.label138.AutoSize = true;
     this.label138.Location = new System.Drawing.Point(86, 143);
     this.label138.Name = "label138";
     this.label138.Size = new System.Drawing.Size(73, 26);
     this.label138.TabIndex = 17;
     this.label138.Text = "තත්වය";
     //
     // tax_notes
     //
     this.tax_notes.Location = new System.Drawing.Point(165, 180);
     this.tax_notes.Multiline = true;
     this.tax_notes.Name = "tax_notes";
     this.tax_notes.Size = new System.Drawing.Size(350, 158);
     this.tax_notes.TabIndex = 16;
     //
     // tax_type
     //
     this.tax_type.Location = new System.Drawing.Point(165, 22);
     this.tax_type.Name = "tax_type";
     this.tax_type.Size = new System.Drawing.Size(200, 33);
     this.tax_type.TabIndex = 15;
     //
     // label139
     //
     this.label139.AutoSize = true;
     this.label139.Location = new System.Drawing.Point(17, 103);
     this.label139.Name = "label139";
     this.label139.Size = new System.Drawing.Size(142, 26);
     this.label139.TabIndex = 14;
     this.label139.Text = "ගෙවීම් ආකාරය";
     //
     // tax_paying_method
     //
     this.tax_paying_method.FormattingEnabled = true;
     this.tax_paying_method.Location = new System.Drawing.Point(165, 100);
     this.tax_paying_method.Name = "tax_paying_method";
     this.tax_paying_method.Size = new System.Drawing.Size(121, 34);
     this.tax_paying_method.TabIndex = 13;
     //
     // label140
     //
     this.label140.AutoSize = true;
     this.label140.Location = new System.Drawing.Point(62, 25);
     this.label140.Name = "label140";
     this.label140.Size = new System.Drawing.Size(97, 26);
     this.label140.TabIndex = 12;
     this.label140.Text = "බදු වර්ගය";
     //
     // panel8
     //
     this.panel8.BackColor = System.Drawing.Color.LightGray;
     this.panel8.Controls.Add(this.label169);
     this.panel8.ForeColor = System.Drawing.Color.Teal;
     this.panel8.Location = new System.Drawing.Point(3, 2200);
     this.panel8.Name = "panel8";
     this.panel8.Size = new System.Drawing.Size(1049, 42);
     this.panel8.TabIndex = 17;
     //
     // label169
     //
     this.label169.AutoSize = true;
     this.label169.Font = new System.Drawing.Font("Microsoft Sans Serif", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label169.ForeColor = System.Drawing.SystemColors.ActiveCaptionText;
     this.label169.Location = new System.Drawing.Point(465, 11);
     this.label169.Name = "label169";
     this.label169.Size = new System.Drawing.Size(126, 24);
     this.label169.TabIndex = 6;
     this.label169.Text = "වැටුප් තොරතුරු";
     //
     // tabControl4
     //
     this.tabControl4.Controls.Add(this.tabPage14);
     this.tabControl4.Controls.Add(this.tabPage15);
     this.tabControl4.Controls.Add(this.tabPage16);
     this.tabControl4.Font = new System.Drawing.Font("Calibri", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.tabControl4.ItemSize = new System.Drawing.Size(200, 30);
     this.tabControl4.Location = new System.Drawing.Point(3, 2248);
     this.tabControl4.Name = "tabControl4";
     this.tabControl4.Padding = new System.Drawing.Point(0, 0);
     this.tabControl4.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
     this.tabControl4.SelectedIndex = 0;
     this.tabControl4.Size = new System.Drawing.Size(1049, 447);
     this.tabControl4.SizeMode = System.Windows.Forms.TabSizeMode.Fixed;
     this.tabControl4.TabIndex = 20;
     //
     // tabPage14
     //
     this.tabPage14.BackColor = System.Drawing.Color.White;
     this.tabPage14.Controls.Add(this.remun_salary_increase_date);
     this.tabPage14.Controls.Add(this.label157);
     this.tabPage14.Controls.Add(this.label158);
     this.tabPage14.Controls.Add(this.label159);
     this.tabPage14.Controls.Add(this.label160);
     this.tabPage14.Controls.Add(this.label161);
     this.tabPage14.Controls.Add(this.label170);
     this.tabPage14.Controls.Add(this.label171);
     this.tabPage14.Controls.Add(this.label172);
     this.tabPage14.Controls.Add(this.label173);
     this.tabPage14.Controls.Add(this.label174);
     this.tabPage14.Controls.Add(this.label175);
     this.tabPage14.Controls.Add(this.label176);
     this.tabPage14.Controls.Add(this.label177);
     this.tabPage14.Controls.Add(this.label178);
     this.tabPage14.Controls.Add(this.label179);
     this.tabPage14.Controls.Add(this.label180);
     this.tabPage14.Controls.Add(this.label181);
     this.tabPage14.Controls.Add(this.remun_salary_slip_no);
     this.tabPage14.Controls.Add(this.remun_salary_grade);
     this.tabPage14.Controls.Add(this.remun_transport_allowance);
     this.tabPage14.Controls.Add(this.remun_basic_salary);
     this.tabPage14.Controls.Add(this.label182);
     this.tabPage14.Controls.Add(this.label183);
     this.tabPage14.Controls.Add(this.remun_mobile_phone_allowance);
     this.tabPage14.Controls.Add(this.remun_current_total_salary);
     this.tabPage14.Controls.Add(this.remun_salary_increase_amount);
     this.tabPage14.Controls.Add(this.remun_fuel_allowance);
     this.tabPage14.Controls.Add(this.remun_other_allowance);
     this.tabPage14.Controls.Add(this.remun_housing_allowance);
     this.tabPage14.Font = new System.Drawing.Font("Calibri", 15F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.tabPage14.ForeColor = System.Drawing.Color.Transparent;
     this.tabPage14.Location = new System.Drawing.Point(4, 34);
     this.tabPage14.Name = "tabPage14";
     this.tabPage14.Padding = new System.Windows.Forms.Padding(3);
     this.tabPage14.Size = new System.Drawing.Size(1041, 409);
     this.tabPage14.TabIndex = 0;
     this.tabPage14.Text = "Remuneration";
     //
     // remun_salary_increase_date
     //
     this.remun_salary_increase_date.Location = new System.Drawing.Point(243, 177);
     this.remun_salary_increase_date.Name = "remun_salary_increase_date";
     this.remun_salary_increase_date.Size = new System.Drawing.Size(316, 32);
     this.remun_salary_increase_date.TabIndex = 107;
     //
     // label157
     //
     this.label157.AutoSize = true;
     this.label157.Font = new System.Drawing.Font("Calibri", 15.75F);
     this.label157.ForeColor = System.Drawing.Color.Black;
     this.label157.Location = new System.Drawing.Point(202, 64);
     this.label157.Name = "label157";
     this.label157.Size = new System.Drawing.Size(35, 26);
     this.label157.TabIndex = 95;
     this.label157.Text = ".රු";
     this.label157.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // label158
     //
     this.label158.AutoSize = true;
     this.label158.Font = new System.Drawing.Font("Calibri", 15.75F);
     this.label158.ForeColor = System.Drawing.Color.Black;
     this.label158.Location = new System.Drawing.Point(202, 103);
     this.label158.Name = "label158";
     this.label158.Size = new System.Drawing.Size(35, 26);
     this.label158.TabIndex = 98;
     this.label158.Text = ".රු";
     this.label158.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // label159
     //
     this.label159.AutoSize = true;
     this.label159.Font = new System.Drawing.Font("Calibri", 15.75F);
     this.label159.ForeColor = System.Drawing.Color.Black;
     this.label159.Location = new System.Drawing.Point(202, 142);
     this.label159.Name = "label159";
     this.label159.Size = new System.Drawing.Size(35, 26);
     this.label159.TabIndex = 99;
     this.label159.Text = ".රු";
     this.label159.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // label160
     //
     this.label160.AutoSize = true;
     this.label160.Font = new System.Drawing.Font("Calibri", 15.75F);
     this.label160.ForeColor = System.Drawing.Color.Black;
     this.label160.Location = new System.Drawing.Point(202, 219);
     this.label160.Name = "label160";
     this.label160.Size = new System.Drawing.Size(35, 26);
     this.label160.TabIndex = 100;
     this.label160.Text = ".රු";
     this.label160.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // label161
     //
     this.label161.AutoSize = true;
     this.label161.Font = new System.Drawing.Font("Calibri", 15.75F);
     this.label161.ForeColor = System.Drawing.Color.Black;
     this.label161.Location = new System.Drawing.Point(712, 64);
     this.label161.Name = "label161";
     this.label161.Size = new System.Drawing.Size(35, 26);
     this.label161.TabIndex = 89;
     this.label161.Text = ".රු";
     this.label161.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // label170
     //
     this.label170.AutoSize = true;
     this.label170.Font = new System.Drawing.Font("Calibri", 15.75F);
     this.label170.ForeColor = System.Drawing.Color.Black;
     this.label170.Location = new System.Drawing.Point(712, 103);
     this.label170.Name = "label170";
     this.label170.Size = new System.Drawing.Size(35, 26);
     this.label170.TabIndex = 88;
     this.label170.Text = ".රු";
     this.label170.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // label171
     //
     this.label171.AutoSize = true;
     this.label171.Font = new System.Drawing.Font("Calibri", 15.75F);
     this.label171.ForeColor = System.Drawing.Color.Black;
     this.label171.Location = new System.Drawing.Point(712, 142);
     this.label171.Name = "label171";
     this.label171.Size = new System.Drawing.Size(35, 26);
     this.label171.TabIndex = 87;
     this.label171.Text = ".රු";
     this.label171.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // label172
     //
     this.label172.AutoSize = true;
     this.label172.Font = new System.Drawing.Font("Calibri", 15.75F);
     this.label172.ForeColor = System.Drawing.Color.Black;
     this.label172.Location = new System.Drawing.Point(712, 181);
     this.label172.Name = "label172";
     this.label172.Size = new System.Drawing.Size(35, 26);
     this.label172.TabIndex = 86;
     this.label172.Text = ".රු";
     this.label172.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // label173
     //
     this.label173.AutoSize = true;
     this.label173.Font = new System.Drawing.Font("Calibri", 15.75F);
     this.label173.ForeColor = System.Drawing.Color.Black;
     this.label173.Location = new System.Drawing.Point(556, 181);
     this.label173.Name = "label173";
     this.label173.Size = new System.Drawing.Size(150, 26);
     this.label173.TabIndex = 85;
     this.label173.Text = "වැටුප් වැඩිවූ මුදල";
     this.label173.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // label174
     //
     this.label174.AutoSize = true;
     this.label174.Font = new System.Drawing.Font("Calibri", 15.75F);
     this.label174.ForeColor = System.Drawing.Color.Black;
     this.label174.Location = new System.Drawing.Point(83, 181);
     this.label174.Name = "label174";
     this.label174.Size = new System.Drawing.Size(154, 26);
     this.label174.TabIndex = 84;
     this.label174.Text = "වැටුප් වැඩිවූ දිනය";
     this.label174.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // label175
     //
     this.label175.AutoSize = true;
     this.label175.Font = new System.Drawing.Font("Calibri", 15.75F);
     this.label175.ForeColor = System.Drawing.Color.Black;
     this.label175.Location = new System.Drawing.Point(582, 142);
     this.label175.Name = "label175";
     this.label175.Size = new System.Drawing.Size(124, 26);
     this.label175.TabIndex = 83;
     this.label175.Text = "වෙනත් දීමනා";
     this.label175.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // label176
     //
     this.label176.AutoSize = true;
     this.label176.Font = new System.Drawing.Font("Calibri", 15.75F);
     this.label176.ForeColor = System.Drawing.Color.Black;
     this.label176.Location = new System.Drawing.Point(76, 142);
     this.label176.Name = "label176";
     this.label176.Size = new System.Drawing.Size(130, 26);
     this.label176.TabIndex = 82;
     this.label176.Text = "නිවාස දීමනාව";
     this.label176.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // label177
     //
     this.label177.AutoSize = true;
     this.label177.Font = new System.Drawing.Font("Calibri", 15.75F);
     this.label177.ForeColor = System.Drawing.Color.Black;
     this.label177.Location = new System.Drawing.Point(32, 219);
     this.label177.Name = "label177";
     this.label177.Size = new System.Drawing.Size(174, 26);
     this.label177.TabIndex = 79;
     this.label177.Text = "වර්තමාන මුලු වැටුප";
     this.label177.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // label178
     //
     this.label178.AutoSize = true;
     this.label178.Font = new System.Drawing.Font("Calibri", 15.75F);
     this.label178.ForeColor = System.Drawing.Color.Black;
     this.label178.Location = new System.Drawing.Point(560, 64);
     this.label178.Name = "label178";
     this.label178.Size = new System.Drawing.Size(146, 26);
     this.label178.TabIndex = 80;
     this.label178.Text = "ප්‍රවාහන දීමනාව";
     this.label178.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // label179
     //
     this.label179.AutoSize = true;
     this.label179.Font = new System.Drawing.Font("Calibri", 15.75F);
     this.label179.ForeColor = System.Drawing.Color.Black;
     this.label179.Location = new System.Drawing.Point(99, 64);
     this.label179.Name = "label179";
     this.label179.Size = new System.Drawing.Size(107, 26);
     this.label179.TabIndex = 93;
     this.label179.Text = "මූලික වැටුප";
     this.label179.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // label180
     //
     this.label180.AutoSize = true;
     this.label180.Font = new System.Drawing.Font("Calibri", 15.75F);
     this.label180.ForeColor = System.Drawing.Color.Black;
     this.label180.Location = new System.Drawing.Point(500, 103);
     this.label180.Name = "label180";
     this.label180.Size = new System.Drawing.Size(206, 26);
     this.label180.TabIndex = 94;
     this.label180.Text = "ජංගම දුරකථන දීමනාව";
     this.label180.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // label181
     //
     this.label181.AutoSize = true;
     this.label181.Font = new System.Drawing.Font("Calibri", 15.75F);
     this.label181.ForeColor = System.Drawing.Color.Black;
     this.label181.Location = new System.Drawing.Point(67, 103);
     this.label181.Name = "label181";
     this.label181.Size = new System.Drawing.Size(139, 26);
     this.label181.TabIndex = 81;
     this.label181.Text = "ඉන්ධන දීමනාව";
     this.label181.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // remun_salary_slip_no
     //
     this.remun_salary_slip_no.Font = new System.Drawing.Font("Calibri", 15.75F);
     this.remun_salary_slip_no.Location = new System.Drawing.Point(748, 22);
     this.remun_salary_slip_no.Name = "remun_salary_slip_no";
     this.remun_salary_slip_no.Size = new System.Drawing.Size(150, 33);
     this.remun_salary_slip_no.TabIndex = 102;
     //
     // remun_salary_grade
     //
     this.remun_salary_grade.Font = new System.Drawing.Font("Calibri", 15.75F);
     this.remun_salary_grade.Location = new System.Drawing.Point(243, 22);
     this.remun_salary_grade.Name = "remun_salary_grade";
     this.remun_salary_grade.Size = new System.Drawing.Size(150, 33);
     this.remun_salary_grade.TabIndex = 78;
     //
     // remun_transport_allowance
     //
     this.remun_transport_allowance.Font = new System.Drawing.Font("Calibri", 15.75F);
     this.remun_transport_allowance.Location = new System.Drawing.Point(748, 61);
     this.remun_transport_allowance.Name = "remun_transport_allowance";
     this.remun_transport_allowance.Size = new System.Drawing.Size(150, 33);
     this.remun_transport_allowance.TabIndex = 103;
     //
     // remun_basic_salary
     //
     this.remun_basic_salary.Font = new System.Drawing.Font("Calibri", 15.75F);
     this.remun_basic_salary.Location = new System.Drawing.Point(243, 61);
     this.remun_basic_salary.Name = "remun_basic_salary";
     this.remun_basic_salary.Size = new System.Drawing.Size(150, 33);
     this.remun_basic_salary.TabIndex = 90;
     //
     // label182
     //
     this.label182.AutoSize = true;
     this.label182.Font = new System.Drawing.Font("Calibri", 15.75F);
     this.label182.ForeColor = System.Drawing.Color.Black;
     this.label182.Location = new System.Drawing.Point(605, 25);
     this.label182.Name = "label182";
     this.label182.Size = new System.Drawing.Size(134, 26);
     this.label182.TabIndex = 91;
     this.label182.Text = "පඩි පත් අංකය";
     this.label182.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // label183
     //
     this.label183.AutoSize = true;
     this.label183.Font = new System.Drawing.Font("Calibri", 15.75F);
     this.label183.ForeColor = System.Drawing.Color.Black;
     this.label183.Location = new System.Drawing.Point(112, 25);
     this.label183.Name = "label183";
     this.label183.Size = new System.Drawing.Size(125, 26);
     this.label183.TabIndex = 92;
     this.label183.Text = "වැටුප් ශ්‍රේණිය";
     this.label183.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // remun_mobile_phone_allowance
     //
     this.remun_mobile_phone_allowance.Font = new System.Drawing.Font("Calibri", 15.75F);
     this.remun_mobile_phone_allowance.Location = new System.Drawing.Point(748, 100);
     this.remun_mobile_phone_allowance.Name = "remun_mobile_phone_allowance";
     this.remun_mobile_phone_allowance.Size = new System.Drawing.Size(150, 33);
     this.remun_mobile_phone_allowance.TabIndex = 104;
     //
     // remun_current_total_salary
     //
     this.remun_current_total_salary.Font = new System.Drawing.Font("Calibri", 15.75F);
     this.remun_current_total_salary.Location = new System.Drawing.Point(243, 216);
     this.remun_current_total_salary.Name = "remun_current_total_salary";
     this.remun_current_total_salary.Size = new System.Drawing.Size(150, 33);
     this.remun_current_total_salary.TabIndex = 101;
     //
     // remun_salary_increase_amount
     //
     this.remun_salary_increase_amount.Font = new System.Drawing.Font("Calibri", 15.75F);
     this.remun_salary_increase_amount.Location = new System.Drawing.Point(748, 178);
     this.remun_salary_increase_amount.Name = "remun_salary_increase_amount";
     this.remun_salary_increase_amount.Size = new System.Drawing.Size(150, 33);
     this.remun_salary_increase_amount.TabIndex = 106;
     //
     // remun_fuel_allowance
     //
     this.remun_fuel_allowance.Font = new System.Drawing.Font("Calibri", 15.75F);
     this.remun_fuel_allowance.Location = new System.Drawing.Point(243, 100);
     this.remun_fuel_allowance.Name = "remun_fuel_allowance";
     this.remun_fuel_allowance.Size = new System.Drawing.Size(150, 33);
     this.remun_fuel_allowance.TabIndex = 96;
     //
     // remun_other_allowance
     //
     this.remun_other_allowance.Font = new System.Drawing.Font("Calibri", 15.75F);
     this.remun_other_allowance.Location = new System.Drawing.Point(748, 139);
     this.remun_other_allowance.Name = "remun_other_allowance";
     this.remun_other_allowance.Size = new System.Drawing.Size(150, 33);
     this.remun_other_allowance.TabIndex = 105;
     //
     // remun_housing_allowance
     //
     this.remun_housing_allowance.Font = new System.Drawing.Font("Calibri", 15.75F);
     this.remun_housing_allowance.Location = new System.Drawing.Point(243, 139);
     this.remun_housing_allowance.Name = "remun_housing_allowance";
     this.remun_housing_allowance.Size = new System.Drawing.Size(150, 33);
     this.remun_housing_allowance.TabIndex = 97;
     //
     // tabPage15
     //
     this.tabPage15.BackColor = System.Drawing.Color.White;
     this.tabPage15.Controls.Add(this.cash_issued_date);
     this.tabPage15.Controls.Add(this.label184);
     this.tabPage15.Controls.Add(this.label185);
     this.tabPage15.Controls.Add(this.label186);
     this.tabPage15.Controls.Add(this.cash_issued_price);
     this.tabPage15.Controls.Add(this.cash_approved_benefit);
     this.tabPage15.ForeColor = System.Drawing.SystemColors.ControlText;
     this.tabPage15.Location = new System.Drawing.Point(4, 34);
     this.tabPage15.Name = "tabPage15";
     this.tabPage15.Padding = new System.Windows.Forms.Padding(3);
     this.tabPage15.Size = new System.Drawing.Size(1041, 409);
     this.tabPage15.TabIndex = 1;
     this.tabPage15.Text = "Cash Benefits";
     //
     // cash_issued_date
     //
     this.cash_issued_date.Location = new System.Drawing.Point(191, 62);
     this.cash_issued_date.Name = "cash_issued_date";
     this.cash_issued_date.Size = new System.Drawing.Size(320, 33);
     this.cash_issued_date.TabIndex = 48;
     //
     // label184
     //
     this.label184.AutoSize = true;
     this.label184.Location = new System.Drawing.Point(146, 103);
     this.label184.Name = "label184";
     this.label184.Size = new System.Drawing.Size(39, 26);
     this.label184.TabIndex = 44;
     this.label184.Text = "මිල";
     this.label184.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // label185
     //
     this.label185.AutoSize = true;
     this.label185.Location = new System.Drawing.Point(39, 64);
     this.label185.Name = "label185";
     this.label185.Size = new System.Drawing.Size(146, 26);
     this.label185.TabIndex = 45;
     this.label185.Text = "නිකුත් කළ දිනය";
     this.label185.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // label186
     //
     this.label186.AutoSize = true;
     this.label186.Location = new System.Drawing.Point(26, 25);
     this.label186.Name = "label186";
     this.label186.Size = new System.Drawing.Size(159, 26);
     this.label186.TabIndex = 43;
     this.label186.Text = "අනුමත ප්‍රතිලාභය";
     this.label186.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // cash_issued_price
     //
     this.cash_issued_price.Location = new System.Drawing.Point(191, 101);
     this.cash_issued_price.Name = "cash_issued_price";
     this.cash_issued_price.Size = new System.Drawing.Size(200, 33);
     this.cash_issued_price.TabIndex = 47;
     //
     // cash_approved_benefit
     //
     this.cash_approved_benefit.Location = new System.Drawing.Point(191, 22);
     this.cash_approved_benefit.Name = "cash_approved_benefit";
     this.cash_approved_benefit.Size = new System.Drawing.Size(200, 33);
     this.cash_approved_benefit.TabIndex = 46;
     //
     // tabPage16
     //
     this.tabPage16.AutoScroll = true;
     this.tabPage16.Controls.Add(this.noncash_issued_date);
     this.tabPage16.Controls.Add(this.label187);
     this.tabPage16.Controls.Add(this.label188);
     this.tabPage16.Controls.Add(this.label189);
     this.tabPage16.Controls.Add(this.label190);
     this.tabPage16.Controls.Add(this.noncash_price);
     this.tabPage16.Controls.Add(this.noncash_quantity);
     this.tabPage16.Controls.Add(this.noncash_approved_benefit);
     this.tabPage16.Location = new System.Drawing.Point(4, 34);
     this.tabPage16.Name = "tabPage16";
     this.tabPage16.Size = new System.Drawing.Size(1041, 409);
     this.tabPage16.TabIndex = 2;
     this.tabPage16.Text = "Non Cash Benefits";
     this.tabPage16.UseVisualStyleBackColor = true;
     //
     // noncash_issued_date
     //
     this.noncash_issued_date.Location = new System.Drawing.Point(194, 61);
     this.noncash_issued_date.Name = "noncash_issued_date";
     this.noncash_issued_date.Size = new System.Drawing.Size(320, 33);
     this.noncash_issued_date.TabIndex = 47;
     //
     // label187
     //
     this.label187.AutoSize = true;
     this.label187.Location = new System.Drawing.Point(42, 64);
     this.label187.Name = "label187";
     this.label187.Size = new System.Drawing.Size(146, 26);
     this.label187.TabIndex = 45;
     this.label187.Text = "නිකුත් කළ දිනය";
     this.label187.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // label188
     //
     this.label188.AutoSize = true;
     this.label188.Location = new System.Drawing.Point(149, 143);
     this.label188.Name = "label188";
     this.label188.Size = new System.Drawing.Size(39, 26);
     this.label188.TabIndex = 41;
     this.label188.Text = "මිල";
     this.label188.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // label189
     //
     this.label189.AutoSize = true;
     this.label189.Location = new System.Drawing.Point(106, 104);
     this.label189.Name = "label189";
     this.label189.Size = new System.Drawing.Size(82, 26);
     this.label189.TabIndex = 42;
     this.label189.Text = "ප්‍රමාණය";
     this.label189.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // label190
     //
     this.label190.AutoSize = true;
     this.label190.Location = new System.Drawing.Point(29, 25);
     this.label190.Name = "label190";
     this.label190.Size = new System.Drawing.Size(159, 26);
     this.label190.TabIndex = 40;
     this.label190.Text = "අනුමත ප්‍රතිලාභය";
     this.label190.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // noncash_price
     //
     this.noncash_price.Location = new System.Drawing.Point(194, 140);
     this.noncash_price.Name = "noncash_price";
     this.noncash_price.Size = new System.Drawing.Size(100, 33);
     this.noncash_price.TabIndex = 46;
     //
     // noncash_quantity
     //
     this.noncash_quantity.Location = new System.Drawing.Point(194, 101);
     this.noncash_quantity.Name = "noncash_quantity";
     this.noncash_quantity.Size = new System.Drawing.Size(100, 33);
     this.noncash_quantity.TabIndex = 44;
     //
     // noncash_approved_benefit
     //
     this.noncash_approved_benefit.Location = new System.Drawing.Point(194, 22);
     this.noncash_approved_benefit.Name = "noncash_approved_benefit";
     this.noncash_approved_benefit.Size = new System.Drawing.Size(200, 33);
     this.noncash_approved_benefit.TabIndex = 43;
     //
     // panel11
     //
     this.panel11.BackColor = System.Drawing.Color.LightGray;
     this.panel11.Controls.Add(this.label197);
     this.panel11.ForeColor = System.Drawing.Color.Teal;
     this.panel11.Location = new System.Drawing.Point(3, 2701);
     this.panel11.Name = "panel11";
     this.panel11.Size = new System.Drawing.Size(1049, 42);
     this.panel11.TabIndex = 18;
     //
     // label197
     //
     this.label197.AutoSize = true;
     this.label197.Font = new System.Drawing.Font("Microsoft Sans Serif", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label197.ForeColor = System.Drawing.SystemColors.ActiveCaptionText;
     this.label197.Location = new System.Drawing.Point(450, 10);
     this.label197.Name = "label197";
     this.label197.Size = new System.Drawing.Size(188, 24);
     this.label197.TabIndex = 6;
     this.label197.Text = "ගමන්  බලපත්‍ර තොරතුරු";
     //
     // panel10
     //
     this.panel10.BackColor = System.Drawing.SystemColors.ControlLightLight;
     this.panel10.Controls.Add(this.passport_renewal_date);
     this.panel10.Controls.Add(this.passport_issued_date);
     this.panel10.Controls.Add(this.passport_status_deactive);
     this.panel10.Controls.Add(this.passport_status_active);
     this.panel10.Controls.Add(this.label162);
     this.panel10.Controls.Add(this.label163);
     this.panel10.Controls.Add(this.label164);
     this.panel10.Controls.Add(this.label165);
     this.panel10.Controls.Add(this.label166);
     this.panel10.Controls.Add(this.label167);
     this.panel10.Controls.Add(this.label168);
     this.panel10.Controls.Add(this.passport_post);
     this.panel10.Controls.Add(this.passport_rank);
     this.panel10.Controls.Add(this.passport_issued_place);
     this.panel10.Controls.Add(this.passport_no);
     this.panel10.Location = new System.Drawing.Point(3, 2749);
     this.panel10.Name = "panel10";
     this.panel10.Size = new System.Drawing.Size(1049, 362);
     this.panel10.TabIndex = 21;
     //
     // passport_renewal_date
     //
     this.passport_renewal_date.Font = new System.Drawing.Font("Calibri", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.passport_renewal_date.Location = new System.Drawing.Point(266, 220);
     this.passport_renewal_date.Name = "passport_renewal_date";
     this.passport_renewal_date.Size = new System.Drawing.Size(294, 31);
     this.passport_renewal_date.TabIndex = 52;
     //
     // passport_issued_date
     //
     this.passport_issued_date.Font = new System.Drawing.Font("Calibri", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.passport_issued_date.Location = new System.Drawing.Point(266, 181);
     this.passport_issued_date.Name = "passport_issued_date";
     this.passport_issued_date.Size = new System.Drawing.Size(294, 31);
     this.passport_issued_date.TabIndex = 51;
     //
     // passport_status_deactive
     //
     this.passport_status_deactive.AutoSize = true;
     this.passport_status_deactive.Font = new System.Drawing.Font("Calibri", 15.75F);
     this.passport_status_deactive.Location = new System.Drawing.Point(405, 261);
     this.passport_status_deactive.Name = "passport_status_deactive";
     this.passport_status_deactive.Size = new System.Drawing.Size(74, 30);
     this.passport_status_deactive.TabIndex = 50;
     this.passport_status_deactive.TabStop = true;
     this.passport_status_deactive.Text = "අක්‍රීය";
     this.passport_status_deactive.UseVisualStyleBackColor = true;
     //
     // passport_status_active
     //
     this.passport_status_active.AutoSize = true;
     this.passport_status_active.Font = new System.Drawing.Font("Calibri", 15.75F);
     this.passport_status_active.Location = new System.Drawing.Point(266, 261);
     this.passport_status_active.Name = "passport_status_active";
     this.passport_status_active.Size = new System.Drawing.Size(77, 30);
     this.passport_status_active.TabIndex = 49;
     this.passport_status_active.TabStop = true;
     this.passport_status_active.Text = "සක්‍රීය";
     this.passport_status_active.UseVisualStyleBackColor = true;
     //
     // label162
     //
     this.label162.AutoSize = true;
     this.label162.Font = new System.Drawing.Font("Calibri", 15.75F);
     this.label162.Location = new System.Drawing.Point(184, 263);
     this.label162.Name = "label162";
     this.label162.Size = new System.Drawing.Size(73, 26);
     this.label162.TabIndex = 42;
     this.label162.Text = "තත්වය";
     this.label162.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // label163
     //
     this.label163.AutoSize = true;
     this.label163.Font = new System.Drawing.Font("Calibri", 15.75F);
     this.label163.Location = new System.Drawing.Point(119, 224);
     this.label163.Name = "label163";
     this.label163.Size = new System.Drawing.Size(138, 26);
     this.label163.TabIndex = 43;
     this.label163.Text = "අළුත් කළ දිනය";
     this.label163.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // label164
     //
     this.label164.AutoSize = true;
     this.label164.Font = new System.Drawing.Font("Calibri", 15.75F);
     this.label164.Location = new System.Drawing.Point(182, 67);
     this.label164.Name = "label164";
     this.label164.Size = new System.Drawing.Size(75, 26);
     this.label164.TabIndex = 44;
     this.label164.Text = "තනතුර";
     this.label164.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // label165
     //
     this.label165.AutoSize = true;
     this.label165.Font = new System.Drawing.Font("Calibri", 15.75F);
     this.label165.Location = new System.Drawing.Point(111, 184);
     this.label165.Name = "label165";
     this.label165.Size = new System.Drawing.Size(146, 26);
     this.label165.TabIndex = 45;
     this.label165.Text = "නිකුත් කළ දිනය";
     this.label165.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // label166
     //
     this.label166.AutoSize = true;
     this.label166.Font = new System.Drawing.Font("Calibri", 15.75F);
     this.label166.Location = new System.Drawing.Point(201, 28);
     this.label166.Name = "label166";
     this.label166.Size = new System.Drawing.Size(56, 26);
     this.label166.TabIndex = 46;
     this.label166.Text = "නිලය";
     this.label166.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // label167
     //
     this.label167.AutoSize = true;
     this.label167.Font = new System.Drawing.Font("Calibri", 15.75F);
     this.label167.Location = new System.Drawing.Point(85, 145);
     this.label167.Name = "label167";
     this.label167.Size = new System.Drawing.Size(172, 26);
     this.label167.TabIndex = 47;
     this.label167.Text = "නිකුත් කළ ස්ථානය";
     this.label167.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // label168
     //
     this.label168.AutoSize = true;
     this.label168.Font = new System.Drawing.Font("Calibri", 15.75F);
     this.label168.Location = new System.Drawing.Point(20, 106);
     this.label168.Name = "label168";
     this.label168.Size = new System.Drawing.Size(241, 26);
     this.label168.TabIndex = 48;
     this.label168.Text = "විදේශ ගමන් බලපත්‍ර අංකය ";
     this.label168.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // passport_post
     //
     this.passport_post.Font = new System.Drawing.Font("Calibri", 15.75F);
     this.passport_post.Location = new System.Drawing.Point(266, 64);
     this.passport_post.Name = "passport_post";
     this.passport_post.Size = new System.Drawing.Size(294, 33);
     this.passport_post.TabIndex = 41;
     //
     // passport_rank
     //
     this.passport_rank.Font = new System.Drawing.Font("Calibri", 15.75F);
     this.passport_rank.Location = new System.Drawing.Point(266, 25);
     this.passport_rank.Name = "passport_rank";
     this.passport_rank.Size = new System.Drawing.Size(294, 33);
     this.passport_rank.TabIndex = 40;
     //
     // passport_issued_place
     //
     this.passport_issued_place.Font = new System.Drawing.Font("Calibri", 15.75F);
     this.passport_issued_place.Location = new System.Drawing.Point(266, 142);
     this.passport_issued_place.Name = "passport_issued_place";
     this.passport_issued_place.Size = new System.Drawing.Size(294, 33);
     this.passport_issued_place.TabIndex = 39;
     //
     // passport_no
     //
     this.passport_no.Font = new System.Drawing.Font("Calibri", 15.75F);
     this.passport_no.Location = new System.Drawing.Point(266, 103);
     this.passport_no.Name = "passport_no";
     this.passport_no.Size = new System.Drawing.Size(294, 33);
     this.passport_no.TabIndex = 38;
     //
     // frmSearch
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.BackColor = System.Drawing.SystemColors.ControlLightLight;
     this.ClientSize = new System.Drawing.Size(1360, 768);
     this.Controls.Add(this.flowLayoutPanel);
     this.Controls.Add(this.panel2);
     this.Controls.Add(this.panel3);
     this.Controls.Add(this.panel5);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
     this.Name = "frmSearch";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "frmTransport";
     this.WindowState = System.Windows.Forms.FormWindowState.Maximized;
     this.panel5.ResumeLayout(false);
     this.panel5.PerformLayout();
     this.panel2.ResumeLayout(false);
     this.panel2.PerformLayout();
     this.panel3.ResumeLayout(false);
     this.panel4.ResumeLayout(false);
     this.panel4.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.imgEmployee)).EndInit();
     this.flowLayoutPanel.ResumeLayout(false);
     this.panel1.ResumeLayout(false);
     this.panel1.PerformLayout();
     this.panel9.ResumeLayout(false);
     this.panel9.PerformLayout();
     this.panel12.ResumeLayout(false);
     this.tabControl1.ResumeLayout(false);
     this.tabPage1.ResumeLayout(false);
     this.tabPage1.PerformLayout();
     this.tabPage2.ResumeLayout(false);
     this.tabPage2.PerformLayout();
     this.tabPage3.ResumeLayout(false);
     this.tabPage3.PerformLayout();
     this.tabPage4.ResumeLayout(false);
     this.tabPage4.PerformLayout();
     this.tabPage5.ResumeLayout(false);
     this.tabPage5.PerformLayout();
     this.panel6.ResumeLayout(false);
     this.panel6.PerformLayout();
     this.tabControl2.ResumeLayout(false);
     this.tabPersonalDetails.ResumeLayout(false);
     this.tabPersonalDetails.PerformLayout();
     this.tabPage6.ResumeLayout(false);
     this.tabPage6.PerformLayout();
     this.tabPage7.ResumeLayout(false);
     this.tabPage7.PerformLayout();
     this.tabPage8.ResumeLayout(false);
     this.tabPage8.PerformLayout();
     this.tabPage9.ResumeLayout(false);
     this.tabPage9.PerformLayout();
     this.tabPage10.ResumeLayout(false);
     this.tabPage10.PerformLayout();
     this.panel7.ResumeLayout(false);
     this.panel7.PerformLayout();
     this.tabControl3.ResumeLayout(false);
     this.tabPage11.ResumeLayout(false);
     this.tabPage11.PerformLayout();
     this.tabPage12.ResumeLayout(false);
     this.tabPage12.PerformLayout();
     this.tabPage13.ResumeLayout(false);
     this.tabPage13.PerformLayout();
     this.panel8.ResumeLayout(false);
     this.panel8.PerformLayout();
     this.tabControl4.ResumeLayout(false);
     this.tabPage14.ResumeLayout(false);
     this.tabPage14.PerformLayout();
     this.tabPage15.ResumeLayout(false);
     this.tabPage15.PerformLayout();
     this.tabPage16.ResumeLayout(false);
     this.tabPage16.PerformLayout();
     this.panel11.ResumeLayout(false);
     this.panel11.PerformLayout();
     this.panel10.ResumeLayout(false);
     this.panel10.PerformLayout();
     this.ResumeLayout(false);
 }
Example #53
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     System.Windows.Forms.FlowLayoutPanel           flMenu;
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(fm_inDex_Main));
     this.lblDanhMuc        = new System.Windows.Forms.Label();
     this.btnHangHoa        = new System.Windows.Forms.Button();
     this.btnNguonHang      = new System.Windows.Forms.Button();
     this.btnNhomHang       = new System.Windows.Forms.Button();
     this.btnKhachHang      = new System.Windows.Forms.Button();
     this.btnKhoHang        = new System.Windows.Forms.Button();
     this.btn_nhanvien      = new System.Windows.Forms.Button();
     this.lblNghiepVu       = new System.Windows.Forms.Label();
     this.btnBanHang        = new System.Windows.Forms.Button();
     this.btnBaoCao         = new System.Windows.Forms.Button();
     this.btnDoiHang        = new System.Windows.Forms.Button();
     this.btnNhapHang       = new System.Windows.Forms.Button();
     this.btnPhieuChi       = new System.Windows.Forms.Button();
     this.btnPhieuThu       = new System.Windows.Forms.Button();
     this.btnHoaDonDoi      = new System.Windows.Forms.Button();
     this.btnHoaDonBan      = new System.Windows.Forms.Button();
     this.lblHeThong        = new System.Windows.Forms.Label();
     this.btnDoiMatKhau     = new System.Windows.Forms.Button();
     this.btnNhanVien       = new System.Windows.Forms.Button();
     this.btnTTCuaHang      = new System.Windows.Forms.Button();
     this.btnSaoLuu         = new System.Windows.Forms.Button();
     this.btnPhucHoi        = new System.Windows.Forms.Button();
     this.label4            = new System.Windows.Forms.Label();
     this.btnTTTacGia       = new System.Windows.Forms.Button();
     this.btnHoTro          = new System.Windows.Forms.Button();
     this.btnSuDung         = new System.Windows.Forms.Button();
     this.menuBar           = new System.Windows.Forms.PictureBox();
     this.lblXinChao        = new System.Windows.Forms.Label();
     this.bgMain            = new System.Windows.Forms.PictureBox();
     this.gb_thongtincanhan = new System.Windows.Forms.GroupBox();
     this.lb_diachi         = new System.Windows.Forms.Label();
     this.label12           = new System.Windows.Forms.Label();
     this.lb_socmnd         = new System.Windows.Forms.Label();
     this.label10           = new System.Windows.Forms.Label();
     this.lb_sodt           = new System.Windows.Forms.Label();
     this.label8            = new System.Windows.Forms.Label();
     this.lb_gioitinh       = new System.Windows.Forms.Label();
     this.label6            = new System.Windows.Forms.Label();
     this.lb_namsinh        = new System.Windows.Forms.Label();
     this.label3            = new System.Windows.Forms.Label();
     this.lb_hoten          = new System.Windows.Forms.Label();
     this.label1            = new System.Windows.Forms.Label();
     this.gb_quyensudung    = new System.Windows.Forms.GroupBox();
     this.comboBox1         = new System.Windows.Forms.ComboBox();
     this.label22           = new System.Windows.Forms.Label();
     this.lb_quyensudung    = new System.Windows.Forms.Label();
     this.label20           = new System.Windows.Forms.Label();
     this.gb_thongtinnoilam = new System.Windows.Forms.GroupBox();
     this.lb_vaolam         = new System.Windows.Forms.Label();
     this.label18           = new System.Windows.Forms.Label();
     this.lb_chucvu         = new System.Windows.Forms.Label();
     this.label16           = new System.Windows.Forms.Label();
     this.lb_manv           = new System.Windows.Forms.Label();
     this.label14           = new System.Windows.Forms.Label();
     this.ptb_anhnv         = new System.Windows.Forms.PictureBox();
     flMenu = new System.Windows.Forms.FlowLayoutPanel();
     flMenu.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.menuBar)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.bgMain)).BeginInit();
     this.gb_thongtincanhan.SuspendLayout();
     this.gb_quyensudung.SuspendLayout();
     this.gb_thongtinnoilam.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.ptb_anhnv)).BeginInit();
     this.SuspendLayout();
     //
     // flMenu
     //
     flMenu.AllowDrop = true;
     resources.ApplyResources(flMenu, "flMenu");
     flMenu.Controls.Add(this.lblDanhMuc);
     flMenu.Controls.Add(this.btnHangHoa);
     flMenu.Controls.Add(this.btnNguonHang);
     flMenu.Controls.Add(this.btnNhomHang);
     flMenu.Controls.Add(this.btnKhachHang);
     flMenu.Controls.Add(this.btnKhoHang);
     flMenu.Controls.Add(this.btn_nhanvien);
     flMenu.Controls.Add(this.lblNghiepVu);
     flMenu.Controls.Add(this.btnBanHang);
     flMenu.Controls.Add(this.btnBaoCao);
     flMenu.Controls.Add(this.btnDoiHang);
     flMenu.Controls.Add(this.btnNhapHang);
     flMenu.Controls.Add(this.btnPhieuChi);
     flMenu.Controls.Add(this.btnPhieuThu);
     flMenu.Controls.Add(this.btnHoaDonDoi);
     flMenu.Controls.Add(this.btnHoaDonBan);
     flMenu.Controls.Add(this.lblHeThong);
     flMenu.Controls.Add(this.btnDoiMatKhau);
     flMenu.Controls.Add(this.btnNhanVien);
     flMenu.Controls.Add(this.btnTTCuaHang);
     flMenu.Controls.Add(this.btnSaoLuu);
     flMenu.Controls.Add(this.btnPhucHoi);
     flMenu.Controls.Add(this.label4);
     flMenu.Controls.Add(this.btnTTTacGia);
     flMenu.Controls.Add(this.btnHoTro);
     flMenu.Controls.Add(this.btnSuDung);
     flMenu.Name = "flMenu";
     //
     // lblDanhMuc
     //
     this.lblDanhMuc.BackColor = System.Drawing.Color.Transparent;
     resources.ApplyResources(this.lblDanhMuc, "lblDanhMuc");
     this.lblDanhMuc.ForeColor = System.Drawing.Color.Maroon;
     this.lblDanhMuc.Name      = "lblDanhMuc";
     this.lblDanhMuc.Click    += new System.EventHandler(this.label3_Click);
     //
     // btnHangHoa
     //
     this.btnHangHoa.BackColor = System.Drawing.SystemColors.ControlLightLight;
     resources.ApplyResources(this.btnHangHoa, "btnHangHoa");
     this.btnHangHoa.ForeColor = System.Drawing.SystemColors.ButtonHighlight;
     this.btnHangHoa.Name      = "btnHangHoa";
     this.btnHangHoa.UseVisualStyleBackColor = false;
     //
     // btnNguonHang
     //
     this.btnNguonHang.BackColor = System.Drawing.SystemColors.ControlLightLight;
     resources.ApplyResources(this.btnNguonHang, "btnNguonHang");
     this.btnNguonHang.ForeColor = System.Drawing.SystemColors.ButtonHighlight;
     this.btnNguonHang.Name      = "btnNguonHang";
     this.btnNguonHang.UseVisualStyleBackColor = false;
     //
     // btnNhomHang
     //
     this.btnNhomHang.BackColor = System.Drawing.SystemColors.ControlLightLight;
     resources.ApplyResources(this.btnNhomHang, "btnNhomHang");
     this.btnNhomHang.ForeColor = System.Drawing.SystemColors.ButtonHighlight;
     this.btnNhomHang.Name      = "btnNhomHang";
     this.btnNhomHang.UseVisualStyleBackColor = false;
     //
     // btnKhachHang
     //
     this.btnKhachHang.BackColor = System.Drawing.SystemColors.ControlLightLight;
     resources.ApplyResources(this.btnKhachHang, "btnKhachHang");
     this.btnKhachHang.ForeColor = System.Drawing.SystemColors.ButtonHighlight;
     this.btnKhachHang.Name      = "btnKhachHang";
     this.btnKhachHang.UseVisualStyleBackColor = false;
     //
     // btnKhoHang
     //
     this.btnKhoHang.BackColor = System.Drawing.SystemColors.ControlLightLight;
     resources.ApplyResources(this.btnKhoHang, "btnKhoHang");
     this.btnKhoHang.ForeColor = System.Drawing.SystemColors.ButtonHighlight;
     this.btnKhoHang.Name      = "btnKhoHang";
     this.btnKhoHang.UseVisualStyleBackColor = false;
     //
     // btn_nhanvien
     //
     this.btn_nhanvien.BackColor = System.Drawing.SystemColors.ControlLightLight;
     resources.ApplyResources(this.btn_nhanvien, "btn_nhanvien");
     this.btn_nhanvien.ForeColor = System.Drawing.SystemColors.ButtonHighlight;
     this.btn_nhanvien.Name      = "btn_nhanvien";
     this.btn_nhanvien.UseVisualStyleBackColor = false;
     this.btn_nhanvien.Click += new System.EventHandler(this.btn_nhanvien_Click);
     //
     // lblNghiepVu
     //
     this.lblNghiepVu.BackColor = System.Drawing.Color.Transparent;
     resources.ApplyResources(this.lblNghiepVu, "lblNghiepVu");
     this.lblNghiepVu.ForeColor = System.Drawing.Color.Maroon;
     this.lblNghiepVu.Name      = "lblNghiepVu";
     //
     // btnBanHang
     //
     this.btnBanHang.BackColor = System.Drawing.SystemColors.ControlLightLight;
     resources.ApplyResources(this.btnBanHang, "btnBanHang");
     this.btnBanHang.ForeColor = System.Drawing.SystemColors.ButtonHighlight;
     this.btnBanHang.Name      = "btnBanHang";
     this.btnBanHang.UseVisualStyleBackColor = false;
     //
     // btnBaoCao
     //
     this.btnBaoCao.BackColor = System.Drawing.SystemColors.ControlLightLight;
     resources.ApplyResources(this.btnBaoCao, "btnBaoCao");
     this.btnBaoCao.ForeColor = System.Drawing.SystemColors.ButtonHighlight;
     this.btnBaoCao.Name      = "btnBaoCao";
     this.btnBaoCao.UseVisualStyleBackColor = false;
     //
     // btnDoiHang
     //
     this.btnDoiHang.BackColor = System.Drawing.SystemColors.ControlLightLight;
     resources.ApplyResources(this.btnDoiHang, "btnDoiHang");
     this.btnDoiHang.ForeColor = System.Drawing.SystemColors.ButtonHighlight;
     this.btnDoiHang.Name      = "btnDoiHang";
     this.btnDoiHang.UseVisualStyleBackColor = false;
     //
     // btnNhapHang
     //
     this.btnNhapHang.BackColor = System.Drawing.SystemColors.ControlLightLight;
     resources.ApplyResources(this.btnNhapHang, "btnNhapHang");
     this.btnNhapHang.ForeColor = System.Drawing.SystemColors.ButtonHighlight;
     this.btnNhapHang.Name      = "btnNhapHang";
     this.btnNhapHang.UseVisualStyleBackColor = false;
     this.btnNhapHang.Click += new System.EventHandler(this.button6_Click);
     //
     // btnPhieuChi
     //
     this.btnPhieuChi.BackColor = System.Drawing.SystemColors.ControlLightLight;
     resources.ApplyResources(this.btnPhieuChi, "btnPhieuChi");
     this.btnPhieuChi.ForeColor = System.Drawing.SystemColors.ButtonHighlight;
     this.btnPhieuChi.Name      = "btnPhieuChi";
     this.btnPhieuChi.UseVisualStyleBackColor = false;
     //
     // btnPhieuThu
     //
     this.btnPhieuThu.BackColor = System.Drawing.SystemColors.ControlLightLight;
     resources.ApplyResources(this.btnPhieuThu, "btnPhieuThu");
     this.btnPhieuThu.ForeColor = System.Drawing.SystemColors.ButtonHighlight;
     this.btnPhieuThu.Name      = "btnPhieuThu";
     this.btnPhieuThu.UseVisualStyleBackColor = false;
     //
     // btnHoaDonDoi
     //
     this.btnHoaDonDoi.BackColor = System.Drawing.SystemColors.ControlLightLight;
     resources.ApplyResources(this.btnHoaDonDoi, "btnHoaDonDoi");
     this.btnHoaDonDoi.ForeColor = System.Drawing.SystemColors.ButtonHighlight;
     this.btnHoaDonDoi.Name      = "btnHoaDonDoi";
     this.btnHoaDonDoi.UseVisualStyleBackColor = false;
     //
     // btnHoaDonBan
     //
     this.btnHoaDonBan.BackColor = System.Drawing.SystemColors.ControlLightLight;
     resources.ApplyResources(this.btnHoaDonBan, "btnHoaDonBan");
     this.btnHoaDonBan.ForeColor = System.Drawing.SystemColors.ButtonHighlight;
     this.btnHoaDonBan.Name      = "btnHoaDonBan";
     this.btnHoaDonBan.UseVisualStyleBackColor = false;
     //
     // lblHeThong
     //
     this.lblHeThong.BackColor = System.Drawing.Color.Transparent;
     resources.ApplyResources(this.lblHeThong, "lblHeThong");
     this.lblHeThong.ForeColor = System.Drawing.Color.Maroon;
     this.lblHeThong.Name      = "lblHeThong";
     this.lblHeThong.Click    += new System.EventHandler(this.label2_Click);
     //
     // btnDoiMatKhau
     //
     this.btnDoiMatKhau.BackColor = System.Drawing.SystemColors.ControlLightLight;
     resources.ApplyResources(this.btnDoiMatKhau, "btnDoiMatKhau");
     this.btnDoiMatKhau.ForeColor = System.Drawing.SystemColors.ButtonHighlight;
     this.btnDoiMatKhau.Name      = "btnDoiMatKhau";
     this.btnDoiMatKhau.UseVisualStyleBackColor = false;
     //
     // btnNhanVien
     //
     this.btnNhanVien.BackColor = System.Drawing.SystemColors.ControlLightLight;
     resources.ApplyResources(this.btnNhanVien, "btnNhanVien");
     this.btnNhanVien.ForeColor = System.Drawing.SystemColors.ButtonHighlight;
     this.btnNhanVien.Name      = "btnNhanVien";
     this.btnNhanVien.UseVisualStyleBackColor = false;
     //
     // btnTTCuaHang
     //
     this.btnTTCuaHang.BackColor = System.Drawing.SystemColors.ControlLightLight;
     resources.ApplyResources(this.btnTTCuaHang, "btnTTCuaHang");
     this.btnTTCuaHang.ForeColor = System.Drawing.SystemColors.ButtonHighlight;
     this.btnTTCuaHang.Name      = "btnTTCuaHang";
     this.btnTTCuaHang.UseVisualStyleBackColor = false;
     //
     // btnSaoLuu
     //
     this.btnSaoLuu.BackColor = System.Drawing.SystemColors.ControlLightLight;
     resources.ApplyResources(this.btnSaoLuu, "btnSaoLuu");
     this.btnSaoLuu.ForeColor = System.Drawing.SystemColors.ButtonHighlight;
     this.btnSaoLuu.Name      = "btnSaoLuu";
     this.btnSaoLuu.UseVisualStyleBackColor = false;
     this.btnSaoLuu.Click += new System.EventHandler(this.btnHangHoa_Click);
     //
     // btnPhucHoi
     //
     this.btnPhucHoi.BackColor = System.Drawing.SystemColors.ControlLightLight;
     resources.ApplyResources(this.btnPhucHoi, "btnPhucHoi");
     this.btnPhucHoi.ForeColor = System.Drawing.SystemColors.ButtonHighlight;
     this.btnPhucHoi.Name      = "btnPhucHoi";
     this.btnPhucHoi.UseVisualStyleBackColor = false;
     //
     // label4
     //
     this.label4.BackColor = System.Drawing.Color.Transparent;
     resources.ApplyResources(this.label4, "label4");
     this.label4.ForeColor = System.Drawing.Color.Maroon;
     this.label4.Name      = "label4";
     this.label4.Click    += new System.EventHandler(this.label4_Click);
     //
     // btnTTTacGia
     //
     this.btnTTTacGia.BackColor = System.Drawing.SystemColors.ControlLightLight;
     resources.ApplyResources(this.btnTTTacGia, "btnTTTacGia");
     this.btnTTTacGia.ForeColor = System.Drawing.SystemColors.ButtonHighlight;
     this.btnTTTacGia.Name      = "btnTTTacGia";
     this.btnTTTacGia.UseVisualStyleBackColor = false;
     this.btnTTTacGia.Click += new System.EventHandler(this.btnNguonHang_Click);
     //
     // btnHoTro
     //
     this.btnHoTro.BackColor = System.Drawing.SystemColors.ControlLightLight;
     resources.ApplyResources(this.btnHoTro, "btnHoTro");
     this.btnHoTro.ForeColor = System.Drawing.SystemColors.ButtonHighlight;
     this.btnHoTro.Name      = "btnHoTro";
     this.btnHoTro.UseVisualStyleBackColor = false;
     //
     // btnSuDung
     //
     this.btnSuDung.BackColor = System.Drawing.SystemColors.ControlLightLight;
     resources.ApplyResources(this.btnSuDung, "btnSuDung");
     this.btnSuDung.ForeColor = System.Drawing.SystemColors.ButtonHighlight;
     this.btnSuDung.Name      = "btnSuDung";
     this.btnSuDung.UseVisualStyleBackColor = false;
     this.btnSuDung.Click += new System.EventHandler(this.button16_Click);
     //
     // menuBar
     //
     resources.ApplyResources(this.menuBar, "menuBar");
     this.menuBar.BackColor = System.Drawing.Color.Maroon;
     this.menuBar.Name      = "menuBar";
     this.menuBar.TabStop   = false;
     //
     // lblXinChao
     //
     resources.ApplyResources(this.lblXinChao, "lblXinChao");
     this.lblXinChao.Name = "lblXinChao";
     //
     // bgMain
     //
     resources.ApplyResources(this.bgMain, "bgMain");
     this.bgMain.BackColor = System.Drawing.Color.Azure;
     this.bgMain.Name      = "bgMain";
     this.bgMain.TabStop   = false;
     this.bgMain.Click    += new System.EventHandler(this.pictureBox3_Click);
     //
     // gb_thongtincanhan
     //
     resources.ApplyResources(this.gb_thongtincanhan, "gb_thongtincanhan");
     this.gb_thongtincanhan.Controls.Add(this.lb_diachi);
     this.gb_thongtincanhan.Controls.Add(this.label12);
     this.gb_thongtincanhan.Controls.Add(this.lb_socmnd);
     this.gb_thongtincanhan.Controls.Add(this.label10);
     this.gb_thongtincanhan.Controls.Add(this.lb_sodt);
     this.gb_thongtincanhan.Controls.Add(this.label8);
     this.gb_thongtincanhan.Controls.Add(this.lb_gioitinh);
     this.gb_thongtincanhan.Controls.Add(this.label6);
     this.gb_thongtincanhan.Controls.Add(this.lb_namsinh);
     this.gb_thongtincanhan.Controls.Add(this.label3);
     this.gb_thongtincanhan.Controls.Add(this.lb_hoten);
     this.gb_thongtincanhan.Controls.Add(this.label1);
     this.gb_thongtincanhan.Name    = "gb_thongtincanhan";
     this.gb_thongtincanhan.TabStop = false;
     //
     // lb_diachi
     //
     resources.ApplyResources(this.lb_diachi, "lb_diachi");
     this.lb_diachi.BackColor = System.Drawing.SystemColors.ButtonHighlight;
     this.lb_diachi.Name      = "lb_diachi";
     //
     // label12
     //
     resources.ApplyResources(this.label12, "label12");
     this.label12.Name = "label12";
     //
     // lb_socmnd
     //
     resources.ApplyResources(this.lb_socmnd, "lb_socmnd");
     this.lb_socmnd.BackColor = System.Drawing.SystemColors.ButtonHighlight;
     this.lb_socmnd.Name      = "lb_socmnd";
     this.lb_socmnd.Click    += new System.EventHandler(this.label11_Click);
     //
     // label10
     //
     resources.ApplyResources(this.label10, "label10");
     this.label10.Name = "label10";
     //
     // lb_sodt
     //
     resources.ApplyResources(this.lb_sodt, "lb_sodt");
     this.lb_sodt.BackColor = System.Drawing.SystemColors.ButtonHighlight;
     this.lb_sodt.Name      = "lb_sodt";
     //
     // label8
     //
     resources.ApplyResources(this.label8, "label8");
     this.label8.Name = "label8";
     //
     // lb_gioitinh
     //
     resources.ApplyResources(this.lb_gioitinh, "lb_gioitinh");
     this.lb_gioitinh.BackColor = System.Drawing.SystemColors.ButtonHighlight;
     this.lb_gioitinh.Name      = "lb_gioitinh";
     //
     // label6
     //
     resources.ApplyResources(this.label6, "label6");
     this.label6.Name = "label6";
     //
     // lb_namsinh
     //
     resources.ApplyResources(this.lb_namsinh, "lb_namsinh");
     this.lb_namsinh.BackColor = System.Drawing.SystemColors.ButtonHighlight;
     this.lb_namsinh.Name      = "lb_namsinh";
     //
     // label3
     //
     resources.ApplyResources(this.label3, "label3");
     this.label3.Name   = "label3";
     this.label3.Click += new System.EventHandler(this.label3_Click_1);
     //
     // lb_hoten
     //
     resources.ApplyResources(this.lb_hoten, "lb_hoten");
     this.lb_hoten.BackColor = System.Drawing.SystemColors.ButtonHighlight;
     this.lb_hoten.Name      = "lb_hoten";
     //
     // label1
     //
     resources.ApplyResources(this.label1, "label1");
     this.label1.Name = "label1";
     //
     // gb_quyensudung
     //
     resources.ApplyResources(this.gb_quyensudung, "gb_quyensudung");
     this.gb_quyensudung.BackColor = System.Drawing.Color.LavenderBlush;
     this.gb_quyensudung.Controls.Add(this.comboBox1);
     this.gb_quyensudung.Controls.Add(this.label22);
     this.gb_quyensudung.Controls.Add(this.lb_quyensudung);
     this.gb_quyensudung.Controls.Add(this.label20);
     this.gb_quyensudung.Name    = "gb_quyensudung";
     this.gb_quyensudung.TabStop = false;
     //
     // comboBox1
     //
     this.comboBox1.FormattingEnabled = true;
     resources.ApplyResources(this.comboBox1, "comboBox1");
     this.comboBox1.Name = "comboBox1";
     //
     // label22
     //
     resources.ApplyResources(this.label22, "label22");
     this.label22.Name = "label22";
     //
     // lb_quyensudung
     //
     resources.ApplyResources(this.lb_quyensudung, "lb_quyensudung");
     this.lb_quyensudung.BackColor = System.Drawing.SystemColors.ButtonHighlight;
     this.lb_quyensudung.Name      = "lb_quyensudung";
     //
     // label20
     //
     resources.ApplyResources(this.label20, "label20");
     this.label20.Name = "label20";
     //
     // gb_thongtinnoilam
     //
     resources.ApplyResources(this.gb_thongtinnoilam, "gb_thongtinnoilam");
     this.gb_thongtinnoilam.BackColor = System.Drawing.Color.Lavender;
     this.gb_thongtinnoilam.Controls.Add(this.lb_vaolam);
     this.gb_thongtinnoilam.Controls.Add(this.label18);
     this.gb_thongtinnoilam.Controls.Add(this.lb_chucvu);
     this.gb_thongtinnoilam.Controls.Add(this.label16);
     this.gb_thongtinnoilam.Controls.Add(this.lb_manv);
     this.gb_thongtinnoilam.Controls.Add(this.label14);
     this.gb_thongtinnoilam.Name    = "gb_thongtinnoilam";
     this.gb_thongtinnoilam.TabStop = false;
     //
     // lb_vaolam
     //
     resources.ApplyResources(this.lb_vaolam, "lb_vaolam");
     this.lb_vaolam.BackColor = System.Drawing.SystemColors.ButtonHighlight;
     this.lb_vaolam.Name      = "lb_vaolam";
     //
     // label18
     //
     resources.ApplyResources(this.label18, "label18");
     this.label18.Name = "label18";
     //
     // lb_chucvu
     //
     resources.ApplyResources(this.lb_chucvu, "lb_chucvu");
     this.lb_chucvu.BackColor = System.Drawing.SystemColors.ButtonHighlight;
     this.lb_chucvu.Name      = "lb_chucvu";
     //
     // label16
     //
     resources.ApplyResources(this.label16, "label16");
     this.label16.Name = "label16";
     //
     // lb_manv
     //
     resources.ApplyResources(this.lb_manv, "lb_manv");
     this.lb_manv.BackColor = System.Drawing.SystemColors.ButtonHighlight;
     this.lb_manv.Name      = "lb_manv";
     //
     // label14
     //
     resources.ApplyResources(this.label14, "label14");
     this.label14.Name = "label14";
     //
     // ptb_anhnv
     //
     resources.ApplyResources(this.ptb_anhnv, "ptb_anhnv");
     this.ptb_anhnv.Name    = "ptb_anhnv";
     this.ptb_anhnv.TabStop = false;
     //
     // fm_inDex_Main
     //
     resources.ApplyResources(this, "$this");
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi;
     this.Controls.Add(this.ptb_anhnv);
     this.Controls.Add(this.gb_thongtinnoilam);
     this.Controls.Add(this.gb_quyensudung);
     this.Controls.Add(this.gb_thongtincanhan);
     this.Controls.Add(this.bgMain);
     this.Controls.Add(this.lblXinChao);
     this.Controls.Add(this.menuBar);
     this.Controls.Add(flMenu);
     this.Name        = "fm_inDex_Main";
     this.WindowState = System.Windows.Forms.FormWindowState.Maximized;
     this.Load       += new System.EventHandler(this.inDex_Main_Load);
     flMenu.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.menuBar)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.bgMain)).EndInit();
     this.gb_thongtincanhan.ResumeLayout(false);
     this.gb_thongtincanhan.PerformLayout();
     this.gb_quyensudung.ResumeLayout(false);
     this.gb_quyensudung.PerformLayout();
     this.gb_thongtinnoilam.ResumeLayout(false);
     this.gb_thongtinnoilam.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.ptb_anhnv)).EndInit();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(ServerStarterView));
       this.lblYourIP = new System.Windows.Forms.Label();
       this.txtIpAddress = new System.Windows.Forms.TextBox();
       this.btnCancel = new RibbonStyle.RibbonMenuButton();
       this.pnlConsole = new System.Windows.Forms.Panel();
       this.consoleView = new PoL.WinFormsView.Game.ConsoleView();
       this.pnlConsoleTitle = new System.Windows.Forms.Panel();
       this.lblConsoleTitle = new RibbonStyle.RibbonMenuButton();
       this.pnlPlayers = new System.Windows.Forms.Panel();
       this.listPlayers = new System.Windows.Forms.FlowLayoutPanel();
       this.pnlPlayersTitle = new System.Windows.Forms.Panel();
       this.lblPlayers = new RibbonStyle.RibbonMenuButton();
       this.btnStart = new RibbonStyle.RibbonMenuButton();
       this.pnlConsole.SuspendLayout();
       this.pnlConsoleTitle.SuspendLayout();
       this.pnlPlayers.SuspendLayout();
       this.pnlPlayersTitle.SuspendLayout();
       this.SuspendLayout();
       //
       // lblYourIP
       //
       this.lblYourIP.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
       this.lblYourIP.Location = new System.Drawing.Point(12, 315);
       this.lblYourIP.Name = "lblYourIP";
       this.lblYourIP.Size = new System.Drawing.Size(104, 15);
       this.lblYourIP.TabIndex = 104;
       this.lblYourIP.Text = "Your IP:";
       this.lblYourIP.TextAlign = System.Drawing.ContentAlignment.TopRight;
       //
       // txtIpAddress
       //
       this.txtIpAddress.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
       this.txtIpAddress.Location = new System.Drawing.Point(12, 333);
       this.txtIpAddress.Name = "txtIpAddress";
       this.txtIpAddress.ReadOnly = true;
       this.txtIpAddress.Size = new System.Drawing.Size(104, 23);
       this.txtIpAddress.TabIndex = 105;
       this.txtIpAddress.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
       //
       // btnCancel
       //
       this.btnCancel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
       this.btnCancel.Arrow = RibbonStyle.RibbonMenuButton.e_arrow.None;
       this.btnCancel.BackColor = System.Drawing.Color.Transparent;
       this.btnCancel.ColorBase = System.Drawing.Color.FromArgb(((int)(((byte)(186)))), ((int)(((byte)(209)))), ((int)(((byte)(240)))));
       this.btnCancel.ColorBaseStroke = System.Drawing.Color.FromArgb(((int)(((byte)(100)))), ((int)(((byte)(59)))), ((int)(((byte)(66)))), ((int)(((byte)(76)))));
       this.btnCancel.ColorOn = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(214)))), ((int)(((byte)(78)))));
       this.btnCancel.ColorOnStroke = System.Drawing.Color.FromArgb(((int)(((byte)(196)))), ((int)(((byte)(177)))), ((int)(((byte)(118)))));
       this.btnCancel.ColorPress = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(128)))), ((int)(((byte)(0)))));
       this.btnCancel.ColorPressStroke = System.Drawing.Color.FromArgb(((int)(((byte)(128)))), ((int)(((byte)(64)))), ((int)(((byte)(0)))));
       this.btnCancel.FadingSpeed = 20;
       this.btnCancel.FlatAppearance.BorderSize = 0;
       this.btnCancel.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
       this.btnCancel.Font = new System.Drawing.Font("Segoe UI", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
       this.btnCancel.ForeColor = System.Drawing.Color.DarkBlue;
       this.btnCancel.GroupPos = RibbonStyle.RibbonMenuButton.e_groupPos.None;
       this.btnCancel.Image = global::PoL.WinFormsView.Properties.Resources.emblem_symbolic_link;
       this.btnCancel.ImageLocation = RibbonStyle.RibbonMenuButton.e_imagelocation.Left;
       this.btnCancel.ImageOffset = 8;
       this.btnCancel.IsPressed = false;
       this.btnCancel.KeepPress = false;
       this.btnCancel.Location = new System.Drawing.Point(318, 315);
       this.btnCancel.MaxImageSize = new System.Drawing.Point(24, 24);
       this.btnCancel.MenuPos = new System.Drawing.Point(0, 0);
       this.btnCancel.Name = "btnCancel";
       this.btnCancel.Radius = 15;
       this.btnCancel.ShowBase = RibbonStyle.RibbonMenuButton.e_showbase.Yes;
       this.btnCancel.Size = new System.Drawing.Size(117, 41);
       this.btnCancel.SplitButton = RibbonStyle.RibbonMenuButton.e_splitbutton.No;
       this.btnCancel.SplitDistance = 30;
       this.btnCancel.TabIndex = 108;
       this.btnCancel.Text = "Cancel";
       this.btnCancel.Title = "";
       this.btnCancel.UseVisualStyleBackColor = true;
       //
       // pnlConsole
       //
       this.pnlConsole.Controls.Add(this.consoleView);
       this.pnlConsole.Controls.Add(this.pnlConsoleTitle);
       this.pnlConsole.Location = new System.Drawing.Point(318, 12);
       this.pnlConsole.Name = "pnlConsole";
       this.pnlConsole.Size = new System.Drawing.Size(300, 290);
       this.pnlConsole.TabIndex = 109;
       //
       // consoleView
       //
       this.consoleView.CurrentText = "";
       this.consoleView.DefaultMessagesVisible = false;
       this.consoleView.Dock = System.Windows.Forms.DockStyle.Fill;
       this.consoleView.Location = new System.Drawing.Point(0, 45);
       this.consoleView.Name = "consoleView";
       this.consoleView.Size = new System.Drawing.Size(300, 245);
       this.consoleView.TabIndex = 1;
       //
       // pnlConsoleTitle
       //
       this.pnlConsoleTitle.Controls.Add(this.lblConsoleTitle);
       this.pnlConsoleTitle.Dock = System.Windows.Forms.DockStyle.Top;
       this.pnlConsoleTitle.Location = new System.Drawing.Point(0, 0);
       this.pnlConsoleTitle.Name = "pnlConsoleTitle";
       this.pnlConsoleTitle.Size = new System.Drawing.Size(300, 45);
       this.pnlConsoleTitle.TabIndex = 0;
       //
       // lblConsoleTitle
       //
       this.lblConsoleTitle.Arrow = RibbonStyle.RibbonMenuButton.e_arrow.None;
       this.lblConsoleTitle.BackColor = System.Drawing.Color.Transparent;
       this.lblConsoleTitle.ColorBase = System.Drawing.Color.FromArgb(((int)(((byte)(186)))), ((int)(((byte)(209)))), ((int)(((byte)(240)))));
       this.lblConsoleTitle.ColorBaseStroke = System.Drawing.Color.FromArgb(((int)(((byte)(152)))), ((int)(((byte)(187)))), ((int)(((byte)(213)))));
       this.lblConsoleTitle.ColorOn = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(214)))), ((int)(((byte)(78)))));
       this.lblConsoleTitle.ColorOnStroke = System.Drawing.Color.FromArgb(((int)(((byte)(196)))), ((int)(((byte)(177)))), ((int)(((byte)(118)))));
       this.lblConsoleTitle.ColorPress = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(128)))), ((int)(((byte)(0)))));
       this.lblConsoleTitle.ColorPressStroke = System.Drawing.Color.FromArgb(((int)(((byte)(128)))), ((int)(((byte)(64)))), ((int)(((byte)(0)))));
       this.lblConsoleTitle.Dock = System.Windows.Forms.DockStyle.Fill;
       this.lblConsoleTitle.Enabled = false;
       this.lblConsoleTitle.FadingSpeed = 0;
       this.lblConsoleTitle.FlatAppearance.BorderSize = 0;
       this.lblConsoleTitle.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
       this.lblConsoleTitle.Font = new System.Drawing.Font("Segoe UI", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
       this.lblConsoleTitle.ForeColor = System.Drawing.Color.DarkBlue;
       this.lblConsoleTitle.GroupPos = RibbonStyle.RibbonMenuButton.e_groupPos.Top;
       this.lblConsoleTitle.ImageLocation = RibbonStyle.RibbonMenuButton.e_imagelocation.Left;
       this.lblConsoleTitle.ImageOffset = 5;
       this.lblConsoleTitle.IsPressed = false;
       this.lblConsoleTitle.KeepPress = false;
       this.lblConsoleTitle.Location = new System.Drawing.Point(0, 0);
       this.lblConsoleTitle.MaxImageSize = new System.Drawing.Point(38, 0);
       this.lblConsoleTitle.MenuPos = new System.Drawing.Point(0, 0);
       this.lblConsoleTitle.Name = "lblConsoleTitle";
       this.lblConsoleTitle.Radius = 15;
       this.lblConsoleTitle.ShowBase = RibbonStyle.RibbonMenuButton.e_showbase.Yes;
       this.lblConsoleTitle.Size = new System.Drawing.Size(300, 45);
       this.lblConsoleTitle.SplitButton = RibbonStyle.RibbonMenuButton.e_splitbutton.No;
       this.lblConsoleTitle.SplitDistance = 0;
       this.lblConsoleTitle.TabIndex = 49;
       this.lblConsoleTitle.Text = "Chat";
       this.lblConsoleTitle.Title = "Chat";
       this.lblConsoleTitle.UseVisualStyleBackColor = true;
       //
       // pnlPlayers
       //
       this.pnlPlayers.Controls.Add(this.listPlayers);
       this.pnlPlayers.Controls.Add(this.pnlPlayersTitle);
       this.pnlPlayers.Location = new System.Drawing.Point(12, 12);
       this.pnlPlayers.Name = "pnlPlayers";
       this.pnlPlayers.Size = new System.Drawing.Size(300, 290);
       this.pnlPlayers.TabIndex = 107;
       //
       // listPlayers
       //
       this.listPlayers.AutoScroll = true;
       this.listPlayers.BackColor = System.Drawing.Color.White;
       this.listPlayers.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
       this.listPlayers.Dock = System.Windows.Forms.DockStyle.Fill;
       this.listPlayers.FlowDirection = System.Windows.Forms.FlowDirection.TopDown;
       this.listPlayers.Location = new System.Drawing.Point(0, 45);
       this.listPlayers.Name = "listPlayers";
       this.listPlayers.Size = new System.Drawing.Size(300, 245);
       this.listPlayers.TabIndex = 112;
       this.listPlayers.WrapContents = false;
       //
       // pnlPlayersTitle
       //
       this.pnlPlayersTitle.Controls.Add(this.lblPlayers);
       this.pnlPlayersTitle.Dock = System.Windows.Forms.DockStyle.Top;
       this.pnlPlayersTitle.Location = new System.Drawing.Point(0, 0);
       this.pnlPlayersTitle.Name = "pnlPlayersTitle";
       this.pnlPlayersTitle.Size = new System.Drawing.Size(300, 45);
       this.pnlPlayersTitle.TabIndex = 107;
       //
       // lblPlayers
       //
       this.lblPlayers.Arrow = RibbonStyle.RibbonMenuButton.e_arrow.None;
       this.lblPlayers.BackColor = System.Drawing.Color.Transparent;
       this.lblPlayers.ColorBase = System.Drawing.Color.FromArgb(((int)(((byte)(186)))), ((int)(((byte)(209)))), ((int)(((byte)(240)))));
       this.lblPlayers.ColorBaseStroke = System.Drawing.Color.FromArgb(((int)(((byte)(152)))), ((int)(((byte)(187)))), ((int)(((byte)(213)))));
       this.lblPlayers.ColorOn = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(214)))), ((int)(((byte)(78)))));
       this.lblPlayers.ColorOnStroke = System.Drawing.Color.FromArgb(((int)(((byte)(196)))), ((int)(((byte)(177)))), ((int)(((byte)(118)))));
       this.lblPlayers.ColorPress = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(128)))), ((int)(((byte)(0)))));
       this.lblPlayers.ColorPressStroke = System.Drawing.Color.FromArgb(((int)(((byte)(128)))), ((int)(((byte)(64)))), ((int)(((byte)(0)))));
       this.lblPlayers.Dock = System.Windows.Forms.DockStyle.Fill;
       this.lblPlayers.Enabled = false;
       this.lblPlayers.FadingSpeed = 0;
       this.lblPlayers.FlatAppearance.BorderSize = 0;
       this.lblPlayers.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
       this.lblPlayers.Font = new System.Drawing.Font("Segoe UI", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
       this.lblPlayers.ForeColor = System.Drawing.Color.DarkBlue;
       this.lblPlayers.GroupPos = RibbonStyle.RibbonMenuButton.e_groupPos.Top;
       this.lblPlayers.ImageLocation = RibbonStyle.RibbonMenuButton.e_imagelocation.Left;
       this.lblPlayers.ImageOffset = 5;
       this.lblPlayers.IsPressed = false;
       this.lblPlayers.KeepPress = false;
       this.lblPlayers.Location = new System.Drawing.Point(0, 0);
       this.lblPlayers.MaxImageSize = new System.Drawing.Point(38, 0);
       this.lblPlayers.MenuPos = new System.Drawing.Point(0, 0);
       this.lblPlayers.Name = "lblPlayers";
       this.lblPlayers.Radius = 15;
       this.lblPlayers.ShowBase = RibbonStyle.RibbonMenuButton.e_showbase.Yes;
       this.lblPlayers.Size = new System.Drawing.Size(300, 45);
       this.lblPlayers.SplitButton = RibbonStyle.RibbonMenuButton.e_splitbutton.No;
       this.lblPlayers.SplitDistance = 0;
       this.lblPlayers.TabIndex = 48;
       this.lblPlayers.Text = "Player list";
       this.lblPlayers.Title = "Players";
       this.lblPlayers.UseVisualStyleBackColor = true;
       //
       // btnStart
       //
       this.btnStart.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
       this.btnStart.Arrow = RibbonStyle.RibbonMenuButton.e_arrow.None;
       this.btnStart.BackColor = System.Drawing.Color.Transparent;
       this.btnStart.ColorBase = System.Drawing.Color.FromArgb(((int)(((byte)(186)))), ((int)(((byte)(209)))), ((int)(((byte)(240)))));
       this.btnStart.ColorBaseStroke = System.Drawing.Color.FromArgb(((int)(((byte)(100)))), ((int)(((byte)(59)))), ((int)(((byte)(66)))), ((int)(((byte)(76)))));
       this.btnStart.ColorOn = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(214)))), ((int)(((byte)(78)))));
       this.btnStart.ColorOnStroke = System.Drawing.Color.FromArgb(((int)(((byte)(196)))), ((int)(((byte)(177)))), ((int)(((byte)(118)))));
       this.btnStart.ColorPress = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(128)))), ((int)(((byte)(0)))));
       this.btnStart.ColorPressStroke = System.Drawing.Color.FromArgb(((int)(((byte)(128)))), ((int)(((byte)(64)))), ((int)(((byte)(0)))));
       this.btnStart.FadingSpeed = 20;
       this.btnStart.FlatAppearance.BorderSize = 0;
       this.btnStart.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
       this.btnStart.Font = new System.Drawing.Font("Segoe UI", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
       this.btnStart.ForeColor = System.Drawing.Color.DarkBlue;
       this.btnStart.GroupPos = RibbonStyle.RibbonMenuButton.e_groupPos.None;
       this.btnStart.Image = global::PoL.WinFormsView.Properties.Resources.emblem_default;
       this.btnStart.ImageLocation = RibbonStyle.RibbonMenuButton.e_imagelocation.Left;
       this.btnStart.ImageOffset = 8;
       this.btnStart.IsPressed = false;
       this.btnStart.KeepPress = false;
       this.btnStart.Location = new System.Drawing.Point(195, 315);
       this.btnStart.MaxImageSize = new System.Drawing.Point(24, 24);
       this.btnStart.MenuPos = new System.Drawing.Point(0, 0);
       this.btnStart.Name = "btnStart";
       this.btnStart.Radius = 15;
       this.btnStart.ShowBase = RibbonStyle.RibbonMenuButton.e_showbase.Yes;
       this.btnStart.Size = new System.Drawing.Size(117, 41);
       this.btnStart.SplitButton = RibbonStyle.RibbonMenuButton.e_splitbutton.No;
       this.btnStart.SplitDistance = 30;
       this.btnStart.TabIndex = 110;
       this.btnStart.Text = "Start";
       this.btnStart.Title = "";
       this.btnStart.UseVisualStyleBackColor = true;
       //
       // ServerStarterView
       //
       this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 15F);
       this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
       this.BackColor = System.Drawing.SystemColors.Control;
       this.ClientSize = new System.Drawing.Size(630, 368);
       this.Controls.Add(this.btnStart);
       this.Controls.Add(this.btnCancel);
       this.Controls.Add(this.pnlConsole);
       this.Controls.Add(this.pnlPlayers);
       this.Controls.Add(this.lblYourIP);
       this.Controls.Add(this.txtIpAddress);
       this.Font = new System.Drawing.Font("Segoe UI", 9F);
       this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
       this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
       this.MaximizeBox = false;
       this.MinimizeBox = false;
       this.Name = "ServerStarterView";
       this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
       this.Text = "Create Multiplayer game";
       this.pnlConsole.ResumeLayout(false);
       this.pnlConsoleTitle.ResumeLayout(false);
       this.pnlPlayers.ResumeLayout(false);
       this.pnlPlayersTitle.ResumeLayout(false);
       this.ResumeLayout(false);
       this.PerformLayout();
 }
Example #55
0
 /// <summary>
 /// This method is required for Windows Forms designer support.
 /// Do not change the method contents inside the source code editor. The Forms designer might
 /// not be able to load this method if it was changed manually.
 /// </summary>
 private void InitializeComponent()
 {
     this.tableLayoutPanel1 = new System.Windows.Forms.TableLayoutPanel();
     this.textBoxPatterns   = new System.Windows.Forms.TextBox();
     this.flowLayoutPanel1  = new System.Windows.Forms.FlowLayoutPanel();
     this.buttonCancel      = new System.Windows.Forms.Button();
     this.buttonOK          = new System.Windows.Forms.Button();
     this.label1            = new System.Windows.Forms.Label();
     this.tableLayoutPanel1.SuspendLayout();
     this.flowLayoutPanel1.SuspendLayout();
     this.SuspendLayout();
     //
     // tableLayoutPanel1
     //
     this.tableLayoutPanel1.ColumnCount = 1;
     this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F));
     this.tableLayoutPanel1.Controls.Add(this.textBoxPatterns, 0, 1);
     this.tableLayoutPanel1.Controls.Add(this.flowLayoutPanel1, 0, 2);
     this.tableLayoutPanel1.Controls.Add(this.label1, 0, 0);
     this.tableLayoutPanel1.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.tableLayoutPanel1.Location = new System.Drawing.Point(0, 0);
     this.tableLayoutPanel1.Name     = "tableLayoutPanel1";
     this.tableLayoutPanel1.RowCount = 3;
     this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 60F));
     this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 100F));
     this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 60F));
     this.tableLayoutPanel1.Size     = new System.Drawing.Size(484, 462);
     this.tableLayoutPanel1.TabIndex = 0;
     //
     // textBoxPatterns
     //
     this.textBoxPatterns.AcceptsReturn = true;
     this.textBoxPatterns.Dock          = System.Windows.Forms.DockStyle.Fill;
     this.textBoxPatterns.Location      = new System.Drawing.Point(20, 60);
     this.textBoxPatterns.Margin        = new System.Windows.Forms.Padding(20, 0, 20, 20);
     this.textBoxPatterns.Multiline     = true;
     this.textBoxPatterns.Name          = "textBoxPatterns";
     this.textBoxPatterns.Size          = new System.Drawing.Size(444, 322);
     this.textBoxPatterns.TabIndex      = 0;
     this.textBoxPatterns.TabStop       = false;
     this.textBoxPatterns.WordWrap      = false;
     //
     // flowLayoutPanel1
     //
     this.flowLayoutPanel1.Controls.Add(this.buttonCancel);
     this.flowLayoutPanel1.Controls.Add(this.buttonOK);
     this.flowLayoutPanel1.Dock          = System.Windows.Forms.DockStyle.Fill;
     this.flowLayoutPanel1.FlowDirection = System.Windows.Forms.FlowDirection.RightToLeft;
     this.flowLayoutPanel1.Location      = new System.Drawing.Point(3, 405);
     this.flowLayoutPanel1.Name          = "flowLayoutPanel1";
     this.flowLayoutPanel1.Padding       = new System.Windows.Forms.Padding(10);
     this.flowLayoutPanel1.Size          = new System.Drawing.Size(478, 54);
     this.flowLayoutPanel1.TabIndex      = 1;
     //
     // buttonCancel
     //
     this.buttonCancel.DialogResult            = System.Windows.Forms.DialogResult.Cancel;
     this.buttonCancel.Location                = new System.Drawing.Point(380, 13);
     this.buttonCancel.Name                    = "buttonCancel";
     this.buttonCancel.Size                    = new System.Drawing.Size(75, 23);
     this.buttonCancel.TabIndex                = 1;
     this.buttonCancel.Text                    = "Cancel";
     this.buttonCancel.UseVisualStyleBackColor = true;
     //
     // buttonOK
     //
     this.buttonOK.DialogResult            = System.Windows.Forms.DialogResult.OK;
     this.buttonOK.Location                = new System.Drawing.Point(299, 13);
     this.buttonOK.Name                    = "buttonOK";
     this.buttonOK.Size                    = new System.Drawing.Size(75, 23);
     this.buttonOK.TabIndex                = 0;
     this.buttonOK.Text                    = "OK";
     this.buttonOK.UseVisualStyleBackColor = true;
     //
     // label1
     //
     this.label1.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.label1.Location = new System.Drawing.Point(20, 20);
     this.label1.Margin   = new System.Windows.Forms.Padding(20);
     this.label1.Name     = "label1";
     this.label1.Size     = new System.Drawing.Size(444, 20);
     this.label1.TabIndex = 2;
     this.label1.Text     = "Enter one Regular Expression per line:";
     //
     // MacroscopeExcludeUrlPatterns
     //
     this.AcceptButton        = this.buttonOK;
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.BackColor           = System.Drawing.SystemColors.ControlLightLight;
     this.CancelButton        = this.buttonCancel;
     this.ClientSize          = new System.Drawing.Size(484, 462);
     this.ControlBox          = false;
     this.Controls.Add(this.tableLayoutPanel1);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
     this.Icon            = global::SEOMacroscope.Icons.MacroscopeIcon_32x32;
     this.KeyPreview      = true;
     this.MaximizeBox     = false;
     this.MinimizeBox     = false;
     this.Name            = "MacroscopeExcludeUrlPatterns";
     this.ShowInTaskbar   = false;
     this.SizeGripStyle   = System.Windows.Forms.SizeGripStyle.Hide;
     this.StartPosition   = System.Windows.Forms.FormStartPosition.CenterParent;
     this.Text            = "Exclude Url Patterns";
     this.tableLayoutPanel1.ResumeLayout(false);
     this.tableLayoutPanel1.PerformLayout();
     this.flowLayoutPanel1.ResumeLayout(false);
     this.ResumeLayout(false);
 }
 /// <summary>
 /// 设计器支持所需的方法 - 不要
 /// 使用主键编辑器修改此方法的内容。
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FrmOrganizePermissionAdmin));
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle1 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle2 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle3 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle4 = new System.Windows.Forms.DataGridViewCellStyle();
     this.imageList = new System.Windows.Forms.ImageList(this.components);
     this.cMnuOrganize = new System.Windows.Forms.ContextMenuStrip(this.components);
     this.mItmAdd = new System.Windows.Forms.ToolStripMenuItem();
     this.mItmEdit = new System.Windows.Forms.ToolStripMenuItem();
     this.mItmMove = new System.Windows.Forms.ToolStripMenuItem();
     this.mItmDelete = new System.Windows.Forms.ToolStripMenuItem();
     this.mItmAddRoot = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
     this.mItmUserAdd = new System.Windows.Forms.ToolStripMenuItem();
     this.mItmStaffAdd = new System.Windows.Forms.ToolStripMenuItem();
     this.mItemRoleAdd = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripSeparator2 = new System.Windows.Forms.ToolStripSeparator();
     this.mItmOrganizeCategory = new System.Windows.Forms.ToolStripMenuItem();
     this.mItmFrmCodeBuilder = new System.Windows.Forms.ToolStripMenuItem();
     this.mItmSetSortCode = new System.Windows.Forms.ToolStripMenuItem();
     this.btnClose = new System.Windows.Forms.Button();
     this.btnPermission = new System.Windows.Forms.Button();
     this.btnInvertSelect = new System.Windows.Forms.Button();
     this.btnSelectAll = new System.Windows.Forms.Button();
     this.chkInnerOrganize = new System.Windows.Forms.CheckBox();
     this.flowLayoutPanel1 = new System.Windows.Forms.FlowLayoutPanel();
     this.btnExport = new System.Windows.Forms.Button();
     this.btnRoleResourcePermission = new System.Windows.Forms.Button();
     this.btnUserResourcePermission = new System.Windows.Forms.Button();
     this.chkRefresh = new System.Windows.Forms.CheckBox();
     this.lblContents = new System.Windows.Forms.Label();
     this.txtSearch = new System.Windows.Forms.TextBox();
     this.btnBatchSave = new System.Windows.Forms.Button();
     this.btnSearch = new System.Windows.Forms.Button();
     this.pnlOrganize = new System.Windows.Forms.Panel();
     this.grdOrganize = new System.Windows.Forms.DataGridView();
     this.colSelected = new System.Windows.Forms.DataGridViewCheckBoxColumn();
     this.colCode = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.colFullName = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.colIsInnerOrganize = new System.Windows.Forms.DataGridViewCheckBoxColumn();
     this.colDescription = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.splOrganize = new System.Windows.Forms.Splitter();
     this.tvOrganize = new System.Windows.Forms.TreeView();
     this.btnBatchDelete = new System.Windows.Forms.Button();
     this.btnAdd = new System.Windows.Forms.Button();
     this.btnMove = new System.Windows.Forms.Button();
     this.btnEdit = new System.Windows.Forms.Button();
     this.ucTableSort = new DotNet.WinForm.Common.WinControls.UCTableSort();
     this.cMnuOrganize.SuspendLayout();
     this.flowLayoutPanel1.SuspendLayout();
     this.pnlOrganize.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.grdOrganize)).BeginInit();
     this.SuspendLayout();
     //
     // imageList
     //
     this.imageList.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageList.ImageStream")));
     this.imageList.TransparentColor = System.Drawing.Color.Transparent;
     this.imageList.Images.SetKeyName(0, "");
     this.imageList.Images.SetKeyName(1, "");
     this.imageList.Images.SetKeyName(2, "");
     this.imageList.Images.SetKeyName(3, "");
     this.imageList.Images.SetKeyName(4, "");
     this.imageList.Images.SetKeyName(5, "");
     this.imageList.Images.SetKeyName(6, "");
     this.imageList.Images.SetKeyName(7, "");
     this.imageList.Images.SetKeyName(8, "");
     this.imageList.Images.SetKeyName(9, "");
     this.imageList.Images.SetKeyName(10, "");
     this.imageList.Images.SetKeyName(11, "");
     this.imageList.Images.SetKeyName(12, "");
     this.imageList.Images.SetKeyName(13, "");
     this.imageList.Images.SetKeyName(14, "");
     this.imageList.Images.SetKeyName(15, "icon_messenger1.gif");
     this.imageList.Images.SetKeyName(16, "icon_messenger0.gif");
     this.imageList.Images.SetKeyName(17, "icon_messenger2.gif");
     this.imageList.Images.SetKeyName(18, "icon_messenger3.gif");
     this.imageList.Images.SetKeyName(19, "icon_messenger4.gif");
     this.imageList.Images.SetKeyName(20, "icon_messenger5.gif");
     this.imageList.Images.SetKeyName(21, "icon_messenger6.gif");
     //
     // cMnuOrganize
     //
     this.cMnuOrganize.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.mItmAdd,
     this.mItmEdit,
     this.mItmMove,
     this.mItmDelete,
     this.mItmAddRoot,
     this.toolStripSeparator1,
     this.mItmUserAdd,
     this.mItmStaffAdd,
     this.mItemRoleAdd,
     this.toolStripSeparator2,
     this.mItmOrganizeCategory,
     this.mItmFrmCodeBuilder,
     this.mItmSetSortCode});
     this.cMnuOrganize.Name = "cMnuModule";
     this.cMnuOrganize.Size = new System.Drawing.Size(182, 258);
     //
     // mItmAdd
     //
     this.mItmAdd.Enabled = false;
     this.mItmAdd.Name = "mItmAdd";
     this.mItmAdd.Size = new System.Drawing.Size(181, 22);
     this.mItmAdd.Text = "添加(&A)...";
     this.mItmAdd.Click += new System.EventHandler(this.mItmAdd_Click);
     //
     // mItmEdit
     //
     this.mItmEdit.Enabled = false;
     this.mItmEdit.Name = "mItmEdit";
     this.mItmEdit.Size = new System.Drawing.Size(181, 22);
     this.mItmEdit.Text = "编辑(&E)...";
     this.mItmEdit.Click += new System.EventHandler(this.mItmEdit_Click);
     //
     // mItmMove
     //
     this.mItmMove.Enabled = false;
     this.mItmMove.Name = "mItmMove";
     this.mItmMove.Size = new System.Drawing.Size(181, 22);
     this.mItmMove.Text = "移动(&M)...";
     this.mItmMove.Click += new System.EventHandler(this.mItmMove_Click);
     //
     // mItmDelete
     //
     this.mItmDelete.Enabled = false;
     this.mItmDelete.Name = "mItmDelete";
     this.mItmDelete.Size = new System.Drawing.Size(181, 22);
     this.mItmDelete.Text = "删除(&D)";
     this.mItmDelete.Click += new System.EventHandler(this.mItmDelete_Click);
     //
     // mItmAddRoot
     //
     this.mItmAddRoot.Enabled = false;
     this.mItmAddRoot.Name = "mItmAddRoot";
     this.mItmAddRoot.Size = new System.Drawing.Size(181, 22);
     this.mItmAddRoot.Text = "添加根组织机构...";
     this.mItmAddRoot.Click += new System.EventHandler(this.mItmAddRoot_Click);
     //
     // toolStripSeparator1
     //
     this.toolStripSeparator1.Name = "toolStripSeparator1";
     this.toolStripSeparator1.Size = new System.Drawing.Size(178, 6);
     //
     // mItmUserAdd
     //
     this.mItmUserAdd.Enabled = false;
     this.mItmUserAdd.Name = "mItmUserAdd";
     this.mItmUserAdd.Size = new System.Drawing.Size(181, 22);
     this.mItmUserAdd.Text = "添加用户(&U)...";
     this.mItmUserAdd.Click += new System.EventHandler(this.mItmUserAdd_Click);
     //
     // mItmStaffAdd
     //
     this.mItmStaffAdd.Enabled = false;
     this.mItmStaffAdd.Name = "mItmStaffAdd";
     this.mItmStaffAdd.ShowShortcutKeys = false;
     this.mItmStaffAdd.Size = new System.Drawing.Size(181, 22);
     this.mItmStaffAdd.Text = "添加员工(&S)...";
     this.mItmStaffAdd.Click += new System.EventHandler(this.mItmAddStaff_Click);
     //
     // mItemRoleAdd
     //
     this.mItemRoleAdd.Enabled = false;
     this.mItemRoleAdd.Name = "mItemRoleAdd";
     this.mItemRoleAdd.Size = new System.Drawing.Size(181, 22);
     this.mItemRoleAdd.Text = "添加角色(&R)...";
     this.mItemRoleAdd.Visible = false;
     this.mItemRoleAdd.Click += new System.EventHandler(this.mItmAddRole_Click);
     //
     // toolStripSeparator2
     //
     this.toolStripSeparator2.Name = "toolStripSeparator2";
     this.toolStripSeparator2.Size = new System.Drawing.Size(178, 6);
     //
     // mItmOrganizeCategory
     //
     this.mItmOrganizeCategory.Enabled = false;
     this.mItmOrganizeCategory.Name = "mItmOrganizeCategory";
     this.mItmOrganizeCategory.Size = new System.Drawing.Size(181, 22);
     this.mItmOrganizeCategory.Text = "组织机构类别维护...";
     this.mItmOrganizeCategory.Click += new System.EventHandler(this.mItmOrganizeCategory_Click);
     //
     // mItmFrmCodeBuilder
     //
     this.mItmFrmCodeBuilder.Enabled = false;
     this.mItmFrmCodeBuilder.Name = "mItmFrmCodeBuilder";
     this.mItmFrmCodeBuilder.Size = new System.Drawing.Size(181, 22);
     this.mItmFrmCodeBuilder.Text = "编号产生器设置...";
     this.mItmFrmCodeBuilder.Click += new System.EventHandler(this.mItmFrmOrganizeCodeBuilder_Click);
     //
     // mItmSetSortCode
     //
     this.mItmSetSortCode.Enabled = false;
     this.mItmSetSortCode.Name = "mItmSetSortCode";
     this.mItmSetSortCode.Size = new System.Drawing.Size(181, 22);
     this.mItmSetSortCode.Text = "保存排序顺序";
     this.mItmSetSortCode.Click += new System.EventHandler(this.mItmSetSortCode_Click);
     //
     // btnClose
     //
     this.btnClose.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.btnClose.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     this.btnClose.Location = new System.Drawing.Point(884, 545);
     this.btnClose.Name = "btnClose";
     this.btnClose.Size = new System.Drawing.Size(75, 23);
     this.btnClose.TabIndex = 15;
     this.btnClose.Text = "关闭";
     this.btnClose.UseVisualStyleBackColor = true;
     this.btnClose.Click += new System.EventHandler(this.btnClose_Click);
     //
     // btnPermission
     //
     this.btnPermission.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.btnPermission.Location = new System.Drawing.Point(402, 545);
     this.btnPermission.Name = "btnPermission";
     this.btnPermission.Size = new System.Drawing.Size(75, 23);
     this.btnPermission.TabIndex = 24;
     this.btnPermission.Text = "权限(&P)...";
     this.btnPermission.Click += new System.EventHandler(this.btnPermission_Click);
     //
     // btnInvertSelect
     //
     this.btnInvertSelect.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.btnInvertSelect.Enabled = false;
     this.btnInvertSelect.Location = new System.Drawing.Point(89, 545);
     this.btnInvertSelect.Name = "btnInvertSelect";
     this.btnInvertSelect.Size = new System.Drawing.Size(78, 23);
     this.btnInvertSelect.TabIndex = 23;
     this.btnInvertSelect.Text = "反选";
     this.btnInvertSelect.UseVisualStyleBackColor = true;
     this.btnInvertSelect.Click += new System.EventHandler(this.btnInvertSelect_Click);
     //
     // btnSelectAll
     //
     this.btnSelectAll.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.btnSelectAll.Enabled = false;
     this.btnSelectAll.Location = new System.Drawing.Point(6, 545);
     this.btnSelectAll.Name = "btnSelectAll";
     this.btnSelectAll.Size = new System.Drawing.Size(78, 23);
     this.btnSelectAll.TabIndex = 22;
     this.btnSelectAll.Text = "全选";
     this.btnSelectAll.UseVisualStyleBackColor = true;
     this.btnSelectAll.Click += new System.EventHandler(this.btnSelectAll_Click);
     //
     // chkInnerOrganize
     //
     this.chkInnerOrganize.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.chkInnerOrganize.AutoSize = true;
     this.chkInnerOrganize.Checked = true;
     this.chkInnerOrganize.CheckState = System.Windows.Forms.CheckState.Checked;
     this.chkInnerOrganize.Location = new System.Drawing.Point(730, 38);
     this.chkInnerOrganize.Name = "chkInnerOrganize";
     this.chkInnerOrganize.Size = new System.Drawing.Size(132, 16);
     this.chkInnerOrganize.TabIndex = 6;
     this.chkInnerOrganize.Text = "仅显示内部组织机构";
     this.chkInnerOrganize.UseVisualStyleBackColor = true;
     this.chkInnerOrganize.CheckedChanged += new System.EventHandler(this.chkInnerOrganize_CheckedChanged);
     //
     // flowLayoutPanel1
     //
     this.flowLayoutPanel1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.flowLayoutPanel1.Controls.Add(this.btnExport);
     this.flowLayoutPanel1.Controls.Add(this.btnRoleResourcePermission);
     this.flowLayoutPanel1.Controls.Add(this.btnUserResourcePermission);
     this.flowLayoutPanel1.FlowDirection = System.Windows.Forms.FlowDirection.RightToLeft;
     this.flowLayoutPanel1.Location = new System.Drawing.Point(575, 3);
     this.flowLayoutPanel1.Name = "flowLayoutPanel1";
     this.flowLayoutPanel1.Size = new System.Drawing.Size(388, 29);
     this.flowLayoutPanel1.TabIndex = 16;
     //
     // btnExport
     //
     this.btnExport.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.btnExport.Enabled = false;
     this.btnExport.Location = new System.Drawing.Point(265, 3);
     this.btnExport.Name = "btnExport";
     this.btnExport.Size = new System.Drawing.Size(120, 23);
     this.btnExport.TabIndex = 5;
     this.btnExport.Text = "导出Excel...";
     this.btnExport.UseVisualStyleBackColor = true;
     this.btnExport.Click += new System.EventHandler(this.btnExport_Click);
     //
     // btnRoleResourcePermission
     //
     this.btnRoleResourcePermission.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.btnRoleResourcePermission.Enabled = false;
     this.btnRoleResourcePermission.Location = new System.Drawing.Point(139, 3);
     this.btnRoleResourcePermission.Name = "btnRoleResourcePermission";
     this.btnRoleResourcePermission.Size = new System.Drawing.Size(120, 23);
     this.btnRoleResourcePermission.TabIndex = 4;
     this.btnRoleResourcePermission.Text = "角色权限...";
     this.btnRoleResourcePermission.UseVisualStyleBackColor = true;
     this.btnRoleResourcePermission.Click += new System.EventHandler(this.btnRoleResourcePermission_Click);
     //
     // btnUserResourcePermission
     //
     this.btnUserResourcePermission.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.btnUserResourcePermission.Enabled = false;
     this.btnUserResourcePermission.Location = new System.Drawing.Point(13, 3);
     this.btnUserResourcePermission.Name = "btnUserResourcePermission";
     this.btnUserResourcePermission.Size = new System.Drawing.Size(120, 23);
     this.btnUserResourcePermission.TabIndex = 3;
     this.btnUserResourcePermission.Text = "用户权限...";
     this.btnUserResourcePermission.UseVisualStyleBackColor = true;
     this.btnUserResourcePermission.Click += new System.EventHandler(this.btnUserResourcePermission_Click);
     //
     // chkRefresh
     //
     this.chkRefresh.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.chkRefresh.AutoSize = true;
     this.chkRefresh.Checked = true;
     this.chkRefresh.CheckState = System.Windows.Forms.CheckState.Checked;
     this.chkRefresh.Location = new System.Drawing.Point(884, 38);
     this.chkRefresh.Name = "chkRefresh";
     this.chkRefresh.Size = new System.Drawing.Size(72, 16);
     this.chkRefresh.TabIndex = 7;
     this.chkRefresh.Text = "即时刷新";
     this.chkRefresh.UseVisualStyleBackColor = true;
     this.chkRefresh.CheckedChanged += new System.EventHandler(this.chkRefresh_CheckedChanged);
     //
     // lblContents
     //
     this.lblContents.Location = new System.Drawing.Point(23, 25);
     this.lblContents.Name = "lblContents";
     this.lblContents.Size = new System.Drawing.Size(90, 12);
     this.lblContents.TabIndex = 0;
     this.lblContents.Text = "查询内容(&C):";
     this.lblContents.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // txtSearch
     //
     this.txtSearch.Location = new System.Drawing.Point(117, 21);
     this.txtSearch.MaxLength = 20;
     this.txtSearch.Name = "txtSearch";
     this.txtSearch.Size = new System.Drawing.Size(168, 21);
     this.txtSearch.TabIndex = 1;
     this.txtSearch.TextChanged += new System.EventHandler(this.txtSearch_TextChanged);
     //
     // btnBatchSave
     //
     this.btnBatchSave.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.btnBatchSave.Enabled = false;
     this.btnBatchSave.Location = new System.Drawing.Point(804, 545);
     this.btnBatchSave.Name = "btnBatchSave";
     this.btnBatchSave.Size = new System.Drawing.Size(75, 23);
     this.btnBatchSave.TabIndex = 14;
     this.btnBatchSave.Text = "保存(&S)";
     this.btnBatchSave.UseVisualStyleBackColor = true;
     this.btnBatchSave.Click += new System.EventHandler(this.btnBatchSave_Click);
     //
     // btnSearch
     //
     this.btnSearch.Location = new System.Drawing.Point(290, 21);
     this.btnSearch.Name = "btnSearch";
     this.btnSearch.Size = new System.Drawing.Size(75, 23);
     this.btnSearch.TabIndex = 2;
     this.btnSearch.Text = "查询(&F)";
     this.btnSearch.UseVisualStyleBackColor = true;
     this.btnSearch.Click += new System.EventHandler(this.btnSearch_Click);
     //
     // pnlOrganize
     //
     this.pnlOrganize.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                 | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.pnlOrganize.Controls.Add(this.grdOrganize);
     this.pnlOrganize.Controls.Add(this.splOrganize);
     this.pnlOrganize.Controls.Add(this.tvOrganize);
     this.pnlOrganize.Location = new System.Drawing.Point(8, 60);
     this.pnlOrganize.Name = "pnlOrganize";
     this.pnlOrganize.Size = new System.Drawing.Size(951, 478);
     this.pnlOrganize.TabIndex = 1;
     //
     // grdOrganize
     //
     this.grdOrganize.AllowUserToAddRows = false;
     this.grdOrganize.AllowUserToDeleteRows = false;
     this.grdOrganize.BackgroundColor = System.Drawing.SystemColors.Control;
     dataGridViewCellStyle1.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
     dataGridViewCellStyle1.BackColor = System.Drawing.SystemColors.Control;
     dataGridViewCellStyle1.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel);
     dataGridViewCellStyle1.ForeColor = System.Drawing.SystemColors.WindowText;
     dataGridViewCellStyle1.SelectionBackColor = System.Drawing.SystemColors.Highlight;
     dataGridViewCellStyle1.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
     this.grdOrganize.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle1;
     this.grdOrganize.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.grdOrganize.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
     this.colSelected,
     this.colCode,
     this.colFullName,
     this.colIsInnerOrganize,
     this.colDescription});
     this.grdOrganize.Dock = System.Windows.Forms.DockStyle.Fill;
     this.grdOrganize.Location = new System.Drawing.Point(263, 0);
     this.grdOrganize.MultiSelect = false;
     this.grdOrganize.Name = "grdOrganize";
     this.grdOrganize.RowTemplate.Height = 23;
     this.grdOrganize.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
     this.grdOrganize.Size = new System.Drawing.Size(688, 478);
     this.grdOrganize.TabIndex = 2;
     this.grdOrganize.CellDoubleClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.grdOrganize_CellDoubleClick);
     this.grdOrganize.Sorted += new System.EventHandler(this.grdOrganize_Sorted);
     this.grdOrganize.UserDeletingRow += new System.Windows.Forms.DataGridViewRowCancelEventHandler(this.grdOrganize_UserDeletingRow);
     this.grdOrganize.Click += new System.EventHandler(this.grdOrganize_Click);
     //
     // colSelected
     //
     this.colSelected.DataPropertyName = "Selected";
     this.colSelected.Frozen = true;
     this.colSelected.HeaderText = "选择";
     this.colSelected.Name = "colSelected";
     this.colSelected.Width = 50;
     //
     // colCode
     //
     this.colCode.DataPropertyName = "Code";
     this.colCode.Frozen = true;
     this.colCode.HeaderText = "编号";
     this.colCode.MaxInputLength = 20;
     this.colCode.Name = "colCode";
     this.colCode.ReadOnly = true;
     //
     // colFullName
     //
     this.colFullName.DataPropertyName = "FullName";
     dataGridViewCellStyle2.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(128)))));
     this.colFullName.DefaultCellStyle = dataGridViewCellStyle2;
     this.colFullName.FillWeight = 170F;
     this.colFullName.HeaderText = "名称";
     this.colFullName.MaxInputLength = 100;
     this.colFullName.Name = "colFullName";
     this.colFullName.Width = 170;
     //
     // colIsInnerOrganize
     //
     this.colIsInnerOrganize.DataPropertyName = "IsInnerOrganize";
     dataGridViewCellStyle3.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
     dataGridViewCellStyle3.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(128)))));
     dataGridViewCellStyle3.NullValue = false;
     this.colIsInnerOrganize.DefaultCellStyle = dataGridViewCellStyle3;
     this.colIsInnerOrganize.FalseValue = "0";
     this.colIsInnerOrganize.HeaderText = "内部组织";
     this.colIsInnerOrganize.Name = "colIsInnerOrganize";
     this.colIsInnerOrganize.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
     this.colIsInnerOrganize.TrueValue = "1";
     //
     // colDescription
     //
     this.colDescription.DataPropertyName = "Description";
     dataGridViewCellStyle4.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(128)))));
     this.colDescription.DefaultCellStyle = dataGridViewCellStyle4;
     this.colDescription.HeaderText = "描述";
     this.colDescription.MaxInputLength = 200;
     this.colDescription.Name = "colDescription";
     this.colDescription.Width = 105;
     //
     // splOrganize
     //
     this.splOrganize.Location = new System.Drawing.Point(260, 0);
     this.splOrganize.Name = "splOrganize";
     this.splOrganize.Size = new System.Drawing.Size(3, 478);
     this.splOrganize.TabIndex = 8;
     this.splOrganize.TabStop = false;
     //
     // tvOrganize
     //
     this.tvOrganize.AllowDrop = true;
     this.tvOrganize.Dock = System.Windows.Forms.DockStyle.Left;
     this.tvOrganize.HotTracking = true;
     this.tvOrganize.ImageIndex = 0;
     this.tvOrganize.ImageList = this.imageList;
     this.tvOrganize.Location = new System.Drawing.Point(0, 0);
     this.tvOrganize.Name = "tvOrganize";
     this.tvOrganize.SelectedImageIndex = 1;
     this.tvOrganize.Size = new System.Drawing.Size(260, 478);
     this.tvOrganize.TabIndex = 1;
     this.tvOrganize.ItemDrag += new System.Windows.Forms.ItemDragEventHandler(this.tvOrganize_ItemDrag);
     this.tvOrganize.AfterSelect += new System.Windows.Forms.TreeViewEventHandler(this.tvOrganize_AfterSelect);
     this.tvOrganize.Click += new System.EventHandler(this.tvOrganize_Click);
     this.tvOrganize.DragDrop += new System.Windows.Forms.DragEventHandler(this.tvOrganize_DragDrop);
     this.tvOrganize.DragEnter += new System.Windows.Forms.DragEventHandler(this.tvOrganize_DragEnter);
     this.tvOrganize.MouseDown += new System.Windows.Forms.MouseEventHandler(this.tvOrganize_MouseDown);
     //
     // btnBatchDelete
     //
     this.btnBatchDelete.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.btnBatchDelete.Enabled = false;
     this.btnBatchDelete.Location = new System.Drawing.Point(724, 545);
     this.btnBatchDelete.Name = "btnBatchDelete";
     this.btnBatchDelete.Size = new System.Drawing.Size(75, 23);
     this.btnBatchDelete.TabIndex = 13;
     this.btnBatchDelete.Text = "删除(&D)";
     this.btnBatchDelete.UseVisualStyleBackColor = true;
     this.btnBatchDelete.Click += new System.EventHandler(this.btnBatchDelete_Click);
     //
     // btnAdd
     //
     this.btnAdd.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.btnAdd.Enabled = false;
     this.btnAdd.Location = new System.Drawing.Point(483, 545);
     this.btnAdd.Name = "btnAdd";
     this.btnAdd.Size = new System.Drawing.Size(75, 23);
     this.btnAdd.TabIndex = 9;
     this.btnAdd.Text = "添加(&A)...";
     this.btnAdd.UseVisualStyleBackColor = true;
     this.btnAdd.Click += new System.EventHandler(this.btnAdd_Click);
     //
     // btnMove
     //
     this.btnMove.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.btnMove.Enabled = false;
     this.btnMove.Location = new System.Drawing.Point(644, 545);
     this.btnMove.Name = "btnMove";
     this.btnMove.Size = new System.Drawing.Size(75, 23);
     this.btnMove.TabIndex = 11;
     this.btnMove.Text = "移动(&M)...";
     this.btnMove.UseVisualStyleBackColor = true;
     this.btnMove.Click += new System.EventHandler(this.btnMove_Click);
     //
     // btnEdit
     //
     this.btnEdit.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.btnEdit.Enabled = false;
     this.btnEdit.Location = new System.Drawing.Point(564, 545);
     this.btnEdit.Name = "btnEdit";
     this.btnEdit.Size = new System.Drawing.Size(75, 23);
     this.btnEdit.TabIndex = 10;
     this.btnEdit.Text = "编辑(&E)...";
     this.btnEdit.UseVisualStyleBackColor = true;
     this.btnEdit.Click += new System.EventHandler(this.btnEdit_Click);
     //
     // ucTableSort
     //
     this.ucTableSort.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.ucTableSort.Location = new System.Drawing.Point(172, 543);
     this.ucTableSort.Margin = new System.Windows.Forms.Padding(0);
     this.ucTableSort.Name = "ucTableSort";
     this.ucTableSort.OEntityId = null;
     this.ucTableSort.Padding = new System.Windows.Forms.Padding(1);
     this.ucTableSort.SetBottomEnabled = false;
     this.ucTableSort.SetDownEnabled = false;
     this.ucTableSort.SetTopEnabled = false;
     this.ucTableSort.SetUpEnabled = false;
     this.ucTableSort.Size = new System.Drawing.Size(99, 26);
     this.ucTableSort.TabIndex = 8;
     //
     // FrmOrganizePermissionAdmin
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.CancelButton = this.btnClose;
     this.ClientSize = new System.Drawing.Size(967, 572);
     this.Controls.Add(this.btnPermission);
     this.Controls.Add(this.btnInvertSelect);
     this.Controls.Add(this.btnSelectAll);
     this.Controls.Add(this.chkInnerOrganize);
     this.Controls.Add(this.flowLayoutPanel1);
     this.Controls.Add(this.chkRefresh);
     this.Controls.Add(this.lblContents);
     this.Controls.Add(this.ucTableSort);
     this.Controls.Add(this.txtSearch);
     this.Controls.Add(this.btnBatchSave);
     this.Controls.Add(this.btnSearch);
     this.Controls.Add(this.pnlOrganize);
     this.Controls.Add(this.btnClose);
     this.Controls.Add(this.btnBatchDelete);
     this.Controls.Add(this.btnAdd);
     this.Controls.Add(this.btnMove);
     this.Controls.Add(this.btnEdit);
     this.Cursor = System.Windows.Forms.Cursors.Default;
     this.Name = "FrmOrganizePermissionAdmin";
     this.Padding = new System.Windows.Forms.Padding(8);
     this.Text = "组织机构权限管理";
     this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.FrmOrganizeAdmin_FormClosing);
     this.cMnuOrganize.ResumeLayout(false);
     this.flowLayoutPanel1.ResumeLayout(false);
     this.pnlOrganize.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.grdOrganize)).EndInit();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Example #57
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.Windows.Forms.FlowLayoutPanel panel1;
			System.Windows.Forms.BindingSource possibleAssignmentsBindingSource;
			System.Windows.Forms.BindingSource actionsAvailableBindingSource;
			System.Windows.Forms.Label label6;
			System.Windows.Forms.BindingSource filtersBindingSource;
			System.Windows.Forms.Label label2;
			System.Windows.Forms.Label label3;
			System.Windows.Forms.BindingSource statusFilterBindingSource;
			System.Windows.Forms.Label label1;
			System.Windows.Forms.Label label4;
			System.Windows.Forms.BindingSource assignmentFilterBindingSource;
			System.Windows.Forms.ColumnHeader hdrId;
			System.Windows.Forms.ColumnHeader hdrSummary;
			System.Windows.Forms.ColumnHeader hdrAssignedTo;
			System.Windows.Forms.ColumnHeader hdrReportedBy;
			System.Windows.Forms.ColumnHeader hdrLastMod;
			System.Windows.Forms.ColumnHeader hdrCreated;
			System.Windows.Forms.ColumnHeader hdrStatus;
			System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(IssuesList));
			this._showHideMenu = new System.Windows.Forms.ContextMenuStrip(this.components);
			this.showTimeTrackingToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
			this.cancelButton = new System.Windows.Forms.Button();
			this.okButton = new System.Windows.Forms.Button();
			this._binding = new System.Windows.Forms.BindingSource(this.components);
			this._filterGroup = new System.Windows.Forms.GroupBox();
			this.tableLayoutPanel3 = new System.Windows.Forms.TableLayoutPanel();
			this._filters = new JiraSVN.Plugin.UI.BindingComboBox();
			this._search = new System.Windows.Forms.TextBox();
			this._status = new JiraSVN.Plugin.UI.BindingComboBox();
			this._assigned = new JiraSVN.Plugin.UI.BindingComboBox();
			this._issuesGroup = new System.Windows.Forms.GroupBox();
			this._listView = new System.Windows.Forms.ListView();
			this._contextMenu = new System.Windows.Forms.ContextMenuStrip(this.components);
			this.viewIssueToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
			this.refreshIssueToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
			this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
			this.statusGroup = new System.Windows.Forms.GroupBox();
			this.tableLayoutPanel2 = new System.Windows.Forms.TableLayoutPanel();
			this._doTakeAction = new System.Windows.Forms.CheckBox();
			this._assignTo = new JiraSVN.Plugin.UI.BindingComboBox();
			this._takeAction = new JiraSVN.Plugin.UI.BindingComboBox();
			this._doAssignTo = new System.Windows.Forms.CheckBox();
			this._commentGroup = new System.Windows.Forms.GroupBox();
			this._comment = new System.Windows.Forms.TextBox();
			this._addWorklog = new System.Windows.Forms.CheckBox();
			this._worklogAction = new JiraSVN.Plugin.UI.BindingComboBox();
			this.remainingEstimateBindingSource = new System.Windows.Forms.BindingSource(this.components);
			this._worklog = new System.Windows.Forms.TextBox();
			this.textBox1 = new System.Windows.Forms.TextBox();
			this._worklogGroup = new System.Windows.Forms.GroupBox();
			this.tableLayoutPanel1 = new System.Windows.Forms.TableLayoutPanel();
			this._splitter = new System.Windows.Forms.SplitContainer();
			panel1 = new System.Windows.Forms.FlowLayoutPanel();
			possibleAssignmentsBindingSource = new System.Windows.Forms.BindingSource(this.components);
			actionsAvailableBindingSource = new System.Windows.Forms.BindingSource(this.components);
			label6 = new System.Windows.Forms.Label();
			filtersBindingSource = new System.Windows.Forms.BindingSource(this.components);
			label2 = new System.Windows.Forms.Label();
			label3 = new System.Windows.Forms.Label();
			statusFilterBindingSource = new System.Windows.Forms.BindingSource(this.components);
			label1 = new System.Windows.Forms.Label();
			label4 = new System.Windows.Forms.Label();
			assignmentFilterBindingSource = new System.Windows.Forms.BindingSource(this.components);
			hdrId = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
			hdrSummary = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
			hdrAssignedTo = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
			hdrReportedBy = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
			hdrLastMod = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
			hdrCreated = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
			hdrStatus = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
			panel1.SuspendLayout();
			this._showHideMenu.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(possibleAssignmentsBindingSource)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this._binding)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(actionsAvailableBindingSource)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(filtersBindingSource)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(statusFilterBindingSource)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(assignmentFilterBindingSource)).BeginInit();
			this._filterGroup.SuspendLayout();
			this.tableLayoutPanel3.SuspendLayout();
			this._issuesGroup.SuspendLayout();
			this._contextMenu.SuspendLayout();
			this.statusGroup.SuspendLayout();
			this.tableLayoutPanel2.SuspendLayout();
			this._commentGroup.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.remainingEstimateBindingSource)).BeginInit();
			this._worklogGroup.SuspendLayout();
			this.tableLayoutPanel1.SuspendLayout();
			this._splitter.Panel1.SuspendLayout();
			this._splitter.Panel2.SuspendLayout();
			this._splitter.SuspendLayout();
			this.SuspendLayout();
			// 
			// panel1
			// 
			panel1.AutoSize = true;
			panel1.ContextMenuStrip = this._showHideMenu;
			panel1.Controls.Add(this.cancelButton);
			panel1.Controls.Add(this.okButton);
			panel1.Dock = System.Windows.Forms.DockStyle.Bottom;
			panel1.FlowDirection = System.Windows.Forms.FlowDirection.RightToLeft;
			panel1.Location = new System.Drawing.Point(8, 455);
			panel1.Name = "panel1";
			panel1.Padding = new System.Windows.Forms.Padding(2, 2, 0, 2);
			panel1.Size = new System.Drawing.Size(636, 33);
			panel1.TabIndex = 2;
			// 
			// _showHideMenu
			// 
			this._showHideMenu.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.showTimeTrackingToolStripMenuItem});
			this._showHideMenu.Name = "_showHideMenu";
			this._showHideMenu.Size = new System.Drawing.Size(177, 26);
			// 
			// showTimeTrackingToolStripMenuItem
			// 
			this.showTimeTrackingToolStripMenuItem.Checked = true;
			this.showTimeTrackingToolStripMenuItem.CheckOnClick = true;
			this.showTimeTrackingToolStripMenuItem.CheckState = System.Windows.Forms.CheckState.Checked;
			this.showTimeTrackingToolStripMenuItem.Name = "showTimeTrackingToolStripMenuItem";
			this.showTimeTrackingToolStripMenuItem.Size = new System.Drawing.Size(176, 22);
			this.showTimeTrackingToolStripMenuItem.Text = "Show time tracking";
			this.showTimeTrackingToolStripMenuItem.Click += new System.EventHandler(this.showTimeTrackingToolStripMenuItem_Click);
			// 
			// cancelButton
			// 
			this.cancelButton.DialogResult = System.Windows.Forms.DialogResult.Cancel;
			this.cancelButton.FlatStyle = System.Windows.Forms.FlatStyle.System;
			this.cancelButton.Location = new System.Drawing.Point(559, 5);
			this.cancelButton.Margin = new System.Windows.Forms.Padding(3, 3, 0, 3);
			this.cancelButton.Name = "cancelButton";
			this.cancelButton.Size = new System.Drawing.Size(75, 23);
			this.cancelButton.TabIndex = 11;
			this.cancelButton.Text = "Cancel";
			this.cancelButton.UseVisualStyleBackColor = true;
			// 
			// okButton
			// 
			this.okButton.DialogResult = System.Windows.Forms.DialogResult.OK;
			this.okButton.FlatStyle = System.Windows.Forms.FlatStyle.System;
			this.okButton.Location = new System.Drawing.Point(478, 5);
			this.okButton.Name = "okButton";
			this.okButton.Size = new System.Drawing.Size(75, 23);
			this.okButton.TabIndex = 10;
			this.okButton.Text = "OK";
			this.okButton.UseVisualStyleBackColor = true;
			this.okButton.Click += new System.EventHandler(this.okButton_Click);
			// 
			// possibleAssignmentsBindingSource
			// 
			possibleAssignmentsBindingSource.DataMember = "PossibleAssignments";
			possibleAssignmentsBindingSource.DataSource = this._binding;
			// 
			// _binding
			// 
			this._binding.DataSource = typeof(JiraSVN.Plugin.UI.IssuesListView);
			// 
			// actionsAvailableBindingSource
			// 
			actionsAvailableBindingSource.DataMember = "ActionsAvailable";
			actionsAvailableBindingSource.DataSource = this._binding;
			// 
			// label6
			// 
			label6.Anchor = System.Windows.Forms.AnchorStyles.Left;
			label6.AutoSize = true;
			label6.DataBindings.Add(new System.Windows.Forms.Binding("Enabled", this._binding, "AddWorklog", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
			label6.Location = new System.Drawing.Point(294, 8);
			label6.Margin = new System.Windows.Forms.Padding(3, 3, 3, 0);
			label6.Name = "label6";
			label6.Size = new System.Drawing.Size(106, 13);
			label6.TabIndex = 2;
			label6.Text = "and update estimate:";
			// 
			// filtersBindingSource
			// 
			filtersBindingSource.DataMember = "Filters";
			filtersBindingSource.DataSource = this._binding;
			// 
			// label2
			// 
			label2.Anchor = System.Windows.Forms.AnchorStyles.Left;
			label2.AutoSize = true;
			label2.Location = new System.Drawing.Point(3, 7);
			label2.Name = "label2";
			label2.Size = new System.Drawing.Size(61, 13);
			label2.TabIndex = 0;
			label2.Text = "Apply Filter:";
			// 
			// label3
			// 
			label3.Anchor = System.Windows.Forms.AnchorStyles.Right;
			label3.AutoSize = true;
			label3.Location = new System.Drawing.Point(423, 35);
			label3.Margin = new System.Windows.Forms.Padding(3, 3, 3, 0);
			label3.Name = "label3";
			label3.Size = new System.Drawing.Size(51, 13);
			label3.TabIndex = 6;
			label3.Text = "Contains:";
			// 
			// statusFilterBindingSource
			// 
			statusFilterBindingSource.DataMember = "StatusFilter";
			statusFilterBindingSource.DataSource = this._binding;
			// 
			// label1
			// 
			label1.Anchor = System.Windows.Forms.AnchorStyles.Left;
			label1.AutoSize = true;
			label1.Location = new System.Drawing.Point(3, 35);
			label1.Margin = new System.Windows.Forms.Padding(3, 3, 3, 0);
			label1.Name = "label1";
			label1.Size = new System.Drawing.Size(65, 13);
			label1.TabIndex = 2;
			label1.Text = "Assigned to:";
			// 
			// label4
			// 
			label4.Anchor = System.Windows.Forms.AnchorStyles.Right;
			label4.AutoSize = true;
			label4.Location = new System.Drawing.Point(237, 35);
			label4.Margin = new System.Windows.Forms.Padding(3, 3, 3, 0);
			label4.Name = "label4";
			label4.Size = new System.Drawing.Size(40, 13);
			label4.TabIndex = 4;
			label4.Text = "Status:";
			// 
			// assignmentFilterBindingSource
			// 
			assignmentFilterBindingSource.DataMember = "AssignmentFilter";
			assignmentFilterBindingSource.DataSource = this._binding;
			// 
			// hdrId
			// 
			hdrId.Text = "Id";
			// 
			// hdrSummary
			// 
			hdrSummary.Text = "Summary";
			hdrSummary.Width = 400;
			// 
			// hdrAssignedTo
			// 
			hdrAssignedTo.Text = "Assigned To";
			hdrAssignedTo.Width = 100;
			// 
			// hdrReportedBy
			// 
			hdrReportedBy.Text = "Reported By";
			hdrReportedBy.Width = 100;
			// 
			// hdrLastMod
			// 
			hdrLastMod.Text = "Last Modified";
			hdrLastMod.Width = 100;
			// 
			// hdrCreated
			// 
			hdrCreated.Text = "Created On";
			hdrCreated.Width = 100;
			// 
			// hdrStatus
			// 
			hdrStatus.Text = "Status";
			hdrStatus.Width = 100;
			// 
			// _filterGroup
			// 
			this._filterGroup.AutoSize = true;
			this._filterGroup.Controls.Add(this.tableLayoutPanel3);
			this._filterGroup.Dock = System.Windows.Forms.DockStyle.Top;
			this._filterGroup.Location = new System.Drawing.Point(8, 8);
			this._filterGroup.Name = "_filterGroup";
			this._filterGroup.Size = new System.Drawing.Size(636, 73);
			this._filterGroup.TabIndex = 0;
			this._filterGroup.TabStop = false;
			this._filterGroup.Text = "Filter";
			// 
			// tableLayoutPanel3
			// 
			this.tableLayoutPanel3.AutoSize = true;
			this.tableLayoutPanel3.ColumnCount = 6;
			this.tableLayoutPanel3.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 76F));
			this.tableLayoutPanel3.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 33.31667F));
			this.tableLayoutPanel3.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 60F));
			this.tableLayoutPanel3.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 31.70082F));
			this.tableLayoutPanel3.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 60F));
			this.tableLayoutPanel3.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 34.98251F));
			this.tableLayoutPanel3.Controls.Add(this._filters, 1, 0);
			this.tableLayoutPanel3.Controls.Add(this._search, 5, 1);
			this.tableLayoutPanel3.Controls.Add(label2, 0, 0);
			this.tableLayoutPanel3.Controls.Add(label3, 4, 1);
			this.tableLayoutPanel3.Controls.Add(this._status, 3, 1);
			this.tableLayoutPanel3.Controls.Add(label1, 0, 1);
			this.tableLayoutPanel3.Controls.Add(label4, 2, 1);
			this.tableLayoutPanel3.Controls.Add(this._assigned, 1, 1);
			this.tableLayoutPanel3.Dock = System.Windows.Forms.DockStyle.Top;
			this.tableLayoutPanel3.Location = new System.Drawing.Point(3, 16);
			this.tableLayoutPanel3.Name = "tableLayoutPanel3";
			this.tableLayoutPanel3.RowCount = 2;
			this.tableLayoutPanel3.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 50F));
			this.tableLayoutPanel3.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 50F));
			this.tableLayoutPanel3.Size = new System.Drawing.Size(630, 54);
			this.tableLayoutPanel3.TabIndex = 8;
			// 
			// _filters
			// 
			this._filters.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 
            | System.Windows.Forms.AnchorStyles.Right)));
			this.tableLayoutPanel3.SetColumnSpan(this._filters, 5);
			this._filters.DataBindings.Add(new System.Windows.Forms.Binding("IndexSelected", this._binding, "SelectedFilter", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
			this._filters.DataSource = filtersBindingSource;
			this._filters.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
			this._filters.FormattingEnabled = true;
			this._filters.IndexSelected = -1;
			this._filters.Location = new System.Drawing.Point(79, 3);
			this._filters.Name = "_filters";
			this._filters.Size = new System.Drawing.Size(548, 21);
			this._filters.TabIndex = 1;
			// 
			// _search
			// 
			this._search.DataBindings.Add(new System.Windows.Forms.Binding("Text", this._binding, "TextFilter", true, System.Windows.Forms.DataSourceUpdateMode.Never));
			this._search.Dock = System.Windows.Forms.DockStyle.Fill;
			this._search.Location = new System.Drawing.Point(480, 30);
			this._search.Name = "_search";
			this._search.Size = new System.Drawing.Size(147, 20);
			this._search.TabIndex = 7;
			this._search.TextChanged += new System.EventHandler(this._search_TextChanged);
			// 
			// _status
			// 
			this._status.DataBindings.Add(new System.Windows.Forms.Binding("IndexSelected", this._binding, "SelectedStatusFilter", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
			this._status.DataSource = statusFilterBindingSource;
			this._status.Dock = System.Windows.Forms.DockStyle.Fill;
			this._status.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
			this._status.FormattingEnabled = true;
			this._status.IndexSelected = -1;
			this._status.Location = new System.Drawing.Point(283, 30);
			this._status.Name = "_status";
			this._status.Size = new System.Drawing.Size(131, 21);
			this._status.TabIndex = 5;
			// 
			// _assigned
			// 
			this._assigned.DataBindings.Add(new System.Windows.Forms.Binding("IndexSelected", this._binding, "SelectedAssignmentFilter", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
			this._assigned.DataSource = assignmentFilterBindingSource;
			this._assigned.Dock = System.Windows.Forms.DockStyle.Fill;
			this._assigned.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
			this._assigned.FormattingEnabled = true;
			this._assigned.IndexSelected = -1;
			this._assigned.Location = new System.Drawing.Point(79, 30);
			this._assigned.Name = "_assigned";
			this._assigned.Size = new System.Drawing.Size(138, 21);
			this._assigned.TabIndex = 3;
			// 
			// _issuesGroup
			// 
			this._issuesGroup.Controls.Add(this._listView);
			this._issuesGroup.Dock = System.Windows.Forms.DockStyle.Fill;
			this._issuesGroup.Location = new System.Drawing.Point(0, 0);
			this._issuesGroup.Name = "_issuesGroup";
			this._issuesGroup.Size = new System.Drawing.Size(636, 201);
			this._issuesGroup.TabIndex = 1;
			this._issuesGroup.TabStop = false;
			this._issuesGroup.Text = "Issues";
			// 
			// _listView
			// 
			this._listView.CheckBoxes = true;
			this._listView.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
            hdrId,
            hdrSummary,
            hdrStatus,
            hdrAssignedTo,
            hdrReportedBy,
            hdrLastMod,
            hdrCreated});
			this._listView.ContextMenuStrip = this._contextMenu;
			this._listView.Dock = System.Windows.Forms.DockStyle.Fill;
			this._listView.FullRowSelect = true;
			this._listView.Location = new System.Drawing.Point(3, 16);
			this._listView.Name = "_listView";
			this._listView.Size = new System.Drawing.Size(630, 182);
			this._listView.Sorting = System.Windows.Forms.SortOrder.Ascending;
			this._listView.TabIndex = 0;
			this._listView.UseCompatibleStateImageBehavior = false;
			this._listView.View = System.Windows.Forms.View.Details;
			this._listView.ItemChecked += new System.Windows.Forms.ItemCheckedEventHandler(this.listView_ItemChecked);
			this._listView.ItemMouseHover += new System.Windows.Forms.ListViewItemMouseHoverEventHandler(this._listView_ItemMouseHover);
			this._listView.MouseDown += new System.Windows.Forms.MouseEventHandler(this.listView_MouseDown);
			this._listView.MouseMove += new System.Windows.Forms.MouseEventHandler(this._listView_MouseMove);
			// 
			// _contextMenu
			// 
			this._contextMenu.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.viewIssueToolStripMenuItem,
            this.refreshIssueToolStripMenuItem,
            this.toolStripSeparator1});
			this._contextMenu.Name = "_contextMenu";
			this._contextMenu.Size = new System.Drawing.Size(169, 54);
			this._contextMenu.Opening += new System.ComponentModel.CancelEventHandler(this.contextMenu_Opening);
			// 
			// viewIssueToolStripMenuItem
			// 
			this.viewIssueToolStripMenuItem.Name = "viewIssueToolStripMenuItem";
			this.viewIssueToolStripMenuItem.Size = new System.Drawing.Size(168, 22);
			this.viewIssueToolStripMenuItem.Text = "&View Issue...";
			this.viewIssueToolStripMenuItem.ToolTipText = "Open the issue in the default viewer.";
			this.viewIssueToolStripMenuItem.Click += new System.EventHandler(this.listView_ViewSelectedItem);
			// 
			// refreshIssueToolStripMenuItem
			// 
			this.refreshIssueToolStripMenuItem.Name = "refreshIssueToolStripMenuItem";
			this.refreshIssueToolStripMenuItem.Size = new System.Drawing.Size(168, 22);
			this.refreshIssueToolStripMenuItem.Text = "&Refresh Issues List";
			this.refreshIssueToolStripMenuItem.ToolTipText = "Requery the server and refresh the list.";
			this.refreshIssueToolStripMenuItem.Click += new System.EventHandler(this.RefreshContents);
			// 
			// toolStripSeparator1
			// 
			this.toolStripSeparator1.Name = "toolStripSeparator1";
			this.toolStripSeparator1.Size = new System.Drawing.Size(165, 6);
			// 
			// statusGroup
			// 
			this.statusGroup.AutoSize = true;
			this.statusGroup.Controls.Add(this.tableLayoutPanel2);
			this.statusGroup.Dock = System.Windows.Forms.DockStyle.Bottom;
			this.statusGroup.Location = new System.Drawing.Point(0, 123);
			this.statusGroup.Name = "statusGroup";
			this.statusGroup.Size = new System.Drawing.Size(636, 46);
			this.statusGroup.TabIndex = 10;
			this.statusGroup.TabStop = false;
			this.statusGroup.Text = "Status";
			// 
			// tableLayoutPanel2
			// 
			this.tableLayoutPanel2.AutoSize = true;
			this.tableLayoutPanel2.ColumnCount = 4;
			this.tableLayoutPanel2.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 76F));
			this.tableLayoutPanel2.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50.15783F));
			this.tableLayoutPanel2.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 124F));
			this.tableLayoutPanel2.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 49.84217F));
			this.tableLayoutPanel2.Controls.Add(this._doTakeAction, 0, 0);
			this.tableLayoutPanel2.Controls.Add(this._assignTo, 3, 0);
			this.tableLayoutPanel2.Controls.Add(this._takeAction, 1, 0);
			this.tableLayoutPanel2.Controls.Add(this._doAssignTo, 2, 0);
			this.tableLayoutPanel2.Dock = System.Windows.Forms.DockStyle.Top;
			this.tableLayoutPanel2.Location = new System.Drawing.Point(3, 16);
			this.tableLayoutPanel2.Name = "tableLayoutPanel2";
			this.tableLayoutPanel2.RowCount = 1;
			this.tableLayoutPanel2.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 100F));
			this.tableLayoutPanel2.Size = new System.Drawing.Size(630, 27);
			this.tableLayoutPanel2.TabIndex = 10;
			// 
			// _doTakeAction
			// 
			this._doTakeAction.AutoSize = true;
			this._doTakeAction.DataBindings.Add(new System.Windows.Forms.Binding("Checked", this._binding, "PerformAction", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
			this._doTakeAction.DataBindings.Add(new System.Windows.Forms.Binding("Enabled", this._binding, "CanPerformActions", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
			this._doTakeAction.Dock = System.Windows.Forms.DockStyle.Fill;
			this._doTakeAction.Location = new System.Drawing.Point(3, 5);
			this._doTakeAction.Margin = new System.Windows.Forms.Padding(3, 5, 3, 3);
			this._doTakeAction.Name = "_doTakeAction";
			this._doTakeAction.Size = new System.Drawing.Size(70, 19);
			this._doTakeAction.TabIndex = 6;
			this._doTakeAction.Text = "Set:";
			this._doTakeAction.UseVisualStyleBackColor = true;
			// 
			// _assignTo
			// 
			this._assignTo.DataBindings.Add(new System.Windows.Forms.Binding("IndexSelected", this._binding, "SelectedAssignee", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
			this._assignTo.DataBindings.Add(new System.Windows.Forms.Binding("Enabled", this._binding, "CanAssignTo", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
			this._assignTo.DataSource = possibleAssignmentsBindingSource;
			this._assignTo.Dock = System.Windows.Forms.DockStyle.Fill;
			this._assignTo.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
			this._assignTo.FormattingEnabled = true;
			this._assignTo.IndexSelected = -1;
			this._assignTo.Location = new System.Drawing.Point(418, 3);
			this._assignTo.Name = "_assignTo";
			this._assignTo.Size = new System.Drawing.Size(209, 21);
			this._assignTo.TabIndex = 9;
			// 
			// _takeAction
			// 
			this._takeAction.DataBindings.Add(new System.Windows.Forms.Binding("IndexSelected", this._binding, "SelectedAction", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
			this._takeAction.DataBindings.Add(new System.Windows.Forms.Binding("Enabled", this._binding, "PerformAction", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
			this._takeAction.DataSource = actionsAvailableBindingSource;
			this._takeAction.Dock = System.Windows.Forms.DockStyle.Fill;
			this._takeAction.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
			this._takeAction.FormattingEnabled = true;
			this._takeAction.IndexSelected = -1;
			this._takeAction.Location = new System.Drawing.Point(79, 3);
			this._takeAction.Name = "_takeAction";
			this._takeAction.Size = new System.Drawing.Size(209, 21);
			this._takeAction.TabIndex = 7;
			// 
			// _doAssignTo
			// 
			this._doAssignTo.AutoSize = true;
			this._doAssignTo.DataBindings.Add(new System.Windows.Forms.Binding("Checked", this._binding, "AssignTo", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
			this._doAssignTo.DataBindings.Add(new System.Windows.Forms.Binding("Enabled", this._binding, "PerformAction", true));
			this._doAssignTo.Dock = System.Windows.Forms.DockStyle.Fill;
			this._doAssignTo.Location = new System.Drawing.Point(294, 5);
			this._doAssignTo.Margin = new System.Windows.Forms.Padding(3, 5, 3, 3);
			this._doAssignTo.Name = "_doAssignTo";
			this._doAssignTo.Size = new System.Drawing.Size(118, 19);
			this._doAssignTo.TabIndex = 8;
			this._doAssignTo.Text = "and assign to:";
			this._doAssignTo.UseVisualStyleBackColor = true;
			// 
			// _commentGroup
			// 
			this._commentGroup.AutoSize = true;
			this._commentGroup.Controls.Add(this._comment);
			this._commentGroup.Dock = System.Windows.Forms.DockStyle.Fill;
			this._commentGroup.Location = new System.Drawing.Point(0, 0);
			this._commentGroup.Name = "_commentGroup";
			this._commentGroup.Size = new System.Drawing.Size(636, 77);
			this._commentGroup.TabIndex = 11;
			this._commentGroup.TabStop = false;
			this._commentGroup.Text = "Comment";
			// 
			// _comment
			// 
			this._comment.AcceptsReturn = true;
			this._comment.DataBindings.Add(new System.Windows.Forms.Binding("Text", this._binding, "Comments", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
			this._comment.Dock = System.Windows.Forms.DockStyle.Fill;
			this._comment.Font = new System.Drawing.Font("Courier New", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
			this._comment.Location = new System.Drawing.Point(3, 16);
			this._comment.Multiline = true;
			this._comment.Name = "_comment";
			this._comment.Size = new System.Drawing.Size(630, 58);
			this._comment.TabIndex = 1;
			// 
			// _addWorklog
			// 
			this._addWorklog.Anchor = System.Windows.Forms.AnchorStyles.Left;
			this._addWorklog.AutoSize = true;
			this._addWorklog.DataBindings.Add(new System.Windows.Forms.Binding("Checked", this._binding, "AddWorklog", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
			this._addWorklog.DataBindings.Add(new System.Windows.Forms.Binding("Enabled", this._binding, "CanAddWorklog", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
			this._addWorklog.Location = new System.Drawing.Point(3, 6);
			this._addWorklog.Margin = new System.Windows.Forms.Padding(3, 5, 3, 3);
			this._addWorklog.Name = "_addWorklog";
			this._addWorklog.Size = new System.Drawing.Size(69, 17);
			this._addWorklog.TabIndex = 0;
			this._addWorklog.Text = "Log time:";
			this._addWorklog.UseVisualStyleBackColor = true;
			// 
			// _worklogAction
			// 
			this._worklogAction.DataBindings.Add(new System.Windows.Forms.Binding("Enabled", this._binding, "AddWorklog", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
			this._worklogAction.DataBindings.Add(new System.Windows.Forms.Binding("IndexSelected", this._binding, "TimeEstimateRecalcualation", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
			this._worklogAction.DataSource = this.remainingEstimateBindingSource;
			this._worklogAction.Dock = System.Windows.Forms.DockStyle.Fill;
			this._worklogAction.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
			this._worklogAction.FormattingEnabled = true;
			this._worklogAction.IndexSelected = -1;
			this._worklogAction.Location = new System.Drawing.Point(418, 3);
			this._worklogAction.Name = "_worklogAction";
			this._worklogAction.Size = new System.Drawing.Size(126, 21);
			this._worklogAction.TabIndex = 3;
			// 
			// remainingEstimateBindingSource
			// 
			this.remainingEstimateBindingSource.DataMember = "TimeEstimateMethodsAvailable";
			this.remainingEstimateBindingSource.DataSource = this._binding;
			// 
			// _worklog
			// 
			this._worklog.DataBindings.Add(new System.Windows.Forms.Binding("Enabled", this._binding, "AddWorklog", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
			this._worklog.DataBindings.Add(new System.Windows.Forms.Binding("Text", this._binding, "TimeSpent", true));
			this._worklog.Dock = System.Windows.Forms.DockStyle.Fill;
			this._worklog.Location = new System.Drawing.Point(79, 3);
			this._worklog.Name = "_worklog";
			this._worklog.Size = new System.Drawing.Size(209, 20);
			this._worklog.TabIndex = 1;
			// 
			// textBox1
			// 
			this.textBox1.DataBindings.Add(new System.Windows.Forms.Binding("Text", this._binding, "NewTimeEstimate", true));
			this.textBox1.DataBindings.Add(new System.Windows.Forms.Binding("Enabled", this._binding, "CanSpecifyNewEstimate", true));
			this.textBox1.Dock = System.Windows.Forms.DockStyle.Fill;
			this.textBox1.Location = new System.Drawing.Point(550, 3);
			this.textBox1.Name = "textBox1";
			this.textBox1.Size = new System.Drawing.Size(77, 20);
			this.textBox1.TabIndex = 4;
			// 
			// _worklogGroup
			// 
			this._worklogGroup.AccessibleDescription = "";
			this._worklogGroup.AutoSize = true;
			this._worklogGroup.Controls.Add(this.tableLayoutPanel1);
			this._worklogGroup.DataBindings.Add(new System.Windows.Forms.Binding("Enabled", this._binding, "CanAddWorklog", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
			this._worklogGroup.Dock = System.Windows.Forms.DockStyle.Bottom;
			this._worklogGroup.Location = new System.Drawing.Point(0, 77);
			this._worklogGroup.Name = "_worklogGroup";
			this._worklogGroup.Size = new System.Drawing.Size(636, 46);
			this._worklogGroup.TabIndex = 6;
			this._worklogGroup.TabStop = false;
			this._worklogGroup.Text = "Time tracking";
			// 
			// tableLayoutPanel1
			// 
			this.tableLayoutPanel1.AutoSize = true;
			this.tableLayoutPanel1.ColumnCount = 5;
			this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 76F));
			this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50F));
			this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 124F));
			this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 30.85586F));
			this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 19.14414F));
			this.tableLayoutPanel1.Controls.Add(this.textBox1, 4, 0);
			this.tableLayoutPanel1.Controls.Add(this._worklog, 1, 0);
			this.tableLayoutPanel1.Controls.Add(this._worklogAction, 3, 0);
			this.tableLayoutPanel1.Controls.Add(label6, 2, 0);
			this.tableLayoutPanel1.Controls.Add(this._addWorklog, 0, 0);
			this.tableLayoutPanel1.Dock = System.Windows.Forms.DockStyle.Top;
			this.tableLayoutPanel1.Location = new System.Drawing.Point(3, 16);
			this.tableLayoutPanel1.Name = "tableLayoutPanel1";
			this.tableLayoutPanel1.RowCount = 1;
			this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 100F));
			this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 27F));
			this.tableLayoutPanel1.Size = new System.Drawing.Size(630, 27);
			this.tableLayoutPanel1.TabIndex = 5;
			// 
			// _splitter
			// 
			this._splitter.Dock = System.Windows.Forms.DockStyle.Fill;
			this._splitter.Location = new System.Drawing.Point(8, 81);
			this._splitter.Name = "_splitter";
			this._splitter.Orientation = System.Windows.Forms.Orientation.Horizontal;
			// 
			// _splitter.Panel1
			// 
			this._splitter.Panel1.Controls.Add(this._issuesGroup);
			// 
			// _splitter.Panel2
			// 
			this._splitter.Panel2.Controls.Add(this._commentGroup);
			this._splitter.Panel2.Controls.Add(this._worklogGroup);
			this._splitter.Panel2.Controls.Add(this.statusGroup);
			this._splitter.Size = new System.Drawing.Size(636, 374);
			this._splitter.SplitterDistance = 201;
			this._splitter.TabIndex = 1;
			// 
			// IssuesList
			// 
			this.AcceptButton = this.okButton;
			this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
			this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
			this.CancelButton = this.cancelButton;
			this.ClientSize = new System.Drawing.Size(652, 496);
			this.ContextMenuStrip = this._showHideMenu;
			this.Controls.Add(this._splitter);
			this.Controls.Add(this._filterGroup);
			this.Controls.Add(panel1);
			this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
			this.MaximizeBox = false;
			this.MinimizeBox = false;
			this.MinimumSize = new System.Drawing.Size(650, 450);
			this.Name = "IssuesList";
			this.Padding = new System.Windows.Forms.Padding(8);
			this.ShowInTaskbar = false;
			this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
			this.Text = "Select Issue(s)";
			this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.Form_Closing);
			this.Load += new System.EventHandler(this.Form_Load);
			this.Shown += new System.EventHandler(this.Form_Shown);
			panel1.ResumeLayout(false);
			this._showHideMenu.ResumeLayout(false);
			((System.ComponentModel.ISupportInitialize)(possibleAssignmentsBindingSource)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this._binding)).EndInit();
			((System.ComponentModel.ISupportInitialize)(actionsAvailableBindingSource)).EndInit();
			((System.ComponentModel.ISupportInitialize)(filtersBindingSource)).EndInit();
			((System.ComponentModel.ISupportInitialize)(statusFilterBindingSource)).EndInit();
			((System.ComponentModel.ISupportInitialize)(assignmentFilterBindingSource)).EndInit();
			this._filterGroup.ResumeLayout(false);
			this._filterGroup.PerformLayout();
			this.tableLayoutPanel3.ResumeLayout(false);
			this.tableLayoutPanel3.PerformLayout();
			this._issuesGroup.ResumeLayout(false);
			this._contextMenu.ResumeLayout(false);
			this.statusGroup.ResumeLayout(false);
			this.statusGroup.PerformLayout();
			this.tableLayoutPanel2.ResumeLayout(false);
			this.tableLayoutPanel2.PerformLayout();
			this._commentGroup.ResumeLayout(false);
			this._commentGroup.PerformLayout();
			((System.ComponentModel.ISupportInitialize)(this.remainingEstimateBindingSource)).EndInit();
			this._worklogGroup.ResumeLayout(false);
			this._worklogGroup.PerformLayout();
			this.tableLayoutPanel1.ResumeLayout(false);
			this.tableLayoutPanel1.PerformLayout();
			this._splitter.Panel1.ResumeLayout(false);
			this._splitter.Panel2.ResumeLayout(false);
			this._splitter.Panel2.PerformLayout();
			this._splitter.ResumeLayout(false);
			this.ResumeLayout(false);
			this.PerformLayout();

        }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.txtFax = new System.Windows.Forms.MaskedTextBox();
     this.txtTel2 = new System.Windows.Forms.MaskedTextBox();
     this.txtCodigoP = new System.Windows.Forms.MaskedTextBox();
     this.txtTel = new System.Windows.Forms.MaskedTextBox();
     this.lblObservaciones = new System.Windows.Forms.Label();
     this.label5 = new System.Windows.Forms.Label();
     this.lblNombre2 = new System.Windows.Forms.Label();
     this.lblMaterno2 = new System.Windows.Forms.Label();
     this.lblPaterno2 = new System.Windows.Forms.Label();
     this.lblRepresentante = new System.Windows.Forms.Label();
     this.lblCorreo = new System.Windows.Forms.Label();
     this.lblTel2 = new System.Windows.Forms.Label();
     this.lblTel1 = new System.Windows.Forms.Label();
     this.lblFax = new System.Windows.Forms.Label();
     this.lblCodigo = new System.Windows.Forms.Label();
     this.lblPais = new System.Windows.Forms.Label();
     this.lblEstado = new System.Windows.Forms.Label();
     this.lblDelegacion = new System.Windows.Forms.Label();
     this.lblColonia = new System.Windows.Forms.Label();
     this.lblCalle = new System.Windows.Forms.Label();
     this.lblFiscal = new System.Windows.Forms.Label();
     this.lblNombre = new System.Windows.Forms.Label();
     this.lblMaterno = new System.Windows.Forms.Label();
     this.lblPaterno = new System.Windows.Forms.Label();
     this.label1 = new System.Windows.Forms.Label();
     this.lblProveedor = new System.Windows.Forms.Label();
     this.txtClave = new DevExpress.XtraEditors.SpinEdit();
     this.txtPaterno = new DevExpress.XtraEditors.TextEdit();
     this.txtMaterno = new DevExpress.XtraEditors.TextEdit();
     this.txtNombre = new DevExpress.XtraEditors.TextEdit();
     this.txtCalle = new DevExpress.XtraEditors.TextEdit();
     this.txtColonia = new DevExpress.XtraEditors.TextEdit();
     this.txtDelegacion = new DevExpress.XtraEditors.TextEdit();
     this.txtEstado = new DevExpress.XtraEditors.TextEdit();
     this.txtPais = new DevExpress.XtraEditors.TextEdit();
     this.txtRpaterno = new DevExpress.XtraEditors.TextEdit();
     this.txtRmaterno = new DevExpress.XtraEditors.TextEdit();
     this.txtRnombre = new DevExpress.XtraEditors.TextEdit();
     this.txtGiro = new DevExpress.XtraEditors.TextEdit();
     this.txtObservaciones = new DevExpress.XtraEditors.MemoEdit();
     this.txtCorreo = new DevExpress.XtraEditors.TextEdit();
     this.label2 = new System.Windows.Forms.Label();
     this.cbxEmpresa = new System.Windows.Forms.ComboBox();
     this.label3 = new System.Windows.Forms.Label();
     this.tableLayoutPanel1 = new System.Windows.Forms.TableLayoutPanel();
     this.flowLayoutPanel9 = new System.Windows.Forms.FlowLayoutPanel();
     this.lblRfc = new System.Windows.Forms.Label();
     this.txtRfc = new System.Windows.Forms.MaskedTextBox();
     this.flowLayoutPanel1 = new System.Windows.Forms.FlowLayoutPanel();
     this.flowLayoutPanel2 = new System.Windows.Forms.FlowLayoutPanel();
     this.flowLayoutPanel3 = new System.Windows.Forms.FlowLayoutPanel();
     this.flowLayoutPanel4 = new System.Windows.Forms.FlowLayoutPanel();
     this.flowLayoutPanel5 = new System.Windows.Forms.FlowLayoutPanel();
     this.flowLayoutPanel6 = new System.Windows.Forms.FlowLayoutPanel();
     this.flowLayoutPanel7 = new System.Windows.Forms.FlowLayoutPanel();
     this.flowLayoutPanel8 = new System.Windows.Forms.FlowLayoutPanel();
     this.flowLayoutPanel10 = new System.Windows.Forms.FlowLayoutPanel();
     this.flowLayoutPanel11 = new System.Windows.Forms.FlowLayoutPanel();
     this.flowLayoutPanel12 = new System.Windows.Forms.FlowLayoutPanel();
     this.flowLayoutPanel13 = new System.Windows.Forms.FlowLayoutPanel();
     this.flowLayoutPanel14 = new System.Windows.Forms.FlowLayoutPanel();
     this.flowLayoutPanel15 = new System.Windows.Forms.FlowLayoutPanel();
     this.lblTel3 = new System.Windows.Forms.Label();
     this.txtTel3 = new System.Windows.Forms.MaskedTextBox();
     this.flowLayoutPanel16 = new System.Windows.Forms.FlowLayoutPanel();
     this.flowLayoutPanel17 = new System.Windows.Forms.FlowLayoutPanel();
     this.label4 = new System.Windows.Forms.Label();
     this.txtNombreFiscal = new DevExpress.XtraEditors.TextEdit();
     this.txtCentinela = new System.Windows.Forms.TextBox();
     this.flowLayoutPanel18 = new System.Windows.Forms.FlowLayoutPanel();
     this.label6 = new System.Windows.Forms.Label();
     this.cbxTipo = new System.Windows.Forms.ComboBox();
     ((System.ComponentModel.ISupportInitialize)(this.bsSource)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtClave.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtPaterno.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtMaterno.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtNombre.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtCalle.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtColonia.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtDelegacion.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtEstado.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtPais.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtRpaterno.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtRmaterno.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtRnombre.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtGiro.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtObservaciones.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtCorreo.Properties)).BeginInit();
     this.tableLayoutPanel1.SuspendLayout();
     this.flowLayoutPanel9.SuspendLayout();
     this.flowLayoutPanel1.SuspendLayout();
     this.flowLayoutPanel2.SuspendLayout();
     this.flowLayoutPanel3.SuspendLayout();
     this.flowLayoutPanel4.SuspendLayout();
     this.flowLayoutPanel5.SuspendLayout();
     this.flowLayoutPanel6.SuspendLayout();
     this.flowLayoutPanel7.SuspendLayout();
     this.flowLayoutPanel8.SuspendLayout();
     this.flowLayoutPanel10.SuspendLayout();
     this.flowLayoutPanel11.SuspendLayout();
     this.flowLayoutPanel12.SuspendLayout();
     this.flowLayoutPanel13.SuspendLayout();
     this.flowLayoutPanel14.SuspendLayout();
     this.flowLayoutPanel15.SuspendLayout();
     this.flowLayoutPanel17.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.txtNombreFiscal.Properties)).BeginInit();
     this.flowLayoutPanel18.SuspendLayout();
     this.SuspendLayout();
     //
     // txtFax
     //
     this.txtFax.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtFax.Location = new System.Drawing.Point(34, 3);
     this.txtFax.Name = "txtFax";
     this.txtFax.Size = new System.Drawing.Size(169, 20);
     this.txtFax.TabIndex = 1;
     //
     // txtTel2
     //
     this.txtTel2.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtTel2.Location = new System.Drawing.Point(67, 3);
     this.txtTel2.Name = "txtTel2";
     this.txtTel2.Size = new System.Drawing.Size(164, 20);
     this.txtTel2.TabIndex = 1;
     //
     // txtCodigoP
     //
     this.txtCodigoP.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtCodigoP.Location = new System.Drawing.Point(92, 3);
     this.txtCodigoP.Mask = "00000";
     this.txtCodigoP.Name = "txtCodigoP";
     this.txtCodigoP.Size = new System.Drawing.Size(41, 20);
     this.txtCodigoP.TabIndex = 1;
     //
     // txtTel
     //
     this.txtTel.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtTel.Location = new System.Drawing.Point(91, 267);
     this.txtTel.Name = "txtTel";
     this.txtTel.Size = new System.Drawing.Size(164, 20);
     this.txtTel.TabIndex = 19;
     //
     // lblObservaciones
     //
     this.lblObservaciones.AutoSize = true;
     this.lblObservaciones.Location = new System.Drawing.Point(3, 549);
     this.lblObservaciones.Name = "lblObservaciones";
     this.lblObservaciones.Size = new System.Drawing.Size(78, 13);
     this.lblObservaciones.TabIndex = 1;
     this.lblObservaciones.Text = "Observaciones";
     //
     // label5
     //
     this.label5.AutoSize = true;
     this.label5.ForeColor = System.Drawing.SystemColors.HotTrack;
     this.label5.Location = new System.Drawing.Point(91, 394);
     this.label5.Name = "label5";
     this.label5.Size = new System.Drawing.Size(95, 13);
     this.label5.TabIndex = 13;
     this.label5.Text = "Giro o actividad";
     //
     // lblNombre2
     //
     this.lblNombre2.AutoSize = true;
     this.lblNombre2.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblNombre2.ForeColor = System.Drawing.Color.Black;
     this.lblNombre2.Location = new System.Drawing.Point(3, 0);
     this.lblNombre2.Name = "lblNombre2";
     this.lblNombre2.Size = new System.Drawing.Size(44, 13);
     this.lblNombre2.TabIndex = 0;
     this.lblNombre2.Text = "Nombre";
     //
     // lblMaterno2
     //
     this.lblMaterno2.AutoSize = true;
     this.lblMaterno2.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblMaterno2.ForeColor = System.Drawing.Color.Black;
     this.lblMaterno2.Location = new System.Drawing.Point(3, 0);
     this.lblMaterno2.Name = "lblMaterno2";
     this.lblMaterno2.Size = new System.Drawing.Size(47, 13);
     this.lblMaterno2.TabIndex = 0;
     this.lblMaterno2.Text = "Materno";
     //
     // lblPaterno2
     //
     this.lblPaterno2.AutoSize = true;
     this.lblPaterno2.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblPaterno2.ForeColor = System.Drawing.Color.Black;
     this.lblPaterno2.Location = new System.Drawing.Point(3, 0);
     this.lblPaterno2.Name = "lblPaterno2";
     this.lblPaterno2.Size = new System.Drawing.Size(45, 13);
     this.lblPaterno2.TabIndex = 0;
     this.lblPaterno2.Text = "Paterno";
     //
     // lblRepresentante
     //
     this.lblRepresentante.AutoSize = true;
     this.lblRepresentante.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblRepresentante.ForeColor = System.Drawing.Color.Black;
     this.lblRepresentante.Location = new System.Drawing.Point(3, 345);
     this.lblRepresentante.Name = "lblRepresentante";
     this.lblRepresentante.Size = new System.Drawing.Size(78, 26);
     this.lblRepresentante.TabIndex = 2;
     this.lblRepresentante.Text = "Repesentante Legal";
     //
     // lblCorreo
     //
     this.lblCorreo.AutoSize = true;
     this.lblCorreo.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblCorreo.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(50)))), ((int)(((byte)(50)))), ((int)(((byte)(50)))));
     this.lblCorreo.Location = new System.Drawing.Point(3, 0);
     this.lblCorreo.Name = "lblCorreo";
     this.lblCorreo.Size = new System.Drawing.Size(40, 13);
     this.lblCorreo.TabIndex = 0;
     this.lblCorreo.Text = "Correo";
     //
     // lblTel2
     //
     this.lblTel2.AutoSize = true;
     this.lblTel2.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblTel2.Location = new System.Drawing.Point(3, 0);
     this.lblTel2.Name = "lblTel2";
     this.lblTel2.Size = new System.Drawing.Size(58, 13);
     this.lblTel2.TabIndex = 0;
     this.lblTel2.Text = "Teléfono 2";
     //
     // lblTel1
     //
     this.lblTel1.AutoSize = true;
     this.lblTel1.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblTel1.ForeColor = System.Drawing.SystemColors.HotTrack;
     this.lblTel1.Location = new System.Drawing.Point(3, 264);
     this.lblTel1.Name = "lblTel1";
     this.lblTel1.Size = new System.Drawing.Size(66, 13);
     this.lblTel1.TabIndex = 18;
     this.lblTel1.Text = "Teléfono 1";
     //
     // lblFax
     //
     this.lblFax.AutoSize = true;
     this.lblFax.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblFax.Location = new System.Drawing.Point(3, 0);
     this.lblFax.Name = "lblFax";
     this.lblFax.Size = new System.Drawing.Size(25, 13);
     this.lblFax.TabIndex = 0;
     this.lblFax.Text = "Fax";
     //
     // lblCodigo
     //
     this.lblCodigo.AutoSize = true;
     this.lblCodigo.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblCodigo.ForeColor = System.Drawing.SystemColors.HotTrack;
     this.lblCodigo.Location = new System.Drawing.Point(3, 0);
     this.lblCodigo.Name = "lblCodigo";
     this.lblCodigo.Size = new System.Drawing.Size(83, 13);
     this.lblCodigo.TabIndex = 0;
     this.lblCodigo.Text = "Código Postal";
     //
     // lblPais
     //
     this.lblPais.AutoSize = true;
     this.lblPais.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblPais.ForeColor = System.Drawing.SystemColors.HotTrack;
     this.lblPais.Location = new System.Drawing.Point(3, 225);
     this.lblPais.Name = "lblPais";
     this.lblPais.Size = new System.Drawing.Size(30, 13);
     this.lblPais.TabIndex = 15;
     this.lblPais.Text = "País";
     //
     // lblEstado
     //
     this.lblEstado.AutoSize = true;
     this.lblEstado.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblEstado.ForeColor = System.Drawing.SystemColors.HotTrack;
     this.lblEstado.Location = new System.Drawing.Point(3, 0);
     this.lblEstado.Name = "lblEstado";
     this.lblEstado.Size = new System.Drawing.Size(45, 13);
     this.lblEstado.TabIndex = 0;
     this.lblEstado.Text = "Estado";
     //
     // lblDelegacion
     //
     this.lblDelegacion.AutoSize = true;
     this.lblDelegacion.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblDelegacion.ForeColor = System.Drawing.SystemColors.HotTrack;
     this.lblDelegacion.Location = new System.Drawing.Point(3, 183);
     this.lblDelegacion.Name = "lblDelegacion";
     this.lblDelegacion.Size = new System.Drawing.Size(75, 26);
     this.lblDelegacion.TabIndex = 12;
     this.lblDelegacion.Text = "Delegación/Municipio";
     //
     // lblColonia
     //
     this.lblColonia.AutoSize = true;
     this.lblColonia.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblColonia.ForeColor = System.Drawing.SystemColors.HotTrack;
     this.lblColonia.Location = new System.Drawing.Point(3, 0);
     this.lblColonia.Name = "lblColonia";
     this.lblColonia.Size = new System.Drawing.Size(48, 13);
     this.lblColonia.TabIndex = 0;
     this.lblColonia.Text = "Colonia";
     //
     // lblCalle
     //
     this.lblCalle.AutoSize = true;
     this.lblCalle.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblCalle.ForeColor = System.Drawing.SystemColors.HotTrack;
     this.lblCalle.Location = new System.Drawing.Point(3, 144);
     this.lblCalle.Name = "lblCalle";
     this.lblCalle.Size = new System.Drawing.Size(75, 13);
     this.lblCalle.TabIndex = 9;
     this.lblCalle.Text = "Calle y Núm.";
     //
     // lblFiscal
     //
     this.lblFiscal.AutoSize = true;
     this.lblFiscal.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblFiscal.ForeColor = System.Drawing.Color.Black;
     this.lblFiscal.Location = new System.Drawing.Point(3, 89);
     this.lblFiscal.Name = "lblFiscal";
     this.lblFiscal.Size = new System.Drawing.Size(75, 13);
     this.lblFiscal.TabIndex = 7;
     this.lblFiscal.Text = "Persona Moral";
     //
     // lblNombre
     //
     this.lblNombre.AutoSize = true;
     this.lblNombre.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblNombre.ForeColor = System.Drawing.Color.Black;
     this.lblNombre.Location = new System.Drawing.Point(3, 0);
     this.lblNombre.Name = "lblNombre";
     this.lblNombre.Size = new System.Drawing.Size(44, 13);
     this.lblNombre.TabIndex = 0;
     this.lblNombre.Text = "Nombre";
     //
     // lblMaterno
     //
     this.lblMaterno.AutoSize = true;
     this.lblMaterno.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblMaterno.ForeColor = System.Drawing.Color.Black;
     this.lblMaterno.Location = new System.Drawing.Point(3, 0);
     this.lblMaterno.Name = "lblMaterno";
     this.lblMaterno.Size = new System.Drawing.Size(47, 13);
     this.lblMaterno.TabIndex = 0;
     this.lblMaterno.Text = "Materno";
     //
     // lblPaterno
     //
     this.lblPaterno.AutoSize = true;
     this.lblPaterno.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblPaterno.ForeColor = System.Drawing.Color.Black;
     this.lblPaterno.Location = new System.Drawing.Point(3, 0);
     this.lblPaterno.Name = "lblPaterno";
     this.lblPaterno.Size = new System.Drawing.Size(45, 13);
     this.lblPaterno.TabIndex = 0;
     this.lblPaterno.Text = "Paterno";
     //
     // label1
     //
     this.label1.AutoSize = true;
     this.label1.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label1.ForeColor = System.Drawing.SystemColors.HotTrack;
     this.label1.Location = new System.Drawing.Point(428, 83);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(334, 16);
     this.label1.TabIndex = 0;
     this.label1.Text = "Los campos marcados en azul son obligatorios";
     //
     // lblProveedor
     //
     this.lblProveedor.AutoSize = true;
     this.lblProveedor.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblProveedor.ForeColor = System.Drawing.SystemColors.HotTrack;
     this.lblProveedor.Location = new System.Drawing.Point(3, 0);
     this.lblProveedor.Name = "lblProveedor";
     this.lblProveedor.Size = new System.Drawing.Size(38, 13);
     this.lblProveedor.TabIndex = 0;
     this.lblProveedor.Text = "Clave";
     //
     // txtClave
     //
     this.txtClave.EditValue = new decimal(new int[] {
     0,
     0,
     0,
     0});
     this.txtClave.Location = new System.Drawing.Point(3, 3);
     this.txtClave.MenuManager = this.barManager1;
     this.txtClave.Name = "txtClave";
     this.txtClave.Properties.Appearance.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtClave.Properties.Appearance.Options.UseFont = true;
     this.txtClave.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.txtClave.Properties.Mask.EditMask = "n0";
     this.txtClave.Size = new System.Drawing.Size(59, 20);
     this.txtClave.TabIndex = 1;
     //
     // txtPaterno
     //
     this.txtPaterno.Location = new System.Drawing.Point(54, 3);
     this.txtPaterno.MenuManager = this.barManager1;
     this.txtPaterno.Name = "txtPaterno";
     this.txtPaterno.Properties.Appearance.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtPaterno.Properties.Appearance.Options.UseFont = true;
     this.txtPaterno.Size = new System.Drawing.Size(239, 19);
     this.txtPaterno.TabIndex = 1;
     this.txtPaterno.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.TxtMayusculaKeyPress);
     //
     // txtMaterno
     //
     this.txtMaterno.Location = new System.Drawing.Point(56, 3);
     this.txtMaterno.MenuManager = this.barManager1;
     this.txtMaterno.Name = "txtMaterno";
     this.txtMaterno.Properties.Appearance.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtMaterno.Properties.Appearance.Options.UseFont = true;
     this.txtMaterno.Size = new System.Drawing.Size(239, 19);
     this.txtMaterno.TabIndex = 1;
     this.txtMaterno.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.TxtMayusculaKeyPress);
     //
     // txtNombre
     //
     this.txtNombre.Location = new System.Drawing.Point(53, 3);
     this.txtNombre.MenuManager = this.barManager1;
     this.txtNombre.Name = "txtNombre";
     this.txtNombre.Properties.Appearance.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtNombre.Properties.Appearance.Options.UseFont = true;
     this.txtNombre.Size = new System.Drawing.Size(239, 19);
     this.txtNombre.TabIndex = 1;
     this.txtNombre.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.TxtMayusculaKeyPress);
     //
     // txtCalle
     //
     this.txtCalle.Location = new System.Drawing.Point(91, 147);
     this.txtCalle.MenuManager = this.barManager1;
     this.txtCalle.Name = "txtCalle";
     this.txtCalle.Properties.Appearance.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtCalle.Properties.Appearance.Options.UseFont = true;
     this.txtCalle.Size = new System.Drawing.Size(299, 19);
     this.txtCalle.TabIndex = 10;
     this.txtCalle.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.TxtMayusculaKeyPress);
     //
     // txtColonia
     //
     this.txtColonia.Location = new System.Drawing.Point(57, 3);
     this.txtColonia.MenuManager = this.barManager1;
     this.txtColonia.Name = "txtColonia";
     this.txtColonia.Properties.Appearance.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtColonia.Properties.Appearance.Options.UseFont = true;
     this.txtColonia.Size = new System.Drawing.Size(244, 19);
     this.txtColonia.TabIndex = 1;
     this.txtColonia.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.TxtMayusculaKeyPress);
     //
     // txtDelegacion
     //
     this.txtDelegacion.Location = new System.Drawing.Point(91, 186);
     this.txtDelegacion.MenuManager = this.barManager1;
     this.txtDelegacion.Name = "txtDelegacion";
     this.txtDelegacion.Properties.Appearance.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtDelegacion.Properties.Appearance.Options.UseFont = true;
     this.txtDelegacion.Size = new System.Drawing.Size(215, 19);
     this.txtDelegacion.TabIndex = 13;
     this.txtDelegacion.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.TxtMayusculaKeyPress);
     //
     // txtEstado
     //
     this.txtEstado.Location = new System.Drawing.Point(54, 3);
     this.txtEstado.MenuManager = this.barManager1;
     this.txtEstado.Name = "txtEstado";
     this.txtEstado.Properties.Appearance.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtEstado.Properties.Appearance.Options.UseFont = true;
     this.txtEstado.Size = new System.Drawing.Size(183, 19);
     this.txtEstado.TabIndex = 1;
     this.txtEstado.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.TxtMayusculaKeyPress);
     //
     // txtPais
     //
     this.txtPais.EditValue = "MEXICO";
     this.txtPais.Location = new System.Drawing.Point(91, 228);
     this.txtPais.MenuManager = this.barManager1;
     this.txtPais.Name = "txtPais";
     this.txtPais.Properties.Appearance.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtPais.Properties.Appearance.Options.UseFont = true;
     this.txtPais.Size = new System.Drawing.Size(164, 19);
     this.txtPais.TabIndex = 16;
     this.txtPais.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.TxtMayusculaKeyPress);
     //
     // txtRpaterno
     //
     this.txtRpaterno.Location = new System.Drawing.Point(54, 3);
     this.txtRpaterno.MenuManager = this.barManager1;
     this.txtRpaterno.Name = "txtRpaterno";
     this.txtRpaterno.Properties.Appearance.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtRpaterno.Properties.Appearance.Options.UseFont = true;
     this.txtRpaterno.Size = new System.Drawing.Size(239, 19);
     this.txtRpaterno.TabIndex = 1;
     this.txtRpaterno.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.TxtMayusculaKeyPress);
     //
     // txtRmaterno
     //
     this.txtRmaterno.Location = new System.Drawing.Point(56, 3);
     this.txtRmaterno.MenuManager = this.barManager1;
     this.txtRmaterno.Name = "txtRmaterno";
     this.txtRmaterno.Properties.Appearance.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtRmaterno.Properties.Appearance.Options.UseFont = true;
     this.txtRmaterno.Size = new System.Drawing.Size(239, 19);
     this.txtRmaterno.TabIndex = 1;
     this.txtRmaterno.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.TxtMayusculaKeyPress);
     //
     // txtRnombre
     //
     this.txtRnombre.Location = new System.Drawing.Point(53, 3);
     this.txtRnombre.MenuManager = this.barManager1;
     this.txtRnombre.Name = "txtRnombre";
     this.txtRnombre.Properties.Appearance.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtRnombre.Properties.Appearance.Options.UseFont = true;
     this.txtRnombre.Size = new System.Drawing.Size(239, 19);
     this.txtRnombre.TabIndex = 1;
     this.txtRnombre.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.TxtMayusculaKeyPress);
     //
     // txtGiro
     //
     this.txtGiro.Location = new System.Drawing.Point(412, 397);
     this.txtGiro.MenuManager = this.barManager1;
     this.txtGiro.Name = "txtGiro";
     this.txtGiro.Properties.Appearance.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtGiro.Properties.Appearance.Options.UseFont = true;
     this.txtGiro.Size = new System.Drawing.Size(295, 19);
     this.txtGiro.TabIndex = 27;
     this.txtGiro.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.TxtMayusculaKeyPress);
     //
     // txtObservaciones
     //
     this.txtObservaciones.Location = new System.Drawing.Point(122, 547);
     this.txtObservaciones.MenuManager = this.barManager1;
     this.txtObservaciones.Name = "txtObservaciones";
     this.txtObservaciones.Properties.Appearance.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtObservaciones.Properties.Appearance.Options.UseFont = true;
     this.txtObservaciones.Size = new System.Drawing.Size(396, 96);
     this.txtObservaciones.TabIndex = 3;
     this.txtObservaciones.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.TxtMayusculaKeyPress);
     //
     // txtCorreo
     //
     this.txtCorreo.Location = new System.Drawing.Point(49, 3);
     this.txtCorreo.MenuManager = this.barManager1;
     this.txtCorreo.Name = "txtCorreo";
     this.txtCorreo.Properties.Appearance.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtCorreo.Properties.Appearance.Options.UseFont = true;
     this.txtCorreo.Size = new System.Drawing.Size(243, 19);
     this.txtCorreo.TabIndex = 1;
     //
     // label2
     //
     this.label2.AutoSize = true;
     this.label2.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label2.ForeColor = System.Drawing.Color.Black;
     this.label2.Location = new System.Drawing.Point(3, 38);
     this.label2.Name = "label2";
     this.label2.Size = new System.Drawing.Size(75, 13);
     this.label2.TabIndex = 2;
     this.label2.Text = "Persona Fisica";
     //
     // cbxEmpresa
     //
     this.cbxEmpresa.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.cbxEmpresa.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.cbxEmpresa.FormattingEnabled = true;
     this.cbxEmpresa.Location = new System.Drawing.Point(65, 3);
     this.cbxEmpresa.Name = "cbxEmpresa";
     this.cbxEmpresa.Size = new System.Drawing.Size(165, 21);
     this.cbxEmpresa.TabIndex = 1;
     //
     // label3
     //
     this.label3.AutoSize = true;
     this.label3.ForeColor = System.Drawing.SystemColors.HotTrack;
     this.label3.Location = new System.Drawing.Point(3, 0);
     this.label3.Name = "label3";
     this.label3.Size = new System.Drawing.Size(56, 13);
     this.label3.TabIndex = 0;
     this.label3.Text = "Empresa";
     //
     // tableLayoutPanel1
     //
     this.tableLayoutPanel1.ColumnCount = 4;
     this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 21.48541F));
     this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 78.51459F));
     this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 339F));
     this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 437F));
     this.tableLayoutPanel1.Controls.Add(this.flowLayoutPanel9, 3, 0);
     this.tableLayoutPanel1.Controls.Add(this.lblProveedor, 0, 0);
     this.tableLayoutPanel1.Controls.Add(this.label2, 0, 1);
     this.tableLayoutPanel1.Controls.Add(this.txtGiro, 2, 9);
     this.tableLayoutPanel1.Controls.Add(this.label5, 1, 9);
     this.tableLayoutPanel1.Controls.Add(this.flowLayoutPanel1, 1, 1);
     this.tableLayoutPanel1.Controls.Add(this.flowLayoutPanel2, 2, 1);
     this.tableLayoutPanel1.Controls.Add(this.txtPais, 1, 5);
     this.tableLayoutPanel1.Controls.Add(this.flowLayoutPanel3, 3, 1);
     this.tableLayoutPanel1.Controls.Add(this.lblRepresentante, 0, 8);
     this.tableLayoutPanel1.Controls.Add(this.lblFiscal, 0, 2);
     this.tableLayoutPanel1.Controls.Add(this.txtTel, 1, 6);
     this.tableLayoutPanel1.Controls.Add(this.txtDelegacion, 1, 4);
     this.tableLayoutPanel1.Controls.Add(this.txtCalle, 1, 3);
     this.tableLayoutPanel1.Controls.Add(this.lblCalle, 0, 3);
     this.tableLayoutPanel1.Controls.Add(this.lblDelegacion, 0, 4);
     this.tableLayoutPanel1.Controls.Add(this.lblTel1, 0, 6);
     this.tableLayoutPanel1.Controls.Add(this.lblPais, 0, 5);
     this.tableLayoutPanel1.Controls.Add(this.flowLayoutPanel4, 2, 7);
     this.tableLayoutPanel1.Controls.Add(this.flowLayoutPanel5, 3, 7);
     this.tableLayoutPanel1.Controls.Add(this.flowLayoutPanel6, 1, 8);
     this.tableLayoutPanel1.Controls.Add(this.flowLayoutPanel7, 2, 8);
     this.tableLayoutPanel1.Controls.Add(this.flowLayoutPanel8, 3, 8);
     this.tableLayoutPanel1.Controls.Add(this.flowLayoutPanel10, 2, 3);
     this.tableLayoutPanel1.Controls.Add(this.flowLayoutPanel11, 2, 4);
     this.tableLayoutPanel1.Controls.Add(this.flowLayoutPanel12, 2, 5);
     this.tableLayoutPanel1.Controls.Add(this.flowLayoutPanel13, 2, 6);
     this.tableLayoutPanel1.Controls.Add(this.flowLayoutPanel14, 2, 0);
     this.tableLayoutPanel1.Controls.Add(this.flowLayoutPanel15, 3, 6);
     this.tableLayoutPanel1.Controls.Add(this.flowLayoutPanel16, 2, 2);
     this.tableLayoutPanel1.Controls.Add(this.flowLayoutPanel17, 1, 2);
     this.tableLayoutPanel1.Controls.Add(this.txtCentinela, 3, 2);
     this.tableLayoutPanel1.Controls.Add(this.flowLayoutPanel18, 1, 0);
     this.tableLayoutPanel1.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.tableLayoutPanel1.Location = new System.Drawing.Point(12, 102);
     this.tableLayoutPanel1.Name = "tableLayoutPanel1";
     this.tableLayoutPanel1.RowCount = 10;
     this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 43.03798F));
     this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 56.96202F));
     this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 55F));
     this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 39F));
     this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 42F));
     this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 39F));
     this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 45F));
     this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 36F));
     this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 49F));
     this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 44F));
     this.tableLayoutPanel1.Size = new System.Drawing.Size(1186, 439);
     this.tableLayoutPanel1.TabIndex = 2;
     //
     // flowLayoutPanel9
     //
     this.flowLayoutPanel9.Controls.Add(this.lblRfc);
     this.flowLayoutPanel9.Controls.Add(this.txtRfc);
     this.flowLayoutPanel9.Dock = System.Windows.Forms.DockStyle.Fill;
     this.flowLayoutPanel9.Location = new System.Drawing.Point(751, 3);
     this.flowLayoutPanel9.Name = "flowLayoutPanel9";
     this.flowLayoutPanel9.Size = new System.Drawing.Size(432, 32);
     this.flowLayoutPanel9.TabIndex = 3;
     //
     // lblRfc
     //
     this.lblRfc.AutoSize = true;
     this.lblRfc.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblRfc.ForeColor = System.Drawing.SystemColors.HotTrack;
     this.lblRfc.Location = new System.Drawing.Point(3, 0);
     this.lblRfc.Name = "lblRfc";
     this.lblRfc.Size = new System.Drawing.Size(28, 13);
     this.lblRfc.TabIndex = 0;
     this.lblRfc.Text = "RFC";
     //
     // txtRfc
     //
     this.txtRfc.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtRfc.Location = new System.Drawing.Point(37, 3);
     this.txtRfc.Mask = "LLLL-000000-AAA";
     this.txtRfc.Name = "txtRfc";
     this.txtRfc.Size = new System.Drawing.Size(121, 20);
     this.txtRfc.TabIndex = 1;
     this.txtRfc.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.TxtMayusculaKeyPress);
     //
     // flowLayoutPanel1
     //
     this.flowLayoutPanel1.Controls.Add(this.lblPaterno);
     this.flowLayoutPanel1.Controls.Add(this.txtPaterno);
     this.flowLayoutPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.flowLayoutPanel1.Location = new System.Drawing.Point(91, 41);
     this.flowLayoutPanel1.Name = "flowLayoutPanel1";
     this.flowLayoutPanel1.Size = new System.Drawing.Size(315, 45);
     this.flowLayoutPanel1.TabIndex = 4;
     //
     // flowLayoutPanel2
     //
     this.flowLayoutPanel2.Controls.Add(this.lblMaterno);
     this.flowLayoutPanel2.Controls.Add(this.txtMaterno);
     this.flowLayoutPanel2.Dock = System.Windows.Forms.DockStyle.Fill;
     this.flowLayoutPanel2.Location = new System.Drawing.Point(412, 41);
     this.flowLayoutPanel2.Name = "flowLayoutPanel2";
     this.flowLayoutPanel2.Size = new System.Drawing.Size(333, 45);
     this.flowLayoutPanel2.TabIndex = 5;
     //
     // flowLayoutPanel3
     //
     this.flowLayoutPanel3.Controls.Add(this.lblNombre);
     this.flowLayoutPanel3.Controls.Add(this.txtNombre);
     this.flowLayoutPanel3.Dock = System.Windows.Forms.DockStyle.Fill;
     this.flowLayoutPanel3.Location = new System.Drawing.Point(751, 41);
     this.flowLayoutPanel3.Name = "flowLayoutPanel3";
     this.flowLayoutPanel3.Size = new System.Drawing.Size(432, 45);
     this.flowLayoutPanel3.TabIndex = 6;
     //
     // flowLayoutPanel4
     //
     this.flowLayoutPanel4.Controls.Add(this.lblFax);
     this.flowLayoutPanel4.Controls.Add(this.txtFax);
     this.flowLayoutPanel4.Dock = System.Windows.Forms.DockStyle.Fill;
     this.flowLayoutPanel4.Location = new System.Drawing.Point(412, 312);
     this.flowLayoutPanel4.Name = "flowLayoutPanel4";
     this.flowLayoutPanel4.Size = new System.Drawing.Size(333, 30);
     this.flowLayoutPanel4.TabIndex = 22;
     //
     // flowLayoutPanel5
     //
     this.flowLayoutPanel5.Controls.Add(this.lblCorreo);
     this.flowLayoutPanel5.Controls.Add(this.txtCorreo);
     this.flowLayoutPanel5.Dock = System.Windows.Forms.DockStyle.Fill;
     this.flowLayoutPanel5.Location = new System.Drawing.Point(751, 312);
     this.flowLayoutPanel5.Name = "flowLayoutPanel5";
     this.flowLayoutPanel5.Size = new System.Drawing.Size(432, 30);
     this.flowLayoutPanel5.TabIndex = 23;
     //
     // flowLayoutPanel6
     //
     this.flowLayoutPanel6.Controls.Add(this.lblPaterno2);
     this.flowLayoutPanel6.Controls.Add(this.txtRpaterno);
     this.flowLayoutPanel6.Dock = System.Windows.Forms.DockStyle.Fill;
     this.flowLayoutPanel6.Location = new System.Drawing.Point(91, 348);
     this.flowLayoutPanel6.Name = "flowLayoutPanel6";
     this.flowLayoutPanel6.Size = new System.Drawing.Size(315, 43);
     this.flowLayoutPanel6.TabIndex = 24;
     //
     // flowLayoutPanel7
     //
     this.flowLayoutPanel7.Controls.Add(this.lblMaterno2);
     this.flowLayoutPanel7.Controls.Add(this.txtRmaterno);
     this.flowLayoutPanel7.Dock = System.Windows.Forms.DockStyle.Fill;
     this.flowLayoutPanel7.Location = new System.Drawing.Point(412, 348);
     this.flowLayoutPanel7.Name = "flowLayoutPanel7";
     this.flowLayoutPanel7.Size = new System.Drawing.Size(333, 43);
     this.flowLayoutPanel7.TabIndex = 25;
     //
     // flowLayoutPanel8
     //
     this.flowLayoutPanel8.Controls.Add(this.lblNombre2);
     this.flowLayoutPanel8.Controls.Add(this.txtRnombre);
     this.flowLayoutPanel8.Dock = System.Windows.Forms.DockStyle.Fill;
     this.flowLayoutPanel8.Location = new System.Drawing.Point(751, 348);
     this.flowLayoutPanel8.Name = "flowLayoutPanel8";
     this.flowLayoutPanel8.Size = new System.Drawing.Size(432, 43);
     this.flowLayoutPanel8.TabIndex = 26;
     //
     // flowLayoutPanel10
     //
     this.flowLayoutPanel10.Controls.Add(this.lblColonia);
     this.flowLayoutPanel10.Controls.Add(this.txtColonia);
     this.flowLayoutPanel10.Dock = System.Windows.Forms.DockStyle.Fill;
     this.flowLayoutPanel10.Location = new System.Drawing.Point(412, 147);
     this.flowLayoutPanel10.Name = "flowLayoutPanel10";
     this.flowLayoutPanel10.Size = new System.Drawing.Size(333, 33);
     this.flowLayoutPanel10.TabIndex = 11;
     //
     // flowLayoutPanel11
     //
     this.flowLayoutPanel11.Controls.Add(this.lblEstado);
     this.flowLayoutPanel11.Controls.Add(this.txtEstado);
     this.flowLayoutPanel11.Dock = System.Windows.Forms.DockStyle.Fill;
     this.flowLayoutPanel11.Location = new System.Drawing.Point(412, 186);
     this.flowLayoutPanel11.Name = "flowLayoutPanel11";
     this.flowLayoutPanel11.Size = new System.Drawing.Size(333, 36);
     this.flowLayoutPanel11.TabIndex = 14;
     //
     // flowLayoutPanel12
     //
     this.flowLayoutPanel12.Controls.Add(this.lblCodigo);
     this.flowLayoutPanel12.Controls.Add(this.txtCodigoP);
     this.flowLayoutPanel12.Dock = System.Windows.Forms.DockStyle.Fill;
     this.flowLayoutPanel12.Location = new System.Drawing.Point(412, 228);
     this.flowLayoutPanel12.Name = "flowLayoutPanel12";
     this.flowLayoutPanel12.Size = new System.Drawing.Size(333, 33);
     this.flowLayoutPanel12.TabIndex = 17;
     //
     // flowLayoutPanel13
     //
     this.flowLayoutPanel13.Controls.Add(this.lblTel2);
     this.flowLayoutPanel13.Controls.Add(this.txtTel2);
     this.flowLayoutPanel13.Dock = System.Windows.Forms.DockStyle.Fill;
     this.flowLayoutPanel13.Location = new System.Drawing.Point(412, 267);
     this.flowLayoutPanel13.Name = "flowLayoutPanel13";
     this.flowLayoutPanel13.Size = new System.Drawing.Size(333, 39);
     this.flowLayoutPanel13.TabIndex = 20;
     //
     // flowLayoutPanel14
     //
     this.flowLayoutPanel14.Controls.Add(this.label3);
     this.flowLayoutPanel14.Controls.Add(this.cbxEmpresa);
     this.flowLayoutPanel14.Dock = System.Windows.Forms.DockStyle.Fill;
     this.flowLayoutPanel14.Location = new System.Drawing.Point(412, 3);
     this.flowLayoutPanel14.Name = "flowLayoutPanel14";
     this.flowLayoutPanel14.Size = new System.Drawing.Size(333, 32);
     this.flowLayoutPanel14.TabIndex = 2;
     //
     // flowLayoutPanel15
     //
     this.flowLayoutPanel15.Controls.Add(this.lblTel3);
     this.flowLayoutPanel15.Controls.Add(this.txtTel3);
     this.flowLayoutPanel15.Dock = System.Windows.Forms.DockStyle.Fill;
     this.flowLayoutPanel15.Location = new System.Drawing.Point(751, 267);
     this.flowLayoutPanel15.Name = "flowLayoutPanel15";
     this.flowLayoutPanel15.Size = new System.Drawing.Size(432, 39);
     this.flowLayoutPanel15.TabIndex = 21;
     //
     // lblTel3
     //
     this.lblTel3.AutoSize = true;
     this.lblTel3.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblTel3.Location = new System.Drawing.Point(3, 0);
     this.lblTel3.Name = "lblTel3";
     this.lblTel3.Size = new System.Drawing.Size(58, 13);
     this.lblTel3.TabIndex = 0;
     this.lblTel3.Text = "Teléfono 3";
     //
     // txtTel3
     //
     this.txtTel3.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtTel3.Location = new System.Drawing.Point(67, 3);
     this.txtTel3.Name = "txtTel3";
     this.txtTel3.Size = new System.Drawing.Size(164, 20);
     this.txtTel3.TabIndex = 1;
     //
     // flowLayoutPanel16
     //
     this.flowLayoutPanel16.Dock = System.Windows.Forms.DockStyle.Fill;
     this.flowLayoutPanel16.Location = new System.Drawing.Point(412, 92);
     this.flowLayoutPanel16.Name = "flowLayoutPanel16";
     this.flowLayoutPanel16.Size = new System.Drawing.Size(333, 49);
     this.flowLayoutPanel16.TabIndex = 8;
     //
     // flowLayoutPanel17
     //
     this.flowLayoutPanel17.Controls.Add(this.label4);
     this.flowLayoutPanel17.Controls.Add(this.txtNombreFiscal);
     this.flowLayoutPanel17.Dock = System.Windows.Forms.DockStyle.Fill;
     this.flowLayoutPanel17.Location = new System.Drawing.Point(91, 92);
     this.flowLayoutPanel17.Name = "flowLayoutPanel17";
     this.flowLayoutPanel17.Size = new System.Drawing.Size(315, 49);
     this.flowLayoutPanel17.TabIndex = 7;
     //
     // label4
     //
     this.label4.AutoSize = true;
     this.label4.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label4.ForeColor = System.Drawing.Color.Black;
     this.label4.Location = new System.Drawing.Point(3, 0);
     this.label4.Name = "label4";
     this.label4.Size = new System.Drawing.Size(73, 13);
     this.label4.TabIndex = 0;
     this.label4.Text = "Nombre Fiscal";
     //
     // txtNombreFiscal
     //
     this.txtNombreFiscal.Location = new System.Drawing.Point(3, 16);
     this.txtNombreFiscal.MenuManager = this.barManager1;
     this.txtNombreFiscal.Name = "txtNombreFiscal";
     this.txtNombreFiscal.Properties.Appearance.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtNombreFiscal.Properties.Appearance.Options.UseFont = true;
     this.txtNombreFiscal.Size = new System.Drawing.Size(311, 19);
     this.txtNombreFiscal.TabIndex = 1;
     this.txtNombreFiscal.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.TxtMayusculaKeyPress);
     //
     // txtCentinela
     //
     this.txtCentinela.Location = new System.Drawing.Point(751, 92);
     this.txtCentinela.Name = "txtCentinela";
     this.txtCentinela.Size = new System.Drawing.Size(10, 21);
     this.txtCentinela.TabIndex = 8;
     this.txtCentinela.TabStop = false;
     //
     // flowLayoutPanel18
     //
     this.flowLayoutPanel18.Controls.Add(this.txtClave);
     this.flowLayoutPanel18.Controls.Add(this.label6);
     this.flowLayoutPanel18.Controls.Add(this.cbxTipo);
     this.flowLayoutPanel18.Dock = System.Windows.Forms.DockStyle.Fill;
     this.flowLayoutPanel18.Location = new System.Drawing.Point(91, 3);
     this.flowLayoutPanel18.Name = "flowLayoutPanel18";
     this.flowLayoutPanel18.Size = new System.Drawing.Size(315, 32);
     this.flowLayoutPanel18.TabIndex = 28;
     //
     // label6
     //
     this.label6.AutoSize = true;
     this.label6.ForeColor = System.Drawing.SystemColors.HotTrack;
     this.label6.Location = new System.Drawing.Point(68, 0);
     this.label6.Name = "label6";
     this.label6.Size = new System.Drawing.Size(31, 13);
     this.label6.TabIndex = 2;
     this.label6.Text = "Tipo";
     //
     // cbxTipo
     //
     this.cbxTipo.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.cbxTipo.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.cbxTipo.FormattingEnabled = true;
     this.cbxTipo.Items.AddRange(new object[] {
     "MORAL",
     "FISICA"});
     this.cbxTipo.Location = new System.Drawing.Point(105, 3);
     this.cbxTipo.Name = "cbxTipo";
     this.cbxTipo.Size = new System.Drawing.Size(110, 21);
     this.cbxTipo.TabIndex = 3;
     this.cbxTipo.SelectedIndexChanged += new System.EventHandler(this.cbxTipo_SelectedIndexChanged);
     //
     // FrmCatalogoProveedor
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(1210, 672);
     this.Controls.Add(this.tableLayoutPanel1);
     this.Controls.Add(this.txtObservaciones);
     this.Controls.Add(this.label1);
     this.Controls.Add(this.lblObservaciones);
     this.Name = "FrmCatalogoProveedor";
     this.Text = "Nuevo Proveedor";
     this.Controls.SetChildIndex(this.lblObservaciones, 0);
     this.Controls.SetChildIndex(this.label1, 0);
     this.Controls.SetChildIndex(this.txtObservaciones, 0);
     this.Controls.SetChildIndex(this.tableLayoutPanel1, 0);
     ((System.ComponentModel.ISupportInitialize)(this.bsSource)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtClave.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtPaterno.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtMaterno.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtNombre.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtCalle.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtColonia.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtDelegacion.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtEstado.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtPais.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtRpaterno.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtRmaterno.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtRnombre.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtGiro.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtObservaciones.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtCorreo.Properties)).EndInit();
     this.tableLayoutPanel1.ResumeLayout(false);
     this.tableLayoutPanel1.PerformLayout();
     this.flowLayoutPanel9.ResumeLayout(false);
     this.flowLayoutPanel9.PerformLayout();
     this.flowLayoutPanel1.ResumeLayout(false);
     this.flowLayoutPanel1.PerformLayout();
     this.flowLayoutPanel2.ResumeLayout(false);
     this.flowLayoutPanel2.PerformLayout();
     this.flowLayoutPanel3.ResumeLayout(false);
     this.flowLayoutPanel3.PerformLayout();
     this.flowLayoutPanel4.ResumeLayout(false);
     this.flowLayoutPanel4.PerformLayout();
     this.flowLayoutPanel5.ResumeLayout(false);
     this.flowLayoutPanel5.PerformLayout();
     this.flowLayoutPanel6.ResumeLayout(false);
     this.flowLayoutPanel6.PerformLayout();
     this.flowLayoutPanel7.ResumeLayout(false);
     this.flowLayoutPanel7.PerformLayout();
     this.flowLayoutPanel8.ResumeLayout(false);
     this.flowLayoutPanel8.PerformLayout();
     this.flowLayoutPanel10.ResumeLayout(false);
     this.flowLayoutPanel10.PerformLayout();
     this.flowLayoutPanel11.ResumeLayout(false);
     this.flowLayoutPanel11.PerformLayout();
     this.flowLayoutPanel12.ResumeLayout(false);
     this.flowLayoutPanel12.PerformLayout();
     this.flowLayoutPanel13.ResumeLayout(false);
     this.flowLayoutPanel13.PerformLayout();
     this.flowLayoutPanel14.ResumeLayout(false);
     this.flowLayoutPanel14.PerformLayout();
     this.flowLayoutPanel15.ResumeLayout(false);
     this.flowLayoutPanel15.PerformLayout();
     this.flowLayoutPanel17.ResumeLayout(false);
     this.flowLayoutPanel17.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.txtNombreFiscal.Properties)).EndInit();
     this.flowLayoutPanel18.ResumeLayout(false);
     this.flowLayoutPanel18.PerformLayout();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Example #59
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(CMainForm));
     this.SysMngmntButton = new RMSUI.FunctionalButton();
     this.TableInfoButton = new RMSUI.FunctionalButton();
     this.NameTableButton = new RMSUI.FunctionalButton();
     this.ChangeDetailsButton = new RMSUI.FunctionalButton();
     this.TWButton = new RMSUI.FunctionalButton();
     this.BarServiceButton = new RMSUI.FunctionalButton();
     this.NewTableButton = new RMSUI.FunctionalButton();
     this.LogOffButton = new RMSUI.FunctionalButton();
     this.MainStatusStrip = new System.Windows.Forms.StatusStrip();
     this.tsLblCurrentUser = new System.Windows.Forms.ToolStripStatusLabel();
     this.UserStatusLabel = new System.Windows.Forms.ToolStripStatusLabel();
     this.OpenOrdersLabel = new System.Windows.Forms.ToolStripStatusLabel();
     this.TerminalIDLabel = new System.Windows.Forms.ToolStripStatusLabel();
     this.tsCallerIdStatus = new System.Windows.Forms.ToolStripStatusLabel();
     this.RefreshTimer = new System.Windows.Forms.Timer(this.components);
     this.tmrCallerInfo = new System.Windows.Forms.Timer(this.components);
     this.tlTip = new System.Windows.Forms.ToolTip(this.components);
     this.btnCallRefresh = new RMSUI.FunctionalButton();
     this.label14 = new System.Windows.Forms.Label();
     this.TotalPageLabel = new System.Windows.Forms.Label();
     this.label13 = new System.Windows.Forms.Label();
     this.CurrentPageLabel = new System.Windows.Forms.Label();
     this.TablePanel = new System.Windows.Forms.FlowLayoutPanel();
     this.panelCallerID = new System.Windows.Forms.Panel();
     this.picBoxPhone = new RMSUI.FunctionalButton();
     this.lblPhoneNumber = new System.Windows.Forms.Label();
     this.txtCustomerName = new System.Windows.Forms.Label();
     this.label18 = new System.Windows.Forms.Label();
     this.label16 = new System.Windows.Forms.Label();
     this.txtFirstAddress = new System.Windows.Forms.TextBox();
     this.RefreshButton = new RMSUI.FunctionalButton();
     this.PreviousButton = new RMSUI.FunctionalButton();
     this.NextButton = new RMSUI.FunctionalButton();
     this.panel2 = new System.Windows.Forms.Panel();
     this.label21 = new System.Windows.Forms.Label();
     this.label15 = new System.Windows.Forms.Label();
     this.label17 = new System.Windows.Forms.Label();
     this.panel9 = new System.Windows.Forms.Panel();
     this.label1 = new System.Windows.Forms.Label();
     this.refreshlobbyButton = new RMSUI.FunctionalButton();
     this.MainStatusStrip.SuspendLayout();
     this.panelCallerID.SuspendLayout();
     this.panel2.SuspendLayout();
     this.panel9.SuspendLayout();
     this.SuspendLayout();
     //
     // SysMngmntButton
     //
     this.SysMngmntButton.BackColor = System.Drawing.Color.Transparent;
     this.SysMngmntButton.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("SysMngmntButton.BackgroundImage")));
     this.SysMngmntButton.BgImageOnMouseDown = ((System.Drawing.Image)(resources.GetObject("SysMngmntButton.BgImageOnMouseDown")));
     this.SysMngmntButton.BgImageOnMouseUp = ((System.Drawing.Image)(resources.GetObject("SysMngmntButton.BgImageOnMouseUp")));
     this.SysMngmntButton.FlatAppearance.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(51)))), ((int)(((byte)(51)))), ((int)(((byte)(51)))));
     this.SysMngmntButton.FlatAppearance.MouseDownBackColor = System.Drawing.Color.Transparent;
     this.SysMngmntButton.FlatAppearance.MouseOverBackColor = System.Drawing.Color.Transparent;
     this.SysMngmntButton.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.SysMngmntButton.Font = new System.Drawing.Font("Arial", 10F);
     this.SysMngmntButton.ForeColorOnMouseDown = System.Drawing.Color.White;
     this.SysMngmntButton.ForeColorOnMouseUp = System.Drawing.Color.Black;
     this.SysMngmntButton.FunctionType = RMSUI.RMSUIConstants.FunctionType.Control;
     this.SysMngmntButton.Image = ((System.Drawing.Image)(resources.GetObject("SysMngmntButton.Image")));
     this.SysMngmntButton.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.SysMngmntButton.Location = new System.Drawing.Point(991, 533);
     this.SysMngmntButton.Name = "SysMngmntButton";
     this.SysMngmntButton.Size = new System.Drawing.Size(145, 90);
     this.SysMngmntButton.TabIndex = 0;
     this.SysMngmntButton.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.SysMngmntButton.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageBeforeText;
     this.SysMngmntButton.UseVisualStyleBackColor = false;
     this.SysMngmntButton.Click += new System.EventHandler(this.SysMngmntButton_Click);
     //
     // TableInfoButton
     //
     this.TableInfoButton.BackColor = System.Drawing.Color.Transparent;
     this.TableInfoButton.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("TableInfoButton.BackgroundImage")));
     this.TableInfoButton.BgImageOnMouseDown = ((System.Drawing.Image)(resources.GetObject("TableInfoButton.BgImageOnMouseDown")));
     this.TableInfoButton.BgImageOnMouseUp = ((System.Drawing.Image)(resources.GetObject("TableInfoButton.BgImageOnMouseUp")));
     this.TableInfoButton.FlatAppearance.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(51)))), ((int)(((byte)(51)))), ((int)(((byte)(51)))));
     this.TableInfoButton.FlatAppearance.MouseDownBackColor = System.Drawing.Color.Transparent;
     this.TableInfoButton.FlatAppearance.MouseOverBackColor = System.Drawing.Color.Transparent;
     this.TableInfoButton.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.TableInfoButton.Font = new System.Drawing.Font("Arial", 10F);
     this.TableInfoButton.ForeColorOnMouseDown = System.Drawing.Color.White;
     this.TableInfoButton.ForeColorOnMouseUp = System.Drawing.Color.Black;
     this.TableInfoButton.FunctionType = RMSUI.RMSUIConstants.FunctionType.Normal;
     this.TableInfoButton.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.TableInfoButton.Location = new System.Drawing.Point(991, 437);
     this.TableInfoButton.Name = "TableInfoButton";
     this.TableInfoButton.Size = new System.Drawing.Size(145, 90);
     this.TableInfoButton.TabIndex = 1;
     this.TableInfoButton.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.TableInfoButton.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageBeforeText;
     this.TableInfoButton.UseVisualStyleBackColor = false;
     this.TableInfoButton.Click += new System.EventHandler(this.TabInfoButton_Click);
     //
     // NameTableButton
     //
     this.NameTableButton.BackColor = System.Drawing.Color.Transparent;
     this.NameTableButton.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("NameTableButton.BackgroundImage")));
     this.NameTableButton.BgImageOnMouseDown = ((System.Drawing.Image)(resources.GetObject("NameTableButton.BgImageOnMouseDown")));
     this.NameTableButton.BgImageOnMouseUp = ((System.Drawing.Image)(resources.GetObject("NameTableButton.BgImageOnMouseUp")));
     this.NameTableButton.FlatAppearance.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(51)))), ((int)(((byte)(51)))), ((int)(((byte)(51)))));
     this.NameTableButton.FlatAppearance.MouseDownBackColor = System.Drawing.Color.Transparent;
     this.NameTableButton.FlatAppearance.MouseOverBackColor = System.Drawing.Color.Transparent;
     this.NameTableButton.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.NameTableButton.Font = new System.Drawing.Font("Arial", 10F);
     this.NameTableButton.ForeColorOnMouseDown = System.Drawing.Color.White;
     this.NameTableButton.ForeColorOnMouseUp = System.Drawing.Color.Black;
     this.NameTableButton.FunctionType = RMSUI.RMSUIConstants.FunctionType.Normal;
     this.NameTableButton.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.NameTableButton.Location = new System.Drawing.Point(991, 245);
     this.NameTableButton.Name = "NameTableButton";
     this.NameTableButton.Size = new System.Drawing.Size(145, 90);
     this.NameTableButton.TabIndex = 2;
     this.NameTableButton.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.NameTableButton.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageBeforeText;
     this.NameTableButton.UseVisualStyleBackColor = false;
     this.NameTableButton.Click += new System.EventHandler(this.NameTableButton_Click);
     //
     // ChangeDetailsButton
     //
     this.ChangeDetailsButton.BackColor = System.Drawing.Color.Transparent;
     this.ChangeDetailsButton.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("ChangeDetailsButton.BackgroundImage")));
     this.ChangeDetailsButton.BgImageOnMouseDown = ((System.Drawing.Image)(resources.GetObject("ChangeDetailsButton.BgImageOnMouseDown")));
     this.ChangeDetailsButton.BgImageOnMouseUp = ((System.Drawing.Image)(resources.GetObject("ChangeDetailsButton.BgImageOnMouseUp")));
     this.ChangeDetailsButton.FlatAppearance.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(51)))), ((int)(((byte)(51)))), ((int)(((byte)(51)))));
     this.ChangeDetailsButton.FlatAppearance.MouseDownBackColor = System.Drawing.Color.Transparent;
     this.ChangeDetailsButton.FlatAppearance.MouseOverBackColor = System.Drawing.Color.Transparent;
     this.ChangeDetailsButton.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.ChangeDetailsButton.Font = new System.Drawing.Font("Arial", 10F);
     this.ChangeDetailsButton.ForeColorOnMouseDown = System.Drawing.Color.White;
     this.ChangeDetailsButton.ForeColorOnMouseUp = System.Drawing.Color.Black;
     this.ChangeDetailsButton.FunctionType = RMSUI.RMSUIConstants.FunctionType.Normal;
     this.ChangeDetailsButton.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.ChangeDetailsButton.Location = new System.Drawing.Point(991, 341);
     this.ChangeDetailsButton.Name = "ChangeDetailsButton";
     this.ChangeDetailsButton.Size = new System.Drawing.Size(145, 90);
     this.ChangeDetailsButton.TabIndex = 3;
     this.ChangeDetailsButton.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.ChangeDetailsButton.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageBeforeText;
     this.ChangeDetailsButton.UseVisualStyleBackColor = false;
     this.ChangeDetailsButton.Click += new System.EventHandler(this.ChangeDetailsButton_Click);
     //
     // TWButton
     //
     this.TWButton.BackColor = System.Drawing.Color.Transparent;
     this.TWButton.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("TWButton.BackgroundImage")));
     this.TWButton.BgImageOnMouseDown = ((System.Drawing.Image)(resources.GetObject("TWButton.BgImageOnMouseDown")));
     this.TWButton.BgImageOnMouseUp = ((System.Drawing.Image)(resources.GetObject("TWButton.BgImageOnMouseUp")));
     this.TWButton.FlatAppearance.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(51)))), ((int)(((byte)(51)))), ((int)(((byte)(51)))));
     this.TWButton.FlatAppearance.MouseDownBackColor = System.Drawing.Color.Transparent;
     this.TWButton.FlatAppearance.MouseOverBackColor = System.Drawing.Color.Transparent;
     this.TWButton.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.TWButton.Font = new System.Drawing.Font("Arial", 10F);
     this.TWButton.ForeColorOnMouseDown = System.Drawing.Color.White;
     this.TWButton.ForeColorOnMouseUp = System.Drawing.Color.Black;
     this.TWButton.FunctionType = RMSUI.RMSUIConstants.FunctionType.Normal;
     this.TWButton.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.TWButton.Location = new System.Drawing.Point(991, 149);
     this.TWButton.Name = "TWButton";
     this.TWButton.Size = new System.Drawing.Size(145, 90);
     this.TWButton.TabIndex = 8;
     this.TWButton.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.TWButton.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageBeforeText;
     this.TWButton.UseVisualStyleBackColor = false;
     this.TWButton.Click += new System.EventHandler(this.TWButton_Click);
     //
     // BarServiceButton
     //
     this.BarServiceButton.BackColor = System.Drawing.Color.Transparent;
     this.BarServiceButton.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("BarServiceButton.BackgroundImage")));
     this.BarServiceButton.BgImageOnMouseDown = ((System.Drawing.Image)(resources.GetObject("BarServiceButton.BgImageOnMouseDown")));
     this.BarServiceButton.BgImageOnMouseUp = ((System.Drawing.Image)(resources.GetObject("BarServiceButton.BgImageOnMouseUp")));
     this.BarServiceButton.Enabled = false;
     this.BarServiceButton.FlatAppearance.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(51)))), ((int)(((byte)(51)))), ((int)(((byte)(51)))));
     this.BarServiceButton.FlatAppearance.MouseDownBackColor = System.Drawing.Color.Transparent;
     this.BarServiceButton.FlatAppearance.MouseOverBackColor = System.Drawing.Color.Transparent;
     this.BarServiceButton.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.BarServiceButton.Font = new System.Drawing.Font("Arial", 10F);
     this.BarServiceButton.ForeColorOnMouseDown = System.Drawing.Color.White;
     this.BarServiceButton.ForeColorOnMouseUp = System.Drawing.Color.Black;
     this.BarServiceButton.FunctionType = RMSUI.RMSUIConstants.FunctionType.Normal;
     this.BarServiceButton.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.BarServiceButton.Location = new System.Drawing.Point(825, 740);
     this.BarServiceButton.Name = "BarServiceButton";
     this.BarServiceButton.Size = new System.Drawing.Size(145, 40);
     this.BarServiceButton.TabIndex = 9;
     this.BarServiceButton.Text = "Bar Service";
     this.BarServiceButton.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.BarServiceButton.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageBeforeText;
     this.BarServiceButton.UseVisualStyleBackColor = false;
     this.BarServiceButton.Visible = false;
     this.BarServiceButton.Click += new System.EventHandler(this.BarServiceButton_Click);
     //
     // NewTableButton
     //
     this.NewTableButton.BackColor = System.Drawing.Color.Transparent;
     this.NewTableButton.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("NewTableButton.BackgroundImage")));
     this.NewTableButton.BgImageOnMouseDown = ((System.Drawing.Image)(resources.GetObject("NewTableButton.BgImageOnMouseDown")));
     this.NewTableButton.BgImageOnMouseUp = ((System.Drawing.Image)(resources.GetObject("NewTableButton.BgImageOnMouseUp")));
     this.NewTableButton.FlatAppearance.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(51)))), ((int)(((byte)(51)))), ((int)(((byte)(51)))));
     this.NewTableButton.FlatAppearance.MouseDownBackColor = System.Drawing.Color.Transparent;
     this.NewTableButton.FlatAppearance.MouseOverBackColor = System.Drawing.Color.Transparent;
     this.NewTableButton.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.NewTableButton.Font = new System.Drawing.Font("Arial", 10F);
     this.NewTableButton.ForeColorOnMouseDown = System.Drawing.Color.White;
     this.NewTableButton.ForeColorOnMouseUp = System.Drawing.Color.Black;
     this.NewTableButton.FunctionType = RMSUI.RMSUIConstants.FunctionType.Add;
     this.NewTableButton.Image = ((System.Drawing.Image)(resources.GetObject("NewTableButton.Image")));
     this.NewTableButton.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.NewTableButton.Location = new System.Drawing.Point(991, 53);
     this.NewTableButton.Name = "NewTableButton";
     this.NewTableButton.Size = new System.Drawing.Size(145, 90);
     this.NewTableButton.TabIndex = 10;
     this.NewTableButton.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.NewTableButton.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageBeforeText;
     this.NewTableButton.UseVisualStyleBackColor = false;
     this.NewTableButton.Click += new System.EventHandler(this.NewTableButton_Click);
     //
     // LogOffButton
     //
     this.LogOffButton.BackColor = System.Drawing.Color.Transparent;
     this.LogOffButton.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("LogOffButton.BackgroundImage")));
     this.LogOffButton.BgImageOnMouseDown = ((System.Drawing.Image)(resources.GetObject("LogOffButton.BgImageOnMouseDown")));
     this.LogOffButton.BgImageOnMouseUp = ((System.Drawing.Image)(resources.GetObject("LogOffButton.BgImageOnMouseUp")));
     this.LogOffButton.FlatAppearance.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(51)))), ((int)(((byte)(51)))), ((int)(((byte)(51)))));
     this.LogOffButton.FlatAppearance.MouseDownBackColor = System.Drawing.Color.Transparent;
     this.LogOffButton.FlatAppearance.MouseOverBackColor = System.Drawing.Color.Transparent;
     this.LogOffButton.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.LogOffButton.Font = new System.Drawing.Font("Arial", 10F);
     this.LogOffButton.ForeColorOnMouseDown = System.Drawing.Color.White;
     this.LogOffButton.ForeColorOnMouseUp = System.Drawing.Color.Black;
     this.LogOffButton.FunctionType = RMSUI.RMSUIConstants.FunctionType.NormalCenter;
     this.LogOffButton.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.LogOffButton.Location = new System.Drawing.Point(991, 629);
     this.LogOffButton.Name = "LogOffButton";
     this.LogOffButton.Size = new System.Drawing.Size(145, 90);
     this.LogOffButton.TabIndex = 11;
     this.LogOffButton.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageBeforeText;
     this.LogOffButton.UseVisualStyleBackColor = false;
     this.LogOffButton.Click += new System.EventHandler(this.LogOffButton_Click);
     //
     // MainStatusStrip
     //
     this.MainStatusStrip.BackColor = System.Drawing.SystemColors.Control;
     this.MainStatusStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.tsLblCurrentUser});
     this.MainStatusStrip.Location = new System.Drawing.Point(3, 941);
     this.MainStatusStrip.Name = "MainStatusStrip";
     this.MainStatusStrip.Size = new System.Drawing.Size(1294, 24);
     this.MainStatusStrip.TabIndex = 9;
     //
     // tsLblCurrentUser
     //
     this.tsLblCurrentUser.BorderSides = ((System.Windows.Forms.ToolStripStatusLabelBorderSides)((((System.Windows.Forms.ToolStripStatusLabelBorderSides.Left | System.Windows.Forms.ToolStripStatusLabelBorderSides.Top)
                 | System.Windows.Forms.ToolStripStatusLabelBorderSides.Right)
                 | System.Windows.Forms.ToolStripStatusLabelBorderSides.Bottom)));
     this.tsLblCurrentUser.BorderStyle = System.Windows.Forms.Border3DStyle.Sunken;
     this.tsLblCurrentUser.Name = "tsLblCurrentUser";
     this.tsLblCurrentUser.Size = new System.Drawing.Size(77, 19);
     this.tsLblCurrentUser.Text = "Current User";
     //
     // UserStatusLabel
     //
     this.UserStatusLabel.BorderSides = ((System.Windows.Forms.ToolStripStatusLabelBorderSides)((((System.Windows.Forms.ToolStripStatusLabelBorderSides.Left | System.Windows.Forms.ToolStripStatusLabelBorderSides.Top)
                 | System.Windows.Forms.ToolStripStatusLabelBorderSides.Right)
                 | System.Windows.Forms.ToolStripStatusLabelBorderSides.Bottom)));
     this.UserStatusLabel.BorderStyle = System.Windows.Forms.Border3DStyle.Sunken;
     this.UserStatusLabel.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
     this.UserStatusLabel.Name = "UserStatusLabel";
     this.UserStatusLabel.Size = new System.Drawing.Size(138, 17);
     this.UserStatusLabel.Text = "Logged in as Administrator";
     //
     // OpenOrdersLabel
     //
     this.OpenOrdersLabel.BorderSides = ((System.Windows.Forms.ToolStripStatusLabelBorderSides)((((System.Windows.Forms.ToolStripStatusLabelBorderSides.Left | System.Windows.Forms.ToolStripStatusLabelBorderSides.Top)
                 | System.Windows.Forms.ToolStripStatusLabelBorderSides.Right)
                 | System.Windows.Forms.ToolStripStatusLabelBorderSides.Bottom)));
     this.OpenOrdersLabel.BorderStyle = System.Windows.Forms.Border3DStyle.Sunken;
     this.OpenOrdersLabel.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
     this.OpenOrdersLabel.Name = "OpenOrdersLabel";
     this.OpenOrdersLabel.Size = new System.Drawing.Size(126, 17);
     this.OpenOrdersLabel.Text = "Number of Open Orders";
     //
     // TerminalIDLabel
     //
     this.TerminalIDLabel.BorderSides = ((System.Windows.Forms.ToolStripStatusLabelBorderSides)((((System.Windows.Forms.ToolStripStatusLabelBorderSides.Left | System.Windows.Forms.ToolStripStatusLabelBorderSides.Top)
                 | System.Windows.Forms.ToolStripStatusLabelBorderSides.Right)
                 | System.Windows.Forms.ToolStripStatusLabelBorderSides.Bottom)));
     this.TerminalIDLabel.BorderStyle = System.Windows.Forms.Border3DStyle.Sunken;
     this.TerminalIDLabel.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
     this.TerminalIDLabel.Name = "TerminalIDLabel";
     this.TerminalIDLabel.Size = new System.Drawing.Size(65, 17);
     this.TerminalIDLabel.Text = "Terminal ID";
     //
     // tsCallerIdStatus
     //
     this.tsCallerIdStatus.BorderSides = ((System.Windows.Forms.ToolStripStatusLabelBorderSides)((((System.Windows.Forms.ToolStripStatusLabelBorderSides.Left | System.Windows.Forms.ToolStripStatusLabelBorderSides.Top)
                 | System.Windows.Forms.ToolStripStatusLabelBorderSides.Right)
                 | System.Windows.Forms.ToolStripStatusLabelBorderSides.Bottom)));
     this.tsCallerIdStatus.BorderStyle = System.Windows.Forms.Border3DStyle.Sunken;
     this.tsCallerIdStatus.Name = "tsCallerIdStatus";
     this.tsCallerIdStatus.Size = new System.Drawing.Size(52, 17);
     this.tsCallerIdStatus.Text = "Caller ID";
     //
     // RefreshTimer
     //
     this.RefreshTimer.Interval = 10000;
     this.RefreshTimer.Tick += new System.EventHandler(this.RefreshTimer_Tick);
     //
     // tmrCallerInfo
     //
     this.tmrCallerInfo.Tick += new System.EventHandler(this.tmrCallerInfo_Tick);
     //
     // tlTip
     //
     this.tlTip.IsBalloon = true;
     this.tlTip.ShowAlways = true;
     //
     // btnCallRefresh
     //
     this.btnCallRefresh.BackColor = System.Drawing.Color.Transparent;
     this.btnCallRefresh.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("btnCallRefresh.BackgroundImage")));
     this.btnCallRefresh.BgImageOnMouseDown = ((System.Drawing.Image)(resources.GetObject("btnCallRefresh.BgImageOnMouseDown")));
     this.btnCallRefresh.BgImageOnMouseUp = ((System.Drawing.Image)(resources.GetObject("btnCallRefresh.BgImageOnMouseUp")));
     this.btnCallRefresh.FlatAppearance.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(51)))), ((int)(((byte)(51)))), ((int)(((byte)(51)))));
     this.btnCallRefresh.FlatAppearance.MouseDownBackColor = System.Drawing.Color.Transparent;
     this.btnCallRefresh.FlatAppearance.MouseOverBackColor = System.Drawing.Color.Transparent;
     this.btnCallRefresh.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.btnCallRefresh.Font = new System.Drawing.Font("Arial", 10F);
     this.btnCallRefresh.ForeColorOnMouseDown = System.Drawing.Color.White;
     this.btnCallRefresh.ForeColorOnMouseUp = System.Drawing.Color.Black;
     this.btnCallRefresh.FunctionType = RMSUI.RMSUIConstants.FunctionType.Normal;
     this.btnCallRefresh.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.btnCallRefresh.Location = new System.Drawing.Point(286, 42);
     this.btnCallRefresh.Name = "btnCallRefresh";
     this.btnCallRefresh.Size = new System.Drawing.Size(55, 32);
     this.btnCallRefresh.TabIndex = 7;
     this.btnCallRefresh.Text = "Clear";
     this.btnCallRefresh.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.btnCallRefresh.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageBeforeText;
     this.tlTip.SetToolTip(this.btnCallRefresh, "Refresh");
     this.btnCallRefresh.UseVisualStyleBackColor = false;
     this.btnCallRefresh.Click += new System.EventHandler(this.btnCallRefresh_Click);
     //
     // label14
     //
     this.label14.AutoSize = true;
     this.label14.BackColor = System.Drawing.Color.Transparent;
     this.label14.ForeColor = System.Drawing.Color.Black;
     this.label14.Location = new System.Drawing.Point(197, 504);
     this.label14.Name = "label14";
     this.label14.Size = new System.Drawing.Size(16, 13);
     this.label14.TabIndex = 3;
     this.label14.Text = "of";
     //
     // TotalPageLabel
     //
     this.TotalPageLabel.AutoSize = true;
     this.TotalPageLabel.BackColor = System.Drawing.Color.Transparent;
     this.TotalPageLabel.ForeColor = System.Drawing.Color.Black;
     this.TotalPageLabel.Location = new System.Drawing.Point(221, 504);
     this.TotalPageLabel.Name = "TotalPageLabel";
     this.TotalPageLabel.Size = new System.Drawing.Size(13, 13);
     this.TotalPageLabel.TabIndex = 2;
     this.TotalPageLabel.Text = "1";
     //
     // label13
     //
     this.label13.AutoSize = true;
     this.label13.BackColor = System.Drawing.Color.Transparent;
     this.label13.ForeColor = System.Drawing.Color.Black;
     this.label13.Location = new System.Drawing.Point(77, 504);
     this.label13.Name = "label13";
     this.label13.Size = new System.Drawing.Size(96, 13);
     this.label13.TabIndex = 1;
     this.label13.Text = "Open Order - Page";
     //
     // CurrentPageLabel
     //
     this.CurrentPageLabel.AutoSize = true;
     this.CurrentPageLabel.BackColor = System.Drawing.Color.Transparent;
     this.CurrentPageLabel.ForeColor = System.Drawing.Color.Black;
     this.CurrentPageLabel.Location = new System.Drawing.Point(179, 504);
     this.CurrentPageLabel.Name = "CurrentPageLabel";
     this.CurrentPageLabel.Size = new System.Drawing.Size(13, 13);
     this.CurrentPageLabel.TabIndex = 0;
     this.CurrentPageLabel.Text = "1";
     //
     // TablePanel
     //
     this.TablePanel.BackColor = System.Drawing.Color.Teal;
     this.TablePanel.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None;
     this.TablePanel.Cursor = System.Windows.Forms.Cursors.Arrow;
     this.TablePanel.Location = new System.Drawing.Point(7, 0);
     this.TablePanel.Name = "TablePanel";
     this.TablePanel.Padding = new System.Windows.Forms.Padding(5);
     this.TablePanel.Size = new System.Drawing.Size(972, 484);
     this.TablePanel.TabIndex = 14;
     this.TablePanel.Paint += new System.Windows.Forms.PaintEventHandler(this.TablePanel_Paint);
     //
     // panelCallerID
     //
     this.panelCallerID.BackColor = System.Drawing.Color.White;
     this.panelCallerID.Controls.Add(this.picBoxPhone);
     this.panelCallerID.Controls.Add(this.lblPhoneNumber);
     this.panelCallerID.Controls.Add(this.txtCustomerName);
     this.panelCallerID.Controls.Add(this.btnCallRefresh);
     this.panelCallerID.Controls.Add(this.label18);
     this.panelCallerID.Controls.Add(this.label16);
     this.panelCallerID.Controls.Add(this.txtFirstAddress);
     this.panelCallerID.Location = new System.Drawing.Point(479, 762);
     this.panelCallerID.Name = "panelCallerID";
     this.panelCallerID.Size = new System.Drawing.Size(301, 99);
     this.panelCallerID.TabIndex = 10;
     this.panelCallerID.Visible = false;
     //
     // picBoxPhone
     //
     this.picBoxPhone.BackColor = System.Drawing.SystemColors.ButtonFace;
     this.picBoxPhone.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("picBoxPhone.BackgroundImage")));
     this.picBoxPhone.BgImageOnMouseDown = ((System.Drawing.Image)(resources.GetObject("picBoxPhone.BgImageOnMouseDown")));
     this.picBoxPhone.BgImageOnMouseUp = ((System.Drawing.Image)(resources.GetObject("picBoxPhone.BgImageOnMouseUp")));
     this.picBoxPhone.FlatAppearance.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(51)))), ((int)(((byte)(51)))), ((int)(((byte)(51)))));
     this.picBoxPhone.FlatAppearance.MouseDownBackColor = System.Drawing.Color.Transparent;
     this.picBoxPhone.FlatAppearance.MouseOverBackColor = System.Drawing.Color.Transparent;
     this.picBoxPhone.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.picBoxPhone.Font = new System.Drawing.Font("Arial", 10F);
     this.picBoxPhone.ForeColorOnMouseDown = System.Drawing.Color.White;
     this.picBoxPhone.ForeColorOnMouseUp = System.Drawing.Color.Black;
     this.picBoxPhone.FunctionType = RMSUI.RMSUIConstants.FunctionType.Normal;
     this.picBoxPhone.Image = global::RMS.Properties.Resources.ring_stop;
     this.picBoxPhone.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.picBoxPhone.Location = new System.Drawing.Point(308, 5);
     this.picBoxPhone.Name = "picBoxPhone";
     this.picBoxPhone.Size = new System.Drawing.Size(32, 32);
     this.picBoxPhone.TabIndex = 12;
     this.picBoxPhone.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.picBoxPhone.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageBeforeText;
     this.picBoxPhone.UseVisualStyleBackColor = false;
     //
     // lblPhoneNumber
     //
     this.lblPhoneNumber.AutoSize = true;
     this.lblPhoneNumber.BackColor = System.Drawing.Color.Transparent;
     this.lblPhoneNumber.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Pixel, ((byte)(0)));
     this.lblPhoneNumber.ForeColor = System.Drawing.SystemColors.Desktop;
     this.lblPhoneNumber.Location = new System.Drawing.Point(15, 59);
     this.lblPhoneNumber.Name = "lblPhoneNumber";
     this.lblPhoneNumber.Size = new System.Drawing.Size(119, 15);
     this.lblPhoneNumber.TabIndex = 10;
     this.lblPhoneNumber.Text = "45445645646543";
     //
     // txtCustomerName
     //
     this.txtCustomerName.AutoSize = true;
     this.txtCustomerName.BackColor = System.Drawing.Color.Transparent;
     this.txtCustomerName.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtCustomerName.ForeColor = System.Drawing.SystemColors.Desktop;
     this.txtCustomerName.Location = new System.Drawing.Point(15, 19);
     this.txtCustomerName.Name = "txtCustomerName";
     this.txtCustomerName.Size = new System.Drawing.Size(121, 17);
     this.txtCustomerName.TabIndex = 11;
     this.txtCustomerName.Text = "There is no call";
     //
     // label18
     //
     this.label18.AutoSize = true;
     this.label18.BackColor = System.Drawing.Color.Transparent;
     this.label18.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label18.ForeColor = System.Drawing.Color.Black;
     this.label18.Location = new System.Drawing.Point(5, 5);
     this.label18.Name = "label18";
     this.label18.Size = new System.Drawing.Size(82, 13);
     this.label18.TabIndex = 5;
     this.label18.Text = "Customer Name";
     //
     // label16
     //
     this.label16.AutoSize = true;
     this.label16.BackColor = System.Drawing.Color.Transparent;
     this.label16.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label16.ForeColor = System.Drawing.Color.Black;
     this.label16.Location = new System.Drawing.Point(4, 43);
     this.label16.Name = "label16";
     this.label16.Size = new System.Drawing.Size(78, 13);
     this.label16.TabIndex = 4;
     this.label16.Text = "Phone Number";
     //
     // txtFirstAddress
     //
     this.txtFirstAddress.BackColor = System.Drawing.Color.White;
     this.txtFirstAddress.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.txtFirstAddress.Enabled = false;
     this.txtFirstAddress.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtFirstAddress.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
     this.txtFirstAddress.Location = new System.Drawing.Point(7, 78);
     this.txtFirstAddress.Multiline = true;
     this.txtFirstAddress.Name = "txtFirstAddress";
     this.txtFirstAddress.Size = new System.Drawing.Size(334, 42);
     this.txtFirstAddress.TabIndex = 2;
     this.txtFirstAddress.Text = "There is no call";
     //
     // RefreshButton
     //
     this.RefreshButton.BackColor = System.Drawing.Color.Transparent;
     this.RefreshButton.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("RefreshButton.BackgroundImage")));
     this.RefreshButton.BgImageOnMouseDown = ((System.Drawing.Image)(resources.GetObject("RefreshButton.BgImageOnMouseDown")));
     this.RefreshButton.BgImageOnMouseUp = ((System.Drawing.Image)(resources.GetObject("RefreshButton.BgImageOnMouseUp")));
     this.RefreshButton.Cursor = System.Windows.Forms.Cursors.Hand;
     this.RefreshButton.FlatAppearance.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(51)))), ((int)(((byte)(51)))), ((int)(((byte)(51)))));
     this.RefreshButton.FlatAppearance.MouseDownBackColor = System.Drawing.Color.Transparent;
     this.RefreshButton.FlatAppearance.MouseOverBackColor = System.Drawing.Color.Transparent;
     this.RefreshButton.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.RefreshButton.Font = new System.Drawing.Font("Arial", 10F);
     this.RefreshButton.ForeColorOnMouseDown = System.Drawing.Color.White;
     this.RefreshButton.ForeColorOnMouseUp = System.Drawing.Color.Black;
     this.RefreshButton.FunctionType = RMSUI.RMSUIConstants.FunctionType.Refresh;
     this.RefreshButton.Image = ((System.Drawing.Image)(resources.GetObject("RefreshButton.Image")));
     this.RefreshButton.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.RefreshButton.Location = new System.Drawing.Point(895, 490);
     this.RefreshButton.Name = "RefreshButton";
     this.RefreshButton.Size = new System.Drawing.Size(35, 30);
     this.RefreshButton.TabIndex = 7;
     this.RefreshButton.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.RefreshButton.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageBeforeText;
     this.RefreshButton.UseVisualStyleBackColor = false;
     this.RefreshButton.Click += new System.EventHandler(this.RefreshButton_Click);
     //
     // PreviousButton
     //
     this.PreviousButton.BackColor = System.Drawing.Color.Transparent;
     this.PreviousButton.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("PreviousButton.BackgroundImage")));
     this.PreviousButton.BgImageOnMouseDown = ((System.Drawing.Image)(resources.GetObject("PreviousButton.BgImageOnMouseDown")));
     this.PreviousButton.BgImageOnMouseUp = ((System.Drawing.Image)(resources.GetObject("PreviousButton.BgImageOnMouseUp")));
     this.PreviousButton.Cursor = System.Windows.Forms.Cursors.Hand;
     this.PreviousButton.Enabled = false;
     this.PreviousButton.FlatAppearance.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(51)))), ((int)(((byte)(51)))), ((int)(((byte)(51)))));
     this.PreviousButton.FlatAppearance.MouseDownBackColor = System.Drawing.Color.Transparent;
     this.PreviousButton.FlatAppearance.MouseOverBackColor = System.Drawing.Color.Transparent;
     this.PreviousButton.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.PreviousButton.Font = new System.Drawing.Font("Arial", 10F);
     this.PreviousButton.ForeColorOnMouseDown = System.Drawing.Color.White;
     this.PreviousButton.ForeColorOnMouseUp = System.Drawing.Color.Black;
     this.PreviousButton.FunctionType = RMSUI.RMSUIConstants.FunctionType.Previous;
     this.PreviousButton.Image = ((System.Drawing.Image)(resources.GetObject("PreviousButton.Image")));
     this.PreviousButton.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.PreviousButton.Location = new System.Drawing.Point(853, 490);
     this.PreviousButton.Name = "PreviousButton";
     this.PreviousButton.Size = new System.Drawing.Size(35, 30);
     this.PreviousButton.TabIndex = 11;
     this.PreviousButton.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.PreviousButton.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageBeforeText;
     this.PreviousButton.UseVisualStyleBackColor = false;
     this.PreviousButton.Click += new System.EventHandler(this.PreviousButton_Click);
     //
     // NextButton
     //
     this.NextButton.BackColor = System.Drawing.Color.Transparent;
     this.NextButton.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("NextButton.BackgroundImage")));
     this.NextButton.BgImageOnMouseDown = ((System.Drawing.Image)(resources.GetObject("NextButton.BgImageOnMouseDown")));
     this.NextButton.BgImageOnMouseUp = ((System.Drawing.Image)(resources.GetObject("NextButton.BgImageOnMouseUp")));
     this.NextButton.Cursor = System.Windows.Forms.Cursors.Hand;
     this.NextButton.Enabled = false;
     this.NextButton.FlatAppearance.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(51)))), ((int)(((byte)(51)))), ((int)(((byte)(51)))));
     this.NextButton.FlatAppearance.MouseDownBackColor = System.Drawing.Color.Transparent;
     this.NextButton.FlatAppearance.MouseOverBackColor = System.Drawing.Color.Transparent;
     this.NextButton.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.NextButton.Font = new System.Drawing.Font("Arial", 10F);
     this.NextButton.ForeColorOnMouseDown = System.Drawing.Color.White;
     this.NextButton.ForeColorOnMouseUp = System.Drawing.Color.Black;
     this.NextButton.FunctionType = RMSUI.RMSUIConstants.FunctionType.Next;
     this.NextButton.Image = ((System.Drawing.Image)(resources.GetObject("NextButton.Image")));
     this.NextButton.ImageAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.NextButton.Location = new System.Drawing.Point(937, 490);
     this.NextButton.Name = "NextButton";
     this.NextButton.Size = new System.Drawing.Size(35, 30);
     this.NextButton.TabIndex = 5;
     this.NextButton.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.NextButton.TextImageRelation = System.Windows.Forms.TextImageRelation.TextBeforeImage;
     this.NextButton.UseVisualStyleBackColor = false;
     this.NextButton.Click += new System.EventHandler(this.NextButton_Click);
     //
     // panel2
     //
     this.panel2.BackColor = System.Drawing.Color.Transparent;
     this.panel2.Controls.Add(this.label21);
     this.panel2.Controls.Add(this.label15);
     this.panel2.Controls.Add(this.label17);
     this.panel2.Location = new System.Drawing.Point(11, 99);
     this.panel2.Name = "panel2";
     this.panel2.Size = new System.Drawing.Size(68, 35);
     this.panel2.TabIndex = 4;
     //
     // label21
     //
     this.label21.AutoSize = true;
     this.label21.BackColor = System.Drawing.Color.Transparent;
     this.label21.ForeColor = System.Drawing.Color.White;
     this.label21.Location = new System.Drawing.Point(4, 18);
     this.label21.Name = "label21";
     this.label21.Size = new System.Drawing.Size(59, 13);
     this.label21.TabIndex = 13;
     this.label21.Text = "Information";
     //
     // label15
     //
     this.label15.AutoSize = true;
     this.label15.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
     this.label15.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label15.ForeColor = System.Drawing.SystemColors.ActiveCaptionText;
     this.label15.Location = new System.Drawing.Point(3, 1);
     this.label15.Name = "label15";
     this.label15.Size = new System.Drawing.Size(62, 17);
     this.label15.TabIndex = 13;
     this.label15.Text = "Caller\'s";
     //
     // label17
     //
     this.label17.AutoSize = true;
     this.label17.ForeColor = System.Drawing.SystemColors.ActiveCaptionText;
     this.label17.Location = new System.Drawing.Point(140, 0);
     this.label17.Name = "label17";
     this.label17.Size = new System.Drawing.Size(13, 13);
     this.label17.TabIndex = 2;
     this.label17.Text = "1";
     //
     // panel9
     //
     this.panel9.BackColor = System.Drawing.Color.Transparent;
     this.panel9.BackgroundImage = global::RMS.Properties.Resources.lobby_window_bg;
     this.panel9.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
     this.panel9.Controls.Add(this.RefreshButton);
     this.panel9.Controls.Add(this.label1);
     this.panel9.Controls.Add(this.TablePanel);
     this.panel9.Controls.Add(this.label13);
     this.panel9.Controls.Add(this.TotalPageLabel);
     this.panel9.Controls.Add(this.CurrentPageLabel);
     this.panel9.Controls.Add(this.PreviousButton);
     this.panel9.Controls.Add(this.label14);
     this.panel9.Controls.Add(this.NextButton);
     this.panel9.Location = new System.Drawing.Point(6, 53);
     this.panel9.Name = "panel9";
     this.panel9.Size = new System.Drawing.Size(984, 532);
     this.panel9.TabIndex = 15;
     this.panel9.Paint += new System.Windows.Forms.PaintEventHandler(this.panel9_Paint);
     //
     // label1
     //
     this.label1.AutoSize = true;
     this.label1.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label1.ForeColor = System.Drawing.SystemColors.Desktop;
     this.label1.Location = new System.Drawing.Point(11, 499);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(57, 20);
     this.label1.TabIndex = 15;
     this.label1.Text = "Lobby";
     //
     // refreshlobbyButton
     //
     this.refreshlobbyButton.BackColor = System.Drawing.Color.Transparent;
     this.refreshlobbyButton.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("refreshlobbyButton.BackgroundImage")));
     this.refreshlobbyButton.BgImageOnMouseDown = ((System.Drawing.Image)(resources.GetObject("refreshlobbyButton.BgImageOnMouseDown")));
     this.refreshlobbyButton.BgImageOnMouseUp = ((System.Drawing.Image)(resources.GetObject("refreshlobbyButton.BgImageOnMouseUp")));
     this.refreshlobbyButton.FlatAppearance.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(51)))), ((int)(((byte)(51)))), ((int)(((byte)(51)))));
     this.refreshlobbyButton.FlatAppearance.MouseDownBackColor = System.Drawing.Color.Transparent;
     this.refreshlobbyButton.FlatAppearance.MouseOverBackColor = System.Drawing.Color.Transparent;
     this.refreshlobbyButton.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.refreshlobbyButton.Font = new System.Drawing.Font("Arial", 10F);
     this.refreshlobbyButton.ForeColorOnMouseDown = System.Drawing.Color.White;
     this.refreshlobbyButton.ForeColorOnMouseUp = System.Drawing.Color.Black;
     this.refreshlobbyButton.FunctionType = RMSUI.RMSUIConstants.FunctionType.Normal;
     this.refreshlobbyButton.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.refreshlobbyButton.Location = new System.Drawing.Point(833, 804);
     this.refreshlobbyButton.Name = "refreshlobbyButton";
     this.refreshlobbyButton.Size = new System.Drawing.Size(145, 90);
     this.refreshlobbyButton.TabIndex = 16;
     this.refreshlobbyButton.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.refreshlobbyButton.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageBeforeText;
     this.refreshlobbyButton.UseVisualStyleBackColor = false;
     this.refreshlobbyButton.Visible = false;
     this.refreshlobbyButton.Click += new System.EventHandler(this.refreshlobbyButton_Click);
     //
     // CMainForm
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.BackColor = System.Drawing.SystemColors.ControlText;
     this.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("$this.BackgroundImage")));
     this.ClientSize = new System.Drawing.Size(1300, 968);
     this.Controls.Add(this.refreshlobbyButton);
     this.Controls.Add(this.panel9);
     this.Controls.Add(this.LogOffButton);
     this.Controls.Add(this.NewTableButton);
     this.Controls.Add(this.BarServiceButton);
     this.Controls.Add(this.TWButton);
     this.Controls.Add(this.ChangeDetailsButton);
     this.Controls.Add(this.NameTableButton);
     this.Controls.Add(this.TableInfoButton);
     this.Controls.Add(this.SysMngmntButton);
     this.Controls.Add(this.MainStatusStrip);
     this.Controls.Add(this.panelCallerID);
     this.Cursor = System.Windows.Forms.Cursors.Arrow;
     this.Name = "CMainForm";
     this.Activated += new System.EventHandler(this.CMainForm_Activated);
     this.Deactivate += new System.EventHandler(this.CMainForm_Deactivate);
     this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.CMainForm_FormClosing);
     this.Load += new System.EventHandler(this.CMainForm_Load);
     this.Controls.SetChildIndex(this.panelCallerID, 0);
     this.Controls.SetChildIndex(this.MainStatusStrip, 0);
     this.Controls.SetChildIndex(this.SysMngmntButton, 0);
     this.Controls.SetChildIndex(this.TableInfoButton, 0);
     this.Controls.SetChildIndex(this.NameTableButton, 0);
     this.Controls.SetChildIndex(this.ChangeDetailsButton, 0);
     this.Controls.SetChildIndex(this.TWButton, 0);
     this.Controls.SetChildIndex(this.BarServiceButton, 0);
     this.Controls.SetChildIndex(this.NewTableButton, 0);
     this.Controls.SetChildIndex(this.LogOffButton, 0);
     this.Controls.SetChildIndex(this.panel9, 0);
     this.Controls.SetChildIndex(this.refreshlobbyButton, 0);
     this.MainStatusStrip.ResumeLayout(false);
     this.MainStatusStrip.PerformLayout();
     this.panelCallerID.ResumeLayout(false);
     this.panelCallerID.PerformLayout();
     this.panel2.ResumeLayout(false);
     this.panel2.PerformLayout();
     this.panel9.ResumeLayout(false);
     this.panel9.PerformLayout();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
    /// <summary>
    /// Required method for Designer support - do not modify
    /// the contents of this method with the code editor.
    /// </summary>
    private void InitializeComponent() {
      System.Windows.Forms.StatusStrip ssBottom;
      System.Windows.Forms.GroupBox gbSourceImage;
      System.Windows.Forms.GroupBox gbTargetImage;
      System.Windows.Forms.FlowLayoutPanel flpActions;
      System.Windows.Forms.GroupBox gbAdvanced;
      System.Windows.Forms.GroupBox gbBorderPixelHandling;
      System.Windows.Forms.Label label7;
      System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(MainForm));
      System.Windows.Forms.Label label6;
      System.Windows.Forms.Label label5;
      System.Windows.Forms.Label label4;
      System.Windows.Forms.GroupBox gbTargetResolution;
      System.Windows.Forms.Label label9;
      System.Windows.Forms.Label label8;
      System.Windows.Forms.Label label2;
      System.Windows.Forms.Label label1;
      System.Windows.Forms.GroupBox gbMethod;
      System.Windows.Forms.GroupBox gbDescription;
      System.Windows.Forms.DataVisualization.Charting.ChartArea chartArea1 = new System.Windows.Forms.DataVisualization.Charting.ChartArea();
      System.Windows.Forms.DataVisualization.Charting.Series series1 = new System.Windows.Forms.DataVisualization.Charting.Series();
      this.tssBusy = new System.Windows.Forms.ToolStripStatusLabel();
      this.tssBenchmark = new System.Windows.Forms.ToolStripStatusLabel();
      this.iwhSourceImage = new ImageResizer.UserControls.ImageWithDetails();
      this.iwhTargetImage = new ImageResizer.UserControls.ImageWithDetails();
      this.butResize = new System.Windows.Forms.Button();
      this.butSwitch = new System.Windows.Forms.Button();
      this.butRepeat = new System.Windows.Forms.Button();
      this.nudRadius = new System.Windows.Forms.NumericUpDown();
      this.lblRadius = new System.Windows.Forms.Label();
      this.lblRepititionCount = new System.Windows.Forms.Label();
      this.nudRepetitionCount = new System.Windows.Forms.NumericUpDown();
      this.chkUseCenteredGrid = new System.Windows.Forms.CheckBox();
      this.chkUseThresholds = new System.Windows.Forms.CheckBox();
      this.cmbVerticalBPH = new System.Windows.Forms.ComboBox();
      this.cmbHorizontalBPH = new System.Windows.Forms.ComboBox();
      this.chkKeepAspect = new System.Windows.Forms.CheckBox();
      this.nudWidth = new System.Windows.Forms.NumericUpDown();
      this.nudHeight = new System.Windows.Forms.NumericUpDown();
      this.cmbResizeMethod = new System.Windows.Forms.ComboBox();
      this.txtDescription = new System.Windows.Forms.TextBox();
      this.msMain = new System.Windows.Forms.MenuStrip();
      this.fileToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
      this.openToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
      this.saveToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
      this.saveAsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
      this.closeToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
      this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
      this.exitToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
      this.viewToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
      this.sourceImageToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
      this.stretchToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
      this.centerToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
      this.zoomToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
      this.targetImageToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
      this.stretchToolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem();
      this.centerToolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem();
      this.zoomToolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem();
      this.scriptToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
      this.clearToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
      this.loadToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
      this.saveToolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem();
      this.toolStripSeparator3 = new System.Windows.Forms.ToolStripSeparator();
      this.showToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
      this.executeToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
      this.helpToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
      this.wikiToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
      this.toolStripSeparator2 = new System.Windows.Forms.ToolStripSeparator();
      this.aboutToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
      this.tlpMainLayout = new System.Windows.Forms.TableLayoutPanel();
      this.pnMiddle = new System.Windows.Forms.Panel();
      this.gbKernelFunction = new System.Windows.Forms.GroupBox();
      this.chtKernel = new System.Windows.Forms.DataVisualization.Charting.Chart();
      this.gbActions = new System.Windows.Forms.GroupBox();
      this.ofdOpenFile = new System.Windows.Forms.OpenFileDialog();
      this.sfdSave = new System.Windows.Forms.SaveFileDialog();
      this.ofdOpenScript = new System.Windows.Forms.OpenFileDialog();
      this.sfdSaveScript = new System.Windows.Forms.SaveFileDialog();
      ssBottom = new System.Windows.Forms.StatusStrip();
      gbSourceImage = new System.Windows.Forms.GroupBox();
      gbTargetImage = new System.Windows.Forms.GroupBox();
      flpActions = new System.Windows.Forms.FlowLayoutPanel();
      gbAdvanced = new System.Windows.Forms.GroupBox();
      gbBorderPixelHandling = new System.Windows.Forms.GroupBox();
      label7 = new System.Windows.Forms.Label();
      label6 = new System.Windows.Forms.Label();
      label5 = new System.Windows.Forms.Label();
      label4 = new System.Windows.Forms.Label();
      gbTargetResolution = new System.Windows.Forms.GroupBox();
      label9 = new System.Windows.Forms.Label();
      label8 = new System.Windows.Forms.Label();
      label2 = new System.Windows.Forms.Label();
      label1 = new System.Windows.Forms.Label();
      gbMethod = new System.Windows.Forms.GroupBox();
      gbDescription = new System.Windows.Forms.GroupBox();
      ssBottom.SuspendLayout();
      gbSourceImage.SuspendLayout();
      gbTargetImage.SuspendLayout();
      flpActions.SuspendLayout();
      gbAdvanced.SuspendLayout();
      ((System.ComponentModel.ISupportInitialize)(this.nudRadius)).BeginInit();
      ((System.ComponentModel.ISupportInitialize)(this.nudRepetitionCount)).BeginInit();
      gbBorderPixelHandling.SuspendLayout();
      gbTargetResolution.SuspendLayout();
      ((System.ComponentModel.ISupportInitialize)(this.nudWidth)).BeginInit();
      ((System.ComponentModel.ISupportInitialize)(this.nudHeight)).BeginInit();
      gbMethod.SuspendLayout();
      gbDescription.SuspendLayout();
      this.msMain.SuspendLayout();
      this.tlpMainLayout.SuspendLayout();
      this.pnMiddle.SuspendLayout();
      this.gbKernelFunction.SuspendLayout();
      ((System.ComponentModel.ISupportInitialize)(this.chtKernel)).BeginInit();
      this.gbActions.SuspendLayout();
      this.SuspendLayout();
      // 
      // ssBottom
      // 
      ssBottom.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.tssBusy,
            this.tssBenchmark});
      ssBottom.Location = new System.Drawing.Point(0, 580);
      ssBottom.Name = "ssBottom";
      ssBottom.Size = new System.Drawing.Size(889, 22);
      ssBottom.TabIndex = 1;
      ssBottom.Text = "statusStrip1";
      // 
      // tssBusy
      // 
      this.tssBusy.Image = global::ImageResizer.Properties.Resources.ProgressCircularBlue;
      this.tssBusy.Name = "tssBusy";
      this.tssBusy.Size = new System.Drawing.Size(75, 17);
      this.tssBusy.Text = "Resizing...";
      this.tssBusy.Visible = false;
      // 
      // tssBenchmark
      // 
      this.tssBenchmark.Name = "tssBenchmark";
      this.tssBenchmark.Size = new System.Drawing.Size(0, 17);
      // 
      // gbSourceImage
      // 
      gbSourceImage.Controls.Add(this.iwhSourceImage);
      gbSourceImage.Dock = System.Windows.Forms.DockStyle.Fill;
      gbSourceImage.Location = new System.Drawing.Point(3, 3);
      gbSourceImage.Name = "gbSourceImage";
      gbSourceImage.Size = new System.Drawing.Size(288, 550);
      gbSourceImage.TabIndex = 0;
      gbSourceImage.TabStop = false;
      gbSourceImage.Text = "Source Image";
      // 
      // iwhSourceImage
      // 
      this.iwhSourceImage.AllowDrop = true;
      this.iwhSourceImage.Dock = System.Windows.Forms.DockStyle.Fill;
      this.iwhSourceImage.Location = new System.Drawing.Point(3, 16);
      this.iwhSourceImage.Name = "iwhSourceImage";
      this.iwhSourceImage.Size = new System.Drawing.Size(282, 531);
      this.iwhSourceImage.SizeMode = System.Windows.Forms.PictureBoxSizeMode.CenterImage;
      this.iwhSourceImage.TabIndex = 0;
      this.iwhSourceImage.Click += new System.EventHandler(this.iwhSourceImage_Click);
      this.iwhSourceImage.DragDrop += new System.Windows.Forms.DragEventHandler(this.iwhSourceImage_DragDrop);
      this.iwhSourceImage.DragEnter += new System.Windows.Forms.DragEventHandler(this.iwhSourceImage_DragEnter);
      // 
      // gbTargetImage
      // 
      gbTargetImage.Controls.Add(this.iwhTargetImage);
      gbTargetImage.Dock = System.Windows.Forms.DockStyle.Fill;
      gbTargetImage.Location = new System.Drawing.Point(597, 3);
      gbTargetImage.Name = "gbTargetImage";
      gbTargetImage.Size = new System.Drawing.Size(289, 550);
      gbTargetImage.TabIndex = 1;
      gbTargetImage.TabStop = false;
      gbTargetImage.Text = "Target Image";
      // 
      // iwhTargetImage
      // 
      this.iwhTargetImage.Dock = System.Windows.Forms.DockStyle.Fill;
      this.iwhTargetImage.Location = new System.Drawing.Point(3, 16);
      this.iwhTargetImage.Name = "iwhTargetImage";
      this.iwhTargetImage.Size = new System.Drawing.Size(283, 531);
      this.iwhTargetImage.SizeMode = System.Windows.Forms.PictureBoxSizeMode.CenterImage;
      this.iwhTargetImage.TabIndex = 0;
      this.iwhTargetImage.Click += new System.EventHandler(this.iwhTargetImage_Click);
      // 
      // flpActions
      // 
      flpActions.AutoSize = true;
      flpActions.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
      flpActions.Controls.Add(this.butResize);
      flpActions.Controls.Add(this.butSwitch);
      flpActions.Controls.Add(this.butRepeat);
      flpActions.Dock = System.Windows.Forms.DockStyle.Top;
      flpActions.Location = new System.Drawing.Point(3, 16);
      flpActions.Name = "flpActions";
      flpActions.Size = new System.Drawing.Size(288, 29);
      flpActions.TabIndex = 0;
      // 
      // butResize
      // 
      this.butResize.Image = global::ImageResizer.Properties.Resources.Resize;
      this.butResize.Location = new System.Drawing.Point(3, 3);
      this.butResize.Name = "butResize";
      this.butResize.Size = new System.Drawing.Size(75, 23);
      this.butResize.TabIndex = 0;
      this.butResize.Text = "Resize";
      this.butResize.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageBeforeText;
      this.butResize.UseVisualStyleBackColor = true;
      this.butResize.Click += new System.EventHandler(this.btResize_Click);
      // 
      // butSwitch
      // 
      this.butSwitch.Image = global::ImageResizer.Properties.Resources.Switch;
      this.butSwitch.Location = new System.Drawing.Point(84, 3);
      this.butSwitch.Name = "butSwitch";
      this.butSwitch.Size = new System.Drawing.Size(75, 23);
      this.butSwitch.TabIndex = 0;
      this.butSwitch.Text = "Switch";
      this.butSwitch.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageBeforeText;
      this.butSwitch.UseVisualStyleBackColor = true;
      this.butSwitch.Click += new System.EventHandler(this.btSwitch_Click);
      // 
      // butRepeat
      // 
      this.butRepeat.Image = global::ImageResizer.Properties.Resources.Repeat;
      this.butRepeat.Location = new System.Drawing.Point(165, 3);
      this.butRepeat.Name = "butRepeat";
      this.butRepeat.Size = new System.Drawing.Size(75, 23);
      this.butRepeat.TabIndex = 0;
      this.butRepeat.Text = "Repeat";
      this.butRepeat.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageBeforeText;
      this.butRepeat.UseVisualStyleBackColor = true;
      this.butRepeat.Click += new System.EventHandler(this.btRepeat_Click);
      // 
      // gbAdvanced
      // 
      gbAdvanced.AutoSize = true;
      gbAdvanced.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
      gbAdvanced.Controls.Add(this.nudRadius);
      gbAdvanced.Controls.Add(this.lblRadius);
      gbAdvanced.Controls.Add(this.lblRepititionCount);
      gbAdvanced.Controls.Add(this.nudRepetitionCount);
      gbAdvanced.Controls.Add(this.chkUseCenteredGrid);
      gbAdvanced.Controls.Add(this.chkUseThresholds);
      gbAdvanced.Dock = System.Windows.Forms.DockStyle.Top;
      gbAdvanced.Location = new System.Drawing.Point(0, 285);
      gbAdvanced.Name = "gbAdvanced";
      gbAdvanced.Size = new System.Drawing.Size(294, 130);
      gbAdvanced.TabIndex = 3;
      gbAdvanced.TabStop = false;
      gbAdvanced.Text = "Advanced";
      // 
      // nudRadius
      // 
      this.nudRadius.DecimalPlaces = 2;
      this.nudRadius.Increment = new decimal(new int[] {
            1,
            0,
            0,
            65536});
      this.nudRadius.Location = new System.Drawing.Point(57, 91);
      this.nudRadius.Minimum = new decimal(new int[] {
            5,
            0,
            0,
            65536});
      this.nudRadius.Name = "nudRadius";
      this.nudRadius.Size = new System.Drawing.Size(49, 20);
      this.nudRadius.TabIndex = 3;
      this.nudRadius.Value = new decimal(new int[] {
            1,
            0,
            0,
            0});
      this.nudRadius.ValueChanged += new System.EventHandler(this.nudRadius_ValueChanged);
      // 
      // lblRadius
      // 
      this.lblRadius.AutoSize = true;
      this.lblRadius.Location = new System.Drawing.Point(6, 93);
      this.lblRadius.Name = "lblRadius";
      this.lblRadius.Size = new System.Drawing.Size(40, 13);
      this.lblRadius.TabIndex = 2;
      this.lblRadius.Text = "Radius";
      // 
      // lblRepititionCount
      // 
      this.lblRepititionCount.AutoSize = true;
      this.lblRepititionCount.Location = new System.Drawing.Point(6, 44);
      this.lblRepititionCount.Name = "lblRepititionCount";
      this.lblRepititionCount.Size = new System.Drawing.Size(42, 13);
      this.lblRepititionCount.TabIndex = 2;
      this.lblRepititionCount.Text = "Repeat";
      // 
      // nudRepetitionCount
      // 
      this.nudRepetitionCount.Location = new System.Drawing.Point(57, 42);
      this.nudRepetitionCount.Maximum = new decimal(new int[] {
            10,
            0,
            0,
            0});
      this.nudRepetitionCount.Minimum = new decimal(new int[] {
            1,
            0,
            0,
            0});
      this.nudRepetitionCount.Name = "nudRepetitionCount";
      this.nudRepetitionCount.Size = new System.Drawing.Size(49, 20);
      this.nudRepetitionCount.TabIndex = 1;
      this.nudRepetitionCount.Value = new decimal(new int[] {
            1,
            0,
            0,
            0});
      // 
      // chkUseCenteredGrid
      // 
      this.chkUseCenteredGrid.AutoSize = true;
      this.chkUseCenteredGrid.Location = new System.Drawing.Point(6, 68);
      this.chkUseCenteredGrid.Name = "chkUseCenteredGrid";
      this.chkUseCenteredGrid.Size = new System.Drawing.Size(113, 17);
      this.chkUseCenteredGrid.TabIndex = 0;
      this.chkUseCenteredGrid.Text = "Use Centered Grid";
      this.chkUseCenteredGrid.UseVisualStyleBackColor = true;
      // 
      // chkUseThresholds
      // 
      this.chkUseThresholds.AutoSize = true;
      this.chkUseThresholds.Location = new System.Drawing.Point(6, 19);
      this.chkUseThresholds.Name = "chkUseThresholds";
      this.chkUseThresholds.Size = new System.Drawing.Size(100, 17);
      this.chkUseThresholds.TabIndex = 0;
      this.chkUseThresholds.Text = "Use Thresholds";
      this.chkUseThresholds.UseVisualStyleBackColor = true;
      // 
      // gbBorderPixelHandling
      // 
      gbBorderPixelHandling.AutoSize = true;
      gbBorderPixelHandling.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
      gbBorderPixelHandling.Controls.Add(label7);
      gbBorderPixelHandling.Controls.Add(label6);
      gbBorderPixelHandling.Controls.Add(this.cmbVerticalBPH);
      gbBorderPixelHandling.Controls.Add(this.cmbHorizontalBPH);
      gbBorderPixelHandling.Controls.Add(label5);
      gbBorderPixelHandling.Controls.Add(label4);
      gbBorderPixelHandling.Dock = System.Windows.Forms.DockStyle.Top;
      gbBorderPixelHandling.Location = new System.Drawing.Point(0, 199);
      gbBorderPixelHandling.Name = "gbBorderPixelHandling";
      gbBorderPixelHandling.Size = new System.Drawing.Size(294, 86);
      gbBorderPixelHandling.TabIndex = 3;
      gbBorderPixelHandling.TabStop = false;
      gbBorderPixelHandling.Text = "Border pixel handling";
      // 
      // label7
      // 
      label7.Image = ((System.Drawing.Image)(resources.GetObject("label7.Image")));
      label7.Location = new System.Drawing.Point(259, 51);
      label7.Name = "label7";
      label7.Size = new System.Drawing.Size(16, 16);
      label7.TabIndex = 2;
      // 
      // label6
      // 
      label6.Image = ((System.Drawing.Image)(resources.GetObject("label6.Image")));
      label6.Location = new System.Drawing.Point(259, 22);
      label6.Name = "label6";
      label6.Size = new System.Drawing.Size(16, 16);
      label6.TabIndex = 2;
      // 
      // cmbVerticalBPH
      // 
      this.cmbVerticalBPH.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
      this.cmbVerticalBPH.FormattingEnabled = true;
      this.cmbVerticalBPH.Location = new System.Drawing.Point(90, 46);
      this.cmbVerticalBPH.Name = "cmbVerticalBPH";
      this.cmbVerticalBPH.Size = new System.Drawing.Size(161, 21);
      this.cmbVerticalBPH.TabIndex = 1;
      // 
      // cmbHorizontalBPH
      // 
      this.cmbHorizontalBPH.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
      this.cmbHorizontalBPH.FormattingEnabled = true;
      this.cmbHorizontalBPH.Location = new System.Drawing.Point(90, 19);
      this.cmbHorizontalBPH.Name = "cmbHorizontalBPH";
      this.cmbHorizontalBPH.Size = new System.Drawing.Size(161, 21);
      this.cmbHorizontalBPH.TabIndex = 1;
      // 
      // label5
      // 
      label5.AutoSize = true;
      label5.Location = new System.Drawing.Point(6, 49);
      label5.Name = "label5";
      label5.Size = new System.Drawing.Size(49, 13);
      label5.TabIndex = 0;
      label5.Text = "Vertically";
      // 
      // label4
      // 
      label4.AutoSize = true;
      label4.Location = new System.Drawing.Point(6, 22);
      label4.Name = "label4";
      label4.Size = new System.Drawing.Size(61, 13);
      label4.TabIndex = 0;
      label4.Text = "Horizontally";
      // 
      // gbTargetResolution
      // 
      gbTargetResolution.AutoSize = true;
      gbTargetResolution.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
      gbTargetResolution.Controls.Add(this.chkKeepAspect);
      gbTargetResolution.Controls.Add(label9);
      gbTargetResolution.Controls.Add(label8);
      gbTargetResolution.Controls.Add(this.nudWidth);
      gbTargetResolution.Controls.Add(this.nudHeight);
      gbTargetResolution.Controls.Add(label2);
      gbTargetResolution.Controls.Add(label1);
      gbTargetResolution.Dock = System.Windows.Forms.DockStyle.Top;
      gbTargetResolution.Location = new System.Drawing.Point(0, 115);
      gbTargetResolution.Name = "gbTargetResolution";
      gbTargetResolution.Size = new System.Drawing.Size(294, 84);
      gbTargetResolution.TabIndex = 3;
      gbTargetResolution.TabStop = false;
      gbTargetResolution.Text = "Target Resolution";
      // 
      // chkKeepAspect
      // 
      this.chkKeepAspect.AutoSize = true;
      this.chkKeepAspect.Location = new System.Drawing.Point(201, 32);
      this.chkKeepAspect.Name = "chkKeepAspect";
      this.chkKeepAspect.Size = new System.Drawing.Size(87, 17);
      this.chkKeepAspect.TabIndex = 3;
      this.chkKeepAspect.Text = "Keep Aspect";
      this.chkKeepAspect.UseVisualStyleBackColor = true;
      this.chkKeepAspect.CheckedChanged += new System.EventHandler(this.chkKeepAspect_CheckedChanged);
      // 
      // label9
      // 
      label9.Image = ((System.Drawing.Image)(resources.GetObject("label9.Image")));
      label9.Location = new System.Drawing.Point(132, 21);
      label9.Name = "label9";
      label9.Size = new System.Drawing.Size(16, 16);
      label9.TabIndex = 2;
      // 
      // label8
      // 
      label8.Image = ((System.Drawing.Image)(resources.GetObject("label8.Image")));
      label8.Location = new System.Drawing.Point(132, 47);
      label8.Name = "label8";
      label8.Size = new System.Drawing.Size(16, 16);
      label8.TabIndex = 2;
      // 
      // nudWidth
      // 
      this.nudWidth.Increment = new decimal(new int[] {
            16,
            0,
            0,
            0});
      this.nudWidth.Location = new System.Drawing.Point(57, 19);
      this.nudWidth.Maximum = new decimal(new int[] {
            32768,
            0,
            0,
            0});
      this.nudWidth.Name = "nudWidth";
      this.nudWidth.Size = new System.Drawing.Size(68, 20);
      this.nudWidth.TabIndex = 1;
      this.nudWidth.ValueChanged += new System.EventHandler(this.nudWidth_ValueChanged);
      // 
      // nudHeight
      // 
      this.nudHeight.Increment = new decimal(new int[] {
            16,
            0,
            0,
            0});
      this.nudHeight.Location = new System.Drawing.Point(57, 45);
      this.nudHeight.Maximum = new decimal(new int[] {
            32768,
            0,
            0,
            0});
      this.nudHeight.Name = "nudHeight";
      this.nudHeight.Size = new System.Drawing.Size(68, 20);
      this.nudHeight.TabIndex = 1;
      this.nudHeight.ValueChanged += new System.EventHandler(this.nudHeight_ValueChanged);
      // 
      // label2
      // 
      label2.AutoSize = true;
      label2.Location = new System.Drawing.Point(6, 47);
      label2.Name = "label2";
      label2.Size = new System.Drawing.Size(38, 13);
      label2.TabIndex = 0;
      label2.Text = "Height";
      // 
      // label1
      // 
      label1.AutoSize = true;
      label1.Location = new System.Drawing.Point(6, 21);
      label1.Name = "label1";
      label1.Size = new System.Drawing.Size(35, 13);
      label1.TabIndex = 0;
      label1.Text = "Width";
      // 
      // gbMethod
      // 
      gbMethod.AutoSize = true;
      gbMethod.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
      gbMethod.Controls.Add(this.cmbResizeMethod);
      gbMethod.Dock = System.Windows.Forms.DockStyle.Top;
      gbMethod.Location = new System.Drawing.Point(0, 0);
      gbMethod.Name = "gbMethod";
      gbMethod.Size = new System.Drawing.Size(294, 59);
      gbMethod.TabIndex = 3;
      gbMethod.TabStop = false;
      gbMethod.Text = "Method";
      // 
      // cmbResizeMethod
      // 
      this.cmbResizeMethod.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
      this.cmbResizeMethod.FormattingEnabled = true;
      this.cmbResizeMethod.Location = new System.Drawing.Point(6, 19);
      this.cmbResizeMethod.Name = "cmbResizeMethod";
      this.cmbResizeMethod.Size = new System.Drawing.Size(282, 21);
      this.cmbResizeMethod.TabIndex = 0;
      this.cmbResizeMethod.SelectedValueChanged += new System.EventHandler(this.cbResizeMethod_SelectedValueChanged);
      // 
      // gbDescription
      // 
      gbDescription.AutoSize = true;
      gbDescription.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
      gbDescription.Controls.Add(this.txtDescription);
      gbDescription.Dock = System.Windows.Forms.DockStyle.Top;
      gbDescription.Location = new System.Drawing.Point(0, 59);
      gbDescription.Name = "gbDescription";
      gbDescription.Size = new System.Drawing.Size(294, 56);
      gbDescription.TabIndex = 5;
      gbDescription.TabStop = false;
      gbDescription.Text = "Description";
      // 
      // txtDescription
      // 
      this.txtDescription.Dock = System.Windows.Forms.DockStyle.Top;
      this.txtDescription.Location = new System.Drawing.Point(3, 16);
      this.txtDescription.Multiline = true;
      this.txtDescription.Name = "txtDescription";
      this.txtDescription.ReadOnly = true;
      this.txtDescription.Size = new System.Drawing.Size(288, 37);
      this.txtDescription.TabIndex = 0;
      // 
      // msMain
      // 
      this.msMain.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.fileToolStripMenuItem,
            this.viewToolStripMenuItem,
            this.scriptToolStripMenuItem,
            this.helpToolStripMenuItem});
      this.msMain.Location = new System.Drawing.Point(0, 0);
      this.msMain.Name = "msMain";
      this.msMain.Size = new System.Drawing.Size(889, 24);
      this.msMain.TabIndex = 0;
      this.msMain.Text = "menuStrip1";
      // 
      // fileToolStripMenuItem
      // 
      this.fileToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.openToolStripMenuItem,
            this.saveToolStripMenuItem,
            this.saveAsToolStripMenuItem,
            this.closeToolStripMenuItem,
            this.toolStripSeparator1,
            this.exitToolStripMenuItem});
      this.fileToolStripMenuItem.Name = "fileToolStripMenuItem";
      this.fileToolStripMenuItem.Size = new System.Drawing.Size(37, 20);
      this.fileToolStripMenuItem.Text = "File";
      // 
      // openToolStripMenuItem
      // 
      this.openToolStripMenuItem.Name = "openToolStripMenuItem";
      this.openToolStripMenuItem.Size = new System.Drawing.Size(114, 22);
      this.openToolStripMenuItem.Text = "Open";
      this.openToolStripMenuItem.Click += new System.EventHandler(this.openToolStripMenuItem_Click);
      // 
      // saveToolStripMenuItem
      // 
      this.saveToolStripMenuItem.Name = "saveToolStripMenuItem";
      this.saveToolStripMenuItem.Size = new System.Drawing.Size(114, 22);
      this.saveToolStripMenuItem.Text = "Save";
      this.saveToolStripMenuItem.Click += new System.EventHandler(this.saveToolStripMenuItem_Click);
      // 
      // saveAsToolStripMenuItem
      // 
      this.saveAsToolStripMenuItem.Name = "saveAsToolStripMenuItem";
      this.saveAsToolStripMenuItem.Size = new System.Drawing.Size(114, 22);
      this.saveAsToolStripMenuItem.Text = "Save As";
      this.saveAsToolStripMenuItem.Click += new System.EventHandler(this.saveAsToolStripMenuItem_Click);
      // 
      // closeToolStripMenuItem
      // 
      this.closeToolStripMenuItem.Name = "closeToolStripMenuItem";
      this.closeToolStripMenuItem.Size = new System.Drawing.Size(114, 22);
      this.closeToolStripMenuItem.Text = "Close";
      this.closeToolStripMenuItem.Click += new System.EventHandler(this.closeToolStripMenuItem_Click);
      // 
      // toolStripSeparator1
      // 
      this.toolStripSeparator1.Name = "toolStripSeparator1";
      this.toolStripSeparator1.Size = new System.Drawing.Size(111, 6);
      // 
      // exitToolStripMenuItem
      // 
      this.exitToolStripMenuItem.Name = "exitToolStripMenuItem";
      this.exitToolStripMenuItem.Size = new System.Drawing.Size(114, 22);
      this.exitToolStripMenuItem.Text = "Exit";
      this.exitToolStripMenuItem.Click += new System.EventHandler(this.exitToolStripMenuItem_Click);
      // 
      // viewToolStripMenuItem
      // 
      this.viewToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.sourceImageToolStripMenuItem,
            this.targetImageToolStripMenuItem});
      this.viewToolStripMenuItem.Name = "viewToolStripMenuItem";
      this.viewToolStripMenuItem.Size = new System.Drawing.Size(44, 20);
      this.viewToolStripMenuItem.Text = "View";
      // 
      // sourceImageToolStripMenuItem
      // 
      this.sourceImageToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.stretchToolStripMenuItem,
            this.centerToolStripMenuItem,
            this.zoomToolStripMenuItem});
      this.sourceImageToolStripMenuItem.Name = "sourceImageToolStripMenuItem";
      this.sourceImageToolStripMenuItem.Size = new System.Drawing.Size(152, 22);
      this.sourceImageToolStripMenuItem.Text = "Source Image";
      // 
      // stretchToolStripMenuItem
      // 
      this.stretchToolStripMenuItem.Name = "stretchToolStripMenuItem";
      this.stretchToolStripMenuItem.Size = new System.Drawing.Size(152, 22);
      this.stretchToolStripMenuItem.Text = "Stretch";
      this.stretchToolStripMenuItem.Click += new System.EventHandler(this.stretchToolStripMenuItem_Click);
      // 
      // centerToolStripMenuItem
      // 
      this.centerToolStripMenuItem.Name = "centerToolStripMenuItem";
      this.centerToolStripMenuItem.Size = new System.Drawing.Size(152, 22);
      this.centerToolStripMenuItem.Text = "Actual";
      this.centerToolStripMenuItem.Click += new System.EventHandler(this.centerToolStripMenuItem_Click);
      // 
      // zoomToolStripMenuItem
      // 
      this.zoomToolStripMenuItem.Name = "zoomToolStripMenuItem";
      this.zoomToolStripMenuItem.Size = new System.Drawing.Size(152, 22);
      this.zoomToolStripMenuItem.Text = "Fit";
      this.zoomToolStripMenuItem.Click += new System.EventHandler(this.zoomToolStripMenuItem_Click);
      // 
      // targetImageToolStripMenuItem
      // 
      this.targetImageToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.stretchToolStripMenuItem1,
            this.centerToolStripMenuItem1,
            this.zoomToolStripMenuItem1});
      this.targetImageToolStripMenuItem.Name = "targetImageToolStripMenuItem";
      this.targetImageToolStripMenuItem.Size = new System.Drawing.Size(152, 22);
      this.targetImageToolStripMenuItem.Text = "Target Image";
      // 
      // stretchToolStripMenuItem1
      // 
      this.stretchToolStripMenuItem1.Name = "stretchToolStripMenuItem1";
      this.stretchToolStripMenuItem1.Size = new System.Drawing.Size(111, 22);
      this.stretchToolStripMenuItem1.Text = "Stretch";
      this.stretchToolStripMenuItem1.Click += new System.EventHandler(this.stretchToolStripMenuItem1_Click);
      // 
      // centerToolStripMenuItem1
      // 
      this.centerToolStripMenuItem1.Name = "centerToolStripMenuItem1";
      this.centerToolStripMenuItem1.Size = new System.Drawing.Size(111, 22);
      this.centerToolStripMenuItem1.Text = "Actual";
      this.centerToolStripMenuItem1.Click += new System.EventHandler(this.centerToolStripMenuItem1_Click);
      // 
      // zoomToolStripMenuItem1
      // 
      this.zoomToolStripMenuItem1.Name = "zoomToolStripMenuItem1";
      this.zoomToolStripMenuItem1.Size = new System.Drawing.Size(111, 22);
      this.zoomToolStripMenuItem1.Text = "Fit";
      this.zoomToolStripMenuItem1.Click += new System.EventHandler(this.zoomToolStripMenuItem1_Click);
      // 
      // scriptToolStripMenuItem
      // 
      this.scriptToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.clearToolStripMenuItem,
            this.loadToolStripMenuItem,
            this.saveToolStripMenuItem1,
            this.toolStripSeparator3,
            this.showToolStripMenuItem,
            this.executeToolStripMenuItem});
      this.scriptToolStripMenuItem.Name = "scriptToolStripMenuItem";
      this.scriptToolStripMenuItem.Size = new System.Drawing.Size(49, 20);
      this.scriptToolStripMenuItem.Text = "Script";
      // 
      // clearToolStripMenuItem
      // 
      this.clearToolStripMenuItem.Name = "clearToolStripMenuItem";
      this.clearToolStripMenuItem.Size = new System.Drawing.Size(152, 22);
      this.clearToolStripMenuItem.Text = "Clear";
      this.clearToolStripMenuItem.Click += new System.EventHandler(this.clearToolStripMenuItem_Click);
      // 
      // loadToolStripMenuItem
      // 
      this.loadToolStripMenuItem.Name = "loadToolStripMenuItem";
      this.loadToolStripMenuItem.Size = new System.Drawing.Size(152, 22);
      this.loadToolStripMenuItem.Text = "Load";
      this.loadToolStripMenuItem.Click += new System.EventHandler(this.loadToolStripMenuItem_Click);
      // 
      // saveToolStripMenuItem1
      // 
      this.saveToolStripMenuItem1.Name = "saveToolStripMenuItem1";
      this.saveToolStripMenuItem1.Size = new System.Drawing.Size(152, 22);
      this.saveToolStripMenuItem1.Text = "Save";
      this.saveToolStripMenuItem1.Click += new System.EventHandler(this.saveToolStripMenuItem1_Click);
      // 
      // toolStripSeparator3
      // 
      this.toolStripSeparator3.Name = "toolStripSeparator3";
      this.toolStripSeparator3.Size = new System.Drawing.Size(149, 6);
      // 
      // showToolStripMenuItem
      // 
      this.showToolStripMenuItem.Name = "showToolStripMenuItem";
      this.showToolStripMenuItem.Size = new System.Drawing.Size(152, 22);
      this.showToolStripMenuItem.Text = "Show";
      this.showToolStripMenuItem.Click += new System.EventHandler(this.showToolStripMenuItem_Click);
      // 
      // executeToolStripMenuItem
      // 
      this.executeToolStripMenuItem.Name = "executeToolStripMenuItem";
      this.executeToolStripMenuItem.Size = new System.Drawing.Size(152, 22);
      this.executeToolStripMenuItem.Text = "Execute";
      this.executeToolStripMenuItem.Click += new System.EventHandler(this.executeToolStripMenuItem_Click);
      // 
      // helpToolStripMenuItem
      // 
      this.helpToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.wikiToolStripMenuItem,
            this.toolStripSeparator2,
            this.aboutToolStripMenuItem});
      this.helpToolStripMenuItem.Name = "helpToolStripMenuItem";
      this.helpToolStripMenuItem.Size = new System.Drawing.Size(44, 20);
      this.helpToolStripMenuItem.Text = "Help";
      // 
      // wikiToolStripMenuItem
      // 
      this.wikiToolStripMenuItem.Name = "wikiToolStripMenuItem";
      this.wikiToolStripMenuItem.Size = new System.Drawing.Size(107, 22);
      this.wikiToolStripMenuItem.Text = "Wiki";
      this.wikiToolStripMenuItem.Click += new System.EventHandler(this.wikiToolStripMenuItem_Click);
      // 
      // toolStripSeparator2
      // 
      this.toolStripSeparator2.Name = "toolStripSeparator2";
      this.toolStripSeparator2.Size = new System.Drawing.Size(104, 6);
      // 
      // aboutToolStripMenuItem
      // 
      this.aboutToolStripMenuItem.Name = "aboutToolStripMenuItem";
      this.aboutToolStripMenuItem.Size = new System.Drawing.Size(107, 22);
      this.aboutToolStripMenuItem.Text = "About";
      this.aboutToolStripMenuItem.Click += new System.EventHandler(this.aboutToolStripMenuItem_Click);
      // 
      // tlpMainLayout
      // 
      this.tlpMainLayout.ColumnCount = 3;
      this.tlpMainLayout.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50F));
      this.tlpMainLayout.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle());
      this.tlpMainLayout.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50F));
      this.tlpMainLayout.Controls.Add(gbSourceImage, 0, 0);
      this.tlpMainLayout.Controls.Add(gbTargetImage, 2, 0);
      this.tlpMainLayout.Controls.Add(this.pnMiddle, 1, 0);
      this.tlpMainLayout.Dock = System.Windows.Forms.DockStyle.Fill;
      this.tlpMainLayout.Location = new System.Drawing.Point(0, 24);
      this.tlpMainLayout.Name = "tlpMainLayout";
      this.tlpMainLayout.RowCount = 1;
      this.tlpMainLayout.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 100F));
      this.tlpMainLayout.Size = new System.Drawing.Size(889, 556);
      this.tlpMainLayout.TabIndex = 2;
      // 
      // pnMiddle
      // 
      this.pnMiddle.Controls.Add(this.gbKernelFunction);
      this.pnMiddle.Controls.Add(this.gbActions);
      this.pnMiddle.Controls.Add(gbAdvanced);
      this.pnMiddle.Controls.Add(gbBorderPixelHandling);
      this.pnMiddle.Controls.Add(gbTargetResolution);
      this.pnMiddle.Controls.Add(gbDescription);
      this.pnMiddle.Controls.Add(gbMethod);
      this.pnMiddle.Dock = System.Windows.Forms.DockStyle.Fill;
      this.pnMiddle.Location = new System.Drawing.Point(297, 3);
      this.pnMiddle.Name = "pnMiddle";
      this.pnMiddle.Size = new System.Drawing.Size(294, 550);
      this.pnMiddle.TabIndex = 2;
      // 
      // gbKernelFunction
      // 
      this.gbKernelFunction.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
      this.gbKernelFunction.Controls.Add(this.chtKernel);
      this.gbKernelFunction.Dock = System.Windows.Forms.DockStyle.Fill;
      this.gbKernelFunction.Location = new System.Drawing.Point(0, 463);
      this.gbKernelFunction.Name = "gbKernelFunction";
      this.gbKernelFunction.Size = new System.Drawing.Size(294, 87);
      this.gbKernelFunction.TabIndex = 6;
      this.gbKernelFunction.TabStop = false;
      this.gbKernelFunction.Text = "Kernel";
      // 
      // chtKernel
      // 
      this.chtKernel.BackColor = System.Drawing.SystemColors.Control;
      chartArea1.Name = "chaChart";
      this.chtKernel.ChartAreas.Add(chartArea1);
      this.chtKernel.Dock = System.Windows.Forms.DockStyle.Fill;
      this.chtKernel.Location = new System.Drawing.Point(3, 16);
      this.chtKernel.Name = "chtKernel";
      series1.ChartArea = "chaChart";
      series1.ChartType = System.Windows.Forms.DataVisualization.Charting.SeriesChartType.Area;
      series1.Name = "dsKernelData";
      this.chtKernel.Series.Add(series1);
      this.chtKernel.Size = new System.Drawing.Size(288, 68);
      this.chtKernel.TabIndex = 0;
      this.chtKernel.Text = "chart1";
      // 
      // gbActions
      // 
      this.gbActions.AutoSize = true;
      this.gbActions.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
      this.gbActions.Controls.Add(flpActions);
      this.gbActions.Dock = System.Windows.Forms.DockStyle.Top;
      this.gbActions.Location = new System.Drawing.Point(0, 415);
      this.gbActions.Name = "gbActions";
      this.gbActions.Size = new System.Drawing.Size(294, 48);
      this.gbActions.TabIndex = 4;
      this.gbActions.TabStop = false;
      this.gbActions.Text = "Actions";
      // 
      // ofdOpenFile
      // 
      this.ofdOpenFile.FileName = "InputImage";
      this.ofdOpenFile.Filter = "Image Files|*.bmp;*.jpg;*.jpeg;*.png;*.gif";
      this.ofdOpenFile.RestoreDirectory = true;
      this.ofdOpenFile.Title = "Select Image to resize";
      // 
      // sfdSave
      // 
      this.sfdSave.DefaultExt = "png";
      this.sfdSave.FileName = "OutputImage";
      this.sfdSave.Filter = "Portable Network Graphics|*.png|JPEG Files|*.jpg;*.jpeg|Windows Bitmap|*.bmp|Grap" +
    "hics Interchange Format|*.gif|Image Files|*.bmp;*.jpg;*.jpeg;*.png;*.gif";
      this.sfdSave.RestoreDirectory = true;
      this.sfdSave.Title = "Enter filename";
      // 
      // ofdOpenScript
      // 
      this.ofdOpenScript.DefaultExt = "irs";
      this.ofdOpenScript.FileName = "InputScript";
      this.ofdOpenScript.Filter = "Image Resizer Script Files|*.irs|All files|*.*";
      this.ofdOpenScript.RestoreDirectory = true;
      this.ofdOpenScript.Title = "Select script to load";
      // 
      // sfdSaveScript
      // 
      this.sfdSaveScript.DefaultExt = "irs";
      this.sfdSaveScript.FileName = "OutputScript";
      this.sfdSaveScript.Filter = "Image Resizer Script Files|*.irs|All files|*.*";
      this.sfdSaveScript.RestoreDirectory = true;
      this.sfdSaveScript.Title = "Enter filename";
      // 
      // MainForm
      // 
      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
      this.ClientSize = new System.Drawing.Size(889, 602);
      this.Controls.Add(this.tlpMainLayout);
      this.Controls.Add(ssBottom);
      this.Controls.Add(this.msMain);
      this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
      this.MainMenuStrip = this.msMain;
      this.MinimumSize = new System.Drawing.Size(600, 600);
      this.Name = "MainForm";
      this.Text = "ImageResizer";
      ssBottom.ResumeLayout(false);
      ssBottom.PerformLayout();
      gbSourceImage.ResumeLayout(false);
      gbTargetImage.ResumeLayout(false);
      flpActions.ResumeLayout(false);
      gbAdvanced.ResumeLayout(false);
      gbAdvanced.PerformLayout();
      ((System.ComponentModel.ISupportInitialize)(this.nudRadius)).EndInit();
      ((System.ComponentModel.ISupportInitialize)(this.nudRepetitionCount)).EndInit();
      gbBorderPixelHandling.ResumeLayout(false);
      gbBorderPixelHandling.PerformLayout();
      gbTargetResolution.ResumeLayout(false);
      gbTargetResolution.PerformLayout();
      ((System.ComponentModel.ISupportInitialize)(this.nudWidth)).EndInit();
      ((System.ComponentModel.ISupportInitialize)(this.nudHeight)).EndInit();
      gbMethod.ResumeLayout(false);
      gbDescription.ResumeLayout(false);
      gbDescription.PerformLayout();
      this.msMain.ResumeLayout(false);
      this.msMain.PerformLayout();
      this.tlpMainLayout.ResumeLayout(false);
      this.pnMiddle.ResumeLayout(false);
      this.pnMiddle.PerformLayout();
      this.gbKernelFunction.ResumeLayout(false);
      ((System.ComponentModel.ISupportInitialize)(this.chtKernel)).EndInit();
      this.gbActions.ResumeLayout(false);
      this.gbActions.PerformLayout();
      this.ResumeLayout(false);
      this.PerformLayout();

    }