Пример #1
0
        public UcSimpleCommentBase()
        {
            InitializeComponent();

            //Modo de diseño
            if (System.ComponentModel.LicenseManager.UsageMode == LicenseUsageMode.Designtime)
            {
                return;
            }

            this.Disposed += (s, e) =>
            {
                if (this._ToolTipController != null)
                {
                    this._ToolTipController.Dispose();
                    this._ToolTipController = null;
                }
            };



            //Cargamos la Fuente para Emojis
            //PrivateFontCollection private_fonts = new PrivateFontCollection();
            //string wResourceFontPath = "\\Resources\\Fonts\\";
            //string wResource = "seguiemj.ttf";
            //private_fonts = Helper.LoadFont(Application.StartupPath + wResourceFontPath + wResource);
            //int wFontSize = 14;
            //if (private_fonts != null)
            //{
            //    elementHostWPF.Font = new Font(private_fonts.Families[0], wFontSize);
            //}
        }
Пример #2
0
 ///
 ///
 /// 冒泡提示
 ///
 /// System.Windows.Forms的一个控件,在其上面提示显示
 /// 提示的标题默认(温馨提示)
 /// 提示的信息默认(???)
 /// 提示显示等待时间
 /// DevExpress.Utils.ToolTipType 显示的类型
 /// DevExpress.Utils.ToolTipLocation 在控件显示的位置
 /// 是否自动隐藏提示信息
 /// DevExpress.Utils.ToolTipIconType 显示框图表的类型
 /// 一个System.Windows.Forms.ImageList 装载Icon图标的List,显示的ToolTipIconType上,可以为Null
 /// 图标在ImageList上的索引,ImageList为Null时传0进去
 public void NewToolTip(Control ctl, string title, string content, int showTime, DevExpress.Utils.ToolTipType toolTipType, DevExpress.Utils.ToolTipLocation tipLocation, bool isAutoHide, DevExpress.Utils.ToolTipIconType tipIconType, System.Windows.Forms.ImageList imgList, int imgIndex)
 {
     try
     {
         MyToolTipClt              = new DevExpress.Utils.ToolTipController();
         args                      = MyToolTipClt.CreateShowArgs();
         content                   = (string.IsNullOrEmpty(content) ? "???" : content);
         title                     = string.IsNullOrEmpty(title) ? "温馨提示" : title;
         MyToolTipClt.ImageList    = imgList;
         MyToolTipClt.ImageIndex   = (imgList == null ? 0 : imgIndex);
         args.AutoHide             = isAutoHide;
         MyToolTipClt.ShowBeak     = true;
         MyToolTipClt.ShowShadow   = true;
         MyToolTipClt.Rounded      = true;
         MyToolTipClt.AutoPopDelay = (showTime == 0 ? 2000 : showTime);
         //MyToolTipClt.SetToolTip(ctl, content);
         //MyToolTipClt.SetTitle(ctl, title);
         //MyToolTipClt.SetToolTipIconType(ctl, tipIconType);
         //MyToolTipClt.SetToolTipIconType(ctl, tipIconType);
         MyToolTipClt.Active = true;
         MyToolTipClt.HideHint();
         MyToolTipClt.ShowHint(content, title, ctl, tipLocation);
     }
     catch (Exception ex)
     {
         //CommonFunctionHeper.CommonFunctionHeper.CreateLogFiles(ex);
         MessageBox.Show(ex.Message);
     }
 }
        protected override void OnMouseHover(EventArgs e)
        {
            int newValue = GetValueUnderPoint(PointToClient(System.Windows.Forms.Cursor.Position).X);

            if (ToolTipController == null)
            {
                ToolTipController = new DevExpress.Utils.ToolTipController();
            }
            ToolTipController.ShowHint((Math.Round((decimal)newValue / this.Properties.Increment) * this.Properties.Increment).ToString());
            base.OnMouseHover(e);
        }
        private void ConfigToolTipController()
        {
            // Create and initialize the tooltip controller.
            this.tpCtlr              = new DevExpress.Utils.ToolTipController( );
            this.tpCtlr.ToolTipType  = DevExpress.Utils.ToolTipType.SuperTip;
            this.tpCtlr.InitialDelay = 1000;
            this.tpCtlr.ShowBeak     = true;
            this.tpCtlr.ShowShadow   = true;
            //// Bind the created tooltip controller to the Grid Control.
            this.gridControl1.ToolTipController = this.tpCtlr;

            this.tpCtlr.GetActiveObjectInfo += this.TpCtlr_GetActiveObjectInfo;
            //this.tpCtlr.BeforeShow += this.TpCtlr_BeforeShow;
        }
Пример #5
0
 /// <summary>
 /// Set tooltip for control
 /// </summary>
 /// <param name="tip"></param>
 /// <param name="control"></param>
 /// <param name="title"></param>
 /// <param name="contents"></param>
 /// <param name="footer"></param>
 /// <param name="html"></param>
 public static void SetToolTip(DevExpress.Utils.ToolTipController tip, System.Windows.Forms.Control control, string title, string contents, string footer, bool html)
 {
     DevExpress.Utils.SuperToolTip superToolTip = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipItem  toolTipItem  = new DevExpress.Utils.ToolTipItem {
         Text = contents, Image = DevExpress.Common.Properties.Resources.note
     };
     superToolTip.Items.AddTitle(title);
     superToolTip.Items.Add(toolTipItem);
     superToolTip.Items.AddSeparator();
     superToolTip.Items.AddTitle(footer);
     tip.AllowHtmlText = html;
     if (control is DevExpress.XtraEditors.TextEdit)
     {
         ((DevExpress.XtraEditors.TextEdit)control).SuperTip = superToolTip;
         tip.SetSuperTip((DevExpress.XtraEditors.TextEdit)control, superToolTip);
     }
     else
     if (control is DevExpress.XtraEditors.CheckEdit)
     {
         ((DevExpress.XtraEditors.CheckEdit)control).SuperTip = superToolTip;
         tip.SetSuperTip((DevExpress.XtraEditors.CheckEdit)control, superToolTip);
     }
     else
     if (control is DevExpress.XtraEditors.ComboBoxEdit)
     {
         ((DevExpress.XtraEditors.ComboBoxEdit)control).SuperTip = superToolTip;
         tip.SetSuperTip((DevExpress.XtraEditors.ComboBoxEdit)control, superToolTip);
     }
     else
     if (control is DevExpress.XtraEditors.SimpleButton)
     {
         ((DevExpress.XtraEditors.SimpleButton)control).SuperTip = superToolTip;
         tip.SetSuperTip((DevExpress.XtraEditors.SimpleButton)control, superToolTip);
     }
     else
     if (control is DevExpress.XtraEditors.SpinEdit)
     {
         ((DevExpress.XtraEditors.SpinEdit)control).SuperTip = superToolTip;
         tip.SetSuperTip((DevExpress.XtraEditors.SpinEdit)control, superToolTip);
     }
     else
     if (control is DevExpress.XtraEditors.CheckedListBoxControl)
     {
         ((DevExpress.XtraEditors.CheckedListBoxControl)control).SuperTip = superToolTip;
         tip.SetSuperTip((DevExpress.XtraEditors.CheckedListBoxControl)control, superToolTip);
     }
 }
 private void InitializeComponent()
 {
     this.components        = new System.ComponentModel.Container();
     this.listBoxControl1   = new DevExpress.XtraEditors.ListBoxControl();
     this.toolTipController = new DevExpress.Utils.ToolTipController(this.components);
     this.СписокСообщений   = new DevExpress.XtraEditors.ListBoxControl();
     this.labelControl1     = new DevExpress.XtraEditors.LabelControl();
     this.индикатор         = new DevExpress.XtraEditors.ProgressBarControl();
     ((System.ComponentModel.ISupportInitialize)(this.listBoxControl1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.СписокСообщений)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.индикатор.Properties)).BeginInit();
     this.SuspendLayout();
     //
     // listBoxControl1
     //
     this.listBoxControl1.Location = new System.Drawing.Point(0, 0);
     this.listBoxControl1.Name     = "listBoxControl1";
     this.listBoxControl1.Size     = new System.Drawing.Size(120, 95);
     this.listBoxControl1.TabIndex = 0;
     //
     // toolTipController
     //
     this.toolTipController.AutoPopDelay = 10000;
     this.toolTipController.Rounded      = true;
     this.toolTipController.ShowBeak     = true;
     this.toolTipController.ToolTipType  = DevExpress.Utils.ToolTipType.SuperTip;
     //
     // СписокСообщений
     //
     this.СписокСообщений.Location              = new System.Drawing.Point(12, 12);
     this.СписокСообщений.Name                  = "СписокСообщений";
     this.СписокСообщений.Size                  = new System.Drawing.Size(632, 205);
     this.СписокСообщений.TabIndex              = 0;
     this.СписокСообщений.ToolTipController     = this.toolTipController;
     this.СписокСообщений.ToolTipIconType       = DevExpress.Utils.ToolTipIconType.Asterics;
     this.СписокСообщений.ToolTipTitle          = "Сообщение компилятора";
     this.СписокСообщений.MouseMove            += new System.Windows.Forms.MouseEventHandler(this.СписокСообщений_MouseMove);
     this.СписокСообщений.SelectedIndexChanged += new System.EventHandler(this.СписокСообщений_SelectedIndexChanged);
     //
     // labelControl1
     //
     this.labelControl1.Location = new System.Drawing.Point(12, 228);
     this.labelControl1.Name     = "labelControl1";
     this.labelControl1.Size     = new System.Drawing.Size(261, 13);
     this.labelControl1.TabIndex = 6;
     this.labelControl1.Text     = "Выполняется построение прикладной подсистемы:";
     //
     // индикатор
     //
     this.индикатор.Location = new System.Drawing.Point(279, 223);
     this.индикатор.Name     = "индикатор";
     this.индикатор.Size     = new System.Drawing.Size(365, 23);
     this.индикатор.TabIndex = 7;
     //
     // ФормаКомпилятора
     //
     this.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, (( byte )(204)));
     this.Appearance.Options.UseBackColor = true;
     this.Appearance.Options.UseFont      = true;
     this.ClientSize = new System.Drawing.Size(656, 260);
     this.Controls.Add(this.индикатор);
     this.Controls.Add(this.labelControl1);
     this.Controls.Add(this.СписокСообщений);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
     this.MaximizeBox     = false;
     this.MinimizeBox     = false;
     this.Name            = "ФормаКомпилятора";
     this.StartPosition   = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.toolTipController.SetSuperTip(this, null);
     this.Text  = "Выполняется построение прикладной подсистемы";
     this.Load += new System.EventHandler(this.ФормаКомпилятора_Load);
     ((System.ComponentModel.ISupportInitialize)(this.listBoxControl1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.СписокСообщений)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.индикатор.Properties)).EndInit();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Пример #7
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     DevExpress.XtraEditors.DXErrorProvider.ConditionValidationRule conditionValidationRule1 = new DevExpress.XtraEditors.DXErrorProvider.ConditionValidationRule();
     DevExpress.XtraEditors.DXErrorProvider.ConditionValidationRule conditionValidationRule2 = new DevExpress.XtraEditors.DXErrorProvider.ConditionValidationRule();
     this.layoutControl1 = new DevExpress.XtraLayout.LayoutControl();
     this.cancelButton = new DevExpress.XtraEditors.SimpleButton();
     this.loginButton = new DevExpress.XtraEditors.SimpleButton();
     this.passwordEdit = new DevExpress.XtraEditors.TextEdit();
     this.accountEdit = new DevExpress.XtraEditors.TextEdit();
     this.layoutControlGroup1 = new DevExpress.XtraLayout.LayoutControlGroup();
     this.layoutControlItem2 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem1 = new DevExpress.XtraLayout.LayoutControlItem();
     this.emptySpaceItem2 = new DevExpress.XtraLayout.EmptySpaceItem();
     this.emptySpaceItem3 = new DevExpress.XtraLayout.EmptySpaceItem();
     this.emptySpaceItem4 = new DevExpress.XtraLayout.EmptySpaceItem();
     this.layoutControlItem3 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem4 = new DevExpress.XtraLayout.LayoutControlItem();
     this.emptySpaceItem1 = new DevExpress.XtraLayout.EmptySpaceItem();
     this.emptySpaceItem5 = new DevExpress.XtraLayout.EmptySpaceItem();
     this.emptySpaceItem9 = new DevExpress.XtraLayout.EmptySpaceItem();
     this.emptySpaceItem8 = new DevExpress.XtraLayout.EmptySpaceItem();
     this.loginValidation = new DevExpress.XtraEditors.DXErrorProvider.DXValidationProvider(this.components);
     this.errorTip = new DevExpress.Utils.ToolTipController(this.components);
     ((System.ComponentModel.ISupportInitialize)(this.layoutControl1)).BeginInit();
     this.layoutControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.passwordEdit.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.accountEdit.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem4)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem4)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem5)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem9)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem8)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.loginValidation)).BeginInit();
     this.SuspendLayout();
     //
     // layoutControl1
     //
     this.layoutControl1.Controls.Add(this.cancelButton);
     this.layoutControl1.Controls.Add(this.loginButton);
     this.layoutControl1.Controls.Add(this.passwordEdit);
     this.layoutControl1.Controls.Add(this.accountEdit);
     this.layoutControl1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.layoutControl1.Location = new System.Drawing.Point(0, 0);
     this.layoutControl1.Name = "layoutControl1";
     this.layoutControl1.Root = this.layoutControlGroup1;
     this.layoutControl1.Size = new System.Drawing.Size(225, 126);
     this.layoutControl1.TabIndex = 0;
     this.layoutControl1.Text = "layoutControl1";
     //
     // cancelButton
     //
     this.cancelButton.Location = new System.Drawing.Point(128, 82);
     this.cancelButton.Name = "cancelButton";
     this.cancelButton.Size = new System.Drawing.Size(73, 22);
     this.cancelButton.StyleController = this.layoutControl1;
     this.cancelButton.TabIndex = 7;
     this.cancelButton.Text = "取消";
     this.cancelButton.Click += new System.EventHandler(this.cancelButton_Click);
     //
     // loginButton
     //
     this.loginButton.Location = new System.Drawing.Point(24, 82);
     this.loginButton.Name = "loginButton";
     this.loginButton.Size = new System.Drawing.Size(73, 22);
     this.loginButton.StyleController = this.layoutControl1;
     this.loginButton.TabIndex = 6;
     this.loginButton.Text = "登陆";
     this.loginButton.Click += new System.EventHandler(this.loginButton_Click);
     //
     // passwordEdit
     //
     this.passwordEdit.EditValue = "";
     this.loginValidation.SetIconAlignment(this.passwordEdit, System.Windows.Forms.ErrorIconAlignment.MiddleRight);
     this.passwordEdit.Location = new System.Drawing.Point(52, 47);
     this.passwordEdit.Name = "passwordEdit";
     this.passwordEdit.Properties.PasswordChar = '*';
     this.passwordEdit.Size = new System.Drawing.Size(149, 21);
     this.passwordEdit.StyleController = this.layoutControl1;
     this.passwordEdit.TabIndex = 5;
     conditionValidationRule1.ConditionOperator = DevExpress.XtraEditors.DXErrorProvider.ConditionOperator.IsNotBlank;
     conditionValidationRule1.ErrorText = "请输入密码";
     this.loginValidation.SetValidationRule(this.passwordEdit, conditionValidationRule1);
     //
     // accountEdit
     //
     this.accountEdit.EditValue = "";
     this.loginValidation.SetIconAlignment(this.accountEdit, System.Windows.Forms.ErrorIconAlignment.MiddleRight);
     this.accountEdit.Location = new System.Drawing.Point(52, 22);
     this.accountEdit.Name = "accountEdit";
     this.accountEdit.Size = new System.Drawing.Size(149, 21);
     this.accountEdit.StyleController = this.layoutControl1;
     this.accountEdit.TabIndex = 4;
     conditionValidationRule2.ConditionOperator = DevExpress.XtraEditors.DXErrorProvider.ConditionOperator.IsNotBlank;
     conditionValidationRule2.ErrorText = "请输入账号";
     this.loginValidation.SetValidationRule(this.accountEdit, conditionValidationRule2);
     //
     // layoutControlGroup1
     //
     this.layoutControlGroup1.CustomizationFormText = "layoutControlGroup1";
     this.layoutControlGroup1.EnableIndentsWithoutBorders = DevExpress.Utils.DefaultBoolean.True;
     this.layoutControlGroup1.GroupBordersVisible = false;
     this.layoutControlGroup1.Items.AddRange(new DevExpress.XtraLayout.BaseLayoutItem[] {
     this.layoutControlItem2,
     this.layoutControlItem1,
     this.emptySpaceItem2,
     this.emptySpaceItem3,
     this.emptySpaceItem4,
     this.layoutControlItem3,
     this.layoutControlItem4,
     this.emptySpaceItem1,
     this.emptySpaceItem5,
     this.emptySpaceItem9});
     this.layoutControlGroup1.Location = new System.Drawing.Point(0, 0);
     this.layoutControlGroup1.Name = "layoutControlGroup1";
     this.layoutControlGroup1.Size = new System.Drawing.Size(225, 126);
     this.layoutControlGroup1.Spacing = new DevExpress.XtraLayout.Utils.Padding(0, 0, 0, 0);
     this.layoutControlGroup1.Text = "layoutControlGroup1";
     this.layoutControlGroup1.TextVisible = false;
     //
     // layoutControlItem2
     //
     this.layoutControlItem2.Control = this.passwordEdit;
     this.layoutControlItem2.CustomizationFormText = "密码";
     this.layoutControlItem2.Location = new System.Drawing.Point(12, 35);
     this.layoutControlItem2.Name = "layoutControlItem2";
     this.layoutControlItem2.Size = new System.Drawing.Size(181, 25);
     this.layoutControlItem2.Text = "密码";
     this.layoutControlItem2.TextSize = new System.Drawing.Size(24, 14);
     //
     // layoutControlItem1
     //
     this.layoutControlItem1.Control = this.accountEdit;
     this.layoutControlItem1.CustomizationFormText = "账号";
     this.layoutControlItem1.Location = new System.Drawing.Point(12, 10);
     this.layoutControlItem1.Name = "layoutControlItem1";
     this.layoutControlItem1.Size = new System.Drawing.Size(181, 25);
     this.layoutControlItem1.Text = "账号";
     this.layoutControlItem1.TextSize = new System.Drawing.Size(24, 14);
     //
     // emptySpaceItem2
     //
     this.emptySpaceItem2.CustomizationFormText = "emptySpaceItem2";
     this.emptySpaceItem2.Location = new System.Drawing.Point(193, 10);
     this.emptySpaceItem2.Name = "emptySpaceItem2";
     this.emptySpaceItem2.Size = new System.Drawing.Size(12, 86);
     this.emptySpaceItem2.Text = "emptySpaceItem2";
     this.emptySpaceItem2.TextSize = new System.Drawing.Size(0, 0);
     //
     // emptySpaceItem3
     //
     this.emptySpaceItem3.CustomizationFormText = "emptySpaceItem3";
     this.emptySpaceItem3.Location = new System.Drawing.Point(0, 0);
     this.emptySpaceItem3.Name = "emptySpaceItem3";
     this.emptySpaceItem3.Size = new System.Drawing.Size(205, 10);
     this.emptySpaceItem3.Text = "emptySpaceItem3";
     this.emptySpaceItem3.TextSize = new System.Drawing.Size(0, 0);
     //
     // emptySpaceItem4
     //
     this.emptySpaceItem4.CustomizationFormText = "emptySpaceItem4";
     this.emptySpaceItem4.Location = new System.Drawing.Point(0, 10);
     this.emptySpaceItem4.Name = "emptySpaceItem4";
     this.emptySpaceItem4.Size = new System.Drawing.Size(12, 86);
     this.emptySpaceItem4.Text = "emptySpaceItem4";
     this.emptySpaceItem4.TextSize = new System.Drawing.Size(0, 0);
     //
     // layoutControlItem3
     //
     this.layoutControlItem3.Control = this.loginButton;
     this.layoutControlItem3.CustomizationFormText = "layoutControlItem3";
     this.layoutControlItem3.Location = new System.Drawing.Point(12, 70);
     this.layoutControlItem3.Name = "layoutControlItem3";
     this.layoutControlItem3.Size = new System.Drawing.Size(77, 26);
     this.layoutControlItem3.Text = "layoutControlItem3";
     this.layoutControlItem3.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem3.TextToControlDistance = 0;
     this.layoutControlItem3.TextVisible = false;
     //
     // layoutControlItem4
     //
     this.layoutControlItem4.Control = this.cancelButton;
     this.layoutControlItem4.CustomizationFormText = "layoutControlItem4";
     this.layoutControlItem4.Location = new System.Drawing.Point(116, 70);
     this.layoutControlItem4.Name = "layoutControlItem4";
     this.layoutControlItem4.Size = new System.Drawing.Size(77, 26);
     this.layoutControlItem4.Text = "layoutControlItem4";
     this.layoutControlItem4.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem4.TextToControlDistance = 0;
     this.layoutControlItem4.TextVisible = false;
     //
     // emptySpaceItem1
     //
     this.emptySpaceItem1.CustomizationFormText = "emptySpaceItem1";
     this.emptySpaceItem1.Location = new System.Drawing.Point(89, 70);
     this.emptySpaceItem1.Name = "emptySpaceItem1";
     this.emptySpaceItem1.Size = new System.Drawing.Size(27, 26);
     this.emptySpaceItem1.Text = "emptySpaceItem1";
     this.emptySpaceItem1.TextSize = new System.Drawing.Size(0, 0);
     //
     // emptySpaceItem5
     //
     this.emptySpaceItem5.CustomizationFormText = "emptySpaceItem5";
     this.emptySpaceItem5.Location = new System.Drawing.Point(12, 60);
     this.emptySpaceItem5.Name = "emptySpaceItem5";
     this.emptySpaceItem5.Size = new System.Drawing.Size(181, 10);
     this.emptySpaceItem5.Text = "emptySpaceItem5";
     this.emptySpaceItem5.TextSize = new System.Drawing.Size(0, 0);
     //
     // emptySpaceItem9
     //
     this.emptySpaceItem9.CustomizationFormText = "emptySpaceItem9";
     this.emptySpaceItem9.Location = new System.Drawing.Point(0, 96);
     this.emptySpaceItem9.Name = "emptySpaceItem9";
     this.emptySpaceItem9.Size = new System.Drawing.Size(205, 10);
     this.emptySpaceItem9.Text = "emptySpaceItem9";
     this.emptySpaceItem9.TextSize = new System.Drawing.Size(0, 0);
     //
     // emptySpaceItem8
     //
     this.emptySpaceItem8.CustomizationFormText = "emptySpaceItem7";
     this.emptySpaceItem8.Location = new System.Drawing.Point(29, 70);
     this.emptySpaceItem8.Name = "emptySpaceItem7";
     this.emptySpaceItem8.Size = new System.Drawing.Size(10, 26);
     this.emptySpaceItem8.Text = "emptySpaceItem7";
     this.emptySpaceItem8.TextSize = new System.Drawing.Size(0, 0);
     //
     // errorTip
     //
     this.errorTip.CloseOnClick = DevExpress.Utils.DefaultBoolean.True;
     this.errorTip.Rounded = true;
     this.errorTip.ShowBeak = true;
     this.errorTip.ToolTipLocation = DevExpress.Utils.ToolTipLocation.TopRight;
     //
     // Login
     //
     this.AcceptButton = this.loginButton;
     this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 14F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(225, 126);
     this.Controls.Add(this.layoutControl1);
     this.ImeMode = System.Windows.Forms.ImeMode.Disable;
     this.MaximizeBox = false;
     this.Name = "Login";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "Login";
     ((System.ComponentModel.ISupportInitialize)(this.layoutControl1)).EndInit();
     this.layoutControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.passwordEdit.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.accountEdit.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem4)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem4)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem5)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem9)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem8)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.loginValidation)).EndInit();
     this.ResumeLayout(false);
 }
Пример #8
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(FormReception));
     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();
     this.gcShowColumns = new DevExpress.XtraEditors.GroupControl();
     this.checkEdit10 = new DevExpress.XtraEditors.CheckEdit();
     this.checkEdit9 = new DevExpress.XtraEditors.CheckEdit();
     this.panel7 = new System.Windows.Forms.Panel();
     this.paDelete = new System.Windows.Forms.Panel();
     this.tbResidue = new DevExpress.XtraEditors.SpinEdit();
     this.tbAmortization = new DevExpress.XtraEditors.SpinEdit();
     this.panel5 = new System.Windows.Forms.Panel();
     this.tbTotalIgv = new DevExpress.XtraEditors.SpinEdit();
     this.tbTotalAmount = new DevExpress.XtraEditors.SpinEdit();
     this.tbSubTotalAmount = new DevExpress.XtraEditors.SpinEdit();
     this.label7 = new System.Windows.Forms.Label();
     this.label5 = new System.Windows.Forms.Label();
     this.label4 = new System.Windows.Forms.Label();
     this.label13 = new System.Windows.Forms.Label();
     this.label10 = new System.Windows.Forms.Label();
     this.panel6 = new System.Windows.Forms.Panel();
     this.gcReception = new DevExpress.XtraGrid.GridControl();
     this.gvReception = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gcRec_idrecep_sample_detail = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcRec_OrderSample = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcRec_Description = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repDescription = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
     this.gcRec_Idmr_detail = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcRec_Type_Sample = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcRec_Procedence = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repProcedence = new DevExpress.XtraEditors.Repository.RepositoryItemButtonEdit();
     this.gcRec_Code = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcRec_Cod_interno = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcRec_NameSample = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcRec_Flag_envelope_sealed = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repEnvelope_sealed = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
     this.gcRec_CantKg = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcRec_Reject = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcRec_Counter_Sample = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcRec_Days = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcRec_Cost = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcDyn1 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repSelect = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
     this.gcDyn2 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcDyn3 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcDyn4 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcDyn5 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcDyn6 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcDyn7 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcDyn8 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcDyn9 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcDyn10 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcDyn11 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcDyn12 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcDyn13 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcDyn14 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcDyn15 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcDyn16 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcDyn17 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcDyn18 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcDyn19 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcDyn20 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcAgua_Code = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcAgua_Cod_interno = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcAgua_Date = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcAgua_Hour = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcAgua_Cod_matrix = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcAgua_Cod_campo = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcAgua_NameSample = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcAgua_Ubigeo = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcAgua_UTM = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcAgua_Num_bottle_plastic = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcAgua_Num_bottle_glass = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcAgua_Volumen = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repResult = new DevExpress.XtraEditors.Repository.RepositoryItemTextEdit();
     this.repSendReport = new DevExpress.XtraEditors.Repository.RepositoryItemButtonEdit();
     this.repLink = new DevExpress.XtraEditors.Repository.RepositoryItemButtonEdit();
     this.repDesLink = new DevExpress.XtraEditors.Repository.RepositoryItemMemoExEdit();
     this.repSample = new DevExpress.XtraEditors.Repository.RepositoryItemButtonEdit();
     this.xtraTabControl1 = new DevExpress.XtraTab.XtraTabControl();
     this.xtraTabPage3 = new DevExpress.XtraTab.XtraTabPage();
     this.tbFax = new DevExpress.XtraEditors.TextEdit();
     this.tbClientPhone = new DevExpress.XtraEditors.TextEdit();
     this.tbClientRuc = new DevExpress.XtraEditors.TextEdit();
     this.tbClientDomicile = new DevExpress.XtraEditors.TextEdit();
     this.label9 = new System.Windows.Forms.Label();
     this.label28 = new System.Windows.Forms.Label();
     this.label11 = new System.Windows.Forms.Label();
     this.label8 = new System.Windows.Forms.Label();
     this.label6 = new System.Windows.Forms.Label();
     this.cbCompany = new LimsProject.MyLookUpEdit();
     this.xtraTabPage6 = new DevExpress.XtraTab.XtraTabPage();
     this.gcContact = new DevExpress.XtraGrid.GridControl();
     this.gvContact = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gcCon_Idrecep_company_person = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcCon_Idperson = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcCon_Idcompany = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcCon_Idrecep_sample = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcCon_Allname = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcCon_Mail = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcCon_Person_type = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repPerson_type = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
     this.gcCon_Phone = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repPhone = new DevExpress.XtraEditors.Repository.RepositoryItemTextEdit();
     this.gcCon_Cellphone = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repCellPhone = new DevExpress.XtraEditors.Repository.RepositoryItemTextEdit();
     this.repNum = new DevExpress.XtraEditors.Repository.RepositoryItemSpinEdit();
     this.xtraTabPage1 = new DevExpress.XtraTab.XtraTabPage();
     this.ckDispatchFax = new DevExpress.XtraEditors.CheckEdit();
     this.ckDispatchPerson = new DevExpress.XtraEditors.CheckEdit();
     this.ckDispatchTransport = new DevExpress.XtraEditors.CheckEdit();
     this.ckDispatchCurier = new DevExpress.XtraEditors.CheckEdit();
     this.expandablePanel1 = new DevComponents.DotNetBar.ExpandablePanel();
     this.tabOptionRight = new DevExpress.XtraTab.XtraTabControl();
     this.tpRightMethods = new DevExpress.XtraTab.XtraTabPage();
     this.lookUpEdit3 = new DevExpress.XtraEditors.LookUpEdit();
     this.gcMethods = new DevExpress.XtraGrid.GridControl();
     this.gvMethods = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gcMet_Cod_template_method = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcMet_Cod_element = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcMet_Abbreviation = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcMet_Name_type_analisys = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcMet_Title = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcMet_TypeAnalisys = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcMet_Button = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repAddColumn = new DevExpress.XtraEditors.Repository.RepositoryItemButtonEdit();
     this.gcMet_Cost = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcMet_Unit1 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcMet_Unit_Name = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcMet_Idelement = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcMet_Idtemplate_method = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcMet_Analisys_time = new DevExpress.XtraGrid.Columns.GridColumn();
     this.textEdit1 = new DevExpress.XtraEditors.TextEdit();
     this.tpRightReports = new DevExpress.XtraTab.XtraTabPage();
     this.gcReport = new DevExpress.XtraGrid.GridControl();
     this.gvReport = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gcRep_idrecep_sample_report = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcRep_order_report = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcRep_cod_recep_sample_report = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcRep_report_status = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repStatusReport = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
     this.gcRep_type_report = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcRep_Option = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repReportOption = new DevExpress.XtraEditors.Repository.RepositoryItemButtonEdit();
     this.gcRep_Str_cod_recep_sample_report = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcRep_Date_report = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repDateReport = new DevExpress.XtraEditors.Repository.RepositoryItemDateEdit();
     this.repTimeReport = new DevExpress.XtraEditors.Repository.RepositoryItemTimeEdit();
     this.repTypeReport = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
     this.groupControl1 = new DevExpress.XtraEditors.GroupControl();
     this.btMakePartialReport = new DevExpress.XtraEditors.SimpleButton();
     this.btMakeFinalReport = new DevExpress.XtraEditors.SimpleButton();
     this.tpRightAttach = new DevExpress.XtraTab.XtraTabPage();
     this.gcAttachFile = new DevExpress.XtraGrid.GridControl();
     this.gvAttachFile = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gcAtt_Iddocument_recep = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcAtt_Idrecep_sample = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcAtt_FileName = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repAttach_file = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
     this.gcAtt_Attach_status = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repAttach_status = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
     this.gcAtt_Buttons = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repButtons = new DevExpress.XtraEditors.Repository.RepositoryItemButtonEdit();
     this.gcAtt_SourcePath = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcAtt_Order_file = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcAtt_Idrecep_sample_attach = new DevExpress.XtraGrid.Columns.GridColumn();
     this.groupControl2 = new DevExpress.XtraEditors.GroupControl();
     this.btNewFile = new DevExpress.XtraEditors.SimpleButton();
     this.tpRightProgram = new DevExpress.XtraTab.XtraTabPage();
     this.gcProgram = new DevExpress.XtraGrid.GridControl();
     this.gvProgram = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gcProg_Idrecep_sample_program = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcProg_Order_report = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcProg_Cod_recep_sample_program = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcProg_Program_status = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repProgramStatus = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
     this.gridColumn6 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repProgramButton = new DevExpress.XtraEditors.Repository.RepositoryItemButtonEdit();
     this.gcProg_Date_report = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repDateProgram = new DevExpress.XtraEditors.Repository.RepositoryItemDateEdit();
     this.gcProg_Time_report = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repTimeProgram = new DevExpress.XtraEditors.Repository.RepositoryItemTimeEdit();
     this.gcProg_Str_cod_recep_sample_program = new DevExpress.XtraGrid.Columns.GridColumn();
     this.groupControl3 = new DevExpress.XtraEditors.GroupControl();
     this.btProgramSelection = new DevExpress.XtraEditors.SimpleButton();
     this.btPrintTicket = new System.Windows.Forms.Button();
     this.btDesignPrint = new System.Windows.Forms.Button();
     this.deReception = new DevExpress.XtraEditors.DateEdit();
     this.label12 = new System.Windows.Forms.Label();
     this.label19 = new System.Windows.Forms.Label();
     this.deResult = new DevExpress.XtraEditors.DateEdit();
     this.xtraTabControl2 = new DevExpress.XtraTab.XtraTabControl();
     this.tabDateRegRecep = new DevExpress.XtraTab.XtraTabPage();
     this.tbNumDays = new DevExpress.XtraEditors.SpinEdit();
     this.deHourResult = new DevExpress.XtraEditors.TimeEdit();
     this.deHourReception = new DevExpress.XtraEditors.TimeEdit();
     this.label27 = new System.Windows.Forms.Label();
     this.lookUpEdit1 = new DevExpress.XtraEditors.LookUpEdit();
     this.textEdit3 = new DevExpress.XtraEditors.TextEdit();
     this.btReportClient = new System.Windows.Forms.Button();
     this.txIdrecep_sample = new DevExpress.XtraEditors.TextEdit();
     this.label25 = new System.Windows.Forms.Label();
     this.cbTypeSample = new LimsProject.MyLookUpEdit();
     this.label26 = new System.Windows.Forms.Label();
     this.ofdRecepFileAttach = new System.Windows.Forms.OpenFileDialog();
     this.toolTipController1 = new DevExpress.Utils.ToolTipController(this.components);
     this.label14 = new System.Windows.Forms.Label();
     this.tbAdministrativeExpense = new DevExpress.XtraEditors.SpinEdit();
     this.tbCod_recep_sample = new DevExpress.XtraEditors.TextEdit();
     this.ucSignReception = new LimsProject.UcSign();
     this.panelControl1 = new DevExpress.XtraEditors.PanelControl();
     this.panel9 = new System.Windows.Forms.Panel();
     this.panel11 = new System.Windows.Forms.Panel();
     this.paTypeSample = new System.Windows.Forms.Panel();
     this.paCodRegisterRecep = new System.Windows.Forms.Panel();
     this.ucTitleRegisterRecep = new LimsProject.UcTitle();
     this.ucToolStrip1 = new LimsProject.UcToolStrip();
     this.contextMenuStrip1 = new System.Windows.Forms.ContextMenuStrip(this.components);
     this.toolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem();
     this.ucGenerarA = new LimsProject.UcGenerar();
     this.ucGenerarDesde = new LimsProject.UcGenerar();
     this.panelControl2 = new DevExpress.XtraEditors.PanelControl();
     this.xtraTabControl3 = new DevExpress.XtraTab.XtraTabControl();
     this.tpMuestras = new DevExpress.XtraTab.XtraTabPage();
     this.panelControl7 = new DevExpress.XtraEditors.PanelControl();
     this.tpAnexos = new DevExpress.XtraTab.XtraTabPage();
     this.checkEdit8 = new DevExpress.XtraEditors.CheckEdit();
     this.memoEdit1 = new DevExpress.XtraEditors.MemoEdit();
     this.checkEdit7 = new DevExpress.XtraEditors.CheckEdit();
     this.groupControl4 = new DevExpress.XtraEditors.GroupControl();
     this.textEdit2 = new DevExpress.XtraEditors.TextEdit();
     this.timeEdit1 = new DevExpress.XtraEditors.TimeEdit();
     this.label17 = new System.Windows.Forms.Label();
     this.label16 = new System.Windows.Forms.Label();
     this.label15 = new System.Windows.Forms.Label();
     this.dateEdit1 = new DevExpress.XtraEditors.DateEdit();
     this.checkEdit6 = new DevExpress.XtraEditors.CheckEdit();
     this.checkEdit5 = new DevExpress.XtraEditors.CheckEdit();
     this.checkEdit4 = new DevExpress.XtraEditors.CheckEdit();
     this.checkEdit3 = new DevExpress.XtraEditors.CheckEdit();
     this.checkEdit2 = new DevExpress.XtraEditors.CheckEdit();
     this.checkEdit1 = new DevExpress.XtraEditors.CheckEdit();
     this.textEdit5 = new DevExpress.XtraEditors.TextEdit();
     this.label21 = new System.Windows.Forms.Label();
     this.label18 = new System.Windows.Forms.Label();
     this.tpReject = new DevExpress.XtraTab.XtraTabPage();
     this.memoEdit2 = new DevExpress.XtraEditors.MemoEdit();
     this.label20 = new System.Windows.Forms.Label();
     this.gcRejection = new DevExpress.XtraGrid.GridControl();
     this.bandedGridView1 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridView();
     this.gridBand1 = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
     this.gcRej_Code = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.gcRej_NameSample = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.gcRej_Date = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.gcRej_Hora = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.gcRej_Obs = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.gridBand2 = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
     this.gcRej_C1 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.gcRej_C2 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.gcRej_C3 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.gcRej_C4 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.tpDecree = new DevExpress.XtraTab.XtraTabPage();
     this.panelControl4 = new DevExpress.XtraEditors.PanelControl();
     this.xtraTabControl4 = new DevExpress.XtraTab.XtraTabControl();
     this.xtraTabPage4 = new DevExpress.XtraTab.XtraTabPage();
     this.gridDecretos = new DevExpress.XtraGrid.GridControl();
     this.gridView1 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gcDec_Idmetodo = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repMetodo = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
     this.gcDec_Parametro = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcDec_Unidad_medida = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repUnidadMedida = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
     this.gcDec_Result = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcDec_Criterio = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repCriterio = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
     this.gcDec_Valor1 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcDec_Valor2 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcDec_Conclusion = new DevExpress.XtraGrid.Columns.GridColumn();
     this.panelControl5 = new DevExpress.XtraEditors.PanelControl();
     this.memoEdit3 = new DevExpress.XtraEditors.MemoEdit();
     this.label23 = new System.Windows.Forms.Label();
     this.label24 = new System.Windows.Forms.Label();
     this.label29 = new System.Windows.Forms.Label();
     this.textEdit4 = new DevExpress.XtraEditors.TextEdit();
     this.textEdit6 = new DevExpress.XtraEditors.TextEdit();
     this.panelControl6 = new DevExpress.XtraEditors.PanelControl();
     this.memoEdit4 = new DevExpress.XtraEditors.MemoEdit();
     this.label22 = new System.Windows.Forms.Label();
     this.xtraTabPage5 = new DevExpress.XtraTab.XtraTabPage();
     this.xtraTabPage7 = new DevExpress.XtraTab.XtraTabPage();
     this.panelControl3 = new DevExpress.XtraEditors.PanelControl();
     this.lookUpEdit2 = new DevExpress.XtraEditors.LookUpEdit();
     this.label31 = new System.Windows.Forms.Label();
     this.paTitleSearch.SuspendLayout();
     this.paTopBasicButtons.SuspendLayout();
     this.paTopSearch.SuspendLayout();
     this.paBottomSearch.SuspendLayout();
     this.panel1.SuspendLayout();
     this.paSearchGen.SuspendLayout();
     this.panel2.SuspendLayout();
     this.paInferior.SuspendLayout();
     this.paTitulo.SuspendLayout();
     this.paCentral.SuspendLayout();
     this.paSuperior.SuspendLayout();
     this.thePanelTab1.SuspendLayout();
     this.tpDatos.SuspendLayout();
     this.paSupBotones.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gcShowColumns)).BeginInit();
     this.gcShowColumns.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit10.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit9.Properties)).BeginInit();
     this.panel7.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.tbResidue.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.tbAmortization.Properties)).BeginInit();
     this.panel5.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.tbTotalIgv.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.tbTotalAmount.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.tbSubTotalAmount.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gcReception)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvReception)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repDescription)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repProcedence)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repEnvelope_sealed)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repSelect)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repResult)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repSendReport)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repLink)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repDesLink)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repSample)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.xtraTabControl1)).BeginInit();
     this.xtraTabControl1.SuspendLayout();
     this.xtraTabPage3.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.tbFax.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.tbClientPhone.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.tbClientRuc.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.tbClientDomicile.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cbCompany.Properties)).BeginInit();
     this.xtraTabPage6.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gcContact)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvContact)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repPerson_type)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repPhone)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repCellPhone)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repNum)).BeginInit();
     this.xtraTabPage1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.ckDispatchFax.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ckDispatchPerson.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ckDispatchTransport.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ckDispatchCurier.Properties)).BeginInit();
     this.expandablePanel1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.tabOptionRight)).BeginInit();
     this.tabOptionRight.SuspendLayout();
     this.tpRightMethods.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.lookUpEdit3.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gcMethods)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvMethods)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repAddColumn)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.textEdit1.Properties)).BeginInit();
     this.tpRightReports.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gcReport)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvReport)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repStatusReport)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repReportOption)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repDateReport)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repTimeReport)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repTypeReport)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).BeginInit();
     this.groupControl1.SuspendLayout();
     this.tpRightAttach.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gcAttachFile)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvAttachFile)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repAttach_file)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repAttach_status)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repButtons)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl2)).BeginInit();
     this.groupControl2.SuspendLayout();
     this.tpRightProgram.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gcProgram)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvProgram)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repProgramStatus)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repProgramButton)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repDateProgram)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repTimeProgram)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl3)).BeginInit();
     this.groupControl3.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.deReception.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.deResult.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.xtraTabControl2)).BeginInit();
     this.xtraTabControl2.SuspendLayout();
     this.tabDateRegRecep.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.tbNumDays.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.deHourResult.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.deHourReception.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lookUpEdit1.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.textEdit3.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txIdrecep_sample.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cbTypeSample.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.tbAdministrativeExpense.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.tbCod_recep_sample.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).BeginInit();
     this.panelControl1.SuspendLayout();
     this.panel9.SuspendLayout();
     this.panel11.SuspendLayout();
     this.paTypeSample.SuspendLayout();
     this.paCodRegisterRecep.SuspendLayout();
     this.contextMenuStrip1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl2)).BeginInit();
     this.panelControl2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.xtraTabControl3)).BeginInit();
     this.xtraTabControl3.SuspendLayout();
     this.tpMuestras.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl7)).BeginInit();
     this.panelControl7.SuspendLayout();
     this.tpAnexos.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit8.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.memoEdit1.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit7.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl4)).BeginInit();
     this.groupControl4.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.textEdit2.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.timeEdit1.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dateEdit1.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit6.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit5.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit4.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit3.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit2.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit1.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.textEdit5.Properties)).BeginInit();
     this.tpReject.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.memoEdit2.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gcRejection)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.bandedGridView1)).BeginInit();
     this.tpDecree.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl4)).BeginInit();
     this.panelControl4.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.xtraTabControl4)).BeginInit();
     this.xtraTabControl4.SuspendLayout();
     this.xtraTabPage4.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridDecretos)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repMetodo)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repUnidadMedida)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repCriterio)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl5)).BeginInit();
     this.panelControl5.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.memoEdit3.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.textEdit4.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.textEdit6.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl6)).BeginInit();
     this.panelControl6.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.memoEdit4.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl3)).BeginInit();
     this.panelControl3.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.lookUpEdit2.Properties)).BeginInit();
     this.SuspendLayout();
     //
     // imageList1
     //
     this.imageList1.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageList1.ImageStream")));
     this.imageList1.Images.SetKeyName(0, "save.png");
     this.imageList1.Images.SetKeyName(1, "nuevo.png");
     this.imageList1.Images.SetKeyName(2, "eliminar.png");
     this.imageList1.Images.SetKeyName(3, "buscar.png");
     this.imageList1.Images.SetKeyName(4, "salir.png");
     this.imageList1.Images.SetKeyName(5, "cancelar.png");
     this.imageList1.Images.SetKeyName(6, "ok.png");
     this.imageList1.Images.SetKeyName(7, "deshacer.png");
     this.imageList1.Images.SetKeyName(8, "editar.png");
     this.imageList1.Images.SetKeyName(9, "uncheck16x16.png");
     this.imageList1.Images.SetKeyName(10, "check16x16.png");
     this.imageList1.Images.SetKeyName(11, "stock-copy.png");
     this.imageList1.Images.SetKeyName(12, "copy_blusky.png");
     this.imageList1.Images.SetKeyName(13, "copy_price.png");
     //
     // paTitleSearch
     //
     this.paTitleSearch.Size = new System.Drawing.Size(526, 37);
     //
     // label1
     //
     this.label1.Size = new System.Drawing.Size(443, 37);
     this.label1.Text = "Recepción de Muestras - Búsqueda";
     //
     // txtBuscar
     //
     this.txtBuscar.Location = new System.Drawing.Point(774, 56);
     this.txtBuscar.Size = new System.Drawing.Size(40, 21);
     this.txtBuscar.Visible = false;
     //
     // cbCampo
     //
     this.cbCampo.Location = new System.Drawing.Point(872, 56);
     this.cbCampo.Size = new System.Drawing.Size(35, 21);
     this.cbCampo.Visible = false;
     //
     // paTopBasicButtons
     //
     this.paTopBasicButtons.Controls.Add(this.ucGenerarDesde);
     this.paTopBasicButtons.Controls.Add(this.ucGenerarA);
     this.paTopBasicButtons.Controls.Add(this.ucSignReception);
     this.paTopBasicButtons.Size = new System.Drawing.Size(714, 46);
     this.paTopBasicButtons.Controls.SetChildIndex(this.btEliminar2, 0);
     this.paTopBasicButtons.Controls.SetChildIndex(this.btNuevo2, 0);
     this.paTopBasicButtons.Controls.SetChildIndex(this.btGuardar, 0);
     this.paTopBasicButtons.Controls.SetChildIndex(this.ucSignReception, 0);
     this.paTopBasicButtons.Controls.SetChildIndex(this.ucGenerarA, 0);
     this.paTopBasicButtons.Controls.SetChildIndex(this.ucGenerarDesde, 0);
     //
     // btSalir2
     //
     this.btSalir2.FlatAppearance.BorderColor = System.Drawing.SystemColors.Control;
     this.btSalir2.FlatAppearance.BorderSize = 0;
     this.btSalir2.Location = new System.Drawing.Point(10, 5);
     this.btSalir2.TabStop = false;
     //
     // btGuardar
     //
     this.btGuardar.Enabled = false;
     this.btGuardar.FlatAppearance.BorderColor = System.Drawing.SystemColors.Control;
     this.btGuardar.FlatAppearance.BorderSize = 0;
     this.btGuardar.Location = new System.Drawing.Point(138, 4);
     this.btGuardar.Size = new System.Drawing.Size(62, 25);
     this.btGuardar.Text = "&Firmar";
     this.btGuardar.Visible = false;
     //
     // btNuevo2
     //
     this.btNuevo2.FlatAppearance.BorderColor = System.Drawing.SystemColors.Control;
     this.btNuevo2.FlatAppearance.BorderSize = 0;
     this.btNuevo2.Location = new System.Drawing.Point(151, 10);
     this.btNuevo2.Visible = false;
     //
     // btEliminar2
     //
     this.btEliminar2.FlatAppearance.BorderColor = System.Drawing.SystemColors.Control;
     this.btEliminar2.FlatAppearance.BorderSize = 0;
     this.btEliminar2.Location = new System.Drawing.Point(138, 21);
     this.btEliminar2.Visible = false;
     //
     // paTopSearch
     //
     this.paTopSearch.Size = new System.Drawing.Size(526, 53);
     //
     // paBottomSearch
     //
     this.paBottomSearch.Location = new System.Drawing.Point(3, 201);
     this.paBottomSearch.Size = new System.Drawing.Size(526, 43);
     this.paBottomSearch.Visible = false;
     //
     // btBuscar
     //
     this.btBuscar.FlatAppearance.BorderColor = System.Drawing.SystemColors.Control;
     this.btBuscar.FlatAppearance.BorderSize = 0;
     this.btBuscar.Location = new System.Drawing.Point(12, 2);
     //
     // btEditar
     //
     this.btEditar.FlatAppearance.BorderColor = System.Drawing.SystemColors.Control;
     this.btEditar.FlatAppearance.BorderSize = 0;
     //
     // btCancel
     //
     this.btCancel.FlatAppearance.BorderColor = System.Drawing.SystemColors.Control;
     this.btCancel.FlatAppearance.BorderSize = 0;
     //
     // btOk
     //
     this.btOk.FlatAppearance.BorderColor = System.Drawing.SystemColors.Control;
     this.btOk.FlatAppearance.BorderSize = 0;
     //
     // panel1
     //
     this.panel1.Location = new System.Drawing.Point(927, 0);
     this.panel1.Size = new System.Drawing.Size(72, 46);
     //
     // btFiltroBuscar
     //
     this.btFiltroBuscar.FlatAppearance.BorderColor = System.Drawing.SystemColors.Control;
     this.btFiltroBuscar.FlatAppearance.BorderSize = 0;
     this.btFiltroBuscar.Location = new System.Drawing.Point(495, 17);
     //
     // paSearchGen
     //
     this.paSearchGen.Location = new System.Drawing.Point(5, 2);
     this.paSearchGen.Size = new System.Drawing.Size(930, 49);
     //
     // label3
     //
     this.label3.Location = new System.Drawing.Point(823, 58);
     this.label3.Visible = false;
     //
     // label2
     //
     this.label2.Location = new System.Drawing.Point(656, 52);
     this.label2.Visible = false;
     //
     // paMiddleFind
     //
     this.paMiddleFind.Location = new System.Drawing.Point(3, 93);
     this.paMiddleFind.Size = new System.Drawing.Size(526, 108);
     //
     // panel2
     //
     this.panel2.Dock = System.Windows.Forms.DockStyle.None;
     this.panel2.Size = new System.Drawing.Size(74, 21);
     //
     // paInferior
     //
     this.paInferior.Controls.Add(this.btReportClient);
     this.paInferior.Controls.Add(this.btDesignPrint);
     this.paInferior.Controls.Add(this.btPrintTicket);
     this.paInferior.Location = new System.Drawing.Point(3, 559);
     this.paInferior.Size = new System.Drawing.Size(999, 46);
     this.paInferior.Controls.SetChildIndex(this.panel1, 0);
     this.paInferior.Controls.SetChildIndex(this.paTopBasicButtons, 0);
     this.paInferior.Controls.SetChildIndex(this.btPrintTicket, 0);
     this.paInferior.Controls.SetChildIndex(this.btDesignPrint, 0);
     this.paInferior.Controls.SetChildIndex(this.btReportClient, 0);
     //
     // paTitulo
     //
     this.paTitulo.Controls.Add(this.ucTitleRegisterRecep);
     this.paTitulo.Size = new System.Drawing.Size(999, 27);
     this.paTitulo.Visible = false;
     this.paTitulo.Controls.SetChildIndex(this.panel2, 0);
     this.paTitulo.Controls.SetChildIndex(this.laTitulo, 0);
     this.paTitulo.Controls.SetChildIndex(this.ucTitleRegisterRecep, 0);
     //
     // paCentral
     //
     this.paCentral.Controls.Add(this.panelControl2);
     this.paCentral.Location = new System.Drawing.Point(3, 176);
     this.paCentral.Size = new System.Drawing.Size(999, 383);
     //
     // paSuperior
     //
     this.paSuperior.BorderStyle = System.Windows.Forms.BorderStyle.None;
     this.paSuperior.Controls.Add(this.panelControl1);
     this.paSuperior.Location = new System.Drawing.Point(3, 30);
     this.paSuperior.Size = new System.Drawing.Size(999, 146);
     //
     // laTitulo
     //
     this.laTitulo.Dock = System.Windows.Forms.DockStyle.None;
     this.laTitulo.Size = new System.Drawing.Size(602, 27);
     this.laTitulo.Text = "Registro de Recepción";
     //
     // thePanelTab1
     //
     this.thePanelTab1.Location = new System.Drawing.Point(0, 25);
     this.thePanelTab1.Size = new System.Drawing.Size(1013, 637);
     //
     // tpDatos
     //
     this.tpDatos.Size = new System.Drawing.Size(1005, 608);
     //
     // paSupBotones
     //
     this.paSupBotones.Controls.Add(this.ucToolStrip1);
     this.paSupBotones.Padding = new System.Windows.Forms.Padding(0);
     this.paSupBotones.Size = new System.Drawing.Size(1013, 25);
     this.paSupBotones.Visible = true;
     //
     // gcShowColumns
     //
     this.gcShowColumns.Controls.Add(this.checkEdit10);
     this.gcShowColumns.Controls.Add(this.checkEdit9);
     this.gcShowColumns.Location = new System.Drawing.Point(230, 8);
     this.gcShowColumns.Name = "gcShowColumns";
     this.gcShowColumns.Size = new System.Drawing.Size(176, 46);
     this.gcShowColumns.TabIndex = 24;
     this.gcShowColumns.Text = "Mostrar columnas";
     //
     // checkEdit10
     //
     this.checkEdit10.Location = new System.Drawing.Point(96, 21);
     this.checkEdit10.Name = "checkEdit10";
     this.checkEdit10.Properties.Caption = "Métodos";
     this.checkEdit10.Size = new System.Drawing.Size(75, 19);
     this.checkEdit10.TabIndex = 23;
     //
     // checkEdit9
     //
     this.checkEdit9.Location = new System.Drawing.Point(15, 21);
     this.checkEdit9.Name = "checkEdit9";
     this.checkEdit9.Properties.Caption = "Datos";
     this.checkEdit9.Size = new System.Drawing.Size(75, 19);
     this.checkEdit9.TabIndex = 23;
     //
     // panel7
     //
     this.panel7.Controls.Add(this.paDelete);
     this.panel7.Dock = System.Windows.Forms.DockStyle.Right;
     this.panel7.Location = new System.Drawing.Point(492, 2);
     this.panel7.Name = "panel7";
     this.panel7.Size = new System.Drawing.Size(53, 66);
     this.panel7.TabIndex = 22;
     //
     // paDelete
     //
     this.paDelete.AllowDrop = true;
     this.paDelete.Anchor = System.Windows.Forms.AnchorStyles.Right;
     this.paDelete.BackgroundImage = global::LimsProject.Properties.Resources.delete_column;
     this.paDelete.Location = new System.Drawing.Point(19, 2);
     this.paDelete.Name = "paDelete";
     this.paDelete.Size = new System.Drawing.Size(31, 32);
     this.paDelete.TabIndex = 21;
     this.paDelete.DragDrop += new System.Windows.Forms.DragEventHandler(this.paDelete_DragDrop);
     this.paDelete.DragEnter += new System.Windows.Forms.DragEventHandler(this.paDelete_DragEnter);
     //
     // tbResidue
     //
     this.tbResidue.EditValue = new decimal(new int[] {
     0,
     0,
     0,
     0});
     this.tbResidue.Location = new System.Drawing.Point(82, 25);
     this.tbResidue.Name = "tbResidue";
     this.tbResidue.Properties.Appearance.BackColor = System.Drawing.Color.LemonChiffon;
     this.tbResidue.Properties.Appearance.Options.UseBackColor = true;
     this.tbResidue.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Ellipsis, "", -1, true, false, false, DevExpress.Utils.HorzAlignment.Center, null)});
     this.tbResidue.Properties.Mask.EditMask = "n2";
     this.tbResidue.Size = new System.Drawing.Size(87, 20);
     this.tbResidue.TabIndex = 17;
     //
     // tbAmortization
     //
     this.tbAmortization.EditValue = new decimal(new int[] {
     0,
     0,
     0,
     0});
     this.tbAmortization.Location = new System.Drawing.Point(82, 5);
     this.tbAmortization.Name = "tbAmortization";
     this.tbAmortization.Properties.Appearance.BackColor = System.Drawing.Color.LemonChiffon;
     this.tbAmortization.Properties.Appearance.Options.UseBackColor = true;
     this.tbAmortization.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Ellipsis, "", -1, true, false, false, DevExpress.Utils.HorzAlignment.Center, null)});
     this.tbAmortization.Properties.Mask.EditMask = "n2";
     this.tbAmortization.Size = new System.Drawing.Size(87, 20);
     this.tbAmortization.TabIndex = 17;
     this.tbAmortization.EditValueChanged += new System.EventHandler(this.tbAmortization_EditValueChanged);
     //
     // panel5
     //
     this.panel5.Controls.Add(this.tbTotalIgv);
     this.panel5.Controls.Add(this.tbTotalAmount);
     this.panel5.Controls.Add(this.tbSubTotalAmount);
     this.panel5.Controls.Add(this.label7);
     this.panel5.Controls.Add(this.label5);
     this.panel5.Controls.Add(this.label4);
     this.panel5.Dock = System.Windows.Forms.DockStyle.Right;
     this.panel5.Location = new System.Drawing.Point(545, 2);
     this.panel5.Name = "panel5";
     this.panel5.Size = new System.Drawing.Size(152, 66);
     this.panel5.TabIndex = 22;
     //
     // tbTotalIgv
     //
     this.tbTotalIgv.EditValue = new decimal(new int[] {
     0,
     0,
     0,
     0});
     this.tbTotalIgv.Location = new System.Drawing.Point(58, 23);
     this.tbTotalIgv.Name = "tbTotalIgv";
     this.tbTotalIgv.Properties.Appearance.BackColor = System.Drawing.Color.LemonChiffon;
     this.tbTotalIgv.Properties.Appearance.Options.UseBackColor = true;
     this.tbTotalIgv.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Ellipsis, "", -1, true, false, false, DevExpress.Utils.HorzAlignment.Center, null)});
     this.tbTotalIgv.Properties.Mask.EditMask = "n2";
     this.tbTotalIgv.Properties.ReadOnly = true;
     this.tbTotalIgv.Size = new System.Drawing.Size(87, 20);
     this.tbTotalIgv.TabIndex = 17;
     this.tbTotalIgv.TabStop = false;
     //
     // tbTotalAmount
     //
     this.tbTotalAmount.EditValue = new decimal(new int[] {
     0,
     0,
     0,
     0});
     this.tbTotalAmount.Location = new System.Drawing.Point(58, 43);
     this.tbTotalAmount.Name = "tbTotalAmount";
     this.tbTotalAmount.Properties.Appearance.BackColor = System.Drawing.Color.LemonChiffon;
     this.tbTotalAmount.Properties.Appearance.Options.UseBackColor = true;
     this.tbTotalAmount.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Ellipsis, "", -1, true, false, false, DevExpress.Utils.HorzAlignment.Center, null)});
     this.tbTotalAmount.Properties.Mask.EditMask = "n2";
     this.tbTotalAmount.Properties.ReadOnly = true;
     this.tbTotalAmount.Size = new System.Drawing.Size(87, 20);
     this.tbTotalAmount.TabIndex = 17;
     this.tbTotalAmount.TabStop = false;
     //
     // tbSubTotalAmount
     //
     this.tbSubTotalAmount.EditValue = new decimal(new int[] {
     0,
     0,
     0,
     0});
     this.tbSubTotalAmount.Location = new System.Drawing.Point(58, 3);
     this.tbSubTotalAmount.Name = "tbSubTotalAmount";
     this.tbSubTotalAmount.Properties.Appearance.BackColor = System.Drawing.Color.LemonChiffon;
     this.tbSubTotalAmount.Properties.Appearance.Options.UseBackColor = true;
     this.tbSubTotalAmount.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Ellipsis, "", -1, true, false, false, DevExpress.Utils.HorzAlignment.Center, null)});
     this.tbSubTotalAmount.Properties.Mask.EditMask = "n2";
     this.tbSubTotalAmount.Properties.ReadOnly = true;
     this.tbSubTotalAmount.Size = new System.Drawing.Size(87, 20);
     this.tbSubTotalAmount.TabIndex = 17;
     this.tbSubTotalAmount.TabStop = false;
     //
     // label7
     //
     this.label7.AutoSize = true;
     this.label7.Location = new System.Drawing.Point(6, 46);
     this.label7.Name = "label7";
     this.label7.Size = new System.Drawing.Size(34, 13);
     this.label7.TabIndex = 16;
     this.label7.Text = "Total:";
     //
     // label5
     //
     this.label5.AutoSize = true;
     this.label5.Location = new System.Drawing.Point(6, 26);
     this.label5.Name = "label5";
     this.label5.Size = new System.Drawing.Size(25, 13);
     this.label5.TabIndex = 16;
     this.label5.Text = "Igv:";
     //
     // label4
     //
     this.label4.AutoSize = true;
     this.label4.Location = new System.Drawing.Point(6, 6);
     this.label4.Name = "label4";
     this.label4.Size = new System.Drawing.Size(52, 13);
     this.label4.TabIndex = 16;
     this.label4.Text = "Sub total:";
     //
     // label13
     //
     this.label13.AutoSize = true;
     this.label13.Location = new System.Drawing.Point(10, 8);
     this.label13.Name = "label13";
     this.label13.Size = new System.Drawing.Size(70, 13);
     this.label13.TabIndex = 16;
     this.label13.Text = "Amortización:";
     //
     // label10
     //
     this.label10.AutoSize = true;
     this.label10.Location = new System.Drawing.Point(12, 28);
     this.label10.Name = "label10";
     this.label10.Size = new System.Drawing.Size(37, 13);
     this.label10.TabIndex = 16;
     this.label10.Text = "Saldo:";
     //
     // panel6
     //
     this.panel6.Dock = System.Windows.Forms.DockStyle.Right;
     this.panel6.Location = new System.Drawing.Point(542, 0);
     this.panel6.Name = "panel6";
     this.panel6.Size = new System.Drawing.Size(191, 77);
     this.panel6.TabIndex = 3;
     //
     // gcReception
     //
     this.gcReception.Dock = System.Windows.Forms.DockStyle.Fill;
     this.gcReception.EmbeddedNavigator.Buttons.First.Visible = false;
     this.gcReception.EmbeddedNavigator.Buttons.Last.Visible = false;
     this.gcReception.EmbeddedNavigator.Buttons.NextPage.Visible = false;
     this.gcReception.EmbeddedNavigator.Buttons.PrevPage.Visible = false;
     this.gcReception.EmbeddedNavigator.Enabled = false;
     this.gcReception.EmbeddedNavigator.Name = "";
     this.gcReception.Location = new System.Drawing.Point(0, 0);
     this.gcReception.MainView = this.gvReception;
     this.gcReception.Name = "gcReception";
     this.gcReception.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.repDescription,
     this.repSelect,
     this.repResult,
     this.repSendReport,
     this.repLink,
     this.repDesLink,
     this.repProcedence,
     this.repSample,
     this.repEnvelope_sealed});
     this.gcReception.Size = new System.Drawing.Size(699, 288);
     this.gcReception.TabIndex = 1;
     this.gcReception.UseEmbeddedNavigator = true;
     this.gcReception.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gvReception});
     this.gcReception.MouseDown += new System.Windows.Forms.MouseEventHandler(this.gcReception_MouseDown);
     this.gcReception.MouseMove += new System.Windows.Forms.MouseEventHandler(this.gcReception_MouseMove);
     //
     // gvReception
     //
     this.gvReception.Appearance.ColumnFilterButton.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(236)))), ((int)(((byte)(254)))));
     this.gvReception.Appearance.ColumnFilterButton.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(132)))), ((int)(((byte)(171)))), ((int)(((byte)(228)))));
     this.gvReception.Appearance.ColumnFilterButton.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(236)))), ((int)(((byte)(254)))));
     this.gvReception.Appearance.ColumnFilterButton.ForeColor = System.Drawing.Color.Black;
     this.gvReception.Appearance.ColumnFilterButton.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
     this.gvReception.Appearance.ColumnFilterButton.Options.UseBackColor = true;
     this.gvReception.Appearance.ColumnFilterButton.Options.UseBorderColor = true;
     this.gvReception.Appearance.ColumnFilterButton.Options.UseForeColor = true;
     this.gvReception.Appearance.ColumnFilterButtonActive.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(247)))), ((int)(((byte)(251)))), ((int)(((byte)(255)))));
     this.gvReception.Appearance.ColumnFilterButtonActive.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(154)))), ((int)(((byte)(190)))), ((int)(((byte)(243)))));
     this.gvReception.Appearance.ColumnFilterButtonActive.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(247)))), ((int)(((byte)(251)))), ((int)(((byte)(255)))));
     this.gvReception.Appearance.ColumnFilterButtonActive.ForeColor = System.Drawing.Color.Black;
     this.gvReception.Appearance.ColumnFilterButtonActive.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
     this.gvReception.Appearance.ColumnFilterButtonActive.Options.UseBackColor = true;
     this.gvReception.Appearance.ColumnFilterButtonActive.Options.UseBorderColor = true;
     this.gvReception.Appearance.ColumnFilterButtonActive.Options.UseForeColor = true;
     this.gvReception.Appearance.Empty.BackColor = System.Drawing.Color.White;
     this.gvReception.Appearance.Empty.Options.UseBackColor = true;
     this.gvReception.Appearance.EvenRow.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(231)))), ((int)(((byte)(242)))), ((int)(((byte)(254)))));
     this.gvReception.Appearance.EvenRow.ForeColor = System.Drawing.Color.Black;
     this.gvReception.Appearance.EvenRow.Options.UseBackColor = true;
     this.gvReception.Appearance.EvenRow.Options.UseForeColor = true;
     this.gvReception.Appearance.FilterCloseButton.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(236)))), ((int)(((byte)(254)))));
     this.gvReception.Appearance.FilterCloseButton.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(132)))), ((int)(((byte)(171)))), ((int)(((byte)(228)))));
     this.gvReception.Appearance.FilterCloseButton.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(236)))), ((int)(((byte)(254)))));
     this.gvReception.Appearance.FilterCloseButton.ForeColor = System.Drawing.Color.Black;
     this.gvReception.Appearance.FilterCloseButton.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
     this.gvReception.Appearance.FilterCloseButton.Options.UseBackColor = true;
     this.gvReception.Appearance.FilterCloseButton.Options.UseBorderColor = true;
     this.gvReception.Appearance.FilterCloseButton.Options.UseForeColor = true;
     this.gvReception.Appearance.FilterPanel.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(62)))), ((int)(((byte)(109)))), ((int)(((byte)(185)))));
     this.gvReception.Appearance.FilterPanel.ForeColor = System.Drawing.Color.White;
     this.gvReception.Appearance.FilterPanel.Options.UseBackColor = true;
     this.gvReception.Appearance.FilterPanel.Options.UseForeColor = true;
     this.gvReception.Appearance.FixedLine.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(59)))), ((int)(((byte)(97)))), ((int)(((byte)(156)))));
     this.gvReception.Appearance.FixedLine.Options.UseBackColor = true;
     this.gvReception.Appearance.FocusedCell.BackColor = System.Drawing.Color.White;
     this.gvReception.Appearance.FocusedCell.ForeColor = System.Drawing.Color.Black;
     this.gvReception.Appearance.FocusedCell.Options.UseBackColor = true;
     this.gvReception.Appearance.FocusedCell.Options.UseForeColor = true;
     this.gvReception.Appearance.FocusedRow.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(49)))), ((int)(((byte)(106)))), ((int)(((byte)(197)))));
     this.gvReception.Appearance.FocusedRow.ForeColor = System.Drawing.Color.White;
     this.gvReception.Appearance.FocusedRow.Options.UseBackColor = true;
     this.gvReception.Appearance.FocusedRow.Options.UseForeColor = true;
     this.gvReception.Appearance.FooterPanel.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(236)))), ((int)(((byte)(254)))));
     this.gvReception.Appearance.FooterPanel.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(132)))), ((int)(((byte)(171)))), ((int)(((byte)(228)))));
     this.gvReception.Appearance.FooterPanel.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(236)))), ((int)(((byte)(254)))));
     this.gvReception.Appearance.FooterPanel.ForeColor = System.Drawing.Color.Black;
     this.gvReception.Appearance.FooterPanel.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
     this.gvReception.Appearance.FooterPanel.Options.UseBackColor = true;
     this.gvReception.Appearance.FooterPanel.Options.UseBorderColor = true;
     this.gvReception.Appearance.FooterPanel.Options.UseForeColor = true;
     this.gvReception.Appearance.GroupButton.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(193)))), ((int)(((byte)(216)))), ((int)(((byte)(247)))));
     this.gvReception.Appearance.GroupButton.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(193)))), ((int)(((byte)(216)))), ((int)(((byte)(247)))));
     this.gvReception.Appearance.GroupButton.ForeColor = System.Drawing.Color.Black;
     this.gvReception.Appearance.GroupButton.Options.UseBackColor = true;
     this.gvReception.Appearance.GroupButton.Options.UseBorderColor = true;
     this.gvReception.Appearance.GroupButton.Options.UseForeColor = true;
     this.gvReception.Appearance.GroupFooter.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(193)))), ((int)(((byte)(216)))), ((int)(((byte)(247)))));
     this.gvReception.Appearance.GroupFooter.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(193)))), ((int)(((byte)(216)))), ((int)(((byte)(247)))));
     this.gvReception.Appearance.GroupFooter.ForeColor = System.Drawing.Color.Black;
     this.gvReception.Appearance.GroupFooter.Options.UseBackColor = true;
     this.gvReception.Appearance.GroupFooter.Options.UseBorderColor = true;
     this.gvReception.Appearance.GroupFooter.Options.UseForeColor = true;
     this.gvReception.Appearance.GroupPanel.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(62)))), ((int)(((byte)(109)))), ((int)(((byte)(185)))));
     this.gvReception.Appearance.GroupPanel.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(236)))), ((int)(((byte)(254)))));
     this.gvReception.Appearance.GroupPanel.Options.UseBackColor = true;
     this.gvReception.Appearance.GroupPanel.Options.UseForeColor = true;
     this.gvReception.Appearance.GroupRow.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(193)))), ((int)(((byte)(216)))), ((int)(((byte)(247)))));
     this.gvReception.Appearance.GroupRow.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(193)))), ((int)(((byte)(216)))), ((int)(((byte)(247)))));
     this.gvReception.Appearance.GroupRow.Font = new System.Drawing.Font("Tahoma", 8F, System.Drawing.FontStyle.Bold);
     this.gvReception.Appearance.GroupRow.ForeColor = System.Drawing.Color.Black;
     this.gvReception.Appearance.GroupRow.Options.UseBackColor = true;
     this.gvReception.Appearance.GroupRow.Options.UseBorderColor = true;
     this.gvReception.Appearance.GroupRow.Options.UseFont = true;
     this.gvReception.Appearance.GroupRow.Options.UseForeColor = true;
     this.gvReception.Appearance.HeaderPanel.BackColor = System.Drawing.Color.LightSteelBlue;
     this.gvReception.Appearance.HeaderPanel.BackColor2 = System.Drawing.Color.LightSteelBlue;
     this.gvReception.Appearance.HeaderPanel.Options.UseBackColor = true;
     this.gvReception.Appearance.HideSelectionRow.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(106)))), ((int)(((byte)(153)))), ((int)(((byte)(228)))));
     this.gvReception.Appearance.HideSelectionRow.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(208)))), ((int)(((byte)(224)))), ((int)(((byte)(251)))));
     this.gvReception.Appearance.HideSelectionRow.Options.UseBackColor = true;
     this.gvReception.Appearance.HideSelectionRow.Options.UseForeColor = true;
     this.gvReception.Appearance.HorzLine.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(99)))), ((int)(((byte)(127)))), ((int)(((byte)(196)))));
     this.gvReception.Appearance.HorzLine.Options.UseBackColor = true;
     this.gvReception.Appearance.OddRow.BackColor = System.Drawing.Color.White;
     this.gvReception.Appearance.OddRow.ForeColor = System.Drawing.Color.Black;
     this.gvReception.Appearance.OddRow.Options.UseBackColor = true;
     this.gvReception.Appearance.OddRow.Options.UseForeColor = true;
     this.gvReception.Appearance.Preview.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(249)))), ((int)(((byte)(252)))), ((int)(((byte)(255)))));
     this.gvReception.Appearance.Preview.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(88)))), ((int)(((byte)(129)))), ((int)(((byte)(185)))));
     this.gvReception.Appearance.Preview.Options.UseBackColor = true;
     this.gvReception.Appearance.Preview.Options.UseForeColor = true;
     this.gvReception.Appearance.Row.BackColor = System.Drawing.Color.White;
     this.gvReception.Appearance.Row.ForeColor = System.Drawing.Color.Black;
     this.gvReception.Appearance.Row.Options.UseBackColor = true;
     this.gvReception.Appearance.Row.Options.UseForeColor = true;
     this.gvReception.Appearance.RowSeparator.BackColor = System.Drawing.Color.White;
     this.gvReception.Appearance.RowSeparator.Options.UseBackColor = true;
     this.gvReception.Appearance.SelectedRow.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(69)))), ((int)(((byte)(126)))), ((int)(((byte)(217)))));
     this.gvReception.Appearance.SelectedRow.ForeColor = System.Drawing.Color.White;
     this.gvReception.Appearance.SelectedRow.Options.UseBackColor = true;
     this.gvReception.Appearance.SelectedRow.Options.UseForeColor = true;
     this.gvReception.Appearance.VertLine.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(99)))), ((int)(((byte)(127)))), ((int)(((byte)(196)))));
     this.gvReception.Appearance.VertLine.Options.UseBackColor = true;
     this.gvReception.ColumnPanelRowHeight = 125;
     this.gvReception.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gcRec_idrecep_sample_detail,
     this.gcRec_OrderSample,
     this.gcRec_Description,
     this.gcRec_Idmr_detail,
     this.gcRec_Type_Sample,
     this.gcRec_Procedence,
     this.gcRec_Code,
     this.gcRec_Cod_interno,
     this.gcRec_NameSample,
     this.gcRec_Flag_envelope_sealed,
     this.gcRec_CantKg,
     this.gcRec_Reject,
     this.gcRec_Counter_Sample,
     this.gcRec_Days,
     this.gcRec_Cost,
     this.gcDyn1,
     this.gcDyn2,
     this.gcDyn3,
     this.gcDyn4,
     this.gcDyn5,
     this.gcDyn6,
     this.gcDyn7,
     this.gcDyn8,
     this.gcDyn9,
     this.gcDyn10,
     this.gcDyn11,
     this.gcDyn12,
     this.gcDyn13,
     this.gcDyn14,
     this.gcDyn15,
     this.gcDyn16,
     this.gcDyn17,
     this.gcDyn18,
     this.gcDyn19,
     this.gcDyn20,
     this.gcAgua_Code,
     this.gcAgua_Cod_interno,
     this.gcAgua_Date,
     this.gcAgua_Hour,
     this.gcAgua_Cod_matrix,
     this.gcAgua_Cod_campo,
     this.gcAgua_NameSample,
     this.gcAgua_Ubigeo,
     this.gcAgua_UTM,
     this.gcAgua_Num_bottle_plastic,
     this.gcAgua_Num_bottle_glass,
     this.gcAgua_Volumen});
     this.gvReception.GridControl = this.gcReception;
     this.gvReception.Images = this.imageList1;
     this.gvReception.Name = "gvReception";
     this.gvReception.OptionsCustomization.AllowColumnMoving = false;
     this.gvReception.OptionsCustomization.AllowSort = false;
     this.gvReception.OptionsFilter.AllowColumnMRUFilterList = false;
     this.gvReception.OptionsFilter.AllowMRUFilterList = false;
     this.gvReception.OptionsSelection.MultiSelect = true;
     this.gvReception.OptionsView.ColumnAutoWidth = false;
     this.gvReception.OptionsView.EnableAppearanceEvenRow = true;
     this.gvReception.OptionsView.EnableAppearanceOddRow = true;
     this.gvReception.OptionsView.ShowFilterPanel = false;
     this.gvReception.OptionsView.ShowGroupPanel = false;
     this.gvReception.CustomDrawColumnHeader += new DevExpress.XtraGrid.Views.Grid.ColumnHeaderCustomDrawEventHandler(this.gvReception_CustomDrawColumnHeader);
     this.gvReception.RowCellStyle += new DevExpress.XtraGrid.Views.Grid.RowCellStyleEventHandler(this.gvReception_RowCellStyle);
     this.gvReception.InitNewRow += new DevExpress.XtraGrid.Views.Grid.InitNewRowEventHandler(this.gvReception_InitNewRow);
     this.gvReception.FocusedRowChanged += new DevExpress.XtraGrid.Views.Base.FocusedRowChangedEventHandler(this.gvReception_FocusedRowChanged);
     this.gvReception.CellValueChanging += new DevExpress.XtraGrid.Views.Base.CellValueChangedEventHandler(this.gvReception_CellValueChanging);
     this.gvReception.KeyDown += new System.Windows.Forms.KeyEventHandler(this.gvReception_KeyDown);
     this.gvReception.Click += new System.EventHandler(this.gvReception_Click);
     this.gvReception.RowCountChanged += new System.EventHandler(this.gvReception_RowCountChanged);
     //
     // gcRec_idrecep_sample_detail
     //
     this.gcRec_idrecep_sample_detail.Caption = "gridColumn1";
     this.gcRec_idrecep_sample_detail.FieldName = "Idrecep_sample_detail";
     this.gcRec_idrecep_sample_detail.Name = "gcRec_idrecep_sample_detail";
     //
     // gcRec_OrderSample
     //
     this.gcRec_OrderSample.Caption = "N°";
     this.gcRec_OrderSample.FieldName = "Order_sample";
     this.gcRec_OrderSample.Name = "gcRec_OrderSample";
     this.gcRec_OrderSample.OptionsColumn.AllowEdit = false;
     this.gcRec_OrderSample.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.gcRec_OrderSample.Visible = true;
     this.gcRec_OrderSample.VisibleIndex = 0;
     this.gcRec_OrderSample.Width = 32;
     //
     // gcRec_Description
     //
     this.gcRec_Description.Caption = "Descripción";
     this.gcRec_Description.ColumnEdit = this.repDescription;
     this.gcRec_Description.FieldName = "Cod_des_sample";
     this.gcRec_Description.Name = "gcRec_Description";
     this.gcRec_Description.Visible = true;
     this.gcRec_Description.VisibleIndex = 1;
     this.gcRec_Description.Width = 108;
     //
     // repDescription
     //
     this.repDescription.AutoHeight = false;
     serializableAppearanceObject1.BackColor = System.Drawing.Color.Transparent;
     serializableAppearanceObject1.BackColor2 = System.Drawing.Color.Transparent;
     serializableAppearanceObject1.BorderColor = System.Drawing.Color.Transparent;
     serializableAppearanceObject1.Options.UseBackColor = true;
     serializableAppearanceObject1.Options.UseBorderColor = true;
     this.repDescription.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo),
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Glyph, "", -1, true, true, false, DevExpress.Utils.HorzAlignment.Center, global::LimsProject.Properties.Resources.copiar, new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None), serializableAppearanceObject1)});
     this.repDescription.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("Cod_des_sample", "", 20, DevExpress.Utils.FormatType.None, "", false, DevExpress.Utils.HorzAlignment.Default, DevExpress.Data.ColumnSortOrder.None),
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("Description")});
     this.repDescription.DisplayMember = "Description";
     this.repDescription.Name = "repDescription";
     this.repDescription.NullText = "Seleccionar";
     this.repDescription.ShowHeader = false;
     this.repDescription.ValueMember = "Cod_des_sample";
     this.repDescription.ButtonClick += new DevExpress.XtraEditors.Controls.ButtonPressedEventHandler(this.repDescription_ButtonClick);
     this.repDescription.EditValueChanged += new System.EventHandler(this.repDescription_EditValueChanged);
     //
     // gcRec_Idmr_detail
     //
     this.gcRec_Idmr_detail.Caption = "Idmr_detail";
     this.gcRec_Idmr_detail.FieldName = "Idmr_detail";
     this.gcRec_Idmr_detail.Name = "gcRec_Idmr_detail";
     //
     // gcRec_Type_Sample
     //
     this.gcRec_Type_Sample.Caption = "Tipo de Muestra";
     this.gcRec_Type_Sample.FieldName = "Cod_type_sample";
     this.gcRec_Type_Sample.Name = "gcRec_Type_Sample";
     this.gcRec_Type_Sample.Width = 125;
     //
     // gcRec_Procedence
     //
     this.gcRec_Procedence.Caption = "Procedencia";
     this.gcRec_Procedence.ColumnEdit = this.repProcedence;
     this.gcRec_Procedence.FieldName = "Procedence";
     this.gcRec_Procedence.Name = "gcRec_Procedence";
     this.gcRec_Procedence.Visible = true;
     this.gcRec_Procedence.VisibleIndex = 2;
     this.gcRec_Procedence.Width = 113;
     //
     // repProcedence
     //
     this.repProcedence.AutoHeight = false;
     this.repProcedence.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Glyph, "", -1, true, true, false, DevExpress.Utils.HorzAlignment.Center, global::LimsProject.Properties.Resources.copiar)});
     this.repProcedence.Name = "repProcedence";
     this.repProcedence.ButtonClick += new DevExpress.XtraEditors.Controls.ButtonPressedEventHandler(this.repProcedence_ButtonClick);
     //
     // gcRec_Code
     //
     this.gcRec_Code.Caption = "Código";
     this.gcRec_Code.FieldName = "Cod_sample";
     this.gcRec_Code.Name = "gcRec_Code";
     this.gcRec_Code.OptionsColumn.AllowEdit = false;
     this.gcRec_Code.Visible = true;
     this.gcRec_Code.VisibleIndex = 3;
     this.gcRec_Code.Width = 82;
     //
     // gcRec_Cod_interno
     //
     this.gcRec_Cod_interno.Caption = "Cod_interno";
     this.gcRec_Cod_interno.FieldName = "Cod_interno";
     this.gcRec_Cod_interno.Name = "gcRec_Cod_interno";
     //
     // gcRec_NameSample
     //
     this.gcRec_NameSample.Caption = "Nombre ";
     this.gcRec_NameSample.FieldName = "Name_sample";
     this.gcRec_NameSample.Name = "gcRec_NameSample";
     this.gcRec_NameSample.Visible = true;
     this.gcRec_NameSample.VisibleIndex = 4;
     this.gcRec_NameSample.Width = 114;
     //
     // gcRec_Flag_envelope_sealed
     //
     this.gcRec_Flag_envelope_sealed.Caption = "Sobre sellado";
     this.gcRec_Flag_envelope_sealed.ColumnEdit = this.repEnvelope_sealed;
     this.gcRec_Flag_envelope_sealed.FieldName = "Flag_envelope_sealed";
     this.gcRec_Flag_envelope_sealed.Name = "gcRec_Flag_envelope_sealed";
     this.gcRec_Flag_envelope_sealed.Visible = true;
     this.gcRec_Flag_envelope_sealed.VisibleIndex = 5;
     this.gcRec_Flag_envelope_sealed.Width = 41;
     //
     // repEnvelope_sealed
     //
     this.repEnvelope_sealed.AutoHeight = false;
     this.repEnvelope_sealed.Name = "repEnvelope_sealed";
     //
     // gcRec_CantKg
     //
     this.gcRec_CantKg.Caption = "Cant (kg)";
     this.gcRec_CantKg.FieldName = "Amount_weight";
     this.gcRec_CantKg.Name = "gcRec_CantKg";
     this.gcRec_CantKg.Visible = true;
     this.gcRec_CantKg.VisibleIndex = 6;
     this.gcRec_CantKg.Width = 52;
     //
     // gcRec_Reject
     //
     this.gcRec_Reject.Caption = "Rechazo";
     this.gcRec_Reject.FieldName = "Flag_reject";
     this.gcRec_Reject.ImageIndex = 9;
     this.gcRec_Reject.Name = "gcRec_Reject";
     this.gcRec_Reject.Visible = true;
     this.gcRec_Reject.VisibleIndex = 7;
     this.gcRec_Reject.Width = 50;
     //
     // gcRec_Counter_Sample
     //
     this.gcRec_Counter_Sample.Caption = "Contramuestra";
     this.gcRec_Counter_Sample.FieldName = "Flag_counter_sample";
     this.gcRec_Counter_Sample.Name = "gcRec_Counter_Sample";
     this.gcRec_Counter_Sample.Visible = true;
     this.gcRec_Counter_Sample.VisibleIndex = 8;
     this.gcRec_Counter_Sample.Width = 50;
     //
     // gcRec_Days
     //
     this.gcRec_Days.Caption = "Entrega(dias)";
     this.gcRec_Days.FieldName = "Analisys_time";
     this.gcRec_Days.Name = "gcRec_Days";
     this.gcRec_Days.Width = 41;
     //
     // gcRec_Cost
     //
     this.gcRec_Cost.Caption = "Costo";
     this.gcRec_Cost.FieldName = "Cost_sample";
     this.gcRec_Cost.Name = "gcRec_Cost";
     this.gcRec_Cost.Visible = true;
     this.gcRec_Cost.VisibleIndex = 9;
     this.gcRec_Cost.Width = 50;
     //
     // gcDyn1
     //
     this.gcDyn1.Caption = "gridColumn1";
     this.gcDyn1.ColumnEdit = this.repSelect;
     this.gcDyn1.FieldName = "rec1";
     this.gcDyn1.Name = "gcDyn1";
     this.gcDyn1.Width = 40;
     //
     // repSelect
     //
     this.repSelect.AutoHeight = false;
     this.repSelect.Name = "repSelect";
     //
     // gcDyn2
     //
     this.gcDyn2.Caption = "gridColumn2";
     this.gcDyn2.ColumnEdit = this.repSelect;
     this.gcDyn2.FieldName = "rec2";
     this.gcDyn2.Name = "gcDyn2";
     this.gcDyn2.Width = 40;
     //
     // gcDyn3
     //
     this.gcDyn3.Caption = "gridColumn3";
     this.gcDyn3.ColumnEdit = this.repSelect;
     this.gcDyn3.FieldName = "rec3";
     this.gcDyn3.Name = "gcDyn3";
     this.gcDyn3.Width = 35;
     //
     // gcDyn4
     //
     this.gcDyn4.Caption = "gridColumn4";
     this.gcDyn4.ColumnEdit = this.repSelect;
     this.gcDyn4.FieldName = "rec4";
     this.gcDyn4.Name = "gcDyn4";
     this.gcDyn4.Width = 35;
     //
     // gcDyn5
     //
     this.gcDyn5.Caption = "gridColumn5";
     this.gcDyn5.ColumnEdit = this.repSelect;
     this.gcDyn5.FieldName = "rec5";
     this.gcDyn5.Name = "gcDyn5";
     this.gcDyn5.Width = 35;
     //
     // gcDyn6
     //
     this.gcDyn6.Caption = "gridColumn6";
     this.gcDyn6.ColumnEdit = this.repSelect;
     this.gcDyn6.FieldName = "rec6";
     this.gcDyn6.Name = "gcDyn6";
     this.gcDyn6.Width = 35;
     //
     // gcDyn7
     //
     this.gcDyn7.Caption = "gridColumn7";
     this.gcDyn7.ColumnEdit = this.repSelect;
     this.gcDyn7.FieldName = "rec7";
     this.gcDyn7.Name = "gcDyn7";
     this.gcDyn7.Width = 35;
     //
     // gcDyn8
     //
     this.gcDyn8.Caption = "gridColumn8";
     this.gcDyn8.ColumnEdit = this.repSelect;
     this.gcDyn8.FieldName = "rec8";
     this.gcDyn8.Name = "gcDyn8";
     this.gcDyn8.Width = 35;
     //
     // gcDyn9
     //
     this.gcDyn9.Caption = "gridColumn9";
     this.gcDyn9.ColumnEdit = this.repSelect;
     this.gcDyn9.FieldName = "rec9";
     this.gcDyn9.Name = "gcDyn9";
     this.gcDyn9.Width = 35;
     //
     // gcDyn10
     //
     this.gcDyn10.Caption = "gridColumn10";
     this.gcDyn10.ColumnEdit = this.repSelect;
     this.gcDyn10.FieldName = "rec10";
     this.gcDyn10.Name = "gcDyn10";
     this.gcDyn10.Width = 35;
     //
     // gcDyn11
     //
     this.gcDyn11.Caption = "gridColumn11";
     this.gcDyn11.ColumnEdit = this.repSelect;
     this.gcDyn11.FieldName = "rec11";
     this.gcDyn11.Name = "gcDyn11";
     this.gcDyn11.Width = 35;
     //
     // gcDyn12
     //
     this.gcDyn12.Caption = "gridColumn12";
     this.gcDyn12.ColumnEdit = this.repSelect;
     this.gcDyn12.FieldName = "rec12";
     this.gcDyn12.Name = "gcDyn12";
     this.gcDyn12.Width = 35;
     //
     // gcDyn13
     //
     this.gcDyn13.Caption = "gridColumn13";
     this.gcDyn13.ColumnEdit = this.repSelect;
     this.gcDyn13.FieldName = "rec13";
     this.gcDyn13.Name = "gcDyn13";
     this.gcDyn13.Width = 35;
     //
     // gcDyn14
     //
     this.gcDyn14.Caption = "gridColumn14";
     this.gcDyn14.ColumnEdit = this.repSelect;
     this.gcDyn14.FieldName = "rec14";
     this.gcDyn14.Name = "gcDyn14";
     this.gcDyn14.Width = 35;
     //
     // gcDyn15
     //
     this.gcDyn15.Caption = "gridColumn15";
     this.gcDyn15.ColumnEdit = this.repSelect;
     this.gcDyn15.FieldName = "rec15";
     this.gcDyn15.Name = "gcDyn15";
     this.gcDyn15.Width = 35;
     //
     // gcDyn16
     //
     this.gcDyn16.Caption = "gridColumn16";
     this.gcDyn16.ColumnEdit = this.repSelect;
     this.gcDyn16.FieldName = "rec16";
     this.gcDyn16.Name = "gcDyn16";
     this.gcDyn16.Width = 35;
     //
     // gcDyn17
     //
     this.gcDyn17.Caption = "gridColumn17";
     this.gcDyn17.ColumnEdit = this.repSelect;
     this.gcDyn17.FieldName = "rec17";
     this.gcDyn17.Name = "gcDyn17";
     this.gcDyn17.Width = 35;
     //
     // gcDyn18
     //
     this.gcDyn18.Caption = "gridColumn18";
     this.gcDyn18.ColumnEdit = this.repSelect;
     this.gcDyn18.FieldName = "rec18";
     this.gcDyn18.Name = "gcDyn18";
     this.gcDyn18.Width = 35;
     //
     // gcDyn19
     //
     this.gcDyn19.Caption = "gridColumn19";
     this.gcDyn19.ColumnEdit = this.repSelect;
     this.gcDyn19.FieldName = "rec19";
     this.gcDyn19.Name = "gcDyn19";
     this.gcDyn19.Width = 35;
     //
     // gcDyn20
     //
     this.gcDyn20.Caption = "gridColumn20";
     this.gcDyn20.ColumnEdit = this.repSelect;
     this.gcDyn20.FieldName = "rec20";
     this.gcDyn20.Name = "gcDyn20";
     this.gcDyn20.Width = 35;
     //
     // gcAgua_Code
     //
     this.gcAgua_Code.Caption = "Código";
     this.gcAgua_Code.Name = "gcAgua_Code";
     //
     // gcAgua_Cod_interno
     //
     this.gcAgua_Cod_interno.Caption = "Cod_interno";
     this.gcAgua_Cod_interno.Name = "gcAgua_Cod_interno";
     //
     // gcAgua_Date
     //
     this.gcAgua_Date.Caption = "Fecha";
     this.gcAgua_Date.Name = "gcAgua_Date";
     //
     // gcAgua_Hour
     //
     this.gcAgua_Hour.Caption = "Hora";
     this.gcAgua_Hour.Name = "gcAgua_Hour";
     //
     // gcAgua_Cod_matrix
     //
     this.gcAgua_Cod_matrix.Caption = "Matriz";
     this.gcAgua_Cod_matrix.Name = "gcAgua_Cod_matrix";
     //
     // gcAgua_Cod_campo
     //
     this.gcAgua_Cod_campo.Caption = "Código de campo";
     this.gcAgua_Cod_campo.Name = "gcAgua_Cod_campo";
     //
     // gcAgua_NameSample
     //
     this.gcAgua_NameSample.Caption = "Nombre de muestra";
     this.gcAgua_NameSample.Name = "gcAgua_NameSample";
     //
     // gcAgua_Ubigeo
     //
     this.gcAgua_Ubigeo.Caption = "Zona, Urb, AAHH / Dist. / Prov. / Depart.";
     this.gcAgua_Ubigeo.Name = "gcAgua_Ubigeo";
     //
     // gcAgua_UTM
     //
     this.gcAgua_UTM.Caption = "Punto de muestreo y/o coordenadas UTM ";
     this.gcAgua_UTM.Name = "gcAgua_UTM";
     //
     // gcAgua_Num_bottle_plastic
     //
     this.gcAgua_Num_bottle_plastic.Caption = "N°Frascos de vidrio";
     this.gcAgua_Num_bottle_plastic.Name = "gcAgua_Num_bottle_plastic";
     //
     // gcAgua_Num_bottle_glass
     //
     this.gcAgua_Num_bottle_glass.Caption = "N°Frascos de plastico";
     this.gcAgua_Num_bottle_glass.Name = "gcAgua_Num_bottle_glass";
     //
     // gcAgua_Volumen
     //
     this.gcAgua_Volumen.Caption = "Volumen (L)";
     this.gcAgua_Volumen.Name = "gcAgua_Volumen";
     //
     // repResult
     //
     this.repResult.AutoHeight = false;
     this.repResult.Name = "repResult";
     //
     // repSendReport
     //
     this.repSendReport.AutoHeight = false;
     this.repSendReport.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Right)});
     this.repSendReport.Name = "repSendReport";
     //
     // repLink
     //
     this.repLink.AutoHeight = false;
     this.repLink.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Glyph, "", -1, true, true, false, DevExpress.Utils.HorzAlignment.Center, global::LimsProject.Properties.Resources.attach2)});
     this.repLink.Name = "repLink";
     this.repLink.ButtonClick += new DevExpress.XtraEditors.Controls.ButtonPressedEventHandler(this.repLink_ButtonClick);
     //
     // repDesLink
     //
     this.repDesLink.AutoHeight = false;
     this.repDesLink.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repDesLink.Name = "repDesLink";
     //
     // repSample
     //
     this.repSample.AutoHeight = false;
     this.repSample.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.repSample.Name = "repSample";
     //
     // xtraTabControl1
     //
     this.xtraTabControl1.Appearance.BackColor = System.Drawing.Color.Transparent;
     this.xtraTabControl1.Appearance.Options.UseBackColor = true;
     this.xtraTabControl1.AppearancePage.Header.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(209)))), ((int)(((byte)(222)))), ((int)(((byte)(243)))));
     this.xtraTabControl1.AppearancePage.Header.BorderColor = System.Drawing.Color.White;
     this.xtraTabControl1.AppearancePage.Header.Options.UseBackColor = true;
     this.xtraTabControl1.AppearancePage.Header.Options.UseBorderColor = true;
     this.xtraTabControl1.AppearancePage.HeaderActive.BackColor = System.Drawing.Color.LightSteelBlue;
     this.xtraTabControl1.AppearancePage.HeaderActive.BorderColor = System.Drawing.Color.Gainsboro;
     this.xtraTabControl1.AppearancePage.HeaderActive.Options.UseBackColor = true;
     this.xtraTabControl1.AppearancePage.HeaderActive.Options.UseBorderColor = true;
     this.xtraTabControl1.AppearancePage.PageClient.BorderColor = System.Drawing.Color.Gainsboro;
     this.xtraTabControl1.AppearancePage.PageClient.Options.UseBorderColor = true;
     this.xtraTabControl1.Location = new System.Drawing.Point(11, 29);
     this.xtraTabControl1.Name = "xtraTabControl1";
     this.xtraTabControl1.PaintStyleName = "PropertyView";
     this.xtraTabControl1.SelectedTabPage = this.xtraTabPage3;
     this.xtraTabControl1.Size = new System.Drawing.Size(534, 114);
     this.xtraTabControl1.TabIndex = 4;
     this.xtraTabControl1.TabPages.AddRange(new DevExpress.XtraTab.XtraTabPage[] {
     this.xtraTabPage3,
     this.xtraTabPage6,
     this.xtraTabPage1});
     this.xtraTabControl1.Text = "Anexos";
     //
     // xtraTabPage3
     //
     this.xtraTabPage3.Controls.Add(this.tbFax);
     this.xtraTabPage3.Controls.Add(this.tbClientPhone);
     this.xtraTabPage3.Controls.Add(this.tbClientRuc);
     this.xtraTabPage3.Controls.Add(this.tbClientDomicile);
     this.xtraTabPage3.Controls.Add(this.label9);
     this.xtraTabPage3.Controls.Add(this.label28);
     this.xtraTabPage3.Controls.Add(this.label11);
     this.xtraTabPage3.Controls.Add(this.label8);
     this.xtraTabPage3.Controls.Add(this.label6);
     this.xtraTabPage3.Controls.Add(this.cbCompany);
     this.xtraTabPage3.Name = "xtraTabPage3";
     this.xtraTabPage3.Size = new System.Drawing.Size(532, 93);
     this.xtraTabPage3.Text = "Cliente";
     //
     // tbFax
     //
     this.tbFax.Location = new System.Drawing.Point(176, 54);
     this.tbFax.Name = "tbFax";
     this.tbFax.Properties.Mask.EditMask = "\\+\\d\\d(\\(\\d{1,3}\\))\\d{1,10}";
     this.tbFax.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.RegEx;
     this.tbFax.Size = new System.Drawing.Size(74, 20);
     this.tbFax.TabIndex = 6;
     //
     // tbClientPhone
     //
     this.tbClientPhone.Location = new System.Drawing.Point(66, 54);
     this.tbClientPhone.Name = "tbClientPhone";
     this.tbClientPhone.Properties.Mask.EditMask = "\\+\\d\\d(\\(\\d{1,3}\\))\\d{1,10}";
     this.tbClientPhone.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.RegEx;
     this.tbClientPhone.Size = new System.Drawing.Size(74, 20);
     this.tbClientPhone.TabIndex = 6;
     //
     // tbClientRuc
     //
     this.tbClientRuc.Location = new System.Drawing.Point(367, 12);
     this.tbClientRuc.Name = "tbClientRuc";
     this.tbClientRuc.Properties.Mask.EditMask = "\\d{0,11}";
     this.tbClientRuc.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.RegEx;
     this.tbClientRuc.Size = new System.Drawing.Size(123, 20);
     this.tbClientRuc.TabIndex = 3;
     //
     // tbClientDomicile
     //
     this.tbClientDomicile.Location = new System.Drawing.Point(66, 33);
     this.tbClientDomicile.Name = "tbClientDomicile";
     this.tbClientDomicile.Size = new System.Drawing.Size(424, 20);
     this.tbClientDomicile.TabIndex = 4;
     //
     // label9
     //
     this.label9.AutoSize = true;
     this.label9.Location = new System.Drawing.Point(331, 15);
     this.label9.Name = "label9";
     this.label9.Size = new System.Drawing.Size(30, 13);
     this.label9.TabIndex = 9;
     this.label9.Text = "Ruc:";
     //
     // label28
     //
     this.label28.AutoSize = true;
     this.label28.Location = new System.Drawing.Point(143, 57);
     this.label28.Name = "label28";
     this.label28.Size = new System.Drawing.Size(27, 13);
     this.label28.TabIndex = 9;
     this.label28.Text = "Fax:";
     //
     // label11
     //
     this.label11.AutoSize = true;
     this.label11.Location = new System.Drawing.Point(11, 57);
     this.label11.Name = "label11";
     this.label11.Size = new System.Drawing.Size(25, 13);
     this.label11.TabIndex = 9;
     this.label11.Text = "Tel:";
     //
     // label8
     //
     this.label8.AutoSize = true;
     this.label8.Location = new System.Drawing.Point(11, 36);
     this.label8.Name = "label8";
     this.label8.Size = new System.Drawing.Size(52, 13);
     this.label8.TabIndex = 9;
     this.label8.Text = "Domicilio:";
     //
     // label6
     //
     this.label6.AutoSize = true;
     this.label6.Location = new System.Drawing.Point(11, 15);
     this.label6.Name = "label6";
     this.label6.Size = new System.Drawing.Size(47, 13);
     this.label6.TabIndex = 9;
     this.label6.Text = "Nombre:";
     //
     // cbCompany
     //
     this.cbCompany.Location = new System.Drawing.Point(66, 12);
     this.cbCompany.Name = "cbCompany";
     this.cbCompany.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.cbCompany.Properties.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("Idcompany", "", 20, DevExpress.Utils.FormatType.None, "", false, DevExpress.Utils.HorzAlignment.Default, DevExpress.Data.ColumnSortOrder.None),
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("Business_name")});
     this.cbCompany.Properties.NullText = "Seleccionar";
     this.cbCompany.Properties.ShowFooter = false;
     this.cbCompany.Properties.ShowHeader = false;
     this.cbCompany.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.Standard;
     this.cbCompany.Size = new System.Drawing.Size(259, 20);
     this.cbCompany.TabIndex = 2;
     this.cbCompany.ProcessNewValue += new DevExpress.XtraEditors.Controls.ProcessNewValueEventHandler(this.cbClientName_ProcessNewValue);
     this.cbCompany.EditValueChanged += new System.EventHandler(this.cbClientName_EditValueChanged);
     //
     // xtraTabPage6
     //
     this.xtraTabPage6.Controls.Add(this.gcContact);
     this.xtraTabPage6.Name = "xtraTabPage6";
     this.xtraTabPage6.Size = new System.Drawing.Size(532, 93);
     this.xtraTabPage6.Text = "Contactos";
     //
     // gcContact
     //
     this.gcContact.Dock = System.Windows.Forms.DockStyle.Fill;
     this.gcContact.EmbeddedNavigator.Buttons.First.Visible = false;
     this.gcContact.EmbeddedNavigator.Buttons.Last.Visible = false;
     this.gcContact.EmbeddedNavigator.Buttons.Next.Visible = false;
     this.gcContact.EmbeddedNavigator.Buttons.NextPage.Visible = false;
     this.gcContact.EmbeddedNavigator.Buttons.Prev.Visible = false;
     this.gcContact.EmbeddedNavigator.Buttons.PrevPage.Visible = false;
     this.gcContact.EmbeddedNavigator.Name = "";
     this.gcContact.Font = new System.Drawing.Font("Microsoft Sans Serif", 7.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.gcContact.Location = new System.Drawing.Point(0, 0);
     this.gcContact.MainView = this.gvContact;
     this.gcContact.Name = "gcContact";
     this.gcContact.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.repPerson_type,
     this.repNum,
     this.repCellPhone,
     this.repPhone});
     this.gcContact.Size = new System.Drawing.Size(532, 93);
     this.gcContact.TabIndex = 0;
     this.gcContact.UseEmbeddedNavigator = true;
     this.gcContact.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gvContact});
     //
     // gvContact
     //
     this.gvContact.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gcCon_Idrecep_company_person,
     this.gcCon_Idperson,
     this.gcCon_Idcompany,
     this.gcCon_Idrecep_sample,
     this.gcCon_Allname,
     this.gcCon_Mail,
     this.gcCon_Person_type,
     this.gcCon_Phone,
     this.gcCon_Cellphone});
     this.gvContact.GridControl = this.gcContact;
     this.gvContact.Name = "gvContact";
     this.gvContact.OptionsView.ShowGroupPanel = false;
     this.gvContact.InitNewRow += new DevExpress.XtraGrid.Views.Grid.InitNewRowEventHandler(this.gvContact_InitNewRow);
     //
     // gcCon_Idrecep_company_person
     //
     this.gcCon_Idrecep_company_person.Caption = "Idrecep_company_person";
     this.gcCon_Idrecep_company_person.FieldName = "Idrecep_company_person";
     this.gcCon_Idrecep_company_person.Name = "gcCon_Idrecep_company_person";
     //
     // gcCon_Idperson
     //
     this.gcCon_Idperson.Caption = "Idperson";
     this.gcCon_Idperson.FieldName = "Idperson";
     this.gcCon_Idperson.Name = "gcCon_Idperson";
     //
     // gcCon_Idcompany
     //
     this.gcCon_Idcompany.Caption = "Idcompany";
     this.gcCon_Idcompany.FieldName = "Idcompany";
     this.gcCon_Idcompany.Name = "gcCon_Idcompany";
     //
     // gcCon_Idrecep_sample
     //
     this.gcCon_Idrecep_sample.Caption = "Idrecep_sample";
     this.gcCon_Idrecep_sample.FieldName = "Idrecep_sample";
     this.gcCon_Idrecep_sample.Name = "gcCon_Idrecep_sample";
     //
     // gcCon_Allname
     //
     this.gcCon_Allname.Caption = "Nombre";
     this.gcCon_Allname.FieldName = "Allname";
     this.gcCon_Allname.Name = "gcCon_Allname";
     this.gcCon_Allname.Visible = true;
     this.gcCon_Allname.VisibleIndex = 0;
     this.gcCon_Allname.Width = 152;
     //
     // gcCon_Mail
     //
     this.gcCon_Mail.Caption = "Email";
     this.gcCon_Mail.FieldName = "Mail";
     this.gcCon_Mail.Name = "gcCon_Mail";
     this.gcCon_Mail.Visible = true;
     this.gcCon_Mail.VisibleIndex = 1;
     this.gcCon_Mail.Width = 122;
     //
     // gcCon_Person_type
     //
     this.gcCon_Person_type.Caption = "Tipo";
     this.gcCon_Person_type.ColumnEdit = this.repPerson_type;
     this.gcCon_Person_type.FieldName = "Person_type";
     this.gcCon_Person_type.Name = "gcCon_Person_type";
     this.gcCon_Person_type.Visible = true;
     this.gcCon_Person_type.VisibleIndex = 2;
     this.gcCon_Person_type.Width = 64;
     //
     // repPerson_type
     //
     this.repPerson_type.AutoHeight = false;
     this.repPerson_type.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repPerson_type.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("Id", "", 20, DevExpress.Utils.FormatType.None, "", false, DevExpress.Utils.HorzAlignment.Default, DevExpress.Data.ColumnSortOrder.None),
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("Name")});
     this.repPerson_type.Name = "repPerson_type";
     this.repPerson_type.NullText = "";
     this.repPerson_type.ShowFooter = false;
     this.repPerson_type.ShowHeader = false;
     //
     // gcCon_Phone
     //
     this.gcCon_Phone.Caption = "Teléfono";
     this.gcCon_Phone.ColumnEdit = this.repPhone;
     this.gcCon_Phone.FieldName = "Phone";
     this.gcCon_Phone.Name = "gcCon_Phone";
     this.gcCon_Phone.Visible = true;
     this.gcCon_Phone.VisibleIndex = 3;
     this.gcCon_Phone.Width = 85;
     //
     // repPhone
     //
     this.repPhone.AutoHeight = false;
     this.repPhone.Mask.EditMask = "\\+\\d\\d(\\(\\d{1,2}\\))\\d{1,10}";
     this.repPhone.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.RegEx;
     this.repPhone.Name = "repPhone";
     //
     // gcCon_Cellphone
     //
     this.gcCon_Cellphone.Caption = "Celular";
     this.gcCon_Cellphone.ColumnEdit = this.repCellPhone;
     this.gcCon_Cellphone.FieldName = "Cellphone";
     this.gcCon_Cellphone.Name = "gcCon_Cellphone";
     this.gcCon_Cellphone.Visible = true;
     this.gcCon_Cellphone.VisibleIndex = 4;
     this.gcCon_Cellphone.Width = 88;
     //
     // repCellPhone
     //
     this.repCellPhone.AutoHeight = false;
     this.repCellPhone.Mask.EditMask = "(\\(\\d{1,3}\\))?\\d{1,3}-\\d{1,3}-\\d{1,6}";
     this.repCellPhone.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.RegEx;
     this.repCellPhone.Name = "repCellPhone";
     //
     // repNum
     //
     this.repNum.AutoHeight = false;
     this.repNum.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Ellipsis, "", -1, true, false, false, DevExpress.Utils.HorzAlignment.Center, null)});
     this.repNum.IsFloatValue = false;
     this.repNum.Mask.EditMask = "N00";
     this.repNum.Name = "repNum";
     //
     // xtraTabPage1
     //
     this.xtraTabPage1.Controls.Add(this.ckDispatchFax);
     this.xtraTabPage1.Controls.Add(this.ckDispatchPerson);
     this.xtraTabPage1.Controls.Add(this.ckDispatchTransport);
     this.xtraTabPage1.Controls.Add(this.ckDispatchCurier);
     this.xtraTabPage1.Name = "xtraTabPage1";
     this.xtraTabPage1.Size = new System.Drawing.Size(532, 93);
     this.xtraTabPage1.Text = "Envío";
     //
     // ckDispatchFax
     //
     this.ckDispatchFax.Location = new System.Drawing.Point(141, 15);
     this.ckDispatchFax.Name = "ckDispatchFax";
     this.ckDispatchFax.Properties.Caption = "Fax";
     this.ckDispatchFax.Size = new System.Drawing.Size(107, 18);
     this.ckDispatchFax.TabIndex = 0;
     //
     // ckDispatchPerson
     //
     this.ckDispatchPerson.Location = new System.Drawing.Point(20, 15);
     this.ckDispatchPerson.Name = "ckDispatchPerson";
     this.ckDispatchPerson.Properties.Caption = "Personal";
     this.ckDispatchPerson.Size = new System.Drawing.Size(75, 18);
     this.ckDispatchPerson.TabIndex = 0;
     this.ckDispatchPerson.CheckedChanged += new System.EventHandler(this.ckDispatchPerson_CheckedChanged);
     //
     // ckDispatchTransport
     //
     this.ckDispatchTransport.Location = new System.Drawing.Point(20, 53);
     this.ckDispatchTransport.Name = "ckDispatchTransport";
     this.ckDispatchTransport.Properties.Caption = "Emp. Transporte";
     this.ckDispatchTransport.Size = new System.Drawing.Size(107, 18);
     this.ckDispatchTransport.TabIndex = 0;
     this.ckDispatchTransport.CheckedChanged += new System.EventHandler(this.ckDispatchTransport_CheckedChanged);
     //
     // ckDispatchCurier
     //
     this.ckDispatchCurier.Location = new System.Drawing.Point(20, 34);
     this.ckDispatchCurier.Name = "ckDispatchCurier";
     this.ckDispatchCurier.Properties.Caption = "Curier";
     this.ckDispatchCurier.Size = new System.Drawing.Size(75, 18);
     this.ckDispatchCurier.TabIndex = 0;
     this.ckDispatchCurier.CheckedChanged += new System.EventHandler(this.ckDispatchCurier_CheckedChanged);
     //
     // expandablePanel1
     //
     this.expandablePanel1.CollapseDirection = DevComponents.DotNetBar.eCollapseDirection.LeftToRight;
     this.expandablePanel1.Controls.Add(this.tabOptionRight);
     this.expandablePanel1.Dock = System.Windows.Forms.DockStyle.Right;
     this.expandablePanel1.Location = new System.Drawing.Point(699, 0);
     this.expandablePanel1.Name = "expandablePanel1";
     this.expandablePanel1.Size = new System.Drawing.Size(294, 358);
     this.expandablePanel1.TabIndex = 2;
     this.expandablePanel1.Text = "expandablePanel1";
     this.expandablePanel1.TitleText = "Métodos";
     //
     // tabOptionRight
     //
     this.tabOptionRight.Appearance.BackColor = System.Drawing.Color.Transparent;
     this.tabOptionRight.Appearance.Options.UseBackColor = true;
     this.tabOptionRight.AppearancePage.Header.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(209)))), ((int)(((byte)(222)))), ((int)(((byte)(243)))));
     this.tabOptionRight.AppearancePage.Header.BorderColor = System.Drawing.Color.White;
     this.tabOptionRight.AppearancePage.Header.Options.UseBackColor = true;
     this.tabOptionRight.AppearancePage.Header.Options.UseBorderColor = true;
     this.tabOptionRight.AppearancePage.HeaderActive.BackColor = System.Drawing.Color.LightSteelBlue;
     this.tabOptionRight.AppearancePage.HeaderActive.BorderColor = System.Drawing.Color.Gainsboro;
     this.tabOptionRight.AppearancePage.HeaderActive.Options.UseBackColor = true;
     this.tabOptionRight.AppearancePage.HeaderActive.Options.UseBorderColor = true;
     this.tabOptionRight.AppearancePage.PageClient.BorderColor = System.Drawing.Color.Gainsboro;
     this.tabOptionRight.AppearancePage.PageClient.Options.UseBorderColor = true;
     this.tabOptionRight.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tabOptionRight.Location = new System.Drawing.Point(0, 26);
     this.tabOptionRight.Name = "tabOptionRight";
     this.tabOptionRight.PaintStyleName = "PropertyView";
     this.tabOptionRight.SelectedTabPage = this.tpRightMethods;
     this.tabOptionRight.Size = new System.Drawing.Size(294, 332);
     this.tabOptionRight.TabIndex = 5;
     this.tabOptionRight.TabPages.AddRange(new DevExpress.XtraTab.XtraTabPage[] {
     this.tpRightMethods,
     this.tpRightReports,
     this.tpRightAttach,
     this.tpRightProgram});
     this.tabOptionRight.Text = "Adjuntos";
     this.tabOptionRight.SelectedPageChanged += new DevExpress.XtraTab.TabPageChangedEventHandler(this.tabOptionRight_SelectedPageChanged);
     //
     // tpRightMethods
     //
     this.tpRightMethods.Controls.Add(this.lookUpEdit3);
     this.tpRightMethods.Controls.Add(this.gcMethods);
     this.tpRightMethods.Controls.Add(this.textEdit1);
     this.tpRightMethods.Name = "tpRightMethods";
     this.tpRightMethods.Size = new System.Drawing.Size(292, 311);
     this.tpRightMethods.Text = "Métodos";
     //
     // lookUpEdit3
     //
     this.lookUpEdit3.Location = new System.Drawing.Point(452, 55);
     this.lookUpEdit3.Name = "lookUpEdit3";
     this.lookUpEdit3.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lookUpEdit3.Properties.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("IDTypePost", "", 20, DevExpress.Utils.FormatType.None, "", false, DevExpress.Utils.HorzAlignment.Default, DevExpress.Data.ColumnSortOrder.None),
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("Den_Type_Post")});
     this.lookUpEdit3.Properties.NullText = "Seleccionar";
     this.lookUpEdit3.Properties.ShowFooter = false;
     this.lookUpEdit3.Properties.ShowHeader = false;
     this.lookUpEdit3.Size = new System.Drawing.Size(100, 20);
     this.lookUpEdit3.TabIndex = 1;
     //
     // gcMethods
     //
     this.gcMethods.Dock = System.Windows.Forms.DockStyle.Fill;
     this.gcMethods.EmbeddedNavigator.Name = "";
     this.gcMethods.Location = new System.Drawing.Point(0, 0);
     this.gcMethods.MainView = this.gvMethods;
     this.gcMethods.Name = "gcMethods";
     this.gcMethods.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.repAddColumn});
     this.gcMethods.Size = new System.Drawing.Size(292, 311);
     this.gcMethods.TabIndex = 1;
     this.gcMethods.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gvMethods});
     //
     // gvMethods
     //
     this.gvMethods.Appearance.ColumnFilterButton.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(236)))), ((int)(((byte)(254)))));
     this.gvMethods.Appearance.ColumnFilterButton.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(132)))), ((int)(((byte)(171)))), ((int)(((byte)(228)))));
     this.gvMethods.Appearance.ColumnFilterButton.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(236)))), ((int)(((byte)(254)))));
     this.gvMethods.Appearance.ColumnFilterButton.ForeColor = System.Drawing.Color.Black;
     this.gvMethods.Appearance.ColumnFilterButton.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
     this.gvMethods.Appearance.ColumnFilterButton.Options.UseBackColor = true;
     this.gvMethods.Appearance.ColumnFilterButton.Options.UseBorderColor = true;
     this.gvMethods.Appearance.ColumnFilterButton.Options.UseForeColor = true;
     this.gvMethods.Appearance.ColumnFilterButtonActive.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(247)))), ((int)(((byte)(251)))), ((int)(((byte)(255)))));
     this.gvMethods.Appearance.ColumnFilterButtonActive.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(154)))), ((int)(((byte)(190)))), ((int)(((byte)(243)))));
     this.gvMethods.Appearance.ColumnFilterButtonActive.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(247)))), ((int)(((byte)(251)))), ((int)(((byte)(255)))));
     this.gvMethods.Appearance.ColumnFilterButtonActive.ForeColor = System.Drawing.Color.Black;
     this.gvMethods.Appearance.ColumnFilterButtonActive.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
     this.gvMethods.Appearance.ColumnFilterButtonActive.Options.UseBackColor = true;
     this.gvMethods.Appearance.ColumnFilterButtonActive.Options.UseBorderColor = true;
     this.gvMethods.Appearance.ColumnFilterButtonActive.Options.UseForeColor = true;
     this.gvMethods.Appearance.Empty.BackColor = System.Drawing.Color.White;
     this.gvMethods.Appearance.Empty.Options.UseBackColor = true;
     this.gvMethods.Appearance.EvenRow.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(231)))), ((int)(((byte)(242)))), ((int)(((byte)(254)))));
     this.gvMethods.Appearance.EvenRow.ForeColor = System.Drawing.Color.Black;
     this.gvMethods.Appearance.EvenRow.Options.UseBackColor = true;
     this.gvMethods.Appearance.EvenRow.Options.UseForeColor = true;
     this.gvMethods.Appearance.FilterCloseButton.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(236)))), ((int)(((byte)(254)))));
     this.gvMethods.Appearance.FilterCloseButton.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(132)))), ((int)(((byte)(171)))), ((int)(((byte)(228)))));
     this.gvMethods.Appearance.FilterCloseButton.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(236)))), ((int)(((byte)(254)))));
     this.gvMethods.Appearance.FilterCloseButton.ForeColor = System.Drawing.Color.Black;
     this.gvMethods.Appearance.FilterCloseButton.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
     this.gvMethods.Appearance.FilterCloseButton.Options.UseBackColor = true;
     this.gvMethods.Appearance.FilterCloseButton.Options.UseBorderColor = true;
     this.gvMethods.Appearance.FilterCloseButton.Options.UseForeColor = true;
     this.gvMethods.Appearance.FilterPanel.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(62)))), ((int)(((byte)(109)))), ((int)(((byte)(185)))));
     this.gvMethods.Appearance.FilterPanel.ForeColor = System.Drawing.Color.White;
     this.gvMethods.Appearance.FilterPanel.Options.UseBackColor = true;
     this.gvMethods.Appearance.FilterPanel.Options.UseForeColor = true;
     this.gvMethods.Appearance.FixedLine.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(59)))), ((int)(((byte)(97)))), ((int)(((byte)(156)))));
     this.gvMethods.Appearance.FixedLine.Options.UseBackColor = true;
     this.gvMethods.Appearance.FocusedCell.BackColor = System.Drawing.Color.White;
     this.gvMethods.Appearance.FocusedCell.ForeColor = System.Drawing.Color.Black;
     this.gvMethods.Appearance.FocusedCell.Options.UseBackColor = true;
     this.gvMethods.Appearance.FocusedCell.Options.UseForeColor = true;
     this.gvMethods.Appearance.FocusedRow.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(60)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(240)))));
     this.gvMethods.Appearance.FocusedRow.ForeColor = System.Drawing.Color.White;
     this.gvMethods.Appearance.FocusedRow.Options.UseBackColor = true;
     this.gvMethods.Appearance.FocusedRow.Options.UseForeColor = true;
     this.gvMethods.Appearance.FooterPanel.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(236)))), ((int)(((byte)(254)))));
     this.gvMethods.Appearance.FooterPanel.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(132)))), ((int)(((byte)(171)))), ((int)(((byte)(228)))));
     this.gvMethods.Appearance.FooterPanel.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(236)))), ((int)(((byte)(254)))));
     this.gvMethods.Appearance.FooterPanel.ForeColor = System.Drawing.Color.Black;
     this.gvMethods.Appearance.FooterPanel.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
     this.gvMethods.Appearance.FooterPanel.Options.UseBackColor = true;
     this.gvMethods.Appearance.FooterPanel.Options.UseBorderColor = true;
     this.gvMethods.Appearance.FooterPanel.Options.UseForeColor = true;
     this.gvMethods.Appearance.GroupButton.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(193)))), ((int)(((byte)(216)))), ((int)(((byte)(247)))));
     this.gvMethods.Appearance.GroupButton.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(193)))), ((int)(((byte)(216)))), ((int)(((byte)(247)))));
     this.gvMethods.Appearance.GroupButton.ForeColor = System.Drawing.Color.Black;
     this.gvMethods.Appearance.GroupButton.Options.UseBackColor = true;
     this.gvMethods.Appearance.GroupButton.Options.UseBorderColor = true;
     this.gvMethods.Appearance.GroupButton.Options.UseForeColor = true;
     this.gvMethods.Appearance.GroupFooter.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(193)))), ((int)(((byte)(216)))), ((int)(((byte)(247)))));
     this.gvMethods.Appearance.GroupFooter.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(193)))), ((int)(((byte)(216)))), ((int)(((byte)(247)))));
     this.gvMethods.Appearance.GroupFooter.ForeColor = System.Drawing.Color.Black;
     this.gvMethods.Appearance.GroupFooter.Options.UseBackColor = true;
     this.gvMethods.Appearance.GroupFooter.Options.UseBorderColor = true;
     this.gvMethods.Appearance.GroupFooter.Options.UseForeColor = true;
     this.gvMethods.Appearance.GroupPanel.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(62)))), ((int)(((byte)(109)))), ((int)(((byte)(185)))));
     this.gvMethods.Appearance.GroupPanel.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(236)))), ((int)(((byte)(254)))));
     this.gvMethods.Appearance.GroupPanel.Options.UseBackColor = true;
     this.gvMethods.Appearance.GroupPanel.Options.UseForeColor = true;
     this.gvMethods.Appearance.GroupRow.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(193)))), ((int)(((byte)(216)))), ((int)(((byte)(247)))));
     this.gvMethods.Appearance.GroupRow.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(193)))), ((int)(((byte)(216)))), ((int)(((byte)(247)))));
     this.gvMethods.Appearance.GroupRow.Font = new System.Drawing.Font("Tahoma", 8F, System.Drawing.FontStyle.Bold);
     this.gvMethods.Appearance.GroupRow.ForeColor = System.Drawing.Color.Black;
     this.gvMethods.Appearance.GroupRow.Options.UseBackColor = true;
     this.gvMethods.Appearance.GroupRow.Options.UseBorderColor = true;
     this.gvMethods.Appearance.GroupRow.Options.UseFont = true;
     this.gvMethods.Appearance.GroupRow.Options.UseForeColor = true;
     this.gvMethods.Appearance.HeaderPanel.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(236)))), ((int)(((byte)(254)))));
     this.gvMethods.Appearance.HeaderPanel.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(132)))), ((int)(((byte)(171)))), ((int)(((byte)(228)))));
     this.gvMethods.Appearance.HeaderPanel.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(236)))), ((int)(((byte)(254)))));
     this.gvMethods.Appearance.HeaderPanel.Font = new System.Drawing.Font("Tahoma", 8F);
     this.gvMethods.Appearance.HeaderPanel.ForeColor = System.Drawing.Color.Black;
     this.gvMethods.Appearance.HeaderPanel.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
     this.gvMethods.Appearance.HeaderPanel.Options.UseBackColor = true;
     this.gvMethods.Appearance.HeaderPanel.Options.UseBorderColor = true;
     this.gvMethods.Appearance.HeaderPanel.Options.UseFont = true;
     this.gvMethods.Appearance.HeaderPanel.Options.UseForeColor = true;
     this.gvMethods.Appearance.HideSelectionRow.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(106)))), ((int)(((byte)(153)))), ((int)(((byte)(228)))));
     this.gvMethods.Appearance.HideSelectionRow.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(208)))), ((int)(((byte)(224)))), ((int)(((byte)(251)))));
     this.gvMethods.Appearance.HideSelectionRow.Options.UseBackColor = true;
     this.gvMethods.Appearance.HideSelectionRow.Options.UseForeColor = true;
     this.gvMethods.Appearance.HorzLine.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(99)))), ((int)(((byte)(127)))), ((int)(((byte)(196)))));
     this.gvMethods.Appearance.HorzLine.Options.UseBackColor = true;
     this.gvMethods.Appearance.OddRow.BackColor = System.Drawing.Color.White;
     this.gvMethods.Appearance.OddRow.ForeColor = System.Drawing.Color.Black;
     this.gvMethods.Appearance.OddRow.Options.UseBackColor = true;
     this.gvMethods.Appearance.OddRow.Options.UseForeColor = true;
     this.gvMethods.Appearance.Preview.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(249)))), ((int)(((byte)(252)))), ((int)(((byte)(255)))));
     this.gvMethods.Appearance.Preview.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(88)))), ((int)(((byte)(129)))), ((int)(((byte)(185)))));
     this.gvMethods.Appearance.Preview.Options.UseBackColor = true;
     this.gvMethods.Appearance.Preview.Options.UseForeColor = true;
     this.gvMethods.Appearance.Row.BackColor = System.Drawing.Color.White;
     this.gvMethods.Appearance.Row.Font = new System.Drawing.Font("Tahoma", 8F);
     this.gvMethods.Appearance.Row.ForeColor = System.Drawing.Color.Black;
     this.gvMethods.Appearance.Row.Options.UseBackColor = true;
     this.gvMethods.Appearance.Row.Options.UseFont = true;
     this.gvMethods.Appearance.Row.Options.UseForeColor = true;
     this.gvMethods.Appearance.RowSeparator.BackColor = System.Drawing.Color.White;
     this.gvMethods.Appearance.RowSeparator.Options.UseBackColor = true;
     this.gvMethods.Appearance.SelectedRow.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(30)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(240)))));
     this.gvMethods.Appearance.SelectedRow.ForeColor = System.Drawing.Color.White;
     this.gvMethods.Appearance.SelectedRow.Options.UseBackColor = true;
     this.gvMethods.Appearance.SelectedRow.Options.UseForeColor = true;
     this.gvMethods.Appearance.VertLine.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(99)))), ((int)(((byte)(127)))), ((int)(((byte)(196)))));
     this.gvMethods.Appearance.VertLine.Options.UseBackColor = true;
     this.gvMethods.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gcMet_Cod_template_method,
     this.gcMet_Cod_element,
     this.gcMet_Abbreviation,
     this.gcMet_Name_type_analisys,
     this.gcMet_Title,
     this.gcMet_TypeAnalisys,
     this.gcMet_Button,
     this.gcMet_Cost,
     this.gcMet_Unit1,
     this.gcMet_Unit_Name,
     this.gcMet_Idelement,
     this.gcMet_Idtemplate_method,
     this.gcMet_Analisys_time});
     this.gvMethods.GridControl = this.gcMethods;
     this.gvMethods.GroupCount = 1;
     this.gvMethods.Name = "gvMethods";
     this.gvMethods.OptionsBehavior.AutoExpandAllGroups = true;
     this.gvMethods.OptionsView.ColumnAutoWidth = false;
     this.gvMethods.OptionsView.EnableAppearanceEvenRow = true;
     this.gvMethods.OptionsView.EnableAppearanceOddRow = true;
     this.gvMethods.OptionsView.ShowGroupPanel = false;
     this.gvMethods.SortInfo.AddRange(new DevExpress.XtraGrid.Columns.GridColumnSortInfo[] {
     new DevExpress.XtraGrid.Columns.GridColumnSortInfo(this.gcMet_TypeAnalisys, DevExpress.Data.ColumnSortOrder.Ascending)});
     //
     // gcMet_Cod_template_method
     //
     this.gcMet_Cod_template_method.Caption = "Cod.";
     this.gcMet_Cod_template_method.FieldName = "Cod_template_method";
     this.gcMet_Cod_template_method.Name = "gcMet_Cod_template_method";
     this.gcMet_Cod_template_method.OptionsColumn.ReadOnly = true;
     this.gcMet_Cod_template_method.Visible = true;
     this.gcMet_Cod_template_method.VisibleIndex = 1;
     this.gcMet_Cod_template_method.Width = 50;
     //
     // gcMet_Cod_element
     //
     this.gcMet_Cod_element.Caption = "Elemento";
     this.gcMet_Cod_element.FieldName = "Cod_element";
     this.gcMet_Cod_element.Name = "gcMet_Cod_element";
     this.gcMet_Cod_element.OptionsColumn.ReadOnly = true;
     this.gcMet_Cod_element.Visible = true;
     this.gcMet_Cod_element.VisibleIndex = 2;
     //
     // gcMet_Abbreviation
     //
     this.gcMet_Abbreviation.Caption = "Abreviación";
     this.gcMet_Abbreviation.FieldName = "Abbreviation";
     this.gcMet_Abbreviation.Name = "gcMet_Abbreviation";
     this.gcMet_Abbreviation.OptionsColumn.ReadOnly = true;
     this.gcMet_Abbreviation.Visible = true;
     this.gcMet_Abbreviation.VisibleIndex = 3;
     this.gcMet_Abbreviation.Width = 60;
     //
     // gcMet_Name_type_analisys
     //
     this.gcMet_Name_type_analisys.Caption = "Tipo de Análisis";
     this.gcMet_Name_type_analisys.FieldName = "Name_type_analisys";
     this.gcMet_Name_type_analisys.Name = "gcMet_Name_type_analisys";
     this.gcMet_Name_type_analisys.Visible = true;
     this.gcMet_Name_type_analisys.VisibleIndex = 5;
     //
     // gcMet_Title
     //
     this.gcMet_Title.Caption = "Título";
     this.gcMet_Title.FieldName = "Title";
     this.gcMet_Title.Name = "gcMet_Title";
     this.gcMet_Title.OptionsColumn.ReadOnly = true;
     this.gcMet_Title.Visible = true;
     this.gcMet_Title.VisibleIndex = 4;
     this.gcMet_Title.Width = 135;
     //
     // gcMet_TypeAnalisys
     //
     this.gcMet_TypeAnalisys.Caption = "Tipo de análisis";
     this.gcMet_TypeAnalisys.FieldName = "Name_type_analisys";
     this.gcMet_TypeAnalisys.Name = "gcMet_TypeAnalisys";
     //
     // gcMet_Button
     //
     this.gcMet_Button.Caption = "#";
     this.gcMet_Button.ColumnEdit = this.repAddColumn;
     this.gcMet_Button.Name = "gcMet_Button";
     this.gcMet_Button.Visible = true;
     this.gcMet_Button.VisibleIndex = 0;
     this.gcMet_Button.Width = 52;
     //
     // repAddColumn
     //
     this.repAddColumn.AutoHeight = false;
     this.repAddColumn.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Left)});
     this.repAddColumn.Name = "repAddColumn";
     this.repAddColumn.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.HideTextEditor;
     this.repAddColumn.ButtonClick += new DevExpress.XtraEditors.Controls.ButtonPressedEventHandler(this.repAddColumn_ButtonClick);
     //
     // gcMet_Cost
     //
     this.gcMet_Cost.Caption = "Cost";
     this.gcMet_Cost.FieldName = "Cost_method";
     this.gcMet_Cost.Name = "gcMet_Cost";
     //
     // gcMet_Unit1
     //
     this.gcMet_Unit1.Caption = "Unit";
     this.gcMet_Unit1.FieldName = "Idunit_result";
     this.gcMet_Unit1.Name = "gcMet_Unit1";
     //
     // gcMet_Unit_Name
     //
     this.gcMet_Unit_Name.Caption = "Name_unit";
     this.gcMet_Unit_Name.FieldName = "Name_unit";
     this.gcMet_Unit_Name.Name = "gcMet_Unit_Name";
     //
     // gcMet_Idelement
     //
     this.gcMet_Idelement.Caption = "Idelement";
     this.gcMet_Idelement.FieldName = "Idelement";
     this.gcMet_Idelement.Name = "gcMet_Idelement";
     //
     // gcMet_Idtemplate_method
     //
     this.gcMet_Idtemplate_method.Caption = "idtemplate_method";
     this.gcMet_Idtemplate_method.FieldName = "Idtemplate_method";
     this.gcMet_Idtemplate_method.Name = "gcMet_Idtemplate_method";
     //
     // gcMet_Analisys_time
     //
     this.gcMet_Analisys_time.Caption = "Analysis_time";
     this.gcMet_Analisys_time.FieldName = "Analisys_time";
     this.gcMet_Analisys_time.Name = "gcMet_Analisys_time";
     //
     // textEdit1
     //
     this.textEdit1.Location = new System.Drawing.Point(452, 9);
     this.textEdit1.Name = "textEdit1";
     this.textEdit1.Size = new System.Drawing.Size(100, 20);
     this.textEdit1.TabIndex = 3;
     //
     // tpRightReports
     //
     this.tpRightReports.Controls.Add(this.gcReport);
     this.tpRightReports.Controls.Add(this.groupControl1);
     this.tpRightReports.Name = "tpRightReports";
     this.tpRightReports.PageVisible = false;
     this.tpRightReports.Size = new System.Drawing.Size(292, 0);
     this.tpRightReports.Text = "Informes";
     //
     // gcReport
     //
     this.gcReport.Dock = System.Windows.Forms.DockStyle.Fill;
     this.gcReport.EmbeddedNavigator.Name = "";
     this.gcReport.Location = new System.Drawing.Point(0, 53);
     this.gcReport.MainView = this.gvReport;
     this.gcReport.Name = "gcReport";
     this.gcReport.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.repReportOption,
     this.repStatusReport,
     this.repDateReport,
     this.repTimeReport,
     this.repTypeReport});
     this.gcReport.Size = new System.Drawing.Size(292, 0);
     this.gcReport.TabIndex = 2;
     this.gcReport.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gvReport});
     //
     // gvReport
     //
     this.gvReport.Appearance.ColumnFilterButton.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(236)))), ((int)(((byte)(254)))));
     this.gvReport.Appearance.ColumnFilterButton.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(132)))), ((int)(((byte)(171)))), ((int)(((byte)(228)))));
     this.gvReport.Appearance.ColumnFilterButton.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(236)))), ((int)(((byte)(254)))));
     this.gvReport.Appearance.ColumnFilterButton.ForeColor = System.Drawing.Color.Black;
     this.gvReport.Appearance.ColumnFilterButton.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
     this.gvReport.Appearance.ColumnFilterButton.Options.UseBackColor = true;
     this.gvReport.Appearance.ColumnFilterButton.Options.UseBorderColor = true;
     this.gvReport.Appearance.ColumnFilterButton.Options.UseForeColor = true;
     this.gvReport.Appearance.ColumnFilterButtonActive.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(247)))), ((int)(((byte)(251)))), ((int)(((byte)(255)))));
     this.gvReport.Appearance.ColumnFilterButtonActive.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(154)))), ((int)(((byte)(190)))), ((int)(((byte)(243)))));
     this.gvReport.Appearance.ColumnFilterButtonActive.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(247)))), ((int)(((byte)(251)))), ((int)(((byte)(255)))));
     this.gvReport.Appearance.ColumnFilterButtonActive.ForeColor = System.Drawing.Color.Black;
     this.gvReport.Appearance.ColumnFilterButtonActive.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
     this.gvReport.Appearance.ColumnFilterButtonActive.Options.UseBackColor = true;
     this.gvReport.Appearance.ColumnFilterButtonActive.Options.UseBorderColor = true;
     this.gvReport.Appearance.ColumnFilterButtonActive.Options.UseForeColor = true;
     this.gvReport.Appearance.Empty.BackColor = System.Drawing.Color.White;
     this.gvReport.Appearance.Empty.Options.UseBackColor = true;
     this.gvReport.Appearance.EvenRow.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(231)))), ((int)(((byte)(242)))), ((int)(((byte)(254)))));
     this.gvReport.Appearance.EvenRow.ForeColor = System.Drawing.Color.Black;
     this.gvReport.Appearance.EvenRow.Options.UseBackColor = true;
     this.gvReport.Appearance.EvenRow.Options.UseForeColor = true;
     this.gvReport.Appearance.FilterCloseButton.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(236)))), ((int)(((byte)(254)))));
     this.gvReport.Appearance.FilterCloseButton.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(132)))), ((int)(((byte)(171)))), ((int)(((byte)(228)))));
     this.gvReport.Appearance.FilterCloseButton.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(236)))), ((int)(((byte)(254)))));
     this.gvReport.Appearance.FilterCloseButton.ForeColor = System.Drawing.Color.Black;
     this.gvReport.Appearance.FilterCloseButton.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
     this.gvReport.Appearance.FilterCloseButton.Options.UseBackColor = true;
     this.gvReport.Appearance.FilterCloseButton.Options.UseBorderColor = true;
     this.gvReport.Appearance.FilterCloseButton.Options.UseForeColor = true;
     this.gvReport.Appearance.FilterPanel.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(62)))), ((int)(((byte)(109)))), ((int)(((byte)(185)))));
     this.gvReport.Appearance.FilterPanel.ForeColor = System.Drawing.Color.White;
     this.gvReport.Appearance.FilterPanel.Options.UseBackColor = true;
     this.gvReport.Appearance.FilterPanel.Options.UseForeColor = true;
     this.gvReport.Appearance.FixedLine.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(59)))), ((int)(((byte)(97)))), ((int)(((byte)(156)))));
     this.gvReport.Appearance.FixedLine.Options.UseBackColor = true;
     this.gvReport.Appearance.FocusedCell.BackColor = System.Drawing.Color.White;
     this.gvReport.Appearance.FocusedCell.ForeColor = System.Drawing.Color.Black;
     this.gvReport.Appearance.FocusedCell.Options.UseBackColor = true;
     this.gvReport.Appearance.FocusedCell.Options.UseForeColor = true;
     this.gvReport.Appearance.FocusedRow.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(60)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(240)))));
     this.gvReport.Appearance.FocusedRow.ForeColor = System.Drawing.Color.White;
     this.gvReport.Appearance.FocusedRow.Options.UseBackColor = true;
     this.gvReport.Appearance.FocusedRow.Options.UseForeColor = true;
     this.gvReport.Appearance.FooterPanel.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(236)))), ((int)(((byte)(254)))));
     this.gvReport.Appearance.FooterPanel.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(132)))), ((int)(((byte)(171)))), ((int)(((byte)(228)))));
     this.gvReport.Appearance.FooterPanel.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(236)))), ((int)(((byte)(254)))));
     this.gvReport.Appearance.FooterPanel.ForeColor = System.Drawing.Color.Black;
     this.gvReport.Appearance.FooterPanel.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
     this.gvReport.Appearance.FooterPanel.Options.UseBackColor = true;
     this.gvReport.Appearance.FooterPanel.Options.UseBorderColor = true;
     this.gvReport.Appearance.FooterPanel.Options.UseForeColor = true;
     this.gvReport.Appearance.GroupButton.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(193)))), ((int)(((byte)(216)))), ((int)(((byte)(247)))));
     this.gvReport.Appearance.GroupButton.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(193)))), ((int)(((byte)(216)))), ((int)(((byte)(247)))));
     this.gvReport.Appearance.GroupButton.ForeColor = System.Drawing.Color.Black;
     this.gvReport.Appearance.GroupButton.Options.UseBackColor = true;
     this.gvReport.Appearance.GroupButton.Options.UseBorderColor = true;
     this.gvReport.Appearance.GroupButton.Options.UseForeColor = true;
     this.gvReport.Appearance.GroupFooter.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(193)))), ((int)(((byte)(216)))), ((int)(((byte)(247)))));
     this.gvReport.Appearance.GroupFooter.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(193)))), ((int)(((byte)(216)))), ((int)(((byte)(247)))));
     this.gvReport.Appearance.GroupFooter.ForeColor = System.Drawing.Color.Black;
     this.gvReport.Appearance.GroupFooter.Options.UseBackColor = true;
     this.gvReport.Appearance.GroupFooter.Options.UseBorderColor = true;
     this.gvReport.Appearance.GroupFooter.Options.UseForeColor = true;
     this.gvReport.Appearance.GroupPanel.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(62)))), ((int)(((byte)(109)))), ((int)(((byte)(185)))));
     this.gvReport.Appearance.GroupPanel.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(236)))), ((int)(((byte)(254)))));
     this.gvReport.Appearance.GroupPanel.Options.UseBackColor = true;
     this.gvReport.Appearance.GroupPanel.Options.UseForeColor = true;
     this.gvReport.Appearance.GroupRow.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(193)))), ((int)(((byte)(216)))), ((int)(((byte)(247)))));
     this.gvReport.Appearance.GroupRow.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(193)))), ((int)(((byte)(216)))), ((int)(((byte)(247)))));
     this.gvReport.Appearance.GroupRow.Font = new System.Drawing.Font("Tahoma", 8F, System.Drawing.FontStyle.Bold);
     this.gvReport.Appearance.GroupRow.ForeColor = System.Drawing.Color.Black;
     this.gvReport.Appearance.GroupRow.Options.UseBackColor = true;
     this.gvReport.Appearance.GroupRow.Options.UseBorderColor = true;
     this.gvReport.Appearance.GroupRow.Options.UseFont = true;
     this.gvReport.Appearance.GroupRow.Options.UseForeColor = true;
     this.gvReport.Appearance.HeaderPanel.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(236)))), ((int)(((byte)(254)))));
     this.gvReport.Appearance.HeaderPanel.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(132)))), ((int)(((byte)(171)))), ((int)(((byte)(228)))));
     this.gvReport.Appearance.HeaderPanel.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(236)))), ((int)(((byte)(254)))));
     this.gvReport.Appearance.HeaderPanel.ForeColor = System.Drawing.Color.Black;
     this.gvReport.Appearance.HeaderPanel.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
     this.gvReport.Appearance.HeaderPanel.Options.UseBackColor = true;
     this.gvReport.Appearance.HeaderPanel.Options.UseBorderColor = true;
     this.gvReport.Appearance.HeaderPanel.Options.UseForeColor = true;
     this.gvReport.Appearance.HideSelectionRow.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(106)))), ((int)(((byte)(153)))), ((int)(((byte)(228)))));
     this.gvReport.Appearance.HideSelectionRow.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(208)))), ((int)(((byte)(224)))), ((int)(((byte)(251)))));
     this.gvReport.Appearance.HideSelectionRow.Options.UseBackColor = true;
     this.gvReport.Appearance.HideSelectionRow.Options.UseForeColor = true;
     this.gvReport.Appearance.HorzLine.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(99)))), ((int)(((byte)(127)))), ((int)(((byte)(196)))));
     this.gvReport.Appearance.HorzLine.Options.UseBackColor = true;
     this.gvReport.Appearance.OddRow.BackColor = System.Drawing.Color.White;
     this.gvReport.Appearance.OddRow.ForeColor = System.Drawing.Color.Black;
     this.gvReport.Appearance.OddRow.Options.UseBackColor = true;
     this.gvReport.Appearance.OddRow.Options.UseForeColor = true;
     this.gvReport.Appearance.Preview.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(249)))), ((int)(((byte)(252)))), ((int)(((byte)(255)))));
     this.gvReport.Appearance.Preview.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(88)))), ((int)(((byte)(129)))), ((int)(((byte)(185)))));
     this.gvReport.Appearance.Preview.Options.UseBackColor = true;
     this.gvReport.Appearance.Preview.Options.UseForeColor = true;
     this.gvReport.Appearance.Row.BackColor = System.Drawing.Color.White;
     this.gvReport.Appearance.Row.ForeColor = System.Drawing.Color.Black;
     this.gvReport.Appearance.Row.Options.UseBackColor = true;
     this.gvReport.Appearance.Row.Options.UseForeColor = true;
     this.gvReport.Appearance.RowSeparator.BackColor = System.Drawing.Color.White;
     this.gvReport.Appearance.RowSeparator.Options.UseBackColor = true;
     this.gvReport.Appearance.SelectedRow.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(30)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(240)))));
     this.gvReport.Appearance.SelectedRow.ForeColor = System.Drawing.Color.White;
     this.gvReport.Appearance.SelectedRow.Options.UseBackColor = true;
     this.gvReport.Appearance.SelectedRow.Options.UseForeColor = true;
     this.gvReport.Appearance.VertLine.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(99)))), ((int)(((byte)(127)))), ((int)(((byte)(196)))));
     this.gvReport.Appearance.VertLine.Options.UseBackColor = true;
     this.gvReport.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gcRep_idrecep_sample_report,
     this.gcRep_order_report,
     this.gcRep_cod_recep_sample_report,
     this.gcRep_report_status,
     this.gcRep_type_report,
     this.gcRep_Option,
     this.gcRep_Str_cod_recep_sample_report,
     this.gcRep_Date_report});
     this.gvReport.GridControl = this.gcReport;
     this.gvReport.Name = "gvReport";
     this.gvReport.OptionsView.EnableAppearanceEvenRow = true;
     this.gvReport.OptionsView.EnableAppearanceOddRow = true;
     this.gvReport.OptionsView.ShowGroupPanel = false;
     this.gvReport.RowCellStyle += new DevExpress.XtraGrid.Views.Grid.RowCellStyleEventHandler(this.gvReport_RowCellStyle);
     this.gvReport.InitNewRow += new DevExpress.XtraGrid.Views.Grid.InitNewRowEventHandler(this.gvReport_InitNewRow);
     this.gvReport.FocusedRowChanged += new DevExpress.XtraGrid.Views.Base.FocusedRowChangedEventHandler(this.gvReport_FocusedRowChanged);
     //
     // gcRep_idrecep_sample_report
     //
     this.gcRep_idrecep_sample_report.Caption = "idrecep_sample_report";
     this.gcRep_idrecep_sample_report.FieldName = "Idrecep_sample_report";
     this.gcRep_idrecep_sample_report.Name = "gcRep_idrecep_sample_report";
     //
     // gcRep_order_report
     //
     this.gcRep_order_report.Caption = "N°";
     this.gcRep_order_report.FieldName = "Order_report";
     this.gcRep_order_report.Name = "gcRep_order_report";
     this.gcRep_order_report.OptionsColumn.AllowEdit = false;
     this.gcRep_order_report.OptionsFilter.AllowAutoFilter = false;
     this.gcRep_order_report.OptionsFilter.AllowFilter = false;
     this.gcRep_order_report.Visible = true;
     this.gcRep_order_report.VisibleIndex = 0;
     this.gcRep_order_report.Width = 23;
     //
     // gcRep_cod_recep_sample_report
     //
     this.gcRep_cod_recep_sample_report.Caption = "Código";
     this.gcRep_cod_recep_sample_report.FieldName = "Cod_recep_sample_report";
     this.gcRep_cod_recep_sample_report.Name = "gcRep_cod_recep_sample_report";
     this.gcRep_cod_recep_sample_report.OptionsColumn.AllowEdit = false;
     this.gcRep_cod_recep_sample_report.Width = 66;
     //
     // gcRep_report_status
     //
     this.gcRep_report_status.Caption = "Estado";
     this.gcRep_report_status.ColumnEdit = this.repStatusReport;
     this.gcRep_report_status.FieldName = "Report_status";
     this.gcRep_report_status.Name = "gcRep_report_status";
     this.gcRep_report_status.OptionsColumn.AllowEdit = false;
     this.gcRep_report_status.Visible = true;
     this.gcRep_report_status.VisibleIndex = 2;
     this.gcRep_report_status.Width = 74;
     //
     // repStatusReport
     //
     this.repStatusReport.AutoHeight = false;
     this.repStatusReport.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repStatusReport.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("IdStatus"),
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("Den_Status")});
     this.repStatusReport.Name = "repStatusReport";
     this.repStatusReport.NullText = "";
     this.repStatusReport.ShowFooter = false;
     this.repStatusReport.ShowHeader = false;
     //
     // gcRep_type_report
     //
     this.gcRep_type_report.Caption = "type_report";
     this.gcRep_type_report.FieldName = "Type_report";
     this.gcRep_type_report.Name = "gcRep_type_report";
     this.gcRep_type_report.Width = 69;
     //
     // gcRep_Option
     //
     this.gcRep_Option.Caption = "#";
     this.gcRep_Option.ColumnEdit = this.repReportOption;
     this.gcRep_Option.Name = "gcRep_Option";
     this.gcRep_Option.Visible = true;
     this.gcRep_Option.VisibleIndex = 3;
     this.gcRep_Option.Width = 81;
     //
     // repReportOption
     //
     this.repReportOption.AutoHeight = false;
     serializableAppearanceObject2.Font = new System.Drawing.Font("Tahoma", 7.5F);
     serializableAppearanceObject2.Options.UseFont = true;
     this.repReportOption.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.OK, "", -1, true, true, false, DevExpress.Utils.HorzAlignment.Center, null, new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None), serializableAppearanceObject2),
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Glyph, "ver", -1, true, true, false, DevExpress.Utils.HorzAlignment.Center, null),
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Glyph, "edit", -1, true, true, false, DevExpress.Utils.HorzAlignment.Center, null)});
     this.repReportOption.Name = "repReportOption";
     this.repReportOption.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.HideTextEditor;
     this.repReportOption.ButtonClick += new DevExpress.XtraEditors.Controls.ButtonPressedEventHandler(this.repReportOption_ButtonClick);
     //
     // gcRep_Str_cod_recep_sample_report
     //
     this.gcRep_Str_cod_recep_sample_report.Caption = "Cod. Interno";
     this.gcRep_Str_cod_recep_sample_report.FieldName = "Str_cod_recep_sample_report";
     this.gcRep_Str_cod_recep_sample_report.Name = "gcRep_Str_cod_recep_sample_report";
     this.gcRep_Str_cod_recep_sample_report.OptionsColumn.AllowEdit = false;
     this.gcRep_Str_cod_recep_sample_report.Visible = true;
     this.gcRep_Str_cod_recep_sample_report.VisibleIndex = 1;
     this.gcRep_Str_cod_recep_sample_report.Width = 123;
     //
     // gcRep_Date_report
     //
     this.gcRep_Date_report.Caption = "Date_report";
     this.gcRep_Date_report.FieldName = "Date_report";
     this.gcRep_Date_report.Name = "gcRep_Date_report";
     this.gcRep_Date_report.Width = 62;
     //
     // repDateReport
     //
     this.repDateReport.AutoHeight = false;
     this.repDateReport.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repDateReport.Name = "repDateReport";
     //
     // repTimeReport
     //
     this.repTimeReport.AutoHeight = false;
     this.repTimeReport.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.repTimeReport.Name = "repTimeReport";
     //
     // repTypeReport
     //
     this.repTypeReport.AutoHeight = false;
     this.repTypeReport.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repTypeReport.Name = "repTypeReport";
     //
     // groupControl1
     //
     this.groupControl1.Controls.Add(this.btMakePartialReport);
     this.groupControl1.Controls.Add(this.btMakeFinalReport);
     this.groupControl1.Dock = System.Windows.Forms.DockStyle.Top;
     this.groupControl1.Location = new System.Drawing.Point(0, 0);
     this.groupControl1.Name = "groupControl1";
     this.groupControl1.Size = new System.Drawing.Size(292, 53);
     this.groupControl1.TabIndex = 1;
     this.groupControl1.Text = "Crear Informe de Ensayo";
     //
     // btMakePartialReport
     //
     this.btMakePartialReport.AllowDrop = true;
     this.btMakePartialReport.Appearance.Options.UseTextOptions = true;
     this.btMakePartialReport.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;
     this.btMakePartialReport.Location = new System.Drawing.Point(5, 23);
     this.btMakePartialReport.Name = "btMakePartialReport";
     this.btMakePartialReport.Size = new System.Drawing.Size(90, 25);
     this.btMakePartialReport.TabIndex = 0;
     this.btMakePartialReport.Text = "Informe Parcial";
     this.btMakePartialReport.Click += new System.EventHandler(this.btMakePartialReport_Click);
     //
     // btMakeFinalReport
     //
     this.btMakeFinalReport.AllowDrop = true;
     this.btMakeFinalReport.Appearance.ForeColor = System.Drawing.Color.Black;
     this.btMakeFinalReport.Appearance.Options.UseForeColor = true;
     this.btMakeFinalReport.Appearance.Options.UseTextOptions = true;
     this.btMakeFinalReport.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;
     this.btMakeFinalReport.Location = new System.Drawing.Point(101, 23);
     this.btMakeFinalReport.Name = "btMakeFinalReport";
     this.btMakeFinalReport.Size = new System.Drawing.Size(90, 25);
     this.btMakeFinalReport.TabIndex = 0;
     this.btMakeFinalReport.Text = "Informe Final";
     this.btMakeFinalReport.Click += new System.EventHandler(this.btMakeFinalReport_Click);
     //
     // tpRightAttach
     //
     this.tpRightAttach.Controls.Add(this.gcAttachFile);
     this.tpRightAttach.Controls.Add(this.groupControl2);
     this.tpRightAttach.Name = "tpRightAttach";
     this.tpRightAttach.PageVisible = false;
     this.tpRightAttach.Size = new System.Drawing.Size(292, 0);
     this.tpRightAttach.Text = "Adjuntar";
     //
     // gcAttachFile
     //
     this.gcAttachFile.Dock = System.Windows.Forms.DockStyle.Fill;
     this.gcAttachFile.EmbeddedNavigator.Name = "";
     this.gcAttachFile.Location = new System.Drawing.Point(0, 53);
     this.gcAttachFile.MainView = this.gvAttachFile;
     this.gcAttachFile.Name = "gcAttachFile";
     this.gcAttachFile.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.repButtons,
     this.repAttach_status,
     this.repAttach_file});
     this.gcAttachFile.Size = new System.Drawing.Size(292, 0);
     this.gcAttachFile.TabIndex = 4;
     this.gcAttachFile.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gvAttachFile});
     //
     // gvAttachFile
     //
     this.gvAttachFile.Appearance.ColumnFilterButton.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(236)))), ((int)(((byte)(254)))));
     this.gvAttachFile.Appearance.ColumnFilterButton.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(132)))), ((int)(((byte)(171)))), ((int)(((byte)(228)))));
     this.gvAttachFile.Appearance.ColumnFilterButton.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(236)))), ((int)(((byte)(254)))));
     this.gvAttachFile.Appearance.ColumnFilterButton.ForeColor = System.Drawing.Color.Black;
     this.gvAttachFile.Appearance.ColumnFilterButton.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
     this.gvAttachFile.Appearance.ColumnFilterButton.Options.UseBackColor = true;
     this.gvAttachFile.Appearance.ColumnFilterButton.Options.UseBorderColor = true;
     this.gvAttachFile.Appearance.ColumnFilterButton.Options.UseForeColor = true;
     this.gvAttachFile.Appearance.ColumnFilterButtonActive.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(247)))), ((int)(((byte)(251)))), ((int)(((byte)(255)))));
     this.gvAttachFile.Appearance.ColumnFilterButtonActive.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(154)))), ((int)(((byte)(190)))), ((int)(((byte)(243)))));
     this.gvAttachFile.Appearance.ColumnFilterButtonActive.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(247)))), ((int)(((byte)(251)))), ((int)(((byte)(255)))));
     this.gvAttachFile.Appearance.ColumnFilterButtonActive.ForeColor = System.Drawing.Color.Black;
     this.gvAttachFile.Appearance.ColumnFilterButtonActive.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
     this.gvAttachFile.Appearance.ColumnFilterButtonActive.Options.UseBackColor = true;
     this.gvAttachFile.Appearance.ColumnFilterButtonActive.Options.UseBorderColor = true;
     this.gvAttachFile.Appearance.ColumnFilterButtonActive.Options.UseForeColor = true;
     this.gvAttachFile.Appearance.Empty.BackColor = System.Drawing.Color.White;
     this.gvAttachFile.Appearance.Empty.Options.UseBackColor = true;
     this.gvAttachFile.Appearance.EvenRow.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(231)))), ((int)(((byte)(242)))), ((int)(((byte)(254)))));
     this.gvAttachFile.Appearance.EvenRow.ForeColor = System.Drawing.Color.Black;
     this.gvAttachFile.Appearance.EvenRow.Options.UseBackColor = true;
     this.gvAttachFile.Appearance.EvenRow.Options.UseForeColor = true;
     this.gvAttachFile.Appearance.FilterCloseButton.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(236)))), ((int)(((byte)(254)))));
     this.gvAttachFile.Appearance.FilterCloseButton.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(132)))), ((int)(((byte)(171)))), ((int)(((byte)(228)))));
     this.gvAttachFile.Appearance.FilterCloseButton.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(236)))), ((int)(((byte)(254)))));
     this.gvAttachFile.Appearance.FilterCloseButton.ForeColor = System.Drawing.Color.Black;
     this.gvAttachFile.Appearance.FilterCloseButton.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
     this.gvAttachFile.Appearance.FilterCloseButton.Options.UseBackColor = true;
     this.gvAttachFile.Appearance.FilterCloseButton.Options.UseBorderColor = true;
     this.gvAttachFile.Appearance.FilterCloseButton.Options.UseForeColor = true;
     this.gvAttachFile.Appearance.FilterPanel.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(62)))), ((int)(((byte)(109)))), ((int)(((byte)(185)))));
     this.gvAttachFile.Appearance.FilterPanel.ForeColor = System.Drawing.Color.White;
     this.gvAttachFile.Appearance.FilterPanel.Options.UseBackColor = true;
     this.gvAttachFile.Appearance.FilterPanel.Options.UseForeColor = true;
     this.gvAttachFile.Appearance.FixedLine.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(59)))), ((int)(((byte)(97)))), ((int)(((byte)(156)))));
     this.gvAttachFile.Appearance.FixedLine.Options.UseBackColor = true;
     this.gvAttachFile.Appearance.FocusedCell.BackColor = System.Drawing.Color.White;
     this.gvAttachFile.Appearance.FocusedCell.ForeColor = System.Drawing.Color.Black;
     this.gvAttachFile.Appearance.FocusedCell.Options.UseBackColor = true;
     this.gvAttachFile.Appearance.FocusedCell.Options.UseForeColor = true;
     this.gvAttachFile.Appearance.FocusedRow.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(49)))), ((int)(((byte)(106)))), ((int)(((byte)(197)))));
     this.gvAttachFile.Appearance.FocusedRow.ForeColor = System.Drawing.Color.White;
     this.gvAttachFile.Appearance.FocusedRow.Options.UseBackColor = true;
     this.gvAttachFile.Appearance.FocusedRow.Options.UseForeColor = true;
     this.gvAttachFile.Appearance.FooterPanel.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(236)))), ((int)(((byte)(254)))));
     this.gvAttachFile.Appearance.FooterPanel.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(132)))), ((int)(((byte)(171)))), ((int)(((byte)(228)))));
     this.gvAttachFile.Appearance.FooterPanel.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(236)))), ((int)(((byte)(254)))));
     this.gvAttachFile.Appearance.FooterPanel.ForeColor = System.Drawing.Color.Black;
     this.gvAttachFile.Appearance.FooterPanel.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
     this.gvAttachFile.Appearance.FooterPanel.Options.UseBackColor = true;
     this.gvAttachFile.Appearance.FooterPanel.Options.UseBorderColor = true;
     this.gvAttachFile.Appearance.FooterPanel.Options.UseForeColor = true;
     this.gvAttachFile.Appearance.GroupButton.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(193)))), ((int)(((byte)(216)))), ((int)(((byte)(247)))));
     this.gvAttachFile.Appearance.GroupButton.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(193)))), ((int)(((byte)(216)))), ((int)(((byte)(247)))));
     this.gvAttachFile.Appearance.GroupButton.ForeColor = System.Drawing.Color.Black;
     this.gvAttachFile.Appearance.GroupButton.Options.UseBackColor = true;
     this.gvAttachFile.Appearance.GroupButton.Options.UseBorderColor = true;
     this.gvAttachFile.Appearance.GroupButton.Options.UseForeColor = true;
     this.gvAttachFile.Appearance.GroupFooter.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(193)))), ((int)(((byte)(216)))), ((int)(((byte)(247)))));
     this.gvAttachFile.Appearance.GroupFooter.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(193)))), ((int)(((byte)(216)))), ((int)(((byte)(247)))));
     this.gvAttachFile.Appearance.GroupFooter.ForeColor = System.Drawing.Color.Black;
     this.gvAttachFile.Appearance.GroupFooter.Options.UseBackColor = true;
     this.gvAttachFile.Appearance.GroupFooter.Options.UseBorderColor = true;
     this.gvAttachFile.Appearance.GroupFooter.Options.UseForeColor = true;
     this.gvAttachFile.Appearance.GroupPanel.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(62)))), ((int)(((byte)(109)))), ((int)(((byte)(185)))));
     this.gvAttachFile.Appearance.GroupPanel.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(236)))), ((int)(((byte)(254)))));
     this.gvAttachFile.Appearance.GroupPanel.Options.UseBackColor = true;
     this.gvAttachFile.Appearance.GroupPanel.Options.UseForeColor = true;
     this.gvAttachFile.Appearance.GroupRow.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(193)))), ((int)(((byte)(216)))), ((int)(((byte)(247)))));
     this.gvAttachFile.Appearance.GroupRow.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(193)))), ((int)(((byte)(216)))), ((int)(((byte)(247)))));
     this.gvAttachFile.Appearance.GroupRow.Font = new System.Drawing.Font("Tahoma", 8F, System.Drawing.FontStyle.Bold);
     this.gvAttachFile.Appearance.GroupRow.ForeColor = System.Drawing.Color.Black;
     this.gvAttachFile.Appearance.GroupRow.Options.UseBackColor = true;
     this.gvAttachFile.Appearance.GroupRow.Options.UseBorderColor = true;
     this.gvAttachFile.Appearance.GroupRow.Options.UseFont = true;
     this.gvAttachFile.Appearance.GroupRow.Options.UseForeColor = true;
     this.gvAttachFile.Appearance.HeaderPanel.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(236)))), ((int)(((byte)(254)))));
     this.gvAttachFile.Appearance.HeaderPanel.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(132)))), ((int)(((byte)(171)))), ((int)(((byte)(228)))));
     this.gvAttachFile.Appearance.HeaderPanel.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(236)))), ((int)(((byte)(254)))));
     this.gvAttachFile.Appearance.HeaderPanel.ForeColor = System.Drawing.Color.Black;
     this.gvAttachFile.Appearance.HeaderPanel.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
     this.gvAttachFile.Appearance.HeaderPanel.Options.UseBackColor = true;
     this.gvAttachFile.Appearance.HeaderPanel.Options.UseBorderColor = true;
     this.gvAttachFile.Appearance.HeaderPanel.Options.UseForeColor = true;
     this.gvAttachFile.Appearance.HideSelectionRow.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(106)))), ((int)(((byte)(153)))), ((int)(((byte)(228)))));
     this.gvAttachFile.Appearance.HideSelectionRow.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(208)))), ((int)(((byte)(224)))), ((int)(((byte)(251)))));
     this.gvAttachFile.Appearance.HideSelectionRow.Options.UseBackColor = true;
     this.gvAttachFile.Appearance.HideSelectionRow.Options.UseForeColor = true;
     this.gvAttachFile.Appearance.HorzLine.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(99)))), ((int)(((byte)(127)))), ((int)(((byte)(196)))));
     this.gvAttachFile.Appearance.HorzLine.Options.UseBackColor = true;
     this.gvAttachFile.Appearance.OddRow.BackColor = System.Drawing.Color.White;
     this.gvAttachFile.Appearance.OddRow.ForeColor = System.Drawing.Color.Black;
     this.gvAttachFile.Appearance.OddRow.Options.UseBackColor = true;
     this.gvAttachFile.Appearance.OddRow.Options.UseForeColor = true;
     this.gvAttachFile.Appearance.Preview.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(249)))), ((int)(((byte)(252)))), ((int)(((byte)(255)))));
     this.gvAttachFile.Appearance.Preview.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(88)))), ((int)(((byte)(129)))), ((int)(((byte)(185)))));
     this.gvAttachFile.Appearance.Preview.Options.UseBackColor = true;
     this.gvAttachFile.Appearance.Preview.Options.UseForeColor = true;
     this.gvAttachFile.Appearance.Row.BackColor = System.Drawing.Color.White;
     this.gvAttachFile.Appearance.Row.ForeColor = System.Drawing.Color.Black;
     this.gvAttachFile.Appearance.Row.Options.UseBackColor = true;
     this.gvAttachFile.Appearance.Row.Options.UseForeColor = true;
     this.gvAttachFile.Appearance.RowSeparator.BackColor = System.Drawing.Color.White;
     this.gvAttachFile.Appearance.RowSeparator.Options.UseBackColor = true;
     this.gvAttachFile.Appearance.SelectedRow.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(69)))), ((int)(((byte)(126)))), ((int)(((byte)(217)))));
     this.gvAttachFile.Appearance.SelectedRow.ForeColor = System.Drawing.Color.White;
     this.gvAttachFile.Appearance.SelectedRow.Options.UseBackColor = true;
     this.gvAttachFile.Appearance.SelectedRow.Options.UseForeColor = true;
     this.gvAttachFile.Appearance.VertLine.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(99)))), ((int)(((byte)(127)))), ((int)(((byte)(196)))));
     this.gvAttachFile.Appearance.VertLine.Options.UseBackColor = true;
     this.gvAttachFile.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gcAtt_Iddocument_recep,
     this.gcAtt_Idrecep_sample,
     this.gcAtt_FileName,
     this.gcAtt_Attach_status,
     this.gcAtt_Buttons,
     this.gcAtt_SourcePath,
     this.gcAtt_Order_file,
     this.gcAtt_Idrecep_sample_attach});
     this.gvAttachFile.GridControl = this.gcAttachFile;
     this.gvAttachFile.Name = "gvAttachFile";
     this.gvAttachFile.OptionsSelection.EnableAppearanceFocusedCell = false;
     this.gvAttachFile.OptionsSelection.EnableAppearanceFocusedRow = false;
     this.gvAttachFile.OptionsView.EnableAppearanceEvenRow = true;
     this.gvAttachFile.OptionsView.EnableAppearanceOddRow = true;
     this.gvAttachFile.OptionsView.ShowGroupPanel = false;
     this.gvAttachFile.RowCellStyle += new DevExpress.XtraGrid.Views.Grid.RowCellStyleEventHandler(this.gvAttachFile_RowCellStyle);
     //
     // gcAtt_Iddocument_recep
     //
     this.gcAtt_Iddocument_recep.Caption = "Iddocument_recep";
     this.gcAtt_Iddocument_recep.FieldName = "Iddocument_recep";
     this.gcAtt_Iddocument_recep.Name = "gcAtt_Iddocument_recep";
     //
     // gcAtt_Idrecep_sample
     //
     this.gcAtt_Idrecep_sample.Caption = "gridColumn1";
     this.gcAtt_Idrecep_sample.FieldName = "Idrecep_sample";
     this.gcAtt_Idrecep_sample.Name = "gcAtt_Idrecep_sample";
     //
     // gcAtt_FileName
     //
     this.gcAtt_FileName.Caption = "Adjuntar Documento";
     this.gcAtt_FileName.ColumnEdit = this.repAttach_file;
     this.gcAtt_FileName.FieldName = "Name_file";
     this.gcAtt_FileName.Name = "gcAtt_FileName";
     this.gcAtt_FileName.Visible = true;
     this.gcAtt_FileName.VisibleIndex = 0;
     this.gcAtt_FileName.Width = 142;
     //
     // repAttach_file
     //
     this.repAttach_file.AutoHeight = false;
     serializableAppearanceObject3.Font = new System.Drawing.Font("Tahoma", 7.5F);
     serializableAppearanceObject3.Options.UseFont = true;
     this.repAttach_file.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo),
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Glyph, "Cargar", -1, true, true, false, DevExpress.Utils.HorzAlignment.Center, null, new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None), serializableAppearanceObject3)});
     this.repAttach_file.Name = "repAttach_file";
     this.repAttach_file.NullText = "";
     //
     // gcAtt_Attach_status
     //
     this.gcAtt_Attach_status.Caption = "Estado";
     this.gcAtt_Attach_status.ColumnEdit = this.repAttach_status;
     this.gcAtt_Attach_status.FieldName = "Attach_status";
     this.gcAtt_Attach_status.Name = "gcAtt_Attach_status";
     this.gcAtt_Attach_status.Visible = true;
     this.gcAtt_Attach_status.VisibleIndex = 1;
     this.gcAtt_Attach_status.Width = 99;
     //
     // repAttach_status
     //
     this.repAttach_status.AutoHeight = false;
     this.repAttach_status.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repAttach_status.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("Id", "", 20, DevExpress.Utils.FormatType.None, "", false, DevExpress.Utils.HorzAlignment.Default, DevExpress.Data.ColumnSortOrder.None),
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("Attach_status")});
     this.repAttach_status.Name = "repAttach_status";
     this.repAttach_status.NullText = "";
     this.repAttach_status.ShowFooter = false;
     this.repAttach_status.ShowHeader = false;
     //
     // gcAtt_Buttons
     //
     this.gcAtt_Buttons.Caption = "#";
     this.gcAtt_Buttons.ColumnEdit = this.repButtons;
     this.gcAtt_Buttons.Name = "gcAtt_Buttons";
     this.gcAtt_Buttons.Visible = true;
     this.gcAtt_Buttons.VisibleIndex = 2;
     this.gcAtt_Buttons.Width = 49;
     //
     // repButtons
     //
     this.repButtons.AutoHeight = false;
     serializableAppearanceObject4.Font = new System.Drawing.Font("Tahoma", 7.5F);
     serializableAppearanceObject4.Options.UseFont = true;
     this.repButtons.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.OK),
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Glyph, "ver", -1, true, true, false, DevExpress.Utils.HorzAlignment.Center, null, new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None), serializableAppearanceObject4)});
     this.repButtons.Name = "repButtons";
     this.repButtons.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.HideTextEditor;
     this.repButtons.ButtonClick += new DevExpress.XtraEditors.Controls.ButtonPressedEventHandler(this.repButtons_ButtonClick);
     //
     // gcAtt_SourcePath
     //
     this.gcAtt_SourcePath.Caption = "Source path";
     this.gcAtt_SourcePath.FieldName = "Source_path";
     this.gcAtt_SourcePath.Name = "gcAtt_SourcePath";
     //
     // gcAtt_Order_file
     //
     this.gcAtt_Order_file.Caption = "Order_file";
     this.gcAtt_Order_file.FieldName = "Order_file";
     this.gcAtt_Order_file.Name = "gcAtt_Order_file";
     //
     // gcAtt_Idrecep_sample_attach
     //
     this.gcAtt_Idrecep_sample_attach.Caption = "Idrecep_sample_attach";
     this.gcAtt_Idrecep_sample_attach.FieldName = "Idrecep_sample_attach";
     this.gcAtt_Idrecep_sample_attach.Name = "gcAtt_Idrecep_sample_attach";
     //
     // groupControl2
     //
     this.groupControl2.Controls.Add(this.btNewFile);
     this.groupControl2.Dock = System.Windows.Forms.DockStyle.Top;
     this.groupControl2.Location = new System.Drawing.Point(0, 0);
     this.groupControl2.Name = "groupControl2";
     this.groupControl2.Size = new System.Drawing.Size(292, 53);
     this.groupControl2.TabIndex = 3;
     this.groupControl2.Text = "Adjuntar a partir de un archivo";
     //
     // btNewFile
     //
     this.btNewFile.AllowDrop = true;
     this.btNewFile.Appearance.Options.UseTextOptions = true;
     this.btNewFile.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;
     this.btNewFile.Location = new System.Drawing.Point(5, 22);
     this.btNewFile.Name = "btNewFile";
     this.btNewFile.Size = new System.Drawing.Size(56, 25);
     this.btNewFile.TabIndex = 0;
     this.btNewFile.Text = "Nuevo";
     this.btNewFile.Click += new System.EventHandler(this.btNewFile_Click);
     //
     // tpRightProgram
     //
     this.tpRightProgram.Controls.Add(this.gcProgram);
     this.tpRightProgram.Controls.Add(this.groupControl3);
     this.tpRightProgram.Name = "tpRightProgram";
     this.tpRightProgram.PageVisible = false;
     this.tpRightProgram.Size = new System.Drawing.Size(292, 0);
     this.tpRightProgram.Text = "Programar";
     //
     // gcProgram
     //
     this.gcProgram.Dock = System.Windows.Forms.DockStyle.Fill;
     this.gcProgram.EmbeddedNavigator.Name = "";
     this.gcProgram.Location = new System.Drawing.Point(0, 53);
     this.gcProgram.MainView = this.gvProgram;
     this.gcProgram.Name = "gcProgram";
     this.gcProgram.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.repProgramButton,
     this.repProgramStatus,
     this.repDateProgram,
     this.repTimeProgram});
     this.gcProgram.Size = new System.Drawing.Size(292, 0);
     this.gcProgram.TabIndex = 4;
     this.gcProgram.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gvProgram});
     //
     // gvProgram
     //
     this.gvProgram.Appearance.ColumnFilterButton.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(236)))), ((int)(((byte)(254)))));
     this.gvProgram.Appearance.ColumnFilterButton.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(132)))), ((int)(((byte)(171)))), ((int)(((byte)(228)))));
     this.gvProgram.Appearance.ColumnFilterButton.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(236)))), ((int)(((byte)(254)))));
     this.gvProgram.Appearance.ColumnFilterButton.ForeColor = System.Drawing.Color.Black;
     this.gvProgram.Appearance.ColumnFilterButton.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
     this.gvProgram.Appearance.ColumnFilterButton.Options.UseBackColor = true;
     this.gvProgram.Appearance.ColumnFilterButton.Options.UseBorderColor = true;
     this.gvProgram.Appearance.ColumnFilterButton.Options.UseForeColor = true;
     this.gvProgram.Appearance.ColumnFilterButtonActive.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(247)))), ((int)(((byte)(251)))), ((int)(((byte)(255)))));
     this.gvProgram.Appearance.ColumnFilterButtonActive.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(154)))), ((int)(((byte)(190)))), ((int)(((byte)(243)))));
     this.gvProgram.Appearance.ColumnFilterButtonActive.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(247)))), ((int)(((byte)(251)))), ((int)(((byte)(255)))));
     this.gvProgram.Appearance.ColumnFilterButtonActive.ForeColor = System.Drawing.Color.Black;
     this.gvProgram.Appearance.ColumnFilterButtonActive.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
     this.gvProgram.Appearance.ColumnFilterButtonActive.Options.UseBackColor = true;
     this.gvProgram.Appearance.ColumnFilterButtonActive.Options.UseBorderColor = true;
     this.gvProgram.Appearance.ColumnFilterButtonActive.Options.UseForeColor = true;
     this.gvProgram.Appearance.Empty.BackColor = System.Drawing.Color.White;
     this.gvProgram.Appearance.Empty.Options.UseBackColor = true;
     this.gvProgram.Appearance.EvenRow.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(231)))), ((int)(((byte)(242)))), ((int)(((byte)(254)))));
     this.gvProgram.Appearance.EvenRow.ForeColor = System.Drawing.Color.Black;
     this.gvProgram.Appearance.EvenRow.Options.UseBackColor = true;
     this.gvProgram.Appearance.EvenRow.Options.UseForeColor = true;
     this.gvProgram.Appearance.FilterCloseButton.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(236)))), ((int)(((byte)(254)))));
     this.gvProgram.Appearance.FilterCloseButton.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(132)))), ((int)(((byte)(171)))), ((int)(((byte)(228)))));
     this.gvProgram.Appearance.FilterCloseButton.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(236)))), ((int)(((byte)(254)))));
     this.gvProgram.Appearance.FilterCloseButton.ForeColor = System.Drawing.Color.Black;
     this.gvProgram.Appearance.FilterCloseButton.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
     this.gvProgram.Appearance.FilterCloseButton.Options.UseBackColor = true;
     this.gvProgram.Appearance.FilterCloseButton.Options.UseBorderColor = true;
     this.gvProgram.Appearance.FilterCloseButton.Options.UseForeColor = true;
     this.gvProgram.Appearance.FilterPanel.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(62)))), ((int)(((byte)(109)))), ((int)(((byte)(185)))));
     this.gvProgram.Appearance.FilterPanel.ForeColor = System.Drawing.Color.White;
     this.gvProgram.Appearance.FilterPanel.Options.UseBackColor = true;
     this.gvProgram.Appearance.FilterPanel.Options.UseForeColor = true;
     this.gvProgram.Appearance.FixedLine.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(59)))), ((int)(((byte)(97)))), ((int)(((byte)(156)))));
     this.gvProgram.Appearance.FixedLine.Options.UseBackColor = true;
     this.gvProgram.Appearance.FocusedCell.BackColor = System.Drawing.Color.White;
     this.gvProgram.Appearance.FocusedCell.ForeColor = System.Drawing.Color.Black;
     this.gvProgram.Appearance.FocusedCell.Options.UseBackColor = true;
     this.gvProgram.Appearance.FocusedCell.Options.UseForeColor = true;
     this.gvProgram.Appearance.FocusedRow.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(49)))), ((int)(((byte)(106)))), ((int)(((byte)(197)))));
     this.gvProgram.Appearance.FocusedRow.ForeColor = System.Drawing.Color.White;
     this.gvProgram.Appearance.FocusedRow.Options.UseBackColor = true;
     this.gvProgram.Appearance.FocusedRow.Options.UseForeColor = true;
     this.gvProgram.Appearance.FooterPanel.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(236)))), ((int)(((byte)(254)))));
     this.gvProgram.Appearance.FooterPanel.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(132)))), ((int)(((byte)(171)))), ((int)(((byte)(228)))));
     this.gvProgram.Appearance.FooterPanel.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(236)))), ((int)(((byte)(254)))));
     this.gvProgram.Appearance.FooterPanel.ForeColor = System.Drawing.Color.Black;
     this.gvProgram.Appearance.FooterPanel.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
     this.gvProgram.Appearance.FooterPanel.Options.UseBackColor = true;
     this.gvProgram.Appearance.FooterPanel.Options.UseBorderColor = true;
     this.gvProgram.Appearance.FooterPanel.Options.UseForeColor = true;
     this.gvProgram.Appearance.GroupButton.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(193)))), ((int)(((byte)(216)))), ((int)(((byte)(247)))));
     this.gvProgram.Appearance.GroupButton.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(193)))), ((int)(((byte)(216)))), ((int)(((byte)(247)))));
     this.gvProgram.Appearance.GroupButton.ForeColor = System.Drawing.Color.Black;
     this.gvProgram.Appearance.GroupButton.Options.UseBackColor = true;
     this.gvProgram.Appearance.GroupButton.Options.UseBorderColor = true;
     this.gvProgram.Appearance.GroupButton.Options.UseForeColor = true;
     this.gvProgram.Appearance.GroupFooter.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(193)))), ((int)(((byte)(216)))), ((int)(((byte)(247)))));
     this.gvProgram.Appearance.GroupFooter.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(193)))), ((int)(((byte)(216)))), ((int)(((byte)(247)))));
     this.gvProgram.Appearance.GroupFooter.ForeColor = System.Drawing.Color.Black;
     this.gvProgram.Appearance.GroupFooter.Options.UseBackColor = true;
     this.gvProgram.Appearance.GroupFooter.Options.UseBorderColor = true;
     this.gvProgram.Appearance.GroupFooter.Options.UseForeColor = true;
     this.gvProgram.Appearance.GroupPanel.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(62)))), ((int)(((byte)(109)))), ((int)(((byte)(185)))));
     this.gvProgram.Appearance.GroupPanel.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(236)))), ((int)(((byte)(254)))));
     this.gvProgram.Appearance.GroupPanel.Options.UseBackColor = true;
     this.gvProgram.Appearance.GroupPanel.Options.UseForeColor = true;
     this.gvProgram.Appearance.GroupRow.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(193)))), ((int)(((byte)(216)))), ((int)(((byte)(247)))));
     this.gvProgram.Appearance.GroupRow.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(193)))), ((int)(((byte)(216)))), ((int)(((byte)(247)))));
     this.gvProgram.Appearance.GroupRow.Font = new System.Drawing.Font("Tahoma", 8F, System.Drawing.FontStyle.Bold);
     this.gvProgram.Appearance.GroupRow.ForeColor = System.Drawing.Color.Black;
     this.gvProgram.Appearance.GroupRow.Options.UseBackColor = true;
     this.gvProgram.Appearance.GroupRow.Options.UseBorderColor = true;
     this.gvProgram.Appearance.GroupRow.Options.UseFont = true;
     this.gvProgram.Appearance.GroupRow.Options.UseForeColor = true;
     this.gvProgram.Appearance.HeaderPanel.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(236)))), ((int)(((byte)(254)))));
     this.gvProgram.Appearance.HeaderPanel.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(132)))), ((int)(((byte)(171)))), ((int)(((byte)(228)))));
     this.gvProgram.Appearance.HeaderPanel.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(236)))), ((int)(((byte)(254)))));
     this.gvProgram.Appearance.HeaderPanel.ForeColor = System.Drawing.Color.Black;
     this.gvProgram.Appearance.HeaderPanel.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
     this.gvProgram.Appearance.HeaderPanel.Options.UseBackColor = true;
     this.gvProgram.Appearance.HeaderPanel.Options.UseBorderColor = true;
     this.gvProgram.Appearance.HeaderPanel.Options.UseForeColor = true;
     this.gvProgram.Appearance.HideSelectionRow.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(106)))), ((int)(((byte)(153)))), ((int)(((byte)(228)))));
     this.gvProgram.Appearance.HideSelectionRow.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(208)))), ((int)(((byte)(224)))), ((int)(((byte)(251)))));
     this.gvProgram.Appearance.HideSelectionRow.Options.UseBackColor = true;
     this.gvProgram.Appearance.HideSelectionRow.Options.UseForeColor = true;
     this.gvProgram.Appearance.HorzLine.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(99)))), ((int)(((byte)(127)))), ((int)(((byte)(196)))));
     this.gvProgram.Appearance.HorzLine.Options.UseBackColor = true;
     this.gvProgram.Appearance.OddRow.BackColor = System.Drawing.Color.White;
     this.gvProgram.Appearance.OddRow.ForeColor = System.Drawing.Color.Black;
     this.gvProgram.Appearance.OddRow.Options.UseBackColor = true;
     this.gvProgram.Appearance.OddRow.Options.UseForeColor = true;
     this.gvProgram.Appearance.Preview.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(249)))), ((int)(((byte)(252)))), ((int)(((byte)(255)))));
     this.gvProgram.Appearance.Preview.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(88)))), ((int)(((byte)(129)))), ((int)(((byte)(185)))));
     this.gvProgram.Appearance.Preview.Options.UseBackColor = true;
     this.gvProgram.Appearance.Preview.Options.UseForeColor = true;
     this.gvProgram.Appearance.Row.BackColor = System.Drawing.Color.White;
     this.gvProgram.Appearance.Row.ForeColor = System.Drawing.Color.Black;
     this.gvProgram.Appearance.Row.Options.UseBackColor = true;
     this.gvProgram.Appearance.Row.Options.UseForeColor = true;
     this.gvProgram.Appearance.RowSeparator.BackColor = System.Drawing.Color.White;
     this.gvProgram.Appearance.RowSeparator.Options.UseBackColor = true;
     this.gvProgram.Appearance.SelectedRow.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(69)))), ((int)(((byte)(126)))), ((int)(((byte)(217)))));
     this.gvProgram.Appearance.SelectedRow.ForeColor = System.Drawing.Color.White;
     this.gvProgram.Appearance.SelectedRow.Options.UseBackColor = true;
     this.gvProgram.Appearance.SelectedRow.Options.UseForeColor = true;
     this.gvProgram.Appearance.VertLine.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(99)))), ((int)(((byte)(127)))), ((int)(((byte)(196)))));
     this.gvProgram.Appearance.VertLine.Options.UseBackColor = true;
     this.gvProgram.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gcProg_Idrecep_sample_program,
     this.gcProg_Order_report,
     this.gcProg_Cod_recep_sample_program,
     this.gcProg_Program_status,
     this.gridColumn6,
     this.gcProg_Date_report,
     this.gcProg_Time_report,
     this.gcProg_Str_cod_recep_sample_program});
     this.gvProgram.GridControl = this.gcProgram;
     this.gvProgram.Name = "gvProgram";
     this.gvProgram.OptionsSelection.EnableAppearanceFocusedCell = false;
     this.gvProgram.OptionsSelection.EnableAppearanceFocusedRow = false;
     this.gvProgram.OptionsView.EnableAppearanceEvenRow = true;
     this.gvProgram.OptionsView.EnableAppearanceOddRow = true;
     this.gvProgram.OptionsView.ShowGroupPanel = false;
     this.gvProgram.RowCellStyle += new DevExpress.XtraGrid.Views.Grid.RowCellStyleEventHandler(this.gvProgram_RowCellStyle);
     this.gvProgram.InitNewRow += new DevExpress.XtraGrid.Views.Grid.InitNewRowEventHandler(this.gvProgram_InitNewRow);
     this.gvProgram.FocusedRowChanged += new DevExpress.XtraGrid.Views.Base.FocusedRowChangedEventHandler(this.gvProgram_FocusedRowChanged);
     //
     // gcProg_Idrecep_sample_program
     //
     this.gcProg_Idrecep_sample_program.Caption = "idrecep_sample_report";
     this.gcProg_Idrecep_sample_program.FieldName = "Idrecep_sample_program";
     this.gcProg_Idrecep_sample_program.Name = "gcProg_Idrecep_sample_program";
     //
     // gcProg_Order_report
     //
     this.gcProg_Order_report.Caption = "N°";
     this.gcProg_Order_report.FieldName = "Order_report";
     this.gcProg_Order_report.Name = "gcProg_Order_report";
     this.gcProg_Order_report.OptionsColumn.AllowEdit = false;
     this.gcProg_Order_report.OptionsFilter.AllowAutoFilter = false;
     this.gcProg_Order_report.OptionsFilter.AllowFilter = false;
     this.gcProg_Order_report.Visible = true;
     this.gcProg_Order_report.VisibleIndex = 0;
     this.gcProg_Order_report.Width = 23;
     //
     // gcProg_Cod_recep_sample_program
     //
     this.gcProg_Cod_recep_sample_program.Caption = "Código";
     this.gcProg_Cod_recep_sample_program.FieldName = "Cod_recep_sample_program";
     this.gcProg_Cod_recep_sample_program.Name = "gcProg_Cod_recep_sample_program";
     this.gcProg_Cod_recep_sample_program.OptionsColumn.AllowEdit = false;
     this.gcProg_Cod_recep_sample_program.Width = 63;
     //
     // gcProg_Program_status
     //
     this.gcProg_Program_status.Caption = "Estado";
     this.gcProg_Program_status.ColumnEdit = this.repProgramStatus;
     this.gcProg_Program_status.FieldName = "Program_status";
     this.gcProg_Program_status.Name = "gcProg_Program_status";
     this.gcProg_Program_status.OptionsColumn.AllowEdit = false;
     this.gcProg_Program_status.Width = 42;
     //
     // repProgramStatus
     //
     this.repProgramStatus.AutoHeight = false;
     this.repProgramStatus.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repProgramStatus.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("IdStatus"),
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("Den_Status")});
     this.repProgramStatus.Name = "repProgramStatus";
     this.repProgramStatus.NullText = "";
     this.repProgramStatus.ShowFooter = false;
     this.repProgramStatus.ShowHeader = false;
     //
     // gridColumn6
     //
     this.gridColumn6.Caption = "#";
     this.gridColumn6.ColumnEdit = this.repProgramButton;
     this.gridColumn6.Name = "gridColumn6";
     this.gridColumn6.Visible = true;
     this.gridColumn6.VisibleIndex = 4;
     this.gridColumn6.Width = 67;
     //
     // repProgramButton
     //
     this.repProgramButton.AutoHeight = false;
     this.repProgramButton.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Glyph, "Programar", -1, true, true, false, DevExpress.Utils.HorzAlignment.Center, null)});
     this.repProgramButton.Name = "repProgramButton";
     this.repProgramButton.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.HideTextEditor;
     this.repProgramButton.ButtonClick += new DevExpress.XtraEditors.Controls.ButtonPressedEventHandler(this.repProgramButton_ButtonClick);
     //
     // gcProg_Date_report
     //
     this.gcProg_Date_report.Caption = "Fecha";
     this.gcProg_Date_report.ColumnEdit = this.repDateProgram;
     this.gcProg_Date_report.FieldName = "Date_report";
     this.gcProg_Date_report.Name = "gcProg_Date_report";
     this.gcProg_Date_report.OptionsFilter.AllowAutoFilter = false;
     this.gcProg_Date_report.OptionsFilter.AllowFilter = false;
     this.gcProg_Date_report.Visible = true;
     this.gcProg_Date_report.VisibleIndex = 2;
     this.gcProg_Date_report.Width = 67;
     //
     // repDateProgram
     //
     this.repDateProgram.AutoHeight = false;
     this.repDateProgram.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repDateProgram.Name = "repDateProgram";
     //
     // gcProg_Time_report
     //
     this.gcProg_Time_report.Caption = "Hora";
     this.gcProg_Time_report.ColumnEdit = this.repTimeProgram;
     this.gcProg_Time_report.FieldName = "Time_report";
     this.gcProg_Time_report.Name = "gcProg_Time_report";
     this.gcProg_Time_report.OptionsFilter.AllowAutoFilter = false;
     this.gcProg_Time_report.OptionsFilter.AllowFilter = false;
     this.gcProg_Time_report.Visible = true;
     this.gcProg_Time_report.VisibleIndex = 3;
     this.gcProg_Time_report.Width = 66;
     //
     // repTimeProgram
     //
     this.repTimeProgram.AutoHeight = false;
     this.repTimeProgram.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.repTimeProgram.Mask.EditMask = "t";
     this.repTimeProgram.Name = "repTimeProgram";
     //
     // gcProg_Str_cod_recep_sample_program
     //
     this.gcProg_Str_cod_recep_sample_program.Caption = "Código";
     this.gcProg_Str_cod_recep_sample_program.FieldName = "Str_cod_recep_sample_program";
     this.gcProg_Str_cod_recep_sample_program.Name = "gcProg_Str_cod_recep_sample_program";
     this.gcProg_Str_cod_recep_sample_program.OptionsColumn.AllowEdit = false;
     this.gcProg_Str_cod_recep_sample_program.OptionsFilter.AllowAutoFilter = false;
     this.gcProg_Str_cod_recep_sample_program.OptionsFilter.AllowFilter = false;
     this.gcProg_Str_cod_recep_sample_program.Visible = true;
     this.gcProg_Str_cod_recep_sample_program.VisibleIndex = 1;
     this.gcProg_Str_cod_recep_sample_program.Width = 78;
     //
     // groupControl3
     //
     this.groupControl3.Controls.Add(this.btProgramSelection);
     this.groupControl3.Dock = System.Windows.Forms.DockStyle.Top;
     this.groupControl3.Location = new System.Drawing.Point(0, 0);
     this.groupControl3.Name = "groupControl3";
     this.groupControl3.Size = new System.Drawing.Size(292, 53);
     this.groupControl3.TabIndex = 3;
     this.groupControl3.Text = "Crear Informe de Ensayo";
     //
     // btProgramSelection
     //
     this.btProgramSelection.AllowDrop = true;
     this.btProgramSelection.Appearance.Options.UseTextOptions = true;
     this.btProgramSelection.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;
     this.btProgramSelection.Location = new System.Drawing.Point(5, 23);
     this.btProgramSelection.Name = "btProgramSelection";
     this.btProgramSelection.Size = new System.Drawing.Size(113, 25);
     this.btProgramSelection.TabIndex = 0;
     this.btProgramSelection.Text = "Agregar selección";
     this.btProgramSelection.Click += new System.EventHandler(this.btProgramSelection_Click);
     //
     // btPrintTicket
     //
     this.btPrintTicket.FlatAppearance.BorderSize = 0;
     this.btPrintTicket.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.btPrintTicket.Location = new System.Drawing.Point(729, 12);
     this.btPrintTicket.Name = "btPrintTicket";
     this.btPrintTicket.Size = new System.Drawing.Size(48, 23);
     this.btPrintTicket.TabIndex = 10;
     this.btPrintTicket.Text = "Imprimir Etiquetas";
     this.btPrintTicket.UseVisualStyleBackColor = true;
     this.btPrintTicket.Visible = false;
     this.btPrintTicket.Click += new System.EventHandler(this.btPrintTicket_Click_1);
     //
     // btDesignPrint
     //
     this.btDesignPrint.FlatAppearance.BorderSize = 0;
     this.btDesignPrint.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.btDesignPrint.Location = new System.Drawing.Point(772, 9);
     this.btDesignPrint.Name = "btDesignPrint";
     this.btDesignPrint.Size = new System.Drawing.Size(69, 23);
     this.btDesignPrint.TabIndex = 10;
     this.btDesignPrint.Text = "Diseñar Etiquetas";
     this.btDesignPrint.UseVisualStyleBackColor = true;
     this.btDesignPrint.Visible = false;
     this.btDesignPrint.Click += new System.EventHandler(this.btDesignPrint_Click);
     //
     // deReception
     //
     this.deReception.EditValue = null;
     this.deReception.Location = new System.Drawing.Point(75, 5);
     this.deReception.Name = "deReception";
     this.deReception.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.deReception.Properties.ReadOnly = true;
     this.deReception.Size = new System.Drawing.Size(87, 20);
     this.deReception.TabIndex = 10;
     //
     // label12
     //
     this.label12.AutoSize = true;
     this.label12.Location = new System.Drawing.Point(12, 8);
     this.label12.Name = "label12";
     this.label12.Size = new System.Drawing.Size(62, 13);
     this.label12.TabIndex = 9;
     this.label12.Text = "Recepción:";
     //
     // label19
     //
     this.label19.AutoSize = true;
     this.label19.Location = new System.Drawing.Point(12, 50);
     this.label19.Name = "label19";
     this.label19.Size = new System.Drawing.Size(47, 13);
     this.label19.TabIndex = 9;
     this.label19.Text = "Entrega:";
     //
     // deResult
     //
     this.deResult.EditValue = null;
     this.deResult.Location = new System.Drawing.Point(75, 47);
     this.deResult.Name = "deResult";
     this.deResult.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.deResult.Size = new System.Drawing.Size(87, 20);
     this.deResult.TabIndex = 10;
     //
     // xtraTabControl2
     //
     this.xtraTabControl2.Appearance.BackColor = System.Drawing.Color.Transparent;
     this.xtraTabControl2.Appearance.Options.UseBackColor = true;
     this.xtraTabControl2.AppearancePage.Header.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(209)))), ((int)(((byte)(222)))), ((int)(((byte)(243)))));
     this.xtraTabControl2.AppearancePage.Header.BorderColor = System.Drawing.Color.White;
     this.xtraTabControl2.AppearancePage.Header.Options.UseBackColor = true;
     this.xtraTabControl2.AppearancePage.Header.Options.UseBorderColor = true;
     this.xtraTabControl2.AppearancePage.HeaderActive.BackColor = System.Drawing.Color.LightSteelBlue;
     this.xtraTabControl2.AppearancePage.HeaderActive.BorderColor = System.Drawing.Color.Gainsboro;
     this.xtraTabControl2.AppearancePage.HeaderActive.Options.UseBackColor = true;
     this.xtraTabControl2.AppearancePage.HeaderActive.Options.UseBorderColor = true;
     this.xtraTabControl2.AppearancePage.PageClient.BorderColor = System.Drawing.Color.Gainsboro;
     this.xtraTabControl2.AppearancePage.PageClient.Options.UseBorderColor = true;
     this.xtraTabControl2.Location = new System.Drawing.Point(551, 29);
     this.xtraTabControl2.Name = "xtraTabControl2";
     this.xtraTabControl2.PaintStyleName = "PropertyView";
     this.xtraTabControl2.SelectedTabPage = this.tabDateRegRecep;
     this.xtraTabControl2.Size = new System.Drawing.Size(264, 114);
     this.xtraTabControl2.TabIndex = 4;
     this.xtraTabControl2.TabPages.AddRange(new DevExpress.XtraTab.XtraTabPage[] {
     this.tabDateRegRecep});
     //
     // tabDateRegRecep
     //
     this.tabDateRegRecep.Controls.Add(this.tbNumDays);
     this.tabDateRegRecep.Controls.Add(this.deHourResult);
     this.tabDateRegRecep.Controls.Add(this.deHourReception);
     this.tabDateRegRecep.Controls.Add(this.label27);
     this.tabDateRegRecep.Controls.Add(this.deReception);
     this.tabDateRegRecep.Controls.Add(this.lookUpEdit1);
     this.tabDateRegRecep.Controls.Add(this.deResult);
     this.tabDateRegRecep.Controls.Add(this.label19);
     this.tabDateRegRecep.Controls.Add(this.textEdit3);
     this.tabDateRegRecep.Controls.Add(this.label12);
     this.tabDateRegRecep.Name = "tabDateRegRecep";
     this.tabDateRegRecep.Size = new System.Drawing.Size(262, 93);
     this.tabDateRegRecep.Text = "Fechas";
     //
     // tbNumDays
     //
     this.tbNumDays.EditValue = new decimal(new int[] {
     0,
     0,
     0,
     0});
     this.tbNumDays.Location = new System.Drawing.Point(75, 26);
     this.tbNumDays.Name = "tbNumDays";
     this.tbNumDays.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.tbNumDays.Properties.IsFloatValue = false;
     this.tbNumDays.Properties.Mask.EditMask = "N00";
     this.tbNumDays.Size = new System.Drawing.Size(42, 20);
     this.tbNumDays.TabIndex = 12;
     this.tbNumDays.EditValueChanged += new System.EventHandler(this.tbNumDays_EditValueChanged);
     //
     // deHourResult
     //
     this.deHourResult.EditValue = null;
     this.deHourResult.Location = new System.Drawing.Point(164, 47);
     this.deHourResult.Name = "deHourResult";
     this.deHourResult.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.deHourResult.Properties.Mask.EditMask = "t";
     this.deHourResult.Size = new System.Drawing.Size(91, 20);
     this.deHourResult.TabIndex = 11;
     //
     // deHourReception
     //
     this.deHourReception.EditValue = null;
     this.deHourReception.Location = new System.Drawing.Point(164, 5);
     this.deHourReception.Name = "deHourReception";
     this.deHourReception.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.deHourReception.Properties.Mask.EditMask = "t";
     this.deHourReception.Size = new System.Drawing.Size(91, 20);
     this.deHourReception.TabIndex = 1;
     //
     // label27
     //
     this.label27.AutoSize = true;
     this.label27.Location = new System.Drawing.Point(12, 29);
     this.label27.Name = "label27";
     this.label27.Size = new System.Drawing.Size(45, 13);
     this.label27.TabIndex = 9;
     this.label27.Text = "N°Días:";
     //
     // lookUpEdit1
     //
     this.lookUpEdit1.Location = new System.Drawing.Point(452, 55);
     this.lookUpEdit1.Name = "lookUpEdit1";
     this.lookUpEdit1.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lookUpEdit1.Properties.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("IDTypePost", "", 20, DevExpress.Utils.FormatType.None, "", false, DevExpress.Utils.HorzAlignment.Default, DevExpress.Data.ColumnSortOrder.None),
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("Den_Type_Post")});
     this.lookUpEdit1.Properties.NullText = "Seleccionar";
     this.lookUpEdit1.Properties.ShowFooter = false;
     this.lookUpEdit1.Properties.ShowHeader = false;
     this.lookUpEdit1.Size = new System.Drawing.Size(100, 20);
     this.lookUpEdit1.TabIndex = 1;
     //
     // textEdit3
     //
     this.textEdit3.Location = new System.Drawing.Point(452, 9);
     this.textEdit3.Name = "textEdit3";
     this.textEdit3.Size = new System.Drawing.Size(100, 20);
     this.textEdit3.TabIndex = 3;
     //
     // btReportClient
     //
     this.btReportClient.FlatAppearance.BorderSize = 0;
     this.btReportClient.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.btReportClient.Location = new System.Drawing.Point(847, 10);
     this.btReportClient.Name = "btReportClient";
     this.btReportClient.Size = new System.Drawing.Size(59, 23);
     this.btReportClient.TabIndex = 11;
     this.btReportClient.Text = "Repote por Cliente";
     this.btReportClient.UseVisualStyleBackColor = true;
     this.btReportClient.Visible = false;
     this.btReportClient.Click += new System.EventHandler(this.btReportClient_Click);
     //
     // txIdrecep_sample
     //
     this.txIdrecep_sample.Enabled = false;
     this.txIdrecep_sample.Location = new System.Drawing.Point(844, 117);
     this.txIdrecep_sample.Name = "txIdrecep_sample";
     this.txIdrecep_sample.Properties.Appearance.BackColor = System.Drawing.Color.Gainsboro;
     this.txIdrecep_sample.Properties.Appearance.Options.UseBackColor = true;
     this.txIdrecep_sample.Size = new System.Drawing.Size(100, 20);
     this.txIdrecep_sample.TabIndex = 7;
     this.txIdrecep_sample.Visible = false;
     //
     // label25
     //
     this.label25.AutoSize = true;
     this.label25.Location = new System.Drawing.Point(8, 7);
     this.label25.Name = "label25";
     this.label25.Size = new System.Drawing.Size(43, 13);
     this.label25.TabIndex = 10;
     this.label25.Text = "Código:";
     //
     // cbTypeSample
     //
     this.cbTypeSample.Location = new System.Drawing.Point(93, 4);
     this.cbTypeSample.Name = "cbTypeSample";
     this.cbTypeSample.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.cbTypeSample.Properties.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("Cod_type_sample", "", 20, DevExpress.Utils.FormatType.None, "", false, DevExpress.Utils.HorzAlignment.Default, DevExpress.Data.ColumnSortOrder.None),
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("Name_type_sample")});
     this.cbTypeSample.Properties.NullText = "Seleccionar";
     this.cbTypeSample.Properties.ShowFooter = false;
     this.cbTypeSample.Properties.ShowHeader = false;
     this.cbTypeSample.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.Standard;
     this.cbTypeSample.Size = new System.Drawing.Size(146, 20);
     this.cbTypeSample.TabIndex = 2;
     this.cbTypeSample.EditValueChanged += new System.EventHandler(this.cbTypeSample_EditValueChanged);
     //
     // label26
     //
     this.label26.AutoSize = true;
     this.label26.Location = new System.Drawing.Point(5, 7);
     this.label26.Name = "label26";
     this.label26.Size = new System.Drawing.Size(86, 13);
     this.label26.TabIndex = 10;
     this.label26.Text = "Tipo de muestra:";
     //
     // ofdRecepFileAttach
     //
     this.ofdRecepFileAttach.FileName = "openFileDialog1";
     //
     // label14
     //
     this.label14.AutoSize = true;
     this.label14.Location = new System.Drawing.Point(834, 41);
     this.label14.Name = "label14";
     this.label14.Size = new System.Drawing.Size(110, 13);
     this.label14.TabIndex = 9;
     this.label14.Text = "gastos administrativos";
     this.label14.Visible = false;
     //
     // tbAdministrativeExpense
     //
     this.tbAdministrativeExpense.EditValue = new decimal(new int[] {
     0,
     0,
     0,
     0});
     this.tbAdministrativeExpense.Location = new System.Drawing.Point(837, 57);
     this.tbAdministrativeExpense.Name = "tbAdministrativeExpense";
     this.tbAdministrativeExpense.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.tbAdministrativeExpense.Size = new System.Drawing.Size(107, 20);
     this.tbAdministrativeExpense.TabIndex = 11;
     this.tbAdministrativeExpense.Visible = false;
     //
     // tbCod_recep_sample
     //
     this.tbCod_recep_sample.Location = new System.Drawing.Point(55, 4);
     this.tbCod_recep_sample.Name = "tbCod_recep_sample";
     this.tbCod_recep_sample.Properties.Appearance.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(209)))), ((int)(((byte)(222)))), ((int)(((byte)(243)))));
     this.tbCod_recep_sample.Properties.Appearance.Options.UseBackColor = true;
     this.tbCod_recep_sample.Properties.ReadOnly = true;
     this.tbCod_recep_sample.Size = new System.Drawing.Size(100, 20);
     this.tbCod_recep_sample.TabIndex = 7;
     //
     // ucSignReception
     //
     this.ucSignReception.Location = new System.Drawing.Point(11, 2);
     this.ucSignReception.Margin = new System.Windows.Forms.Padding(0);
     this.ucSignReception.Name = "ucSignReception";
     this.ucSignReception.Pwd = null;
     this.ucSignReception.Size = new System.Drawing.Size(158, 40);
     this.ucSignReception.TabIndex = 16;
     this.ucSignReception.Title = "Guardar";
     this.ucSignReception.OnSign += new LimsProject.sign(this.ucSign1_OnSign);
     //
     // panelControl1
     //
     this.panelControl1.Controls.Add(this.panel9);
     this.panelControl1.Controls.Add(this.xtraTabControl2);
     this.panelControl1.Controls.Add(this.tbAdministrativeExpense);
     this.panelControl1.Controls.Add(this.label14);
     this.panelControl1.Controls.Add(this.xtraTabControl1);
     this.panelControl1.Controls.Add(this.txIdrecep_sample);
     this.panelControl1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.panelControl1.Location = new System.Drawing.Point(0, 0);
     this.panelControl1.Name = "panelControl1";
     this.panelControl1.Size = new System.Drawing.Size(999, 146);
     this.panelControl1.TabIndex = 12;
     this.panelControl1.Text = "panelControl1";
     //
     // panel9
     //
     this.panel9.Controls.Add(this.panel11);
     this.panel9.Location = new System.Drawing.Point(13, 3);
     this.panel9.Name = "panel9";
     this.panel9.Size = new System.Drawing.Size(701, 27);
     this.panel9.TabIndex = 12;
     //
     // panel11
     //
     this.panel11.Controls.Add(this.paTypeSample);
     this.panel11.Controls.Add(this.paCodRegisterRecep);
     this.panel11.Dock = System.Windows.Forms.DockStyle.Fill;
     this.panel11.Location = new System.Drawing.Point(0, 0);
     this.panel11.Name = "panel11";
     this.panel11.Size = new System.Drawing.Size(701, 27);
     this.panel11.TabIndex = 1;
     //
     // paTypeSample
     //
     this.paTypeSample.Controls.Add(this.cbTypeSample);
     this.paTypeSample.Controls.Add(this.label26);
     this.paTypeSample.Dock = System.Windows.Forms.DockStyle.Left;
     this.paTypeSample.Location = new System.Drawing.Point(167, 0);
     this.paTypeSample.Name = "paTypeSample";
     this.paTypeSample.Size = new System.Drawing.Size(257, 27);
     this.paTypeSample.TabIndex = 12;
     //
     // paCodRegisterRecep
     //
     this.paCodRegisterRecep.Controls.Add(this.tbCod_recep_sample);
     this.paCodRegisterRecep.Controls.Add(this.label25);
     this.paCodRegisterRecep.Dock = System.Windows.Forms.DockStyle.Left;
     this.paCodRegisterRecep.Location = new System.Drawing.Point(0, 0);
     this.paCodRegisterRecep.Name = "paCodRegisterRecep";
     this.paCodRegisterRecep.Size = new System.Drawing.Size(167, 27);
     this.paCodRegisterRecep.TabIndex = 11;
     //
     // ucTitleRegisterRecep
     //
     this.ucTitleRegisterRecep.BackColor = System.Drawing.Color.LightSteelBlue;
     this.ucTitleRegisterRecep.Dock = System.Windows.Forms.DockStyle.Fill;
     this.ucTitleRegisterRecep.Location = new System.Drawing.Point(0, 0);
     this.ucTitleRegisterRecep.Name = "ucTitleRegisterRecep";
     this.ucTitleRegisterRecep.Size = new System.Drawing.Size(999, 27);
     this.ucTitleRegisterRecep.TabIndex = 8;
     this.ucTitleRegisterRecep.Title = "Title";
     //
     // ucToolStrip1
     //
     this.ucToolStrip1.Dock = System.Windows.Forms.DockStyle.Top;
     this.ucToolStrip1.Location = new System.Drawing.Point(0, 0);
     this.ucToolStrip1.Name = "ucToolStrip1";
     this.ucToolStrip1.Size = new System.Drawing.Size(1013, 25);
     this.ucToolStrip1.TabIndex = 0;
     this.ucToolStrip1.onFind += new LimsProject.Find(this.ucToolStrip1_onFind);
     this.ucToolStrip1.onNew += new LimsProject.New(this.ucToolStrip1_onNew);
     //
     // contextMenuStrip1
     //
     this.contextMenuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.toolStripMenuItem1});
     this.contextMenuStrip1.Name = "contextMenuStrip1";
     this.contextMenuStrip1.Size = new System.Drawing.Size(192, 26);
     //
     // toolStripMenuItem1
     //
     this.toolStripMenuItem1.Name = "toolStripMenuItem1";
     this.toolStripMenuItem1.Size = new System.Drawing.Size(191, 22);
     this.toolStripMenuItem1.Text = "Registro de Recepción";
     //
     // ucGenerarA
     //
     this.ucGenerarA.Location = new System.Drawing.Point(476, 9);
     this.ucGenerarA.Margin = new System.Windows.Forms.Padding(0);
     this.ucGenerarA.Name = "ucGenerarA";
     this.ucGenerarA.Size = new System.Drawing.Size(90, 30);
     this.ucGenerarA.TabIndex = 19;
     this.ucGenerarA.Title = "Generar a";
     this.ucGenerarA.onSelectedIndex += new LimsProject.SelectedIndex(this.ucGenerarA_onSelectedIndex);
     //
     // ucGenerarDesde
     //
     this.ucGenerarDesde.Location = new System.Drawing.Point(580, 9);
     this.ucGenerarDesde.Margin = new System.Windows.Forms.Padding(0);
     this.ucGenerarDesde.Name = "ucGenerarDesde";
     this.ucGenerarDesde.Size = new System.Drawing.Size(90, 30);
     this.ucGenerarDesde.TabIndex = 19;
     this.ucGenerarDesde.Title = "Generar desde";
     this.ucGenerarDesde.onSelectedIndex += new LimsProject.SelectedIndex(this.ucGenerarDesde_onSelectedIndex);
     //
     // panelControl2
     //
     this.panelControl2.Controls.Add(this.xtraTabControl3);
     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(999, 383);
     this.panelControl2.TabIndex = 3;
     this.panelControl2.Text = "panelControl2";
     //
     // xtraTabControl3
     //
     this.xtraTabControl3.Appearance.BackColor = System.Drawing.Color.Transparent;
     this.xtraTabControl3.Appearance.Options.UseBackColor = true;
     this.xtraTabControl3.AppearancePage.Header.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(209)))), ((int)(((byte)(222)))), ((int)(((byte)(243)))));
     this.xtraTabControl3.AppearancePage.Header.BorderColor = System.Drawing.Color.White;
     this.xtraTabControl3.AppearancePage.Header.Options.UseBackColor = true;
     this.xtraTabControl3.AppearancePage.Header.Options.UseBorderColor = true;
     this.xtraTabControl3.AppearancePage.HeaderActive.BackColor = System.Drawing.Color.LightSteelBlue;
     this.xtraTabControl3.AppearancePage.HeaderActive.BorderColor = System.Drawing.Color.Gainsboro;
     this.xtraTabControl3.AppearancePage.HeaderActive.Options.UseBackColor = true;
     this.xtraTabControl3.AppearancePage.HeaderActive.Options.UseBorderColor = true;
     this.xtraTabControl3.AppearancePage.PageClient.BorderColor = System.Drawing.Color.Gainsboro;
     this.xtraTabControl3.AppearancePage.PageClient.Options.UseBorderColor = true;
     this.xtraTabControl3.Dock = System.Windows.Forms.DockStyle.Fill;
     this.xtraTabControl3.Location = new System.Drawing.Point(2, 2);
     this.xtraTabControl3.Name = "xtraTabControl3";
     this.xtraTabControl3.PaintStyleName = "PropertyView";
     this.xtraTabControl3.SelectedTabPage = this.tpMuestras;
     this.xtraTabControl3.Size = new System.Drawing.Size(995, 379);
     this.xtraTabControl3.TabIndex = 4;
     this.xtraTabControl3.TabPages.AddRange(new DevExpress.XtraTab.XtraTabPage[] {
     this.tpMuestras,
     this.tpAnexos,
     this.tpReject,
     this.tpDecree});
     //
     // tpMuestras
     //
     this.tpMuestras.Controls.Add(this.gcReception);
     this.tpMuestras.Controls.Add(this.panelControl7);
     this.tpMuestras.Controls.Add(this.expandablePanel1);
     this.tpMuestras.Name = "tpMuestras";
     this.tpMuestras.Size = new System.Drawing.Size(993, 358);
     this.tpMuestras.Text = "Muestras";
     //
     // panelControl7
     //
     this.panelControl7.Controls.Add(this.panel7);
     this.panelControl7.Controls.Add(this.panel5);
     this.panelControl7.Controls.Add(this.gcShowColumns);
     this.panelControl7.Controls.Add(this.tbAmortization);
     this.panelControl7.Controls.Add(this.label10);
     this.panelControl7.Controls.Add(this.tbResidue);
     this.panelControl7.Controls.Add(this.label13);
     this.panelControl7.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.panelControl7.Location = new System.Drawing.Point(0, 288);
     this.panelControl7.Name = "panelControl7";
     this.panelControl7.Size = new System.Drawing.Size(699, 70);
     this.panelControl7.TabIndex = 3;
     this.panelControl7.Text = "panelControl7";
     //
     // tpAnexos
     //
     this.tpAnexos.Controls.Add(this.checkEdit8);
     this.tpAnexos.Controls.Add(this.memoEdit1);
     this.tpAnexos.Controls.Add(this.checkEdit7);
     this.tpAnexos.Controls.Add(this.groupControl4);
     this.tpAnexos.Controls.Add(this.textEdit5);
     this.tpAnexos.Controls.Add(this.label21);
     this.tpAnexos.Controls.Add(this.label18);
     this.tpAnexos.Name = "tpAnexos";
     this.tpAnexos.Size = new System.Drawing.Size(520, 0);
     this.tpAnexos.Text = "Anexos";
     //
     // checkEdit8
     //
     this.checkEdit8.Location = new System.Drawing.Point(169, 35);
     this.checkEdit8.Name = "checkEdit8";
     this.checkEdit8.Properties.Caption = "Muestras de composito";
     this.checkEdit8.Size = new System.Drawing.Size(139, 18);
     this.checkEdit8.TabIndex = 12;
     //
     // memoEdit1
     //
     this.memoEdit1.Location = new System.Drawing.Point(105, 63);
     this.memoEdit1.Name = "memoEdit1";
     this.memoEdit1.Size = new System.Drawing.Size(548, 54);
     this.memoEdit1.TabIndex = 2;
     //
     // checkEdit7
     //
     this.checkEdit7.Location = new System.Drawing.Point(24, 35);
     this.checkEdit7.Name = "checkEdit7";
     this.checkEdit7.Properties.Caption = "Muestras puntuales";
     this.checkEdit7.Size = new System.Drawing.Size(139, 18);
     this.checkEdit7.TabIndex = 12;
     //
     // groupControl4
     //
     this.groupControl4.Controls.Add(this.textEdit2);
     this.groupControl4.Controls.Add(this.timeEdit1);
     this.groupControl4.Controls.Add(this.label17);
     this.groupControl4.Controls.Add(this.label16);
     this.groupControl4.Controls.Add(this.label15);
     this.groupControl4.Controls.Add(this.dateEdit1);
     this.groupControl4.Controls.Add(this.checkEdit6);
     this.groupControl4.Controls.Add(this.checkEdit5);
     this.groupControl4.Controls.Add(this.checkEdit4);
     this.groupControl4.Controls.Add(this.checkEdit3);
     this.groupControl4.Controls.Add(this.checkEdit2);
     this.groupControl4.Controls.Add(this.checkEdit1);
     this.groupControl4.Location = new System.Drawing.Point(8, 130);
     this.groupControl4.Name = "groupControl4";
     this.groupControl4.Size = new System.Drawing.Size(645, 196);
     this.groupControl4.TabIndex = 1;
     this.groupControl4.Text = "Campos a llenar al recepcionar las muestras";
     //
     // textEdit2
     //
     this.textEdit2.Location = new System.Drawing.Point(161, 163);
     this.textEdit2.Name = "textEdit2";
     this.textEdit2.Size = new System.Drawing.Size(196, 20);
     this.textEdit2.TabIndex = 4;
     //
     // timeEdit1
     //
     this.timeEdit1.EditValue = new System.DateTime(2013, 8, 7, 0, 0, 0, 0);
     this.timeEdit1.Location = new System.Drawing.Point(161, 138);
     this.timeEdit1.Name = "timeEdit1";
     this.timeEdit1.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.timeEdit1.Size = new System.Drawing.Size(100, 20);
     this.timeEdit1.TabIndex = 3;
     //
     // label17
     //
     this.label17.AutoSize = true;
     this.label17.Location = new System.Drawing.Point(23, 166);
     this.label17.Name = "label17";
     this.label17.Size = new System.Drawing.Size(133, 13);
     this.label17.TabIndex = 2;
     this.label17.Text = "Condiciones de transporte:";
     //
     // label16
     //
     this.label16.AutoSize = true;
     this.label16.Location = new System.Drawing.Point(23, 141);
     this.label16.Name = "label16";
     this.label16.Size = new System.Drawing.Size(98, 13);
     this.label16.TabIndex = 2;
     this.label16.Text = "Hora de recepción:";
     //
     // label15
     //
     this.label15.AutoSize = true;
     this.label15.Location = new System.Drawing.Point(23, 116);
     this.label15.Name = "label15";
     this.label15.Size = new System.Drawing.Size(105, 13);
     this.label15.TabIndex = 2;
     this.label15.Text = "Fecha de recepción:";
     //
     // dateEdit1
     //
     this.dateEdit1.EditValue = null;
     this.dateEdit1.Location = new System.Drawing.Point(161, 113);
     this.dateEdit1.Name = "dateEdit1";
     this.dateEdit1.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.dateEdit1.Size = new System.Drawing.Size(100, 20);
     this.dateEdit1.TabIndex = 1;
     //
     // checkEdit6
     //
     this.checkEdit6.Location = new System.Drawing.Point(201, 73);
     this.checkEdit6.Name = "checkEdit6";
     this.checkEdit6.Properties.Caption = "Duplicado";
     this.checkEdit6.Size = new System.Drawing.Size(75, 18);
     this.checkEdit6.TabIndex = 0;
     //
     // checkEdit5
     //
     this.checkEdit5.Location = new System.Drawing.Point(201, 48);
     this.checkEdit5.Name = "checkEdit5";
     this.checkEdit5.Properties.Caption = "Blanco muestreo";
     this.checkEdit5.Size = new System.Drawing.Size(112, 18);
     this.checkEdit5.TabIndex = 0;
     //
     // checkEdit4
     //
     this.checkEdit4.Location = new System.Drawing.Point(201, 23);
     this.checkEdit4.Name = "checkEdit4";
     this.checkEdit4.Properties.Caption = "Blanco viajero";
     this.checkEdit4.Size = new System.Drawing.Size(98, 18);
     this.checkEdit4.TabIndex = 0;
     //
     // checkEdit3
     //
     this.checkEdit3.Location = new System.Drawing.Point(26, 73);
     this.checkEdit3.Name = "checkEdit3";
     this.checkEdit3.Properties.Caption = "Conservación de muestras";
     this.checkEdit3.Size = new System.Drawing.Size(160, 18);
     this.checkEdit3.TabIndex = 0;
     //
     // checkEdit2
     //
     this.checkEdit2.Location = new System.Drawing.Point(26, 48);
     this.checkEdit2.Name = "checkEdit2";
     this.checkEdit2.Properties.Caption = "Muestras recibidas intactas";
     this.checkEdit2.Size = new System.Drawing.Size(160, 18);
     this.checkEdit2.TabIndex = 0;
     //
     // checkEdit1
     //
     this.checkEdit1.Location = new System.Drawing.Point(26, 23);
     this.checkEdit1.Name = "checkEdit1";
     this.checkEdit1.Properties.Caption = "Recipiente adecuado";
     this.checkEdit1.Size = new System.Drawing.Size(128, 18);
     this.checkEdit1.TabIndex = 0;
     //
     // textEdit5
     //
     this.textEdit5.Location = new System.Drawing.Point(79, 10);
     this.textEdit5.Name = "textEdit5";
     this.textEdit5.Size = new System.Drawing.Size(358, 20);
     this.textEdit5.TabIndex = 10;
     //
     // label21
     //
     this.label21.AutoSize = true;
     this.label21.Location = new System.Drawing.Point(21, 13);
     this.label21.Name = "label21";
     this.label21.Size = new System.Drawing.Size(52, 13);
     this.label21.TabIndex = 11;
     this.label21.Text = "Proyecto:";
     //
     // label18
     //
     this.label18.AutoSize = true;
     this.label18.Location = new System.Drawing.Point(18, 74);
     this.label18.Name = "label18";
     this.label18.Size = new System.Drawing.Size(81, 13);
     this.label18.TabIndex = 2;
     this.label18.Text = "Observaciones:";
     //
     // tpReject
     //
     this.tpReject.Controls.Add(this.memoEdit2);
     this.tpReject.Controls.Add(this.label20);
     this.tpReject.Controls.Add(this.gcRejection);
     this.tpReject.Name = "tpReject";
     this.tpReject.Size = new System.Drawing.Size(520, 0);
     this.tpReject.Text = "Rechazos";
     //
     // memoEdit2
     //
     this.memoEdit2.Location = new System.Drawing.Point(116, 288);
     this.memoEdit2.Name = "memoEdit2";
     this.memoEdit2.Size = new System.Drawing.Size(529, 50);
     this.memoEdit2.TabIndex = 2;
     //
     // label20
     //
     this.label20.AutoSize = true;
     this.label20.Location = new System.Drawing.Point(20, 299);
     this.label20.Name = "label20";
     this.label20.Size = new System.Drawing.Size(90, 13);
     this.label20.TabIndex = 1;
     this.label20.Text = "Especificaciones:";
     //
     // gcRejection
     //
     this.gcRejection.EmbeddedNavigator.Name = "";
     this.gcRejection.Location = new System.Drawing.Point(21, 13);
     this.gcRejection.MainView = this.bandedGridView1;
     this.gcRejection.Name = "gcRejection";
     this.gcRejection.Size = new System.Drawing.Size(624, 251);
     this.gcRejection.TabIndex = 0;
     this.gcRejection.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.bandedGridView1});
     //
     // bandedGridView1
     //
     this.bandedGridView1.Bands.AddRange(new DevExpress.XtraGrid.Views.BandedGrid.GridBand[] {
     this.gridBand1,
     this.gridBand2});
     this.bandedGridView1.Columns.AddRange(new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn[] {
     this.gcRej_Code,
     this.gcRej_NameSample,
     this.gcRej_Date,
     this.gcRej_Hora,
     this.gcRej_Obs,
     this.gcRej_C1,
     this.gcRej_C2,
     this.gcRej_C3,
     this.gcRej_C4});
     this.bandedGridView1.GridControl = this.gcRejection;
     this.bandedGridView1.Name = "bandedGridView1";
     this.bandedGridView1.OptionsView.ShowGroupPanel = false;
     //
     // gridBand1
     //
     this.gridBand1.Columns.Add(this.gcRej_Code);
     this.gridBand1.Columns.Add(this.gcRej_NameSample);
     this.gridBand1.Columns.Add(this.gcRej_Date);
     this.gridBand1.Columns.Add(this.gcRej_Hora);
     this.gridBand1.Columns.Add(this.gcRej_Obs);
     this.gridBand1.Name = "gridBand1";
     this.gridBand1.Width = 629;
     //
     // gcRej_Code
     //
     this.gcRej_Code.Caption = "Codigo";
     this.gcRej_Code.Name = "gcRej_Code";
     this.gcRej_Code.Visible = true;
     //
     // gcRej_NameSample
     //
     this.gcRej_NameSample.Caption = "Nombre de muestra";
     this.gcRej_NameSample.Name = "gcRej_NameSample";
     this.gcRej_NameSample.Visible = true;
     this.gcRej_NameSample.Width = 204;
     //
     // gcRej_Date
     //
     this.gcRej_Date.Caption = "Fecha";
     this.gcRej_Date.Name = "gcRej_Date";
     this.gcRej_Date.Visible = true;
     //
     // gcRej_Hora
     //
     this.gcRej_Hora.Caption = "Hora";
     this.gcRej_Hora.Name = "gcRej_Hora";
     this.gcRej_Hora.Visible = true;
     //
     // gcRej_Obs
     //
     this.gcRej_Obs.Caption = "Ensayos rechazados";
     this.gcRej_Obs.Name = "gcRej_Obs";
     this.gcRej_Obs.Visible = true;
     this.gcRej_Obs.Width = 200;
     //
     // gridBand2
     //
     this.gridBand2.AppearanceHeader.Options.UseTextOptions = true;
     this.gridBand2.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridBand2.Caption = "Criterio";
     this.gridBand2.Columns.Add(this.gcRej_C1);
     this.gridBand2.Columns.Add(this.gcRej_C2);
     this.gridBand2.Columns.Add(this.gcRej_C3);
     this.gridBand2.Columns.Add(this.gcRej_C4);
     this.gridBand2.Name = "gridBand2";
     this.gridBand2.Width = 150;
     //
     // gcRej_C1
     //
     this.gcRej_C1.Caption = "1";
     this.gcRej_C1.Name = "gcRej_C1";
     this.gcRej_C1.Visible = true;
     this.gcRej_C1.Width = 36;
     //
     // gcRej_C2
     //
     this.gcRej_C2.Caption = "2";
     this.gcRej_C2.Name = "gcRej_C2";
     this.gcRej_C2.Visible = true;
     this.gcRej_C2.Width = 36;
     //
     // gcRej_C3
     //
     this.gcRej_C3.Caption = "3";
     this.gcRej_C3.Name = "gcRej_C3";
     this.gcRej_C3.Visible = true;
     this.gcRej_C3.Width = 36;
     //
     // gcRej_C4
     //
     this.gcRej_C4.Caption = "4";
     this.gcRej_C4.Name = "gcRej_C4";
     this.gcRej_C4.Visible = true;
     this.gcRej_C4.Width = 42;
     //
     // tpDecree
     //
     this.tpDecree.Controls.Add(this.panelControl4);
     this.tpDecree.Controls.Add(this.panelControl3);
     this.tpDecree.Name = "tpDecree";
     this.tpDecree.Size = new System.Drawing.Size(520, 0);
     this.tpDecree.Text = "Decretos - Resultados";
     //
     // panelControl4
     //
     this.panelControl4.Controls.Add(this.xtraTabControl4);
     this.panelControl4.Dock = System.Windows.Forms.DockStyle.Fill;
     this.panelControl4.Location = new System.Drawing.Point(0, 30);
     this.panelControl4.Name = "panelControl4";
     this.panelControl4.Padding = new System.Windows.Forms.Padding(10);
     this.panelControl4.Size = new System.Drawing.Size(520, 0);
     this.panelControl4.TabIndex = 11;
     this.panelControl4.Text = "panelControl4";
     //
     // xtraTabControl4
     //
     this.xtraTabControl4.Appearance.BackColor = System.Drawing.Color.Transparent;
     this.xtraTabControl4.Appearance.Options.UseBackColor = true;
     this.xtraTabControl4.AppearancePage.Header.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(209)))), ((int)(((byte)(222)))), ((int)(((byte)(243)))));
     this.xtraTabControl4.AppearancePage.Header.BorderColor = System.Drawing.Color.White;
     this.xtraTabControl4.AppearancePage.Header.Options.UseBackColor = true;
     this.xtraTabControl4.AppearancePage.Header.Options.UseBorderColor = true;
     this.xtraTabControl4.AppearancePage.HeaderActive.BackColor = System.Drawing.Color.LightSteelBlue;
     this.xtraTabControl4.AppearancePage.HeaderActive.BorderColor = System.Drawing.Color.Gainsboro;
     this.xtraTabControl4.AppearancePage.HeaderActive.Options.UseBackColor = true;
     this.xtraTabControl4.AppearancePage.HeaderActive.Options.UseBorderColor = true;
     this.xtraTabControl4.AppearancePage.PageClient.BorderColor = System.Drawing.Color.Gainsboro;
     this.xtraTabControl4.AppearancePage.PageClient.Options.UseBorderColor = true;
     this.xtraTabControl4.Dock = System.Windows.Forms.DockStyle.Fill;
     this.xtraTabControl4.Location = new System.Drawing.Point(12, 11);
     this.xtraTabControl4.Margin = new System.Windows.Forms.Padding(10);
     this.xtraTabControl4.Name = "xtraTabControl4";
     this.xtraTabControl4.PaintStyleName = "PropertyView";
     this.xtraTabControl4.SelectedTabPage = this.xtraTabPage4;
     this.xtraTabControl4.Size = new System.Drawing.Size(496, 0);
     this.xtraTabControl4.TabIndex = 5;
     this.xtraTabControl4.TabPages.AddRange(new DevExpress.XtraTab.XtraTabPage[] {
     this.xtraTabPage4,
     this.xtraTabPage5,
     this.xtraTabPage7});
     this.xtraTabControl4.Text = "Anexos";
     //
     // xtraTabPage4
     //
     this.xtraTabPage4.Controls.Add(this.gridDecretos);
     this.xtraTabPage4.Controls.Add(this.panelControl5);
     this.xtraTabPage4.Controls.Add(this.panelControl6);
     this.xtraTabPage4.Name = "xtraTabPage4";
     this.xtraTabPage4.Size = new System.Drawing.Size(494, 0);
     this.xtraTabPage4.Text = "AG-03-00001 - NTP N° 214.003";
     //
     // gridDecretos
     //
     this.gridDecretos.Dock = System.Windows.Forms.DockStyle.Fill;
     this.gridDecretos.EmbeddedNavigator.Name = "";
     this.gridDecretos.Location = new System.Drawing.Point(0, 61);
     this.gridDecretos.MainView = this.gridView1;
     this.gridDecretos.Name = "gridDecretos";
     this.gridDecretos.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.repCriterio,
     this.repUnidadMedida,
     this.repMetodo});
     this.gridDecretos.Size = new System.Drawing.Size(494, 0);
     this.gridDecretos.TabIndex = 2;
     this.gridDecretos.UseEmbeddedNavigator = true;
     this.gridDecretos.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridView1});
     //
     // gridView1
     //
     this.gridView1.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gcDec_Idmetodo,
     this.gcDec_Parametro,
     this.gcDec_Unidad_medida,
     this.gcDec_Result,
     this.gcDec_Criterio,
     this.gcDec_Valor1,
     this.gcDec_Valor2,
     this.gcDec_Conclusion});
     this.gridView1.GridControl = this.gridDecretos;
     this.gridView1.Name = "gridView1";
     this.gridView1.OptionsView.ShowGroupPanel = false;
     //
     // gcDec_Idmetodo
     //
     this.gcDec_Idmetodo.Caption = "Método";
     this.gcDec_Idmetodo.ColumnEdit = this.repMetodo;
     this.gcDec_Idmetodo.FieldName = "Idmetodo";
     this.gcDec_Idmetodo.Name = "gcDec_Idmetodo";
     this.gcDec_Idmetodo.Visible = true;
     this.gcDec_Idmetodo.VisibleIndex = 0;
     //
     // repMetodo
     //
     this.repMetodo.AutoHeight = false;
     this.repMetodo.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repMetodo.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("Idmetodo", "", 20, DevExpress.Utils.FormatType.None, "", false, DevExpress.Utils.HorzAlignment.Default, DevExpress.Data.ColumnSortOrder.None),
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("Nombre")});
     this.repMetodo.Name = "repMetodo";
     this.repMetodo.NullText = "";
     this.repMetodo.ShowFooter = false;
     this.repMetodo.ShowHeader = false;
     //
     // gcDec_Parametro
     //
     this.gcDec_Parametro.Caption = "Parametro";
     this.gcDec_Parametro.FieldName = "Parametro";
     this.gcDec_Parametro.Name = "gcDec_Parametro";
     this.gcDec_Parametro.Visible = true;
     this.gcDec_Parametro.VisibleIndex = 1;
     //
     // gcDec_Unidad_medida
     //
     this.gcDec_Unidad_medida.Caption = "Unidad_medida";
     this.gcDec_Unidad_medida.ColumnEdit = this.repUnidadMedida;
     this.gcDec_Unidad_medida.FieldName = "Unidad_medida";
     this.gcDec_Unidad_medida.Name = "gcDec_Unidad_medida";
     this.gcDec_Unidad_medida.Visible = true;
     this.gcDec_Unidad_medida.VisibleIndex = 2;
     //
     // repUnidadMedida
     //
     this.repUnidadMedida.AutoHeight = false;
     this.repUnidadMedida.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repUnidadMedida.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("Nombre"),
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("Nombre", "", 20, DevExpress.Utils.FormatType.None, "", false, DevExpress.Utils.HorzAlignment.Default, DevExpress.Data.ColumnSortOrder.None)});
     this.repUnidadMedida.Name = "repUnidadMedida";
     this.repUnidadMedida.NullText = "";
     this.repUnidadMedida.ShowFooter = false;
     this.repUnidadMedida.ShowHeader = false;
     //
     // gcDec_Result
     //
     this.gcDec_Result.Caption = "Resultado";
     this.gcDec_Result.FieldName = "Result";
     this.gcDec_Result.Name = "gcDec_Result";
     this.gcDec_Result.Visible = true;
     this.gcDec_Result.VisibleIndex = 3;
     //
     // gcDec_Criterio
     //
     this.gcDec_Criterio.Caption = "Condición";
     this.gcDec_Criterio.ColumnEdit = this.repCriterio;
     this.gcDec_Criterio.FieldName = "Criterio";
     this.gcDec_Criterio.Name = "gcDec_Criterio";
     this.gcDec_Criterio.Visible = true;
     this.gcDec_Criterio.VisibleIndex = 4;
     //
     // repCriterio
     //
     this.repCriterio.AutoHeight = false;
     this.repCriterio.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repCriterio.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("Idcriterio", "", 20, DevExpress.Utils.FormatType.None, "", false, DevExpress.Utils.HorzAlignment.Default, DevExpress.Data.ColumnSortOrder.None),
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("Nombre_criterio")});
     this.repCriterio.Name = "repCriterio";
     this.repCriterio.NullText = "";
     this.repCriterio.ShowFooter = false;
     this.repCriterio.ShowHeader = false;
     //
     // gcDec_Valor1
     //
     this.gcDec_Valor1.Caption = "Valor1";
     this.gcDec_Valor1.FieldName = "Valor1";
     this.gcDec_Valor1.Name = "gcDec_Valor1";
     this.gcDec_Valor1.Visible = true;
     this.gcDec_Valor1.VisibleIndex = 5;
     //
     // gcDec_Valor2
     //
     this.gcDec_Valor2.Caption = "Valor2";
     this.gcDec_Valor2.FieldName = "Valor2";
     this.gcDec_Valor2.Name = "gcDec_Valor2";
     this.gcDec_Valor2.Visible = true;
     this.gcDec_Valor2.VisibleIndex = 6;
     //
     // gcDec_Conclusion
     //
     this.gcDec_Conclusion.Caption = "Conclusion";
     this.gcDec_Conclusion.FieldName = "Conclusion";
     this.gcDec_Conclusion.Name = "gcDec_Conclusion";
     this.gcDec_Conclusion.Visible = true;
     this.gcDec_Conclusion.VisibleIndex = 7;
     //
     // panelControl5
     //
     this.panelControl5.Controls.Add(this.memoEdit3);
     this.panelControl5.Controls.Add(this.label23);
     this.panelControl5.Controls.Add(this.label24);
     this.panelControl5.Controls.Add(this.label29);
     this.panelControl5.Controls.Add(this.textEdit4);
     this.panelControl5.Controls.Add(this.textEdit6);
     this.panelControl5.Dock = System.Windows.Forms.DockStyle.Top;
     this.panelControl5.Location = new System.Drawing.Point(0, 0);
     this.panelControl5.Name = "panelControl5";
     this.panelControl5.Size = new System.Drawing.Size(494, 61);
     this.panelControl5.TabIndex = 0;
     this.panelControl5.Text = "panelControl5";
     //
     // memoEdit3
     //
     this.memoEdit3.EditValue = resources.GetString("memoEdit3.EditValue");
     this.memoEdit3.Location = new System.Drawing.Point(426, 7);
     this.memoEdit3.Name = "memoEdit3";
     this.memoEdit3.Size = new System.Drawing.Size(523, 46);
     this.memoEdit3.TabIndex = 8;
     //
     // label23
     //
     this.label23.AutoSize = true;
     this.label23.Location = new System.Drawing.Point(355, 9);
     this.label23.Name = "label23";
     this.label23.Size = new System.Drawing.Size(66, 13);
     this.label23.TabIndex = 5;
     this.label23.Text = "Descripción:";
     //
     // label24
     //
     this.label24.AutoSize = true;
     this.label24.Location = new System.Drawing.Point(9, 9);
     this.label24.Name = "label24";
     this.label24.Size = new System.Drawing.Size(43, 13);
     this.label24.TabIndex = 6;
     this.label24.Text = "Codigo:";
     //
     // label29
     //
     this.label29.AutoSize = true;
     this.label29.Location = new System.Drawing.Point(9, 30);
     this.label29.Name = "label29";
     this.label29.Size = new System.Drawing.Size(75, 13);
     this.label29.TabIndex = 7;
     this.label29.Text = "Denominación";
     //
     // textEdit4
     //
     this.textEdit4.EditValue = "DEC-13-001";
     this.textEdit4.Location = new System.Drawing.Point(90, 6);
     this.textEdit4.Name = "textEdit4";
     this.textEdit4.Size = new System.Drawing.Size(107, 20);
     this.textEdit4.TabIndex = 3;
     //
     // textEdit6
     //
     this.textEdit6.EditValue = "NTP N° 214.003";
     this.textEdit6.Location = new System.Drawing.Point(90, 27);
     this.textEdit6.Name = "textEdit6";
     this.textEdit6.Size = new System.Drawing.Size(230, 20);
     this.textEdit6.TabIndex = 4;
     //
     // panelControl6
     //
     this.panelControl6.Controls.Add(this.memoEdit4);
     this.panelControl6.Controls.Add(this.label22);
     this.panelControl6.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.panelControl6.Location = new System.Drawing.Point(0, -49);
     this.panelControl6.Name = "panelControl6";
     this.panelControl6.Size = new System.Drawing.Size(494, 49);
     this.panelControl6.TabIndex = 3;
     this.panelControl6.Text = "panelControl6";
     //
     // memoEdit4
     //
     this.memoEdit4.EditValue = "CUMPLE, NO CUMPLE, BLA BLA BLA";
     this.memoEdit4.Location = new System.Drawing.Point(77, 4);
     this.memoEdit4.Name = "memoEdit4";
     this.memoEdit4.Size = new System.Drawing.Size(872, 40);
     this.memoEdit4.TabIndex = 8;
     //
     // label22
     //
     this.label22.AutoSize = true;
     this.label22.Location = new System.Drawing.Point(9, 9);
     this.label22.Name = "label22";
     this.label22.Size = new System.Drawing.Size(62, 13);
     this.label22.TabIndex = 5;
     this.label22.Text = "Conclusión:";
     //
     // xtraTabPage5
     //
     this.xtraTabPage5.Name = "xtraTabPage5";
     this.xtraTabPage5.Size = new System.Drawing.Size(494, -21);
     this.xtraTabPage5.Text = "AG-03-00001 - D.S. N° 031-2010";
     //
     // xtraTabPage7
     //
     this.xtraTabPage7.Name = "xtraTabPage7";
     this.xtraTabPage7.Size = new System.Drawing.Size(494, -21);
     this.xtraTabPage7.Text = "AG-03-00001 - D.S. N° 002-2008";
     //
     // panelControl3
     //
     this.panelControl3.Controls.Add(this.lookUpEdit2);
     this.panelControl3.Controls.Add(this.label31);
     this.panelControl3.Dock = System.Windows.Forms.DockStyle.Top;
     this.panelControl3.Location = new System.Drawing.Point(0, 0);
     this.panelControl3.Name = "panelControl3";
     this.panelControl3.Size = new System.Drawing.Size(520, 30);
     this.panelControl3.TabIndex = 10;
     this.panelControl3.Text = "panelControl3";
     //
     // lookUpEdit2
     //
     this.lookUpEdit2.Location = new System.Drawing.Point(86, 5);
     this.lookUpEdit2.Name = "lookUpEdit2";
     this.lookUpEdit2.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lookUpEdit2.Properties.NullText = "AG-03-00001";
     this.lookUpEdit2.Size = new System.Drawing.Size(144, 20);
     this.lookUpEdit2.TabIndex = 10;
     //
     // label31
     //
     this.label31.AutoSize = true;
     this.label31.Location = new System.Drawing.Point(32, 8);
     this.label31.Name = "label31";
     this.label31.Size = new System.Drawing.Size(48, 13);
     this.label31.TabIndex = 9;
     this.label31.Text = "Muestra:";
     //
     // FormReception
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(1013, 662);
     this.Name = "FormReception";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "Recepción de Muestras";
     this.Controls.SetChildIndex(this.paSupBotones, 0);
     this.Controls.SetChildIndex(this.thePanelTab1, 0);
     this.paTitleSearch.ResumeLayout(false);
     this.paTopBasicButtons.ResumeLayout(false);
     this.paTopSearch.ResumeLayout(false);
     this.paBottomSearch.ResumeLayout(false);
     this.panel1.ResumeLayout(false);
     this.paSearchGen.ResumeLayout(false);
     this.paSearchGen.PerformLayout();
     this.panel2.ResumeLayout(false);
     this.paInferior.ResumeLayout(false);
     this.paTitulo.ResumeLayout(false);
     this.paCentral.ResumeLayout(false);
     this.paSuperior.ResumeLayout(false);
     this.thePanelTab1.ResumeLayout(false);
     this.tpDatos.ResumeLayout(false);
     this.paSupBotones.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gcShowColumns)).EndInit();
     this.gcShowColumns.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit10.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit9.Properties)).EndInit();
     this.panel7.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.tbResidue.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.tbAmortization.Properties)).EndInit();
     this.panel5.ResumeLayout(false);
     this.panel5.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.tbTotalIgv.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.tbTotalAmount.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.tbSubTotalAmount.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gcReception)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvReception)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repDescription)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repProcedence)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repEnvelope_sealed)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repSelect)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repResult)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repSendReport)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repLink)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repDesLink)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repSample)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.xtraTabControl1)).EndInit();
     this.xtraTabControl1.ResumeLayout(false);
     this.xtraTabPage3.ResumeLayout(false);
     this.xtraTabPage3.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.tbFax.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.tbClientPhone.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.tbClientRuc.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.tbClientDomicile.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cbCompany.Properties)).EndInit();
     this.xtraTabPage6.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gcContact)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvContact)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repPerson_type)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repPhone)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repCellPhone)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repNum)).EndInit();
     this.xtraTabPage1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.ckDispatchFax.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ckDispatchPerson.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ckDispatchTransport.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ckDispatchCurier.Properties)).EndInit();
     this.expandablePanel1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.tabOptionRight)).EndInit();
     this.tabOptionRight.ResumeLayout(false);
     this.tpRightMethods.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.lookUpEdit3.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gcMethods)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvMethods)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repAddColumn)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.textEdit1.Properties)).EndInit();
     this.tpRightReports.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gcReport)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvReport)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repStatusReport)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repReportOption)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repDateReport)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repTimeReport)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repTypeReport)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).EndInit();
     this.groupControl1.ResumeLayout(false);
     this.tpRightAttach.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gcAttachFile)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvAttachFile)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repAttach_file)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repAttach_status)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repButtons)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl2)).EndInit();
     this.groupControl2.ResumeLayout(false);
     this.tpRightProgram.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gcProgram)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvProgram)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repProgramStatus)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repProgramButton)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repDateProgram)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repTimeProgram)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl3)).EndInit();
     this.groupControl3.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.deReception.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.deResult.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.xtraTabControl2)).EndInit();
     this.xtraTabControl2.ResumeLayout(false);
     this.tabDateRegRecep.ResumeLayout(false);
     this.tabDateRegRecep.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.tbNumDays.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.deHourResult.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.deHourReception.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lookUpEdit1.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.textEdit3.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txIdrecep_sample.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cbTypeSample.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.tbAdministrativeExpense.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.tbCod_recep_sample.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).EndInit();
     this.panelControl1.ResumeLayout(false);
     this.panelControl1.PerformLayout();
     this.panel9.ResumeLayout(false);
     this.panel11.ResumeLayout(false);
     this.paTypeSample.ResumeLayout(false);
     this.paTypeSample.PerformLayout();
     this.paCodRegisterRecep.ResumeLayout(false);
     this.paCodRegisterRecep.PerformLayout();
     this.contextMenuStrip1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.panelControl2)).EndInit();
     this.panelControl2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.xtraTabControl3)).EndInit();
     this.xtraTabControl3.ResumeLayout(false);
     this.tpMuestras.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.panelControl7)).EndInit();
     this.panelControl7.ResumeLayout(false);
     this.panelControl7.PerformLayout();
     this.tpAnexos.ResumeLayout(false);
     this.tpAnexos.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit8.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.memoEdit1.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit7.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl4)).EndInit();
     this.groupControl4.ResumeLayout(false);
     this.groupControl4.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.textEdit2.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.timeEdit1.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dateEdit1.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit6.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit5.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit4.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit3.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit2.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit1.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.textEdit5.Properties)).EndInit();
     this.tpReject.ResumeLayout(false);
     this.tpReject.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.memoEdit2.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gcRejection)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.bandedGridView1)).EndInit();
     this.tpDecree.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.panelControl4)).EndInit();
     this.panelControl4.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.xtraTabControl4)).EndInit();
     this.xtraTabControl4.ResumeLayout(false);
     this.xtraTabPage4.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gridDecretos)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repMetodo)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repUnidadMedida)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repCriterio)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl5)).EndInit();
     this.panelControl5.ResumeLayout(false);
     this.panelControl5.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.memoEdit3.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.textEdit4.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.textEdit6.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl6)).EndInit();
     this.panelControl6.ResumeLayout(false);
     this.panelControl6.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.memoEdit4.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl3)).EndInit();
     this.panelControl3.ResumeLayout(false);
     this.panelControl3.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.lookUpEdit2.Properties)).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();
     this.spinEdit1 = new DevExpress.XtraEditors.SpinEdit();
     this.spinEdit2 = new DevExpress.XtraEditors.SpinEdit();
     this.spinEdit3 = new DevExpress.XtraEditors.SpinEdit();
     this.spinEdit4 = new DevExpress.XtraEditors.SpinEdit();
     this.toolTipController1 = new DevExpress.Utils.ToolTipController(this.components);
     this.spinEdit5 = new DevExpress.XtraEditors.SpinEdit();
     ((System.ComponentModel.ISupportInitialize)(this.spinEdit1.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.spinEdit2.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.spinEdit3.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.spinEdit4.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.spinEdit5.Properties)).BeginInit();
     this.SuspendLayout();
     //
     // spinEdit1
     //
     this.spinEdit1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.spinEdit1.EditValue = new decimal(new int[] {
     0,
     0,
     0,
     0});
     this.spinEdit1.Location = new System.Drawing.Point(11, 401);
     this.spinEdit1.Name = "spinEdit1";
     this.spinEdit1.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.spinEdit1.Properties.IsFloatValue = false;
     this.spinEdit1.Properties.Mask.EditMask = "N00";
     this.spinEdit1.Properties.MaxValue = new decimal(new int[] {
     180,
     0,
     0,
     0});
     this.spinEdit1.Properties.MinValue = new decimal(new int[] {
     180,
     0,
     0,
     -2147483648});
     this.spinEdit1.Size = new System.Drawing.Size(60, 20);
     this.spinEdit1.TabIndex = 0;
     this.spinEdit1.Visible = false;
     this.spinEdit1.ValueChanged += new System.EventHandler(this.spinEdit1_ValueChanged);
     //
     // spinEdit2
     //
     this.spinEdit2.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.spinEdit2.EditValue = new decimal(new int[] {
     0,
     0,
     0,
     0});
     this.spinEdit2.Location = new System.Drawing.Point(77, 401);
     this.spinEdit2.Name = "spinEdit2";
     this.spinEdit2.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.spinEdit2.Properties.IsFloatValue = false;
     this.spinEdit2.Properties.Mask.EditMask = "N00";
     this.spinEdit2.Properties.MaxValue = new decimal(new int[] {
     180,
     0,
     0,
     0});
     this.spinEdit2.Properties.MinValue = new decimal(new int[] {
     180,
     0,
     0,
     -2147483648});
     this.spinEdit2.Size = new System.Drawing.Size(60, 20);
     this.spinEdit2.TabIndex = 1;
     this.spinEdit2.Visible = false;
     this.spinEdit2.ValueChanged += new System.EventHandler(this.spinEdit1_ValueChanged);
     //
     // spinEdit3
     //
     this.spinEdit3.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.spinEdit3.EditValue = new decimal(new int[] {
     0,
     0,
     0,
     0});
     this.spinEdit3.Location = new System.Drawing.Point(143, 401);
     this.spinEdit3.Name = "spinEdit3";
     this.spinEdit3.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.spinEdit3.Properties.IsFloatValue = false;
     this.spinEdit3.Properties.Mask.EditMask = "N00";
     this.spinEdit3.Properties.MaxValue = new decimal(new int[] {
     180,
     0,
     0,
     0});
     this.spinEdit3.Properties.MinValue = new decimal(new int[] {
     180,
     0,
     0,
     -2147483648});
     this.spinEdit3.Size = new System.Drawing.Size(60, 20);
     this.spinEdit3.TabIndex = 2;
     this.spinEdit3.Visible = false;
     this.spinEdit3.ValueChanged += new System.EventHandler(this.spinEdit1_ValueChanged);
     //
     // spinEdit4
     //
     this.spinEdit4.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.spinEdit4.EditValue = new decimal(new int[] {
     5,
     0,
     0,
     65536});
     this.spinEdit4.Location = new System.Drawing.Point(209, 401);
     this.spinEdit4.Name = "spinEdit4";
     this.spinEdit4.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.spinEdit4.Properties.Increment = new decimal(new int[] {
     1,
     0,
     0,
     65536});
     this.spinEdit4.Properties.MaxValue = new decimal(new int[] {
     100,
     0,
     0,
     0});
     this.spinEdit4.Size = new System.Drawing.Size(60, 20);
     this.spinEdit4.TabIndex = 3;
     this.spinEdit4.Visible = false;
     this.spinEdit4.ValueChanged += new System.EventHandler(this.spinEdit4_ValueChanged);
     //
     // spinEdit5
     //
     this.spinEdit5.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.spinEdit5.EditValue = new decimal(new int[] {
     12,
     0,
     0,
     0});
     this.spinEdit5.Location = new System.Drawing.Point(275, 401);
     this.spinEdit5.Name = "spinEdit5";
     this.spinEdit5.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.spinEdit5.Properties.IsFloatValue = false;
     this.spinEdit5.Properties.Mask.EditMask = "N00";
     this.spinEdit5.Properties.MaxValue = new decimal(new int[] {
     180,
     0,
     0,
     0});
     this.spinEdit5.Properties.MinValue = new decimal(new int[] {
     180,
     0,
     0,
     -2147483648});
     this.spinEdit5.Size = new System.Drawing.Size(60, 20);
     this.spinEdit5.TabIndex = 4;
     this.spinEdit5.Visible = false;
     this.spinEdit5.EditValueChanged += new System.EventHandler(this.spinEdit5_EditValueChanged);
     //
     // SurfaceGraphViewer
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.Controls.Add(this.spinEdit5);
     this.Controls.Add(this.spinEdit4);
     this.Controls.Add(this.spinEdit3);
     this.Controls.Add(this.spinEdit2);
     this.Controls.Add(this.spinEdit1);
     this.Name = "SurfaceGraphViewer";
     this.Size = new System.Drawing.Size(578, 435);
     this.toolTipController1.SetSuperTip(this, null);
     this.DoubleClick += new System.EventHandler(this.SurfaceGraphViewer_DoubleClick);
     this.Load += new System.EventHandler(this.SurfaceGraphViewer_Load);
     this.MouseDown += new System.Windows.Forms.MouseEventHandler(this.frm3DSurfaceGraphViewer_MouseDown);
     this.MouseMove += new System.Windows.Forms.MouseEventHandler(this.frm3DSurfaceGraphViewer_MouseMove);
     this.Scroll += new System.Windows.Forms.ScrollEventHandler(this.SurfaceGraphViewer_Scroll);
     this.Resize += new System.EventHandler(this.frm3DSurfaceGraphViewer_Resize);
     this.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.SurfaceGraphViewer_KeyPress);
     this.Paint += new System.Windows.Forms.PaintEventHandler(this.frm3DSurfaceGraphViewer_Paint);
     this.MouseUp += new System.Windows.Forms.MouseEventHandler(this.frm3DSurfaceGraphViewer_MouseUp);
     this.KeyDown += new System.Windows.Forms.KeyEventHandler(this.SurfaceGraphViewer_KeyDown);
     ((System.ComponentModel.ISupportInitialize)(this.spinEdit1.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.spinEdit2.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.spinEdit3.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.spinEdit4.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.spinEdit5.Properties)).EndInit();
     this.ResumeLayout(false);
 }
Пример #10
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     DevExpress.XtraGrid.GridLevelNode gridLevelNode1 = new DevExpress.XtraGrid.GridLevelNode();
     DevExpress.XtraGrid.GridLevelNode gridLevelNode2 = new DevExpress.XtraGrid.GridLevelNode();
     DevExpress.XtraGrid.GridLevelNode gridLevelNode3 = new DevExpress.XtraGrid.GridLevelNode();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmManager));
     this.MainMenu1 = new System.Windows.Forms.MainMenu(this.components);
     this.MenuItem1 = new System.Windows.Forms.MenuItem();
     this.MenuItem2 = new System.Windows.Forms.MenuItem();
     this.MenuItem4 = new System.Windows.Forms.MenuItem();
     this.MenuItem6 = new System.Windows.Forms.MenuItem();
     this.MenuItem7 = new System.Windows.Forms.MenuItem();
     this.MenuItem8 = new System.Windows.Forms.MenuItem();
     this.MenuItem9 = new System.Windows.Forms.MenuItem();
     this.MenuItem10 = new System.Windows.Forms.MenuItem();
     this.MenuItem5 = new System.Windows.Forms.MenuItem();
     this.tabControlManager = new DevExpress.XtraTab.XtraTabControl();
     this.tabManagerOne = new DevExpress.XtraTab.XtraTabPage();
     this.lblOne_2 = new DevExpress.XtraEditors.SimpleButton();
     this.lblOne_1 = new DevExpress.XtraEditors.SimpleButton();
     this.groupIPPMaster = new DevExpress.XtraEditors.GroupControl();
     this.groupIPP = new DevExpress.XtraEditors.GroupControl();
     this.ComboBoxIPP = new DevExpress.XtraEditors.ImageComboBoxEdit();
     this.grpIPP2 = new DevExpress.XtraEditors.GroupControl();
     this.btnReset = new DevExpress.XtraEditors.SimpleButton();
     this.lkBranch = new DevExpress.XtraEditors.LookUpEdit();
     this.lkBank = new DevExpress.XtraEditors.LookUpEdit();
     this.IPPdtTo = new DevExpress.XtraEditors.DateEdit();
     this.IPPdtStart = new DevExpress.XtraEditors.DateEdit();
     this.btnSearch = new DevExpress.XtraEditors.SimpleButton();
     this.txtCreditCardScr = new DevExpress.XtraEditors.TextEdit();
     this.label4 = new System.Windows.Forms.Label();
     this.label3 = new System.Windows.Forms.Label();
     this.label2 = new System.Windows.Forms.Label();
     this.IPPlblDtTo = new System.Windows.Forms.Label();
     this.IPPlblDtFrom = new System.Windows.Forms.Label();
     this.btnReceiveIPP = new DevExpress.XtraEditors.SimpleButton();
     this.btnSendIPP = new DevExpress.XtraEditors.SimpleButton();
     this.btnUpdateIPP = new DevExpress.XtraEditors.SimpleButton();
     this.btnDeleteIPP = new DevExpress.XtraEditors.SimpleButton();
     this.btnNewIPP = new DevExpress.XtraEditors.SimpleButton();
     this.IPPGrid = new DevExpress.XtraGrid.GridControl();
     this.IPPGridView = new DevExpress.XtraGrid.Views.Grid.GridView();
     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.gridColumn14 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn15 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn16 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn8 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.hypReceipts = new System.Windows.Forms.Label();
     this.hypIPPDetails = new System.Windows.Forms.Label();
     this.GroupIPPDetails = new DevExpress.XtraEditors.GroupControl();
     this.strReferenceNo = new DevExpress.XtraEditors.TextEdit();
     this.label7 = new System.Windows.Forms.Label();
     this.IPPBankCode = new DevExpress.XtraEditors.LookUpEdit();
     this.IPPNMonths = new DevExpress.XtraEditors.ImageComboBoxEdit();
     this.IPPCCNo = new DevExpress.XtraEditors.TextEdit();
     this.IPPStatus = new DevExpress.XtraEditors.TextEdit();
     this.IPPDateRcv = new DevExpress.XtraEditors.TextEdit();
     this.IPPDateSent = new DevExpress.XtraEditors.TextEdit();
     this.IPPBranchCode = new DevExpress.XtraEditors.TextEdit();
     this.IPPCreatedDate = new DevExpress.XtraEditors.TextEdit();
     this.IPPLBL1 = new System.Windows.Forms.Label();
     this.IPPLBL16 = new System.Windows.Forms.Label();
     this.IPPMerchantNo = new DevExpress.XtraEditors.TextEdit();
     this.IPPLBL8 = new System.Windows.Forms.Label();
     this.IPPLBL14 = new System.Windows.Forms.Label();
     this.IPPLBL12 = new System.Windows.Forms.Label();
     this.IPPLBL13 = new System.Windows.Forms.Label();
     this.IPPLBL11 = new System.Windows.Forms.Label();
     this.IPPLBL10 = new System.Windows.Forms.Label();
     this.IPPLBL9 = new System.Windows.Forms.Label();
     this.IPPLBL7 = new System.Windows.Forms.Label();
     this.IPPAmount = new DevExpress.XtraEditors.TextEdit();
     this.IPPInterest = new DevExpress.XtraEditors.TextEdit();
     this.IPPNettAmount = new DevExpress.XtraEditors.TextEdit();
     this.IPPLBL5 = new System.Windows.Forms.Label();
     this.IPPLBL6 = new System.Windows.Forms.Label();
     this.IPPLBL4 = new System.Windows.Forms.Label();
     this.IPPLBL3 = new System.Windows.Forms.Label();
     this.IPPLBL2 = new System.Windows.Forms.Label();
     this.IPPMemberId = new DevExpress.XtraEditors.TextEdit();
     this.IPPMemberName = new DevExpress.XtraEditors.TextEdit();
     this.IPPId = new DevExpress.XtraEditors.TextEdit();
     this.groupIPPReceipt = new DevExpress.XtraEditors.GroupControl();
     this.btnReceiptUnlink = new DevExpress.XtraEditors.SimpleButton();
     this.btnReceiptLink = new DevExpress.XtraEditors.SimpleButton();
     this.gridReceipt = new DevExpress.XtraGrid.GridControl();
     this.IPPReceiptView = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumnIPPR = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnIPPR1 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnIPPR2 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnIPPR3 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnIPPR4 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnIPPR5 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnIPPR6 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnIPPR7 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnIPPR8 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnIPPR9 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.label10 = new System.Windows.Forms.Label();
     this.IPPReceiptStatus = new DevExpress.XtraEditors.ImageComboBoxEdit();
     this.groupGIROMaster = new DevExpress.XtraEditors.GroupControl();
     this.xtraTabControl1 = new DevExpress.XtraTab.XtraTabControl();
     this.tabGiroDetails = new DevExpress.XtraTab.XtraTabPage();
     this.luedtBankBranch = new DevExpress.XtraEditors.LookUpEdit();
     this.luedtBank = new DevExpress.XtraEditors.LookUpEdit();
     this.luedtPackage = new DevExpress.XtraEditors.LookUpEdit();
     this.luedtBranch = new DevExpress.XtraEditors.LookUpEdit();
     this.label70 = new System.Windows.Forms.Label();
     this.txtPackageDesc = new DevExpress.XtraEditors.TextEdit();
     this.txtAccountNo = new DevExpress.XtraEditors.TextEdit();
     this.txtGIROId = new DevExpress.XtraEditors.TextEdit();
     this.txtRemark = new DevExpress.XtraEditors.MemoEdit();
     this.lblGiro_BankBranch = new System.Windows.Forms.Label();
     this.lblGiro_BankACNumber = new System.Windows.Forms.Label();
     this.lblGiro_BankCode = new System.Windows.Forms.Label();
     this.lblGiro_Remark = new System.Windows.Forms.Label();
     this.lblGiro_Package = new System.Windows.Forms.Label();
     this.lblGiro_Branch = new System.Windows.Forms.Label();
     this.lblGiro_MemberID = new System.Windows.Forms.Label();
     this.lblGiroID = new System.Windows.Forms.Label();
     this.tabGiroTrnsHistory = new DevExpress.XtraTab.XtraTabPage();
     this.GridTransaction = new DevExpress.XtraGrid.GridControl();
     this.gridView4 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.GroupGiro = new DevExpress.XtraEditors.GroupControl();
     this.comboBoxGiroStatus = new DevExpress.XtraEditors.ImageComboBoxEdit();
     this.label63 = new System.Windows.Forms.Label();
     this.btnImport = new DevExpress.XtraEditors.SimpleButton();
     this.btnGiroExport = new DevExpress.XtraEditors.SimpleButton();
     this.btnGiroUpdate = new DevExpress.XtraEditors.SimpleButton();
     this.btnGiroDelete = new DevExpress.XtraEditors.SimpleButton();
     this.btnGiroNew = new DevExpress.XtraEditors.SimpleButton();
     this.GiroGrid = new DevExpress.XtraGrid.GridControl();
     this.GIROGridView = 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.tabManagerTwo = new DevExpress.XtraTab.XtraTabPage();
     this.GrpPayroll = new DevExpress.XtraEditors.GroupControl();
     this.progressBarControl1 = new DevExpress.XtraEditors.ProgressBarControl();
     this.cbJob = new DevExpress.XtraEditors.ImageComboBoxEdit();
     this.label8 = new System.Windows.Forms.Label();
     this.grpGridExcel = new DevExpress.XtraEditors.GroupControl();
     this.gridExcel = new DevExpress.XtraGrid.GridControl();
     this.gridViewExcel = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn19 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.FirstPayDate = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn24 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn25 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn26 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn27 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn28 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn29 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn30 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn31 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn32 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn33 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn34 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn35 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn36 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.SecondPayDate = new DevExpress.XtraGrid.Columns.GridColumn();
     this.btnPayrollExport = new DevExpress.XtraEditors.SimpleButton();
     this.btnPayrollGenerate = new DevExpress.XtraEditors.SimpleButton();
     this.btnPayrollDelete = new DevExpress.XtraEditors.SimpleButton();
     this.comboBoxEditMTH = new DevExpress.XtraEditors.ComboBoxEdit();
     this.comboBoxEditYR = new DevExpress.XtraEditors.ComboBoxEdit();
     this.lblYear = new System.Windows.Forms.Label();
     this.lblMonth = new System.Windows.Forms.Label();
     this.cmbxPayroll = new DevExpress.XtraEditors.ComboBoxEdit();
     this.gridPayroll = new DevExpress.XtraGrid.GridControl();
     this.gridViewPayroll = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.nEmployeeID = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn9 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn17 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn18 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.dtFirstRunDate = new DevExpress.XtraGrid.Columns.GridColumn();
     this.nNormalOT = new DevExpress.XtraGrid.Columns.GridColumn();
     this.nPublicHolidayOT = new DevExpress.XtraGrid.Columns.GridColumn();
     this.nOffDayOT = new DevExpress.XtraGrid.Columns.GridColumn();
     this.nPartTimeWorkHours = new DevExpress.XtraGrid.Columns.GridColumn();
     this.nALEntitlementHours = new DevExpress.XtraGrid.Columns.GridColumn();
     this.nPHEntitlementHours = new DevExpress.XtraGrid.Columns.GridColumn();
     this.mServiceReimbursements = new DevExpress.XtraGrid.Columns.GridColumn();
     this.nTotalLateness = new DevExpress.XtraGrid.Columns.GridColumn();
     this.nUnpaidAL = new DevExpress.XtraGrid.Columns.GridColumn();
     this.nUnpaidTO = new DevExpress.XtraGrid.Columns.GridColumn();
     this.nUnpaidMedical = new DevExpress.XtraGrid.Columns.GridColumn();
     this.mCommission = new DevExpress.XtraGrid.Columns.GridColumn();
     this.mCommissionLatenessPenalty = new DevExpress.XtraGrid.Columns.GridColumn();
     this.dtSecondRunDate = new DevExpress.XtraGrid.Columns.GridColumn();
     this.tabManagerThree = new DevExpress.XtraTab.XtraTabPage();
     this.lblThree_2 = new DevExpress.XtraEditors.SimpleButton();
     this.lblThree_1 = new DevExpress.XtraEditors.SimpleButton();
     this.lblThree_3 = new DevExpress.XtraEditors.SimpleButton();
     this.grpClassSchedule = new DevExpress.XtraEditors.GroupControl();
     this.comboBoxBranch = new DevExpress.XtraEditors.LookUpEdit();
     this.btnRefreshClassSchedule = new DevExpress.XtraEditors.SimpleButton();
     this.lblPQBranch = new System.Windows.Forms.Label();
     this.lblSUN = new System.Windows.Forms.Label();
     this.panelSun = new System.Windows.Forms.Panel();
     this.panelSat = new System.Windows.Forms.Panel();
     this.lblFRI = new System.Windows.Forms.Label();
     this.lblTHU = new System.Windows.Forms.Label();
     this.lblWED = new System.Windows.Forms.Label();
     this.lblTUE = new System.Windows.Forms.Label();
     this.panelFri = new System.Windows.Forms.Panel();
     this.panelThu = new System.Windows.Forms.Panel();
     this.panelWed = new System.Windows.Forms.Panel();
     this.panelTue = new System.Windows.Forms.Panel();
     this.panelMon = new System.Windows.Forms.Panel();
     this.lblMON = new System.Windows.Forms.Label();
     this.btnPrintClassSchedule = new DevExpress.XtraEditors.SimpleButton();
     this.btnNewClassSchedule = new DevExpress.XtraEditors.SimpleButton();
     this.lblSAT = new System.Windows.Forms.Label();
     this.groupMemCard = new DevExpress.XtraEditors.GroupControl();
     this.grpRoadShow = new DevExpress.XtraEditors.GroupControl();
     this.tabManagerFour = new DevExpress.XtraTab.XtraTabPage();
     this.lblFour_2 = new DevExpress.XtraEditors.SimpleButton();
     this.lblFour_1 = new DevExpress.XtraEditors.SimpleButton();
     this.lblFour_3 = new DevExpress.XtraEditors.SimpleButton();
     this.lblFour_4 = new DevExpress.XtraEditors.SimpleButton();
     this.lblFour_5 = new DevExpress.XtraEditors.SimpleButton();
     this.panel2 = new System.Windows.Forms.Panel();
     this.tabManagerFive = new DevExpress.XtraTab.XtraTabPage();
     this.label6 = new System.Windows.Forms.Label();
     this.ReportPanel = new DevExpress.XtraEditors.PanelControl();
     this.lk_ReportView = new DevExpress.XtraEditors.LookUpEdit();
     this.lblFive_9 = new DevExpress.XtraEditors.SimpleButton();
     this.lblFive_10 = new DevExpress.XtraEditors.SimpleButton();
     this.lblFive_4 = new DevExpress.XtraEditors.SimpleButton();
     this.lblFive_2 = new DevExpress.XtraEditors.SimpleButton();
     this.lblFive_8 = new DevExpress.XtraEditors.SimpleButton();
     this.lblFive_7 = new DevExpress.XtraEditors.SimpleButton();
     this.lblFive_3 = new DevExpress.XtraEditors.SimpleButton();
     this.lblFive_6 = new DevExpress.XtraEditors.SimpleButton();
     this.lblFive_1 = new DevExpress.XtraEditors.SimpleButton();
     this.lblFive_5 = new DevExpress.XtraEditors.SimpleButton();
     this.tabManagerSix = new DevExpress.XtraTab.XtraTabPage();
     this.lk_MasterData = new DevExpress.XtraEditors.LookUpEdit();
     this.panel1 = new System.Windows.Forms.Panel();
     this.label1 = new System.Windows.Forms.Label();
     this.printingSystem1 = new DevExpress.XtraPrinting.PrintingSystem(this.components);
     this.barManager1 = new DevExpress.XtraBars.BarManager(this.components);
     this.bar1 = new DevExpress.XtraBars.Bar();
     this.bbiManagerLoginOut = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem1 = new DevExpress.XtraBars.BarButtonItem();
     this.barstaticCurrentLogin = new DevExpress.XtraBars.BarButtonItem();
     this.barAndDockingController1 = new DevExpress.XtraBars.BarAndDockingController(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.bbiManagerTimeCard = new DevExpress.XtraBars.BarButtonItem();
     this.printDocument1 = new System.Drawing.Printing.PrintDocument();
     this.openFileDialog1 = new System.Windows.Forms.OpenFileDialog();
     this.gridColumnPGE3 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnPGE2 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnPGE1 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.mdPGE_txtNQuantity = new DevExpress.XtraEditors.TextEdit();
     this.mdPGE_txtStrPackageCode = new DevExpress.XtraEditors.ImageComboBoxEdit();
     this.mdPGE_cdStrPackageGroupCode = new DevExpress.XtraEditors.ImageComboBoxEdit();
     this.mdPGE_lblNQuantity = new System.Windows.Forms.Label();
     this.mdPGE_lblStrPackageCode = new System.Windows.Forms.Label();
     this.mdPGE_lblStrPackageGroupCode = new System.Windows.Forms.Label();
     this.folderBrowserDialog1 = new System.Windows.Forms.FolderBrowserDialog();
     this.defaultLookAndFeel1 = new DevExpress.LookAndFeel.DefaultLookAndFeel(this.components);
     this.label5 = new System.Windows.Forms.Label();
     this.toolTipController1 = new DevExpress.Utils.ToolTipController(this.components);
     ((System.ComponentModel.ISupportInitialize)(this.tabControlManager)).BeginInit();
     this.tabControlManager.SuspendLayout();
     this.tabManagerOne.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.groupIPPMaster)).BeginInit();
     this.groupIPPMaster.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.groupIPP)).BeginInit();
     this.groupIPP.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.ComboBoxIPP.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.grpIPP2)).BeginInit();
     this.grpIPP2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.lkBranch.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lkBank.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.IPPdtTo.Properties.VistaTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.IPPdtTo.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.IPPdtStart.Properties.VistaTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.IPPdtStart.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtCreditCardScr.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.IPPGrid)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.IPPGridView)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.GroupIPPDetails)).BeginInit();
     this.GroupIPPDetails.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.strReferenceNo.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.IPPBankCode.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.IPPNMonths.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.IPPCCNo.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.IPPStatus.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.IPPDateRcv.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.IPPDateSent.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.IPPBranchCode.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.IPPCreatedDate.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.IPPMerchantNo.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.IPPAmount.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.IPPInterest.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.IPPNettAmount.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.IPPMemberId.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.IPPMemberName.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.IPPId.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupIPPReceipt)).BeginInit();
     this.groupIPPReceipt.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridReceipt)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.IPPReceiptView)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.IPPReceiptStatus.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupGIROMaster)).BeginInit();
     this.groupGIROMaster.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.xtraTabControl1)).BeginInit();
     this.xtraTabControl1.SuspendLayout();
     this.tabGiroDetails.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.luedtBankBranch.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.luedtBank.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.luedtPackage.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.luedtBranch.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtPackageDesc.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtAccountNo.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtGIROId.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtRemark.Properties)).BeginInit();
     this.tabGiroTrnsHistory.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.GridTransaction)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView4)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.GroupGiro)).BeginInit();
     this.GroupGiro.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.comboBoxGiroStatus.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.GiroGrid)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.GIROGridView)).BeginInit();
     this.tabManagerTwo.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.GrpPayroll)).BeginInit();
     this.GrpPayroll.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.progressBarControl1.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cbJob.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.grpGridExcel)).BeginInit();
     this.grpGridExcel.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridExcel)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewExcel)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.comboBoxEditMTH.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.comboBoxEditYR.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbxPayroll.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridPayroll)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewPayroll)).BeginInit();
     this.tabManagerThree.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.grpClassSchedule)).BeginInit();
     this.grpClassSchedule.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.comboBoxBranch.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupMemCard)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.grpRoadShow)).BeginInit();
     this.tabManagerFour.SuspendLayout();
     this.tabManagerFive.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.ReportPanel)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lk_ReportView.Properties)).BeginInit();
     this.tabManagerSix.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.lk_MasterData.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.printingSystem1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.barManager1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.barAndDockingController1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.mdPGE_txtNQuantity.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.mdPGE_txtStrPackageCode.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.mdPGE_cdStrPackageGroupCode.Properties)).BeginInit();
     this.SuspendLayout();
     //
     // MainMenu1
     //
     this.MainMenu1.MenuItems.AddRange(new System.Windows.Forms.MenuItem[] {
     this.MenuItem1,
     this.MenuItem4,
     this.MenuItem5});
     //
     // MenuItem1
     //
     this.MenuItem1.Index = 0;
     this.MenuItem1.MenuItems.AddRange(new System.Windows.Forms.MenuItem[] {
     this.MenuItem2});
     this.MenuItem1.Text = "File";
     //
     // MenuItem2
     //
     this.MenuItem2.Index = 0;
     this.MenuItem2.Text = "Quit";
     //
     // MenuItem4
     //
     this.MenuItem4.Index = 1;
     this.MenuItem4.MenuItems.AddRange(new System.Windows.Forms.MenuItem[] {
     this.MenuItem6,
     this.MenuItem7,
     this.MenuItem8,
     this.MenuItem9,
     this.MenuItem10});
     this.MenuItem4.Text = "Tools";
     //
     // MenuItem6
     //
     this.MenuItem6.Index = 0;
     this.MenuItem6.Text = "Change Password";
     //
     // MenuItem7
     //
     this.MenuItem7.Index = 1;
     this.MenuItem7.Text = "Block Membership ID";
     //
     // MenuItem8
     //
     this.MenuItem8.Index = 2;
     this.MenuItem8.Text = "Reset Membership ID";
     //
     // MenuItem9
     //
     this.MenuItem9.Index = 3;
     this.MenuItem9.Text = "Re-print receipt";
     //
     // MenuItem10
     //
     this.MenuItem10.Index = 4;
     this.MenuItem10.Text = "Open Carton";
     //
     // MenuItem5
     //
     this.MenuItem5.Index = 2;
     this.MenuItem5.Text = "Help";
     //
     // tabControlManager
     //
     this.tabControlManager.Appearance.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.tabControlManager.Appearance.ForeColor = System.Drawing.Color.Transparent;
     this.tabControlManager.Appearance.Options.UseFont = true;
     this.tabControlManager.Appearance.Options.UseForeColor = true;
     this.tabControlManager.AppearancePage.Header.Font = new System.Drawing.Font("Tahoma", 10.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.tabControlManager.AppearancePage.Header.Options.UseFont = true;
     this.tabControlManager.Cursor = System.Windows.Forms.Cursors.Arrow;
     this.tabControlManager.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.tabControlManager.ImeMode = System.Windows.Forms.ImeMode.On;
     this.tabControlManager.Location = new System.Drawing.Point(0, 40);
     this.tabControlManager.LookAndFeel.UseDefaultLookAndFeel = false;
     this.tabControlManager.Name = "tabControlManager";
     this.tabControlManager.PaintStyleName = "Skin";
     this.tabControlManager.SelectedTabPage = this.tabManagerOne;
     this.tabControlManager.Size = new System.Drawing.Size(1016, 672);
     this.tabControlManager.TabIndex = 5;
     this.tabControlManager.TabPages.AddRange(new DevExpress.XtraTab.XtraTabPage[] {
     this.tabManagerOne,
     this.tabManagerTwo,
     this.tabManagerThree,
     this.tabManagerFour,
     this.tabManagerFive,
     this.tabManagerSix});
     this.tabControlManager.Text = "tabAccount";
     this.tabControlManager.Click += new System.EventHandler(this.tabControlManager_Click);
     //
     // tabManagerOne
     //
     this.tabManagerOne.Appearance.Header.Font = new System.Drawing.Font("Tahoma", 10.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.tabManagerOne.Appearance.Header.Options.UseFont = true;
     this.tabManagerOne.Appearance.PageClient.BackColor = System.Drawing.Color.DimGray;
     this.tabManagerOne.Appearance.PageClient.Options.UseBackColor = true;
     this.tabManagerOne.Controls.Add(this.lblOne_2);
     this.tabManagerOne.Controls.Add(this.lblOne_1);
     this.tabManagerOne.Controls.Add(this.groupIPPMaster);
     this.tabManagerOne.Controls.Add(this.groupGIROMaster);
     this.tabManagerOne.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.tabManagerOne.Name = "tabManagerOne";
     this.tabManagerOne.PageVisible = false;
     this.tabManagerOne.Size = new System.Drawing.Size(1007, 637);
     this.tabManagerOne.Text = "Account";
     //
     // lblOne_2
     //
     this.lblOne_2.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.lblOne_2.Appearance.ForeColor = System.Drawing.Color.MediumBlue;
     this.lblOne_2.Appearance.Options.UseFont = true;
     this.lblOne_2.Appearance.Options.UseForeColor = true;
     this.lblOne_2.Location = new System.Drawing.Point(152, 0);
     this.lblOne_2.Name = "lblOne_2";
     this.lblOne_2.Size = new System.Drawing.Size(138, 23);
     this.lblOne_2.TabIndex = 144;
     this.lblOne_2.Text = "GIRO";
     this.lblOne_2.Click += new System.EventHandler(this.lblOne_2_Click);
     //
     // lblOne_1
     //
     this.lblOne_1.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.lblOne_1.Appearance.ForeColor = System.Drawing.Color.MediumBlue;
     this.lblOne_1.Appearance.Options.UseFont = true;
     this.lblOne_1.Appearance.Options.UseForeColor = true;
     this.lblOne_1.Location = new System.Drawing.Point(8, 0);
     this.lblOne_1.Name = "lblOne_1";
     this.lblOne_1.Size = new System.Drawing.Size(138, 23);
     this.lblOne_1.TabIndex = 143;
     this.lblOne_1.Text = "IPP";
     this.lblOne_1.Click += new System.EventHandler(this.lblOne_1_Click);
     //
     // groupIPPMaster
     //
     this.groupIPPMaster.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowOnly;
     this.groupIPPMaster.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.groupIPPMaster.Controls.Add(this.groupIPP);
     this.groupIPPMaster.Controls.Add(this.hypReceipts);
     this.groupIPPMaster.Controls.Add(this.hypIPPDetails);
     this.groupIPPMaster.Controls.Add(this.GroupIPPDetails);
     this.groupIPPMaster.Controls.Add(this.groupIPPReceipt);
     this.groupIPPMaster.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.groupIPPMaster.Location = new System.Drawing.Point(0, 29);
     this.groupIPPMaster.Name = "groupIPPMaster";
     this.groupIPPMaster.ShowCaption = false;
     this.groupIPPMaster.Size = new System.Drawing.Size(1007, 608);
     this.toolTipController1.SetSuperTip(this.groupIPPMaster, null);
     this.groupIPPMaster.TabIndex = 20;
     this.groupIPPMaster.Text = "GroupControl3";
     //
     // groupIPP
     //
     this.groupIPP.Appearance.BackColor = System.Drawing.SystemColors.Control;
     this.groupIPP.Appearance.Options.UseBackColor = true;
     this.groupIPP.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowOnly;
     this.groupIPP.Controls.Add(this.ComboBoxIPP);
     this.groupIPP.Controls.Add(this.grpIPP2);
     this.groupIPP.Controls.Add(this.btnReceiveIPP);
     this.groupIPP.Controls.Add(this.btnSendIPP);
     this.groupIPP.Controls.Add(this.btnUpdateIPP);
     this.groupIPP.Controls.Add(this.btnDeleteIPP);
     this.groupIPP.Controls.Add(this.btnNewIPP);
     this.groupIPP.Controls.Add(this.IPPGrid);
     this.groupIPP.Location = new System.Drawing.Point(4, 0);
     this.groupIPP.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Office2003;
     this.groupIPP.LookAndFeel.UseDefaultLookAndFeel = false;
     this.groupIPP.Name = "groupIPP";
     this.groupIPP.Size = new System.Drawing.Size(996, 290);
     this.toolTipController1.SetSuperTip(this.groupIPP, null);
     this.groupIPP.TabIndex = 16;
     this.groupIPP.Text = "IPP";
     //
     // ComboBoxIPP
     //
     this.ComboBoxIPP.Location = new System.Drawing.Point(8, 56);
     this.ComboBoxIPP.Name = "ComboBoxIPP";
     this.ComboBoxIPP.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.ComboBoxIPP.Properties.Items.AddRange(new DevExpress.XtraEditors.Controls.ImageComboBoxItem[] {
     new DevExpress.XtraEditors.Controls.ImageComboBoxItem("Show All", null, -1),
     new DevExpress.XtraEditors.Controls.ImageComboBoxItem("Not Sent", 0, -1),
     new DevExpress.XtraEditors.Controls.ImageComboBoxItem("Sent, Not Received", 1, -1),
     new DevExpress.XtraEditors.Controls.ImageComboBoxItem("Success", 2, -1)});
     this.ComboBoxIPP.Size = new System.Drawing.Size(136, 20);
     this.ComboBoxIPP.TabIndex = 130;
     this.ComboBoxIPP.SelectedIndexChanged += new System.EventHandler(this.ComboBoxIPP_SelectedIndexChanged);
     //
     // grpIPP2
     //
     this.grpIPP2.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowOnly;
     this.grpIPP2.Controls.Add(this.btnReset);
     this.grpIPP2.Controls.Add(this.lkBranch);
     this.grpIPP2.Controls.Add(this.lkBank);
     this.grpIPP2.Controls.Add(this.IPPdtTo);
     this.grpIPP2.Controls.Add(this.IPPdtStart);
     this.grpIPP2.Controls.Add(this.btnSearch);
     this.grpIPP2.Controls.Add(this.txtCreditCardScr);
     this.grpIPP2.Controls.Add(this.label4);
     this.grpIPP2.Controls.Add(this.label3);
     this.grpIPP2.Controls.Add(this.label2);
     this.grpIPP2.Controls.Add(this.IPPlblDtTo);
     this.grpIPP2.Controls.Add(this.IPPlblDtFrom);
     this.grpIPP2.Location = new System.Drawing.Point(0, 16);
     this.grpIPP2.LookAndFeel.UseDefaultLookAndFeel = false;
     this.grpIPP2.Name = "grpIPP2";
     this.grpIPP2.ShowCaption = false;
     this.grpIPP2.Size = new System.Drawing.Size(1000, 34);
     this.toolTipController1.SetSuperTip(this.grpIPP2, null);
     this.grpIPP2.TabIndex = 128;
     this.grpIPP2.Text = "groupControl4";
     //
     // btnReset
     //
     this.btnReset.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.btnReset.Appearance.Options.UseFont = true;
     this.btnReset.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btnReset.Location = new System.Drawing.Point(928, 8);
     this.btnReset.Name = "btnReset";
     this.btnReset.Size = new System.Drawing.Size(56, 20);
     this.btnReset.TabIndex = 148;
     this.btnReset.Text = "Reset";
     this.btnReset.Click += new System.EventHandler(this.btnReset_Click);
     //
     // lkBranch
     //
     this.lkBranch.Location = new System.Drawing.Point(608, 8);
     this.lkBranch.Name = "lkBranch";
     this.lkBranch.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.Style3D;
     this.lkBranch.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lkBranch.Size = new System.Drawing.Size(64, 22);
     this.lkBranch.TabIndex = 147;
     //
     // lkBank
     //
     this.lkBank.Location = new System.Drawing.Point(336, 8);
     this.lkBank.Name = "lkBank";
     this.lkBank.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.Style3D;
     this.lkBank.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lkBank.Size = new System.Drawing.Size(216, 22);
     this.lkBank.TabIndex = 146;
     //
     // IPPdtTo
     //
     this.IPPdtTo.EditValue = new System.DateTime(2006, 5, 19, 0, 0, 0, 0);
     this.IPPdtTo.Location = new System.Drawing.Point(200, 8);
     this.IPPdtTo.Name = "IPPdtTo";
     this.IPPdtTo.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.Style3D;
     this.IPPdtTo.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.IPPdtTo.Properties.DisplayFormat.FormatString = "dd/MM/yyyy";
     this.IPPdtTo.Properties.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.IPPdtTo.Properties.EditFormat.FormatString = "dd/MM/yyyy";
     this.IPPdtTo.Properties.EditFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.IPPdtTo.Properties.LookAndFeel.UseDefaultLookAndFeel = false;
     this.IPPdtTo.Properties.Mask.EditMask = "dd/MM/yyyy";
     this.IPPdtTo.Properties.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.IPPdtTo.Size = new System.Drawing.Size(96, 22);
     this.IPPdtTo.TabIndex = 138;
     //
     // IPPdtStart
     //
     this.IPPdtStart.EditValue = new System.DateTime(2006, 5, 19, 0, 0, 0, 0);
     this.IPPdtStart.Location = new System.Drawing.Point(80, 8);
     this.IPPdtStart.Name = "IPPdtStart";
     this.IPPdtStart.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.Style3D;
     this.IPPdtStart.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.IPPdtStart.Properties.DisplayFormat.FormatString = "dd/MM/yyyy";
     this.IPPdtStart.Properties.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.IPPdtStart.Properties.EditFormat.FormatString = "dd/MM/yyyy";
     this.IPPdtStart.Properties.EditFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.IPPdtStart.Properties.LookAndFeel.UseDefaultLookAndFeel = false;
     this.IPPdtStart.Properties.Mask.EditMask = "dd/MM/yyyy";
     this.IPPdtStart.Properties.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.IPPdtStart.Size = new System.Drawing.Size(96, 22);
     this.IPPdtStart.TabIndex = 137;
     //
     // btnSearch
     //
     this.btnSearch.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.btnSearch.Appearance.Options.UseFont = true;
     this.btnSearch.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btnSearch.Location = new System.Drawing.Point(864, 8);
     this.btnSearch.Name = "btnSearch";
     this.btnSearch.Size = new System.Drawing.Size(56, 20);
     this.btnSearch.TabIndex = 135;
     this.btnSearch.Text = "Search";
     this.btnSearch.Click += new System.EventHandler(this.btnSearch_Click);
     //
     // txtCreditCardScr
     //
     this.txtCreditCardScr.EditValue = "";
     this.txtCreditCardScr.Location = new System.Drawing.Point(760, 8);
     this.txtCreditCardScr.Name = "txtCreditCardScr";
     this.txtCreditCardScr.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtCreditCardScr.Properties.Appearance.Options.UseFont = true;
     this.txtCreditCardScr.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.Style3D;
     this.txtCreditCardScr.Properties.LookAndFeel.UseDefaultLookAndFeel = false;
     this.txtCreditCardScr.Size = new System.Drawing.Size(96, 22);
     this.txtCreditCardScr.TabIndex = 134;
     //
     // label4
     //
     this.label4.BackColor = System.Drawing.Color.Transparent;
     this.label4.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label4.Location = new System.Drawing.Point(680, 8);
     this.label4.Name = "label4";
     this.label4.Size = new System.Drawing.Size(88, 16);
     this.toolTipController1.SetSuperTip(this.label4, null);
     this.label4.TabIndex = 132;
     this.label4.Text = "Credit Card";
     this.label4.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // label3
     //
     this.label3.BackColor = System.Drawing.Color.Transparent;
     this.label3.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label3.Location = new System.Drawing.Point(552, 8);
     this.label3.Name = "label3";
     this.label3.Size = new System.Drawing.Size(56, 16);
     this.toolTipController1.SetSuperTip(this.label3, null);
     this.label3.TabIndex = 131;
     this.label3.Text = "Branch";
     this.label3.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // label2
     //
     this.label2.BackColor = System.Drawing.Color.Transparent;
     this.label2.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label2.Location = new System.Drawing.Point(296, 8);
     this.label2.Name = "label2";
     this.label2.Size = new System.Drawing.Size(40, 16);
     this.toolTipController1.SetSuperTip(this.label2, null);
     this.label2.TabIndex = 130;
     this.label2.Text = "Bank";
     this.label2.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // IPPlblDtTo
     //
     this.IPPlblDtTo.BackColor = System.Drawing.Color.Transparent;
     this.IPPlblDtTo.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.IPPlblDtTo.Location = new System.Drawing.Point(176, 8);
     this.IPPlblDtTo.Name = "IPPlblDtTo";
     this.IPPlblDtTo.Size = new System.Drawing.Size(24, 16);
     this.toolTipController1.SetSuperTip(this.IPPlblDtTo, null);
     this.IPPlblDtTo.TabIndex = 125;
     this.IPPlblDtTo.Text = "To";
     this.IPPlblDtTo.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // IPPlblDtFrom
     //
     this.IPPlblDtFrom.BackColor = System.Drawing.Color.Transparent;
     this.IPPlblDtFrom.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.IPPlblDtFrom.Location = new System.Drawing.Point(8, 8);
     this.IPPlblDtFrom.Name = "IPPlblDtFrom";
     this.IPPlblDtFrom.Size = new System.Drawing.Size(72, 16);
     this.toolTipController1.SetSuperTip(this.IPPlblDtFrom, null);
     this.IPPlblDtFrom.TabIndex = 124;
     this.IPPlblDtFrom.Text = "Date From";
     this.IPPlblDtFrom.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // btnReceiveIPP
     //
     this.btnReceiveIPP.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.btnReceiveIPP.Appearance.Options.UseFont = true;
     this.btnReceiveIPP.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btnReceiveIPP.Enabled = false;
     this.btnReceiveIPP.Location = new System.Drawing.Point(408, 56);
     this.btnReceiveIPP.Name = "btnReceiveIPP";
     this.btnReceiveIPP.Size = new System.Drawing.Size(62, 20);
     this.btnReceiveIPP.TabIndex = 13;
     this.btnReceiveIPP.Text = "Receive";
     this.btnReceiveIPP.Click += new System.EventHandler(this.btnReceiveIPP_Click);
     //
     // btnSendIPP
     //
     this.btnSendIPP.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.btnSendIPP.Appearance.Options.UseFont = true;
     this.btnSendIPP.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btnSendIPP.Enabled = false;
     this.btnSendIPP.Location = new System.Drawing.Point(344, 56);
     this.btnSendIPP.Name = "btnSendIPP";
     this.btnSendIPP.Size = new System.Drawing.Size(62, 20);
     this.btnSendIPP.TabIndex = 12;
     this.btnSendIPP.Text = "Send";
     this.btnSendIPP.Click += new System.EventHandler(this.btnSendIPP_Click);
     //
     // btnUpdateIPP
     //
     this.btnUpdateIPP.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.btnUpdateIPP.Appearance.Options.UseFont = true;
     this.btnUpdateIPP.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btnUpdateIPP.Location = new System.Drawing.Point(216, 56);
     this.btnUpdateIPP.Name = "btnUpdateIPP";
     this.btnUpdateIPP.Size = new System.Drawing.Size(62, 20);
     this.btnUpdateIPP.TabIndex = 10;
     this.btnUpdateIPP.Text = "Update";
     this.btnUpdateIPP.Click += new System.EventHandler(this.btnUpdateIPP_Click);
     //
     // btnDeleteIPP
     //
     this.btnDeleteIPP.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.btnDeleteIPP.Appearance.Options.UseFont = true;
     this.btnDeleteIPP.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btnDeleteIPP.Location = new System.Drawing.Point(280, 56);
     this.btnDeleteIPP.Name = "btnDeleteIPP";
     this.btnDeleteIPP.Size = new System.Drawing.Size(62, 20);
     this.btnDeleteIPP.TabIndex = 5;
     this.btnDeleteIPP.Text = "Delete";
     this.btnDeleteIPP.Click += new System.EventHandler(this.btnDeleteIPP_Click);
     //
     // btnNewIPP
     //
     this.btnNewIPP.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.btnNewIPP.Appearance.Options.UseFont = true;
     this.btnNewIPP.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btnNewIPP.Location = new System.Drawing.Point(152, 56);
     this.btnNewIPP.Name = "btnNewIPP";
     this.btnNewIPP.Size = new System.Drawing.Size(62, 20);
     this.btnNewIPP.TabIndex = 2;
     this.btnNewIPP.Text = "New";
     this.btnNewIPP.Click += new System.EventHandler(this.btnNewIPP_Click);
     //
     // IPPGrid
     //
     this.IPPGrid.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.IPPGrid.EmbeddedNavigator.Cursor = System.Windows.Forms.Cursors.Arrow;
     this.IPPGrid.EmbeddedNavigator.Name = "";
     gridLevelNode1.RelationName = "Level1";
     this.IPPGrid.LevelTree.Nodes.AddRange(new DevExpress.XtraGrid.GridLevelNode[] {
     gridLevelNode1});
     this.IPPGrid.Location = new System.Drawing.Point(2, 80);
     this.IPPGrid.LookAndFeel.UseDefaultLookAndFeel = false;
     this.IPPGrid.MainView = this.IPPGridView;
     this.IPPGrid.Name = "IPPGrid";
     this.IPPGrid.Size = new System.Drawing.Size(992, 208);
     this.IPPGrid.TabIndex = 0;
     this.IPPGrid.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.IPPGridView});
     //
     // IPPGridView
     //
     this.IPPGridView.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn10,
     this.gridColumn11,
     this.gridColumn12,
     this.gridColumn13,
     this.gridColumn14,
     this.gridColumn15,
     this.gridColumn16,
     this.gridColumn8});
     this.IPPGridView.GridControl = this.IPPGrid;
     this.IPPGridView.Name = "IPPGridView";
     this.IPPGridView.OptionsBehavior.Editable = false;
     this.IPPGridView.OptionsCustomization.AllowFilter = false;
     this.IPPGridView.OptionsFilter.AllowColumnMRUFilterList = false;
     this.IPPGridView.OptionsFilter.AllowMRUFilterList = false;
     this.IPPGridView.OptionsView.ShowGroupPanel = false;
     this.IPPGridView.FocusedRowChanged += new DevExpress.XtraGrid.Views.Base.FocusedRowChangedEventHandler(this.IPPGridView_FocusedRowChanged);
     this.IPPGridView.Click += new System.EventHandler(this.IPPGridView_Click);
     //
     // gridColumn10
     //
     this.gridColumn10.Caption = "ID";
     this.gridColumn10.FieldName = "nIPPID";
     this.gridColumn10.Name = "gridColumn10";
     this.gridColumn10.Visible = true;
     this.gridColumn10.VisibleIndex = 0;
     //
     // gridColumn11
     //
     this.gridColumn11.Caption = "Date Created";
     this.gridColumn11.FieldName = "dtDate";
     this.gridColumn11.Name = "gridColumn11";
     this.gridColumn11.Visible = true;
     this.gridColumn11.VisibleIndex = 6;
     //
     // gridColumn12
     //
     this.gridColumn12.Caption = "Member Id";
     this.gridColumn12.FieldName = "strMembershipID";
     this.gridColumn12.Name = "gridColumn12";
     this.gridColumn12.Visible = true;
     this.gridColumn12.VisibleIndex = 1;
     //
     // gridColumn13
     //
     this.gridColumn13.Caption = "Member Name";
     this.gridColumn13.FieldName = "strMemberName";
     this.gridColumn13.Name = "gridColumn13";
     this.gridColumn13.Visible = true;
     this.gridColumn13.VisibleIndex = 2;
     //
     // gridColumn14
     //
     this.gridColumn14.Caption = "Bank";
     this.gridColumn14.FieldName = "strBankDesc";
     this.gridColumn14.Name = "gridColumn14";
     this.gridColumn14.Visible = true;
     this.gridColumn14.VisibleIndex = 3;
     //
     // gridColumn15
     //
     this.gridColumn15.Caption = "Credit Card No.";
     this.gridColumn15.DisplayFormat.FormatString = "####-####-####-####";
     this.gridColumn15.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Custom;
     this.gridColumn15.FieldName = "strCreditCardNo";
     this.gridColumn15.GroupFormat.FormatString = "####-####-####-####";
     this.gridColumn15.GroupFormat.FormatType = DevExpress.Utils.FormatType.Custom;
     this.gridColumn15.MinWidth = 24;
     this.gridColumn15.Name = "gridColumn15";
     this.gridColumn15.Visible = true;
     this.gridColumn15.VisibleIndex = 4;
     //
     // gridColumn16
     //
     this.gridColumn16.Caption = "No. of Months";
     this.gridColumn16.FieldName = "nMonths";
     this.gridColumn16.Name = "gridColumn16";
     this.gridColumn16.Visible = true;
     this.gridColumn16.VisibleIndex = 5;
     //
     // gridColumn8
     //
     this.gridColumn8.Caption = "gridColumn8";
     this.gridColumn8.FieldName = "strIPP";
     this.gridColumn8.Name = "gridColumn8";
     //
     // hypReceipts
     //
     this.hypReceipts.AutoSize = true;
     this.hypReceipts.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.hypReceipts.Location = new System.Drawing.Point(128, 296);
     this.hypReceipts.Name = "hypReceipts";
     this.hypReceipts.Size = new System.Drawing.Size(83, 16);
     this.toolTipController1.SetSuperTip(this.hypReceipts, null);
     this.hypReceipts.TabIndex = 13;
     this.hypReceipts.Text = "RECEIPTS";
     this.hypReceipts.Click += new System.EventHandler(this.hypReceipts_Click);
     //
     // hypIPPDetails
     //
     this.hypIPPDetails.AutoSize = true;
     this.hypIPPDetails.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Underline))), System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.hypIPPDetails.Location = new System.Drawing.Point(16, 296);
     this.hypIPPDetails.Name = "hypIPPDetails";
     this.hypIPPDetails.Size = new System.Drawing.Size(99, 16);
     this.toolTipController1.SetSuperTip(this.hypIPPDetails, null);
     this.hypIPPDetails.TabIndex = 10;
     this.hypIPPDetails.Text = "IPP DETAILS";
     this.hypIPPDetails.Click += new System.EventHandler(this.hypIPPDetails_Click);
     //
     // GroupIPPDetails
     //
     this.GroupIPPDetails.Appearance.BackColor = System.Drawing.SystemColors.Control;
     this.GroupIPPDetails.Appearance.Options.UseBackColor = true;
     this.GroupIPPDetails.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowOnly;
     this.GroupIPPDetails.Controls.Add(this.strReferenceNo);
     this.GroupIPPDetails.Controls.Add(this.label7);
     this.GroupIPPDetails.Controls.Add(this.IPPBankCode);
     this.GroupIPPDetails.Controls.Add(this.IPPNMonths);
     this.GroupIPPDetails.Controls.Add(this.IPPCCNo);
     this.GroupIPPDetails.Controls.Add(this.IPPStatus);
     this.GroupIPPDetails.Controls.Add(this.IPPDateRcv);
     this.GroupIPPDetails.Controls.Add(this.IPPDateSent);
     this.GroupIPPDetails.Controls.Add(this.IPPBranchCode);
     this.GroupIPPDetails.Controls.Add(this.IPPCreatedDate);
     this.GroupIPPDetails.Controls.Add(this.IPPLBL1);
     this.GroupIPPDetails.Controls.Add(this.IPPLBL16);
     this.GroupIPPDetails.Controls.Add(this.IPPMerchantNo);
     this.GroupIPPDetails.Controls.Add(this.IPPLBL8);
     this.GroupIPPDetails.Controls.Add(this.IPPLBL14);
     this.GroupIPPDetails.Controls.Add(this.IPPLBL12);
     this.GroupIPPDetails.Controls.Add(this.IPPLBL13);
     this.GroupIPPDetails.Controls.Add(this.IPPLBL11);
     this.GroupIPPDetails.Controls.Add(this.IPPLBL10);
     this.GroupIPPDetails.Controls.Add(this.IPPLBL9);
     this.GroupIPPDetails.Controls.Add(this.IPPLBL7);
     this.GroupIPPDetails.Controls.Add(this.IPPAmount);
     this.GroupIPPDetails.Controls.Add(this.IPPInterest);
     this.GroupIPPDetails.Controls.Add(this.IPPNettAmount);
     this.GroupIPPDetails.Controls.Add(this.IPPLBL5);
     this.GroupIPPDetails.Controls.Add(this.IPPLBL6);
     this.GroupIPPDetails.Controls.Add(this.IPPLBL4);
     this.GroupIPPDetails.Controls.Add(this.IPPLBL3);
     this.GroupIPPDetails.Controls.Add(this.IPPLBL2);
     this.GroupIPPDetails.Controls.Add(this.IPPMemberId);
     this.GroupIPPDetails.Controls.Add(this.IPPMemberName);
     this.GroupIPPDetails.Controls.Add(this.IPPId);
     this.GroupIPPDetails.ImeMode = System.Windows.Forms.ImeMode.On;
     this.GroupIPPDetails.Location = new System.Drawing.Point(8, 320);
     this.GroupIPPDetails.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Office2003;
     this.GroupIPPDetails.LookAndFeel.UseDefaultLookAndFeel = false;
     this.GroupIPPDetails.Name = "GroupIPPDetails";
     this.GroupIPPDetails.Size = new System.Drawing.Size(992, 240);
     this.toolTipController1.SetSuperTip(this.GroupIPPDetails, null);
     this.GroupIPPDetails.TabIndex = 14;
     this.GroupIPPDetails.Text = "IPP Details";
     //
     // strReferenceNo
     //
     this.strReferenceNo.EditValue = "";
     this.strReferenceNo.Location = new System.Drawing.Point(600, 200);
     this.strReferenceNo.Name = "strReferenceNo";
     this.strReferenceNo.Size = new System.Drawing.Size(168, 20);
     this.strReferenceNo.TabIndex = 150;
     //
     // label7
     //
     this.label7.AutoSize = true;
     this.label7.BackColor = System.Drawing.Color.Transparent;
     this.label7.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label7.Location = new System.Drawing.Point(424, 200);
     this.label7.Name = "label7";
     this.label7.Size = new System.Drawing.Size(141, 16);
     this.toolTipController1.SetSuperTip(this.label7, null);
     this.label7.TabIndex = 149;
     this.label7.Text = "Reference Number  :";
     //
     // IPPBankCode
     //
     this.IPPBankCode.Location = new System.Drawing.Point(600, 128);
     this.IPPBankCode.Name = "IPPBankCode";
     this.IPPBankCode.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.IPPBankCode.Size = new System.Drawing.Size(168, 20);
     this.IPPBankCode.TabIndex = 145;
     this.IPPBankCode.EditValueChanged += new System.EventHandler(this.IPPBankCode_EditValueChanged);
     //
     // IPPNMonths
     //
     this.IPPNMonths.Location = new System.Drawing.Point(600, 176);
     this.IPPNMonths.Name = "IPPNMonths";
     this.IPPNMonths.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.IPPNMonths.Size = new System.Drawing.Size(168, 20);
     this.IPPNMonths.TabIndex = 144;
     //
     // IPPCCNo
     //
     this.IPPCCNo.AllowDrop = true;
     this.IPPCCNo.EditValue = "";
     this.IPPCCNo.Location = new System.Drawing.Point(600, 152);
     this.IPPCCNo.Name = "IPPCCNo";
     this.IPPCCNo.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.IPPCCNo.Properties.Appearance.Options.UseFont = true;
     this.IPPCCNo.Properties.LookAndFeel.UseDefaultLookAndFeel = false;
     this.IPPCCNo.Properties.Mask.BeepOnError = true;
     this.IPPCCNo.Properties.Mask.EditMask = "\\d{4}-\\d{4}-\\d{4}-\\d{4}";
     this.IPPCCNo.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.Regular;
     this.IPPCCNo.Properties.Mask.SaveLiteral = false;
     this.IPPCCNo.Properties.Mask.UseMaskAsDisplayFormat = true;
     this.IPPCCNo.Properties.MaxLength = 19;
     this.IPPCCNo.Size = new System.Drawing.Size(168, 20);
     this.IPPCCNo.TabIndex = 143;
     //
     // IPPStatus
     //
     this.IPPStatus.EditValue = "";
     this.IPPStatus.Enabled = false;
     this.IPPStatus.Location = new System.Drawing.Point(600, 104);
     this.IPPStatus.Name = "IPPStatus";
     this.IPPStatus.Properties.Appearance.BackColor = System.Drawing.Color.Transparent;
     this.IPPStatus.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.IPPStatus.Properties.Appearance.ForeColor = System.Drawing.Color.Black;
     this.IPPStatus.Properties.Appearance.Options.UseBackColor = true;
     this.IPPStatus.Properties.Appearance.Options.UseFont = true;
     this.IPPStatus.Properties.Appearance.Options.UseForeColor = true;
     this.IPPStatus.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.IPPStatus.Properties.LookAndFeel.UseDefaultLookAndFeel = false;
     this.IPPStatus.Properties.ReadOnly = true;
     this.IPPStatus.ShowToolTips = false;
     this.IPPStatus.Size = new System.Drawing.Size(168, 18);
     this.IPPStatus.TabIndex = 141;
     //
     // IPPDateRcv
     //
     this.IPPDateRcv.EditValue = "";
     this.IPPDateRcv.Enabled = false;
     this.IPPDateRcv.Location = new System.Drawing.Point(600, 80);
     this.IPPDateRcv.Name = "IPPDateRcv";
     this.IPPDateRcv.Properties.Appearance.BackColor = System.Drawing.Color.Transparent;
     this.IPPDateRcv.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.IPPDateRcv.Properties.Appearance.ForeColor = System.Drawing.Color.Black;
     this.IPPDateRcv.Properties.Appearance.Options.UseBackColor = true;
     this.IPPDateRcv.Properties.Appearance.Options.UseFont = true;
     this.IPPDateRcv.Properties.Appearance.Options.UseForeColor = true;
     this.IPPDateRcv.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.IPPDateRcv.Properties.DisplayFormat.FormatString = "d";
     this.IPPDateRcv.Properties.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.IPPDateRcv.Properties.LookAndFeel.UseDefaultLookAndFeel = false;
     this.IPPDateRcv.Properties.Mask.EditMask = "dd/MM/yyyy";
     this.IPPDateRcv.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.DateTime;
     this.IPPDateRcv.Properties.ReadOnly = true;
     this.IPPDateRcv.ShowToolTips = false;
     this.IPPDateRcv.Size = new System.Drawing.Size(168, 18);
     this.IPPDateRcv.TabIndex = 140;
     //
     // IPPDateSent
     //
     this.IPPDateSent.EditValue = "";
     this.IPPDateSent.Enabled = false;
     this.IPPDateSent.Location = new System.Drawing.Point(600, 56);
     this.IPPDateSent.Name = "IPPDateSent";
     this.IPPDateSent.Properties.Appearance.BackColor = System.Drawing.Color.Transparent;
     this.IPPDateSent.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.IPPDateSent.Properties.Appearance.ForeColor = System.Drawing.Color.Black;
     this.IPPDateSent.Properties.Appearance.Options.UseBackColor = true;
     this.IPPDateSent.Properties.Appearance.Options.UseFont = true;
     this.IPPDateSent.Properties.Appearance.Options.UseForeColor = true;
     this.IPPDateSent.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.IPPDateSent.Properties.DisplayFormat.FormatString = "d";
     this.IPPDateSent.Properties.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.IPPDateSent.Properties.LookAndFeel.UseDefaultLookAndFeel = false;
     this.IPPDateSent.Properties.Mask.EditMask = "dd/MM/yyyy";
     this.IPPDateSent.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.DateTime;
     this.IPPDateSent.Properties.ReadOnly = true;
     this.IPPDateSent.ShowToolTips = false;
     this.IPPDateSent.Size = new System.Drawing.Size(168, 18);
     this.IPPDateSent.TabIndex = 139;
     //
     // IPPBranchCode
     //
     this.IPPBranchCode.EditValue = "";
     this.IPPBranchCode.Enabled = false;
     this.IPPBranchCode.Location = new System.Drawing.Point(184, 128);
     this.IPPBranchCode.Name = "IPPBranchCode";
     this.IPPBranchCode.Properties.Appearance.BackColor = System.Drawing.Color.Transparent;
     this.IPPBranchCode.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.IPPBranchCode.Properties.Appearance.ForeColor = System.Drawing.Color.Black;
     this.IPPBranchCode.Properties.Appearance.Options.UseBackColor = true;
     this.IPPBranchCode.Properties.Appearance.Options.UseFont = true;
     this.IPPBranchCode.Properties.Appearance.Options.UseForeColor = true;
     this.IPPBranchCode.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.IPPBranchCode.Properties.LookAndFeel.UseDefaultLookAndFeel = false;
     this.IPPBranchCode.Properties.ReadOnly = true;
     this.IPPBranchCode.Size = new System.Drawing.Size(168, 18);
     this.IPPBranchCode.TabIndex = 138;
     //
     // IPPCreatedDate
     //
     this.IPPCreatedDate.EditValue = "";
     this.IPPCreatedDate.Enabled = false;
     this.IPPCreatedDate.Location = new System.Drawing.Point(184, 56);
     this.IPPCreatedDate.Name = "IPPCreatedDate";
     this.IPPCreatedDate.Properties.Appearance.BackColor = System.Drawing.Color.Transparent;
     this.IPPCreatedDate.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.IPPCreatedDate.Properties.Appearance.ForeColor = System.Drawing.Color.Black;
     this.IPPCreatedDate.Properties.Appearance.Options.UseBackColor = true;
     this.IPPCreatedDate.Properties.Appearance.Options.UseFont = true;
     this.IPPCreatedDate.Properties.Appearance.Options.UseForeColor = true;
     this.IPPCreatedDate.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.IPPCreatedDate.Properties.DisplayFormat.FormatString = "d";
     this.IPPCreatedDate.Properties.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.IPPCreatedDate.Properties.LookAndFeel.UseDefaultLookAndFeel = false;
     this.IPPCreatedDate.Properties.Mask.EditMask = "dd/MM/yyyy";
     this.IPPCreatedDate.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.DateTime;
     this.IPPCreatedDate.Properties.ReadOnly = true;
     this.IPPCreatedDate.Size = new System.Drawing.Size(168, 18);
     this.IPPCreatedDate.TabIndex = 137;
     //
     // IPPLBL1
     //
     this.IPPLBL1.AutoSize = true;
     this.IPPLBL1.BackColor = System.Drawing.Color.Transparent;
     this.IPPLBL1.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.IPPLBL1.Location = new System.Drawing.Point(32, 32);
     this.IPPLBL1.Name = "IPPLBL1";
     this.IPPLBL1.Size = new System.Drawing.Size(55, 16);
     this.toolTipController1.SetSuperTip(this.IPPLBL1, null);
     this.IPPLBL1.TabIndex = 136;
     this.IPPLBL1.Text = "IPP Id :";
     //
     // IPPLBL16
     //
     this.IPPLBL16.AutoSize = true;
     this.IPPLBL16.BackColor = System.Drawing.Color.Transparent;
     this.IPPLBL16.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.IPPLBL16.Location = new System.Drawing.Point(32, 128);
     this.IPPLBL16.Name = "IPPLBL16";
     this.IPPLBL16.Size = new System.Drawing.Size(98, 16);
     this.toolTipController1.SetSuperTip(this.IPPLBL16, null);
     this.IPPLBL16.TabIndex = 135;
     this.IPPLBL16.Text = "Branch Code :";
     //
     // IPPMerchantNo
     //
     this.IPPMerchantNo.EditValue = "";
     this.IPPMerchantNo.Enabled = false;
     this.IPPMerchantNo.Location = new System.Drawing.Point(184, 152);
     this.IPPMerchantNo.Name = "IPPMerchantNo";
     this.IPPMerchantNo.Properties.Appearance.BackColor = System.Drawing.Color.Transparent;
     this.IPPMerchantNo.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.IPPMerchantNo.Properties.Appearance.ForeColor = System.Drawing.Color.Black;
     this.IPPMerchantNo.Properties.Appearance.Options.UseBackColor = true;
     this.IPPMerchantNo.Properties.Appearance.Options.UseFont = true;
     this.IPPMerchantNo.Properties.Appearance.Options.UseForeColor = true;
     this.IPPMerchantNo.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.IPPMerchantNo.Properties.LookAndFeel.UseDefaultLookAndFeel = false;
     this.IPPMerchantNo.Properties.ReadOnly = true;
     this.IPPMerchantNo.Size = new System.Drawing.Size(166, 18);
     this.IPPMerchantNo.TabIndex = 133;
     //
     // IPPLBL8
     //
     this.IPPLBL8.AutoSize = true;
     this.IPPLBL8.BackColor = System.Drawing.Color.Transparent;
     this.IPPLBL8.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.IPPLBL8.Location = new System.Drawing.Point(32, 152);
     this.IPPLBL8.Name = "IPPLBL8";
     this.IPPLBL8.Size = new System.Drawing.Size(99, 16);
     this.toolTipController1.SetSuperTip(this.IPPLBL8, null);
     this.IPPLBL8.TabIndex = 132;
     this.IPPLBL8.Text = "Merchant No :";
     //
     // IPPLBL14
     //
     this.IPPLBL14.AutoSize = true;
     this.IPPLBL14.BackColor = System.Drawing.Color.Transparent;
     this.IPPLBL14.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.IPPLBL14.Location = new System.Drawing.Point(424, 104);
     this.IPPLBL14.Name = "IPPLBL14";
     this.IPPLBL14.Size = new System.Drawing.Size(60, 16);
     this.toolTipController1.SetSuperTip(this.IPPLBL14, null);
     this.IPPLBL14.TabIndex = 131;
     this.IPPLBL14.Text = "Status :";
     //
     // IPPLBL12
     //
     this.IPPLBL12.AutoSize = true;
     this.IPPLBL12.BackColor = System.Drawing.Color.Transparent;
     this.IPPLBL12.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.IPPLBL12.Location = new System.Drawing.Point(424, 56);
     this.IPPLBL12.Name = "IPPLBL12";
     this.IPPLBL12.Size = new System.Drawing.Size(135, 16);
     this.toolTipController1.SetSuperTip(this.IPPLBL12, null);
     this.IPPLBL12.TabIndex = 130;
     this.IPPLBL12.Text = "Date Sent to Bank :";
     //
     // IPPLBL13
     //
     this.IPPLBL13.AutoSize = true;
     this.IPPLBL13.BackColor = System.Drawing.Color.Transparent;
     this.IPPLBL13.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.IPPLBL13.Location = new System.Drawing.Point(424, 80);
     this.IPPLBL13.Name = "IPPLBL13";
     this.IPPLBL13.Size = new System.Drawing.Size(151, 16);
     this.toolTipController1.SetSuperTip(this.IPPLBL13, null);
     this.IPPLBL13.TabIndex = 129;
     this.IPPLBL13.Text = "Date Received Reply :";
     //
     // IPPLBL11
     //
     this.IPPLBL11.AutoSize = true;
     this.IPPLBL11.BackColor = System.Drawing.Color.Transparent;
     this.IPPLBL11.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.IPPLBL11.Location = new System.Drawing.Point(424, 32);
     this.IPPLBL11.Name = "IPPLBL11";
     this.IPPLBL11.Size = new System.Drawing.Size(100, 16);
     this.toolTipController1.SetSuperTip(this.IPPLBL11, null);
     this.IPPLBL11.TabIndex = 128;
     this.IPPLBL11.Text = "Nett Amount :";
     //
     // IPPLBL10
     //
     this.IPPLBL10.AutoSize = true;
     this.IPPLBL10.BackColor = System.Drawing.Color.Transparent;
     this.IPPLBL10.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.IPPLBL10.Location = new System.Drawing.Point(32, 200);
     this.IPPLBL10.Name = "IPPLBL10";
     this.IPPLBL10.Size = new System.Drawing.Size(71, 16);
     this.toolTipController1.SetSuperTip(this.IPPLBL10, null);
     this.IPPLBL10.TabIndex = 127;
     this.IPPLBL10.Text = "Interest :";
     //
     // IPPLBL9
     //
     this.IPPLBL9.AutoSize = true;
     this.IPPLBL9.BackColor = System.Drawing.Color.Transparent;
     this.IPPLBL9.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.IPPLBL9.Location = new System.Drawing.Point(32, 176);
     this.IPPLBL9.Name = "IPPLBL9";
     this.IPPLBL9.Size = new System.Drawing.Size(68, 16);
     this.toolTipController1.SetSuperTip(this.IPPLBL9, null);
     this.IPPLBL9.TabIndex = 126;
     this.IPPLBL9.Text = "Amount :";
     this.IPPLBL9.TextAlign = System.Drawing.ContentAlignment.TopCenter;
     //
     // IPPLBL7
     //
     this.IPPLBL7.AutoSize = true;
     this.IPPLBL7.BackColor = System.Drawing.Color.Transparent;
     this.IPPLBL7.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.IPPLBL7.Location = new System.Drawing.Point(424, 176);
     this.IPPLBL7.Name = "IPPLBL7";
     this.IPPLBL7.Size = new System.Drawing.Size(139, 16);
     this.toolTipController1.SetSuperTip(this.IPPLBL7, null);
     this.IPPLBL7.TabIndex = 125;
     this.IPPLBL7.Text = "Number of Months  :";
     //
     // IPPAmount
     //
     this.IPPAmount.EditValue = "";
     this.IPPAmount.Enabled = false;
     this.IPPAmount.Location = new System.Drawing.Point(184, 176);
     this.IPPAmount.Name = "IPPAmount";
     this.IPPAmount.Properties.Appearance.BackColor = System.Drawing.Color.Transparent;
     this.IPPAmount.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.IPPAmount.Properties.Appearance.ForeColor = System.Drawing.Color.Black;
     this.IPPAmount.Properties.Appearance.Options.UseBackColor = true;
     this.IPPAmount.Properties.Appearance.Options.UseFont = true;
     this.IPPAmount.Properties.Appearance.Options.UseForeColor = true;
     this.IPPAmount.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.IPPAmount.Properties.LookAndFeel.UseDefaultLookAndFeel = false;
     this.IPPAmount.Properties.ReadOnly = true;
     this.IPPAmount.Size = new System.Drawing.Size(166, 18);
     this.IPPAmount.TabIndex = 124;
     //
     // IPPInterest
     //
     this.IPPInterest.EditValue = "";
     this.IPPInterest.Enabled = false;
     this.IPPInterest.Location = new System.Drawing.Point(184, 200);
     this.IPPInterest.Name = "IPPInterest";
     this.IPPInterest.Properties.Appearance.BackColor = System.Drawing.Color.Transparent;
     this.IPPInterest.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.IPPInterest.Properties.Appearance.ForeColor = System.Drawing.Color.Black;
     this.IPPInterest.Properties.Appearance.Options.UseBackColor = true;
     this.IPPInterest.Properties.Appearance.Options.UseFont = true;
     this.IPPInterest.Properties.Appearance.Options.UseForeColor = true;
     this.IPPInterest.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.IPPInterest.Properties.LookAndFeel.UseDefaultLookAndFeel = false;
     this.IPPInterest.Properties.ReadOnly = true;
     this.IPPInterest.Size = new System.Drawing.Size(166, 18);
     this.IPPInterest.TabIndex = 123;
     //
     // IPPNettAmount
     //
     this.IPPNettAmount.EditValue = "";
     this.IPPNettAmount.Enabled = false;
     this.IPPNettAmount.Location = new System.Drawing.Point(600, 32);
     this.IPPNettAmount.Name = "IPPNettAmount";
     this.IPPNettAmount.Properties.Appearance.BackColor = System.Drawing.Color.Transparent;
     this.IPPNettAmount.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.IPPNettAmount.Properties.Appearance.ForeColor = System.Drawing.Color.Black;
     this.IPPNettAmount.Properties.Appearance.Options.UseBackColor = true;
     this.IPPNettAmount.Properties.Appearance.Options.UseFont = true;
     this.IPPNettAmount.Properties.Appearance.Options.UseForeColor = true;
     this.IPPNettAmount.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.IPPNettAmount.Properties.LookAndFeel.UseDefaultLookAndFeel = false;
     this.IPPNettAmount.Properties.ReadOnly = true;
     this.IPPNettAmount.Size = new System.Drawing.Size(166, 18);
     this.IPPNettAmount.TabIndex = 122;
     //
     // IPPLBL5
     //
     this.IPPLBL5.AutoSize = true;
     this.IPPLBL5.BackColor = System.Drawing.Color.Transparent;
     this.IPPLBL5.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.IPPLBL5.Location = new System.Drawing.Point(424, 128);
     this.IPPLBL5.Name = "IPPLBL5";
     this.IPPLBL5.Size = new System.Drawing.Size(84, 16);
     this.toolTipController1.SetSuperTip(this.IPPLBL5, null);
     this.IPPLBL5.TabIndex = 121;
     this.IPPLBL5.Text = "Bank Code :";
     //
     // IPPLBL6
     //
     this.IPPLBL6.AutoSize = true;
     this.IPPLBL6.BackColor = System.Drawing.Color.Transparent;
     this.IPPLBL6.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.IPPLBL6.Location = new System.Drawing.Point(424, 152);
     this.IPPLBL6.Name = "IPPLBL6";
     this.IPPLBL6.Size = new System.Drawing.Size(114, 16);
     this.toolTipController1.SetSuperTip(this.IPPLBL6, null);
     this.IPPLBL6.TabIndex = 120;
     this.IPPLBL6.Text = "Credit Card No. :";
     //
     // IPPLBL4
     //
     this.IPPLBL4.AutoSize = true;
     this.IPPLBL4.BackColor = System.Drawing.Color.Transparent;
     this.IPPLBL4.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.IPPLBL4.Location = new System.Drawing.Point(32, 104);
     this.IPPLBL4.Name = "IPPLBL4";
     this.IPPLBL4.Size = new System.Drawing.Size(108, 16);
     this.toolTipController1.SetSuperTip(this.IPPLBL4, null);
     this.IPPLBL4.TabIndex = 119;
     this.IPPLBL4.Text = "Member Name :";
     //
     // IPPLBL3
     //
     this.IPPLBL3.AutoSize = true;
     this.IPPLBL3.BackColor = System.Drawing.Color.Transparent;
     this.IPPLBL3.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.IPPLBL3.Location = new System.Drawing.Point(32, 80);
     this.IPPLBL3.Name = "IPPLBL3";
     this.IPPLBL3.Size = new System.Drawing.Size(86, 16);
     this.toolTipController1.SetSuperTip(this.IPPLBL3, null);
     this.IPPLBL3.TabIndex = 118;
     this.IPPLBL3.Text = "Member Id :";
     //
     // IPPLBL2
     //
     this.IPPLBL2.AutoSize = true;
     this.IPPLBL2.BackColor = System.Drawing.Color.Transparent;
     this.IPPLBL2.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.IPPLBL2.Location = new System.Drawing.Point(32, 56);
     this.IPPLBL2.Name = "IPPLBL2";
     this.IPPLBL2.Size = new System.Drawing.Size(104, 16);
     this.toolTipController1.SetSuperTip(this.IPPLBL2, null);
     this.IPPLBL2.TabIndex = 117;
     this.IPPLBL2.Text = "Date Created :";
     this.IPPLBL2.TextAlign = System.Drawing.ContentAlignment.TopCenter;
     //
     // IPPMemberId
     //
     this.IPPMemberId.EditValue = "";
     this.IPPMemberId.Enabled = false;
     this.IPPMemberId.Location = new System.Drawing.Point(184, 80);
     this.IPPMemberId.Name = "IPPMemberId";
     this.IPPMemberId.Properties.Appearance.BackColor = System.Drawing.Color.Transparent;
     this.IPPMemberId.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.IPPMemberId.Properties.Appearance.ForeColor = System.Drawing.Color.Black;
     this.IPPMemberId.Properties.Appearance.Options.UseBackColor = true;
     this.IPPMemberId.Properties.Appearance.Options.UseFont = true;
     this.IPPMemberId.Properties.Appearance.Options.UseForeColor = true;
     this.IPPMemberId.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.IPPMemberId.Properties.LookAndFeel.UseDefaultLookAndFeel = false;
     this.IPPMemberId.Properties.ReadOnly = true;
     this.IPPMemberId.Size = new System.Drawing.Size(168, 18);
     this.IPPMemberId.TabIndex = 115;
     //
     // IPPMemberName
     //
     this.IPPMemberName.EditValue = "";
     this.IPPMemberName.Enabled = false;
     this.IPPMemberName.Location = new System.Drawing.Point(184, 104);
     this.IPPMemberName.Name = "IPPMemberName";
     this.IPPMemberName.Properties.Appearance.BackColor = System.Drawing.Color.Transparent;
     this.IPPMemberName.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.IPPMemberName.Properties.Appearance.ForeColor = System.Drawing.Color.Black;
     this.IPPMemberName.Properties.Appearance.Options.UseBackColor = true;
     this.IPPMemberName.Properties.Appearance.Options.UseFont = true;
     this.IPPMemberName.Properties.Appearance.Options.UseForeColor = true;
     this.IPPMemberName.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.IPPMemberName.Properties.LookAndFeel.UseDefaultLookAndFeel = false;
     this.IPPMemberName.Properties.ReadOnly = true;
     this.IPPMemberName.Size = new System.Drawing.Size(168, 18);
     this.IPPMemberName.TabIndex = 114;
     //
     // IPPId
     //
     this.IPPId.EditValue = "";
     this.IPPId.Enabled = false;
     this.IPPId.Location = new System.Drawing.Point(184, 32);
     this.IPPId.Name = "IPPId";
     this.IPPId.Properties.Appearance.BackColor = System.Drawing.Color.Transparent;
     this.IPPId.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.IPPId.Properties.Appearance.ForeColor = System.Drawing.Color.Black;
     this.IPPId.Properties.Appearance.Options.UseBackColor = true;
     this.IPPId.Properties.Appearance.Options.UseFont = true;
     this.IPPId.Properties.Appearance.Options.UseForeColor = true;
     this.IPPId.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.IPPId.Properties.LookAndFeel.UseDefaultLookAndFeel = false;
     this.IPPId.Properties.ReadOnly = true;
     this.IPPId.Size = new System.Drawing.Size(168, 18);
     this.IPPId.TabIndex = 113;
     //
     // groupIPPReceipt
     //
     this.groupIPPReceipt.Appearance.BackColor = System.Drawing.SystemColors.Control;
     this.groupIPPReceipt.Appearance.Options.UseBackColor = true;
     this.groupIPPReceipt.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowOnly;
     this.groupIPPReceipt.Controls.Add(this.btnReceiptUnlink);
     this.groupIPPReceipt.Controls.Add(this.btnReceiptLink);
     this.groupIPPReceipt.Controls.Add(this.gridReceipt);
     this.groupIPPReceipt.Controls.Add(this.label10);
     this.groupIPPReceipt.Controls.Add(this.IPPReceiptStatus);
     this.groupIPPReceipt.ImeMode = System.Windows.Forms.ImeMode.On;
     this.groupIPPReceipt.Location = new System.Drawing.Point(8, 320);
     this.groupIPPReceipt.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Office2003;
     this.groupIPPReceipt.LookAndFeel.UseDefaultLookAndFeel = false;
     this.groupIPPReceipt.Name = "groupIPPReceipt";
     this.groupIPPReceipt.Size = new System.Drawing.Size(992, 240);
     this.toolTipController1.SetSuperTip(this.groupIPPReceipt, null);
     this.groupIPPReceipt.TabIndex = 17;
     this.groupIPPReceipt.Text = "Receipt Entry";
     //
     // btnReceiptUnlink
     //
     this.btnReceiptUnlink.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.btnReceiptUnlink.Appearance.Options.UseFont = true;
     this.btnReceiptUnlink.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btnReceiptUnlink.Location = new System.Drawing.Point(272, 24);
     this.btnReceiptUnlink.Name = "btnReceiptUnlink";
     this.btnReceiptUnlink.Size = new System.Drawing.Size(67, 20);
     this.btnReceiptUnlink.TabIndex = 128;
     this.btnReceiptUnlink.Text = "Unlink";
     this.btnReceiptUnlink.Click += new System.EventHandler(this.btnReceiptUnlink_Click);
     //
     // btnReceiptLink
     //
     this.btnReceiptLink.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.btnReceiptLink.Appearance.Options.UseFont = true;
     this.btnReceiptLink.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btnReceiptLink.Enabled = false;
     this.btnReceiptLink.Location = new System.Drawing.Point(200, 24);
     this.btnReceiptLink.Name = "btnReceiptLink";
     this.btnReceiptLink.Size = new System.Drawing.Size(67, 20);
     this.btnReceiptLink.TabIndex = 127;
     this.btnReceiptLink.Text = "Link";
     this.btnReceiptLink.Click += new System.EventHandler(this.btnReceiptLink_Click);
     //
     // gridReceipt
     //
     this.gridReceipt.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.gridReceipt.EmbeddedNavigator.Name = "";
     gridLevelNode2.RelationName = "Level1";
     this.gridReceipt.LevelTree.Nodes.AddRange(new DevExpress.XtraGrid.GridLevelNode[] {
     gridLevelNode2});
     this.gridReceipt.Location = new System.Drawing.Point(2, 54);
     this.gridReceipt.LookAndFeel.UseDefaultLookAndFeel = false;
     this.gridReceipt.MainView = this.IPPReceiptView;
     this.gridReceipt.Name = "gridReceipt";
     this.gridReceipt.Size = new System.Drawing.Size(988, 184);
     this.gridReceipt.TabIndex = 126;
     this.gridReceipt.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.IPPReceiptView});
     //
     // IPPReceiptView
     //
     this.IPPReceiptView.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumnIPPR,
     this.gridColumnIPPR1,
     this.gridColumnIPPR2,
     this.gridColumnIPPR3,
     this.gridColumnIPPR4,
     this.gridColumnIPPR5,
     this.gridColumnIPPR6,
     this.gridColumnIPPR7,
     this.gridColumnIPPR8,
     this.gridColumnIPPR9});
     this.IPPReceiptView.GridControl = this.gridReceipt;
     this.IPPReceiptView.Name = "IPPReceiptView";
     this.IPPReceiptView.OptionsBehavior.Editable = false;
     this.IPPReceiptView.OptionsCustomization.AllowFilter = false;
     this.IPPReceiptView.OptionsCustomization.AllowSort = false;
     this.IPPReceiptView.OptionsView.ShowFilterPanelMode = DevExpress.XtraGrid.Views.Base.ShowFilterPanelMode.Never;
     this.IPPReceiptView.OptionsView.ShowGroupPanel = false;
     //
     // gridColumnIPPR
     //
     this.gridColumnIPPR.Caption = "IPP ID";
     this.gridColumnIPPR.FieldName = "nIPPID";
     this.gridColumnIPPR.Name = "gridColumnIPPR";
     //
     // gridColumnIPPR1
     //
     this.gridColumnIPPR1.Caption = "Date";
     this.gridColumnIPPR1.FieldName = "dtDate";
     this.gridColumnIPPR1.Name = "gridColumnIPPR1";
     this.gridColumnIPPR1.Visible = true;
     this.gridColumnIPPR1.VisibleIndex = 0;
     this.gridColumnIPPR1.Width = 109;
     //
     // gridColumnIPPR2
     //
     this.gridColumnIPPR2.Caption = "Receipt No";
     this.gridColumnIPPR2.FieldName = "strReceiptNo";
     this.gridColumnIPPR2.Name = "gridColumnIPPR2";
     this.gridColumnIPPR2.Visible = true;
     this.gridColumnIPPR2.VisibleIndex = 1;
     this.gridColumnIPPR2.Width = 109;
     //
     // gridColumnIPPR3
     //
     this.gridColumnIPPR3.Caption = "Category";
     this.gridColumnIPPR3.FieldName = "Category";
     this.gridColumnIPPR3.Name = "gridColumnIPPR3";
     this.gridColumnIPPR3.Visible = true;
     this.gridColumnIPPR3.VisibleIndex = 2;
     this.gridColumnIPPR3.Width = 109;
     //
     // gridColumnIPPR4
     //
     this.gridColumnIPPR4.Caption = "Nett";
     this.gridColumnIPPR4.FieldName = "mNettAmount";
     this.gridColumnIPPR4.Name = "gridColumnIPPR4";
     this.gridColumnIPPR4.Visible = true;
     this.gridColumnIPPR4.VisibleIndex = 3;
     this.gridColumnIPPR4.Width = 109;
     //
     // gridColumnIPPR5
     //
     this.gridColumnIPPR5.Caption = "GST";
     this.gridColumnIPPR5.FieldName = "mGSTAmount";
     this.gridColumnIPPR5.Name = "gridColumnIPPR5";
     this.gridColumnIPPR5.Visible = true;
     this.gridColumnIPPR5.VisibleIndex = 4;
     this.gridColumnIPPR5.Width = 64;
     //
     // gridColumnIPPR6
     //
     this.gridColumnIPPR6.Caption = "Total";
     this.gridColumnIPPR6.FieldName = "mTotalAmount";
     this.gridColumnIPPR6.Name = "gridColumnIPPR6";
     this.gridColumnIPPR6.Visible = true;
     this.gridColumnIPPR6.VisibleIndex = 5;
     this.gridColumnIPPR6.Width = 123;
     //
     // gridColumnIPPR7
     //
     this.gridColumnIPPR7.Caption = "O/S Amount";
     this.gridColumnIPPR7.FieldName = "mGSTAmount";
     this.gridColumnIPPR7.Name = "gridColumnIPPR7";
     this.gridColumnIPPR7.Visible = true;
     this.gridColumnIPPR7.VisibleIndex = 6;
     this.gridColumnIPPR7.Width = 85;
     //
     // gridColumnIPPR8
     //
     this.gridColumnIPPR8.Caption = "Member";
     this.gridColumnIPPR8.FieldName = "SalesPerson";
     this.gridColumnIPPR8.Name = "gridColumnIPPR8";
     this.gridColumnIPPR8.Visible = true;
     this.gridColumnIPPR8.VisibleIndex = 7;
     this.gridColumnIPPR8.Width = 167;
     //
     // gridColumnIPPR9
     //
     this.gridColumnIPPR9.Caption = "Payment ID";
     this.gridColumnIPPR9.FieldName = "nPaymentID";
     this.gridColumnIPPR9.Name = "gridColumnIPPR9";
     this.gridColumnIPPR9.Visible = true;
     this.gridColumnIPPR9.VisibleIndex = 8;
     //
     // label10
     //
     this.label10.BackColor = System.Drawing.Color.Transparent;
     this.label10.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label10.Location = new System.Drawing.Point(16, 24);
     this.label10.Name = "label10";
     this.label10.Size = new System.Drawing.Size(56, 16);
     this.toolTipController1.SetSuperTip(this.label10, null);
     this.label10.TabIndex = 125;
     this.label10.Text = "Status";
     this.label10.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // IPPReceiptStatus
     //
     this.IPPReceiptStatus.EditValue = 0;
     this.IPPReceiptStatus.Location = new System.Drawing.Point(80, 24);
     this.IPPReceiptStatus.Name = "IPPReceiptStatus";
     this.IPPReceiptStatus.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.IPPReceiptStatus.Properties.Items.AddRange(new DevExpress.XtraEditors.Controls.ImageComboBoxItem[] {
     new DevExpress.XtraEditors.Controls.ImageComboBoxItem("Linked", 0, -1),
     new DevExpress.XtraEditors.Controls.ImageComboBoxItem("Unlink", 1, -1)});
     this.IPPReceiptStatus.Size = new System.Drawing.Size(100, 20);
     this.IPPReceiptStatus.TabIndex = 24;
     this.IPPReceiptStatus.SelectedIndexChanged += new System.EventHandler(this.IPPReceiptStatus_SelectedIndexChanged);
     //
     // groupGIROMaster
     //
     this.groupGIROMaster.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowOnly;
     this.groupGIROMaster.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.groupGIROMaster.Controls.Add(this.xtraTabControl1);
     this.groupGIROMaster.Controls.Add(this.GroupGiro);
     this.groupGIROMaster.ImeMode = System.Windows.Forms.ImeMode.On;
     this.groupGIROMaster.Location = new System.Drawing.Point(0, 32);
     this.groupGIROMaster.Name = "groupGIROMaster";
     this.groupGIROMaster.Size = new System.Drawing.Size(1007, 608);
     this.toolTipController1.SetSuperTip(this.groupGIROMaster, null);
     this.groupGIROMaster.TabIndex = 24;
     //
     // xtraTabControl1
     //
     this.xtraTabControl1.AppearancePage.Header.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xtraTabControl1.AppearancePage.Header.Options.UseFont = true;
     this.xtraTabControl1.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.xtraTabControl1.Location = new System.Drawing.Point(0, 344);
     this.xtraTabControl1.LookAndFeel.UseDefaultLookAndFeel = false;
     this.xtraTabControl1.Name = "xtraTabControl1";
     this.xtraTabControl1.SelectedTabPage = this.tabGiroDetails;
     this.xtraTabControl1.Size = new System.Drawing.Size(1007, 264);
     this.xtraTabControl1.TabIndex = 36;
     this.xtraTabControl1.TabPages.AddRange(new DevExpress.XtraTab.XtraTabPage[] {
     this.tabGiroDetails,
     this.tabGiroTrnsHistory});
     this.xtraTabControl1.Text = "xtraTabControl1";
     //
     // tabGiroDetails
     //
     this.tabGiroDetails.Controls.Add(this.luedtBankBranch);
     this.tabGiroDetails.Controls.Add(this.luedtBank);
     this.tabGiroDetails.Controls.Add(this.luedtPackage);
     this.tabGiroDetails.Controls.Add(this.luedtBranch);
     this.tabGiroDetails.Controls.Add(this.label70);
     this.tabGiroDetails.Controls.Add(this.txtPackageDesc);
     this.tabGiroDetails.Controls.Add(this.txtAccountNo);
     this.tabGiroDetails.Controls.Add(this.txtGIROId);
     this.tabGiroDetails.Controls.Add(this.txtRemark);
     this.tabGiroDetails.Controls.Add(this.lblGiro_BankBranch);
     this.tabGiroDetails.Controls.Add(this.lblGiro_BankACNumber);
     this.tabGiroDetails.Controls.Add(this.lblGiro_BankCode);
     this.tabGiroDetails.Controls.Add(this.lblGiro_Remark);
     this.tabGiroDetails.Controls.Add(this.lblGiro_Package);
     this.tabGiroDetails.Controls.Add(this.lblGiro_Branch);
     this.tabGiroDetails.Controls.Add(this.lblGiro_MemberID);
     this.tabGiroDetails.Controls.Add(this.lblGiroID);
     this.tabGiroDetails.Name = "tabGiroDetails";
     this.tabGiroDetails.Size = new System.Drawing.Size(998, 230);
     this.tabGiroDetails.Text = "Giro Details";
     //
     // luedtBankBranch
     //
     this.luedtBankBranch.Location = new System.Drawing.Point(520, 40);
     this.luedtBankBranch.Name = "luedtBankBranch";
     this.luedtBankBranch.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.luedtBankBranch.Size = new System.Drawing.Size(184, 20);
     this.luedtBankBranch.TabIndex = 142;
     //
     // luedtBank
     //
     this.luedtBank.Location = new System.Drawing.Point(520, 16);
     this.luedtBank.Name = "luedtBank";
     this.luedtBank.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.luedtBank.Size = new System.Drawing.Size(184, 20);
     this.luedtBank.TabIndex = 141;
     //
     // luedtPackage
     //
     this.luedtPackage.Location = new System.Drawing.Point(176, 88);
     this.luedtPackage.Name = "luedtPackage";
     this.luedtPackage.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.luedtPackage.Size = new System.Drawing.Size(184, 20);
     this.luedtPackage.TabIndex = 140;
     //
     // luedtBranch
     //
     this.luedtBranch.Location = new System.Drawing.Point(176, 64);
     this.luedtBranch.Name = "luedtBranch";
     this.luedtBranch.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.luedtBranch.Size = new System.Drawing.Size(184, 20);
     this.luedtBranch.TabIndex = 139;
     //
     // label70
     //
     this.label70.BackColor = System.Drawing.Color.Transparent;
     this.label70.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label70.Location = new System.Drawing.Point(32, 112);
     this.label70.Name = "label70";
     this.label70.Size = new System.Drawing.Size(144, 16);
     this.toolTipController1.SetSuperTip(this.label70, null);
     this.label70.TabIndex = 119;
     this.label70.Text = "Package Description";
     this.label70.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // txtPackageDesc
     //
     this.txtPackageDesc.EditValue = "";
     this.txtPackageDesc.ImeMode = System.Windows.Forms.ImeMode.On;
     this.txtPackageDesc.Location = new System.Drawing.Point(176, 112);
     this.txtPackageDesc.Name = "txtPackageDesc";
     this.txtPackageDesc.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtPackageDesc.Properties.Appearance.Options.UseFont = true;
     this.txtPackageDesc.Properties.LookAndFeel.UseDefaultLookAndFeel = false;
     this.txtPackageDesc.Size = new System.Drawing.Size(184, 20);
     this.txtPackageDesc.TabIndex = 117;
     //
     // txtAccountNo
     //
     this.txtAccountNo.EditValue = "";
     this.txtAccountNo.ImeMode = System.Windows.Forms.ImeMode.On;
     this.txtAccountNo.Location = new System.Drawing.Point(520, 64);
     this.txtAccountNo.Name = "txtAccountNo";
     this.txtAccountNo.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtAccountNo.Properties.Appearance.Options.UseFont = true;
     this.txtAccountNo.Properties.LookAndFeel.UseDefaultLookAndFeel = false;
     this.txtAccountNo.Size = new System.Drawing.Size(184, 20);
     this.txtAccountNo.TabIndex = 116;
     //
     // txtGIROId
     //
     this.txtGIROId.EditValue = "";
     this.txtGIROId.ImeMode = System.Windows.Forms.ImeMode.On;
     this.txtGIROId.Location = new System.Drawing.Point(176, 16);
     this.txtGIROId.Name = "txtGIROId";
     this.txtGIROId.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtGIROId.Properties.Appearance.Options.UseFont = true;
     this.txtGIROId.Properties.LookAndFeel.UseDefaultLookAndFeel = false;
     this.txtGIROId.Size = new System.Drawing.Size(184, 20);
     this.txtGIROId.TabIndex = 111;
     //
     // txtRemark
     //
     this.txtRemark.EditValue = "";
     this.txtRemark.Location = new System.Drawing.Point(176, 136);
     this.txtRemark.Name = "txtRemark";
     this.txtRemark.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtRemark.Properties.Appearance.Options.UseFont = true;
     this.txtRemark.Properties.LookAndFeel.UseDefaultLookAndFeel = false;
     this.txtRemark.Size = new System.Drawing.Size(528, 56);
     this.txtRemark.TabIndex = 110;
     //
     // lblGiro_BankBranch
     //
     this.lblGiro_BankBranch.BackColor = System.Drawing.Color.Transparent;
     this.lblGiro_BankBranch.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblGiro_BankBranch.Location = new System.Drawing.Point(392, 40);
     this.lblGiro_BankBranch.Name = "lblGiro_BankBranch";
     this.lblGiro_BankBranch.Size = new System.Drawing.Size(128, 16);
     this.toolTipController1.SetSuperTip(this.lblGiro_BankBranch, null);
     this.lblGiro_BankBranch.TabIndex = 101;
     this.lblGiro_BankBranch.Text = "Bank Branch";
     this.lblGiro_BankBranch.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // lblGiro_BankACNumber
     //
     this.lblGiro_BankACNumber.BackColor = System.Drawing.Color.Transparent;
     this.lblGiro_BankACNumber.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblGiro_BankACNumber.Location = new System.Drawing.Point(392, 64);
     this.lblGiro_BankACNumber.Name = "lblGiro_BankACNumber";
     this.lblGiro_BankACNumber.Size = new System.Drawing.Size(128, 16);
     this.toolTipController1.SetSuperTip(this.lblGiro_BankACNumber, null);
     this.lblGiro_BankACNumber.TabIndex = 100;
     this.lblGiro_BankACNumber.Text = "Account Number";
     this.lblGiro_BankACNumber.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // lblGiro_BankCode
     //
     this.lblGiro_BankCode.BackColor = System.Drawing.Color.Transparent;
     this.lblGiro_BankCode.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblGiro_BankCode.Location = new System.Drawing.Point(392, 16);
     this.lblGiro_BankCode.Name = "lblGiro_BankCode";
     this.lblGiro_BankCode.Size = new System.Drawing.Size(128, 16);
     this.toolTipController1.SetSuperTip(this.lblGiro_BankCode, null);
     this.lblGiro_BankCode.TabIndex = 99;
     this.lblGiro_BankCode.Text = "Bank Code/Name";
     this.lblGiro_BankCode.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // lblGiro_Remark
     //
     this.lblGiro_Remark.BackColor = System.Drawing.Color.Transparent;
     this.lblGiro_Remark.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblGiro_Remark.Location = new System.Drawing.Point(32, 144);
     this.lblGiro_Remark.Name = "lblGiro_Remark";
     this.lblGiro_Remark.Size = new System.Drawing.Size(128, 16);
     this.toolTipController1.SetSuperTip(this.lblGiro_Remark, null);
     this.lblGiro_Remark.TabIndex = 98;
     this.lblGiro_Remark.Text = "Remark";
     this.lblGiro_Remark.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // lblGiro_Package
     //
     this.lblGiro_Package.BackColor = System.Drawing.Color.Transparent;
     this.lblGiro_Package.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblGiro_Package.Location = new System.Drawing.Point(32, 88);
     this.lblGiro_Package.Name = "lblGiro_Package";
     this.lblGiro_Package.Size = new System.Drawing.Size(144, 16);
     this.toolTipController1.SetSuperTip(this.lblGiro_Package, null);
     this.lblGiro_Package.TabIndex = 97;
     this.lblGiro_Package.Text = "Package";
     this.lblGiro_Package.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // lblGiro_Branch
     //
     this.lblGiro_Branch.BackColor = System.Drawing.Color.Transparent;
     this.lblGiro_Branch.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblGiro_Branch.Location = new System.Drawing.Point(32, 64);
     this.lblGiro_Branch.Name = "lblGiro_Branch";
     this.lblGiro_Branch.Size = new System.Drawing.Size(144, 16);
     this.toolTipController1.SetSuperTip(this.lblGiro_Branch, null);
     this.lblGiro_Branch.TabIndex = 96;
     this.lblGiro_Branch.Text = "Branch";
     this.lblGiro_Branch.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // lblGiro_MemberID
     //
     this.lblGiro_MemberID.BackColor = System.Drawing.Color.Transparent;
     this.lblGiro_MemberID.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblGiro_MemberID.Location = new System.Drawing.Point(32, 40);
     this.lblGiro_MemberID.Name = "lblGiro_MemberID";
     this.lblGiro_MemberID.Size = new System.Drawing.Size(144, 16);
     this.toolTipController1.SetSuperTip(this.lblGiro_MemberID, null);
     this.lblGiro_MemberID.TabIndex = 95;
     this.lblGiro_MemberID.Text = "Member ID /Name";
     this.lblGiro_MemberID.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // lblGiroID
     //
     this.lblGiroID.BackColor = System.Drawing.Color.Transparent;
     this.lblGiroID.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblGiroID.Location = new System.Drawing.Point(32, 16);
     this.lblGiroID.Name = "lblGiroID";
     this.lblGiroID.Size = new System.Drawing.Size(144, 16);
     this.toolTipController1.SetSuperTip(this.lblGiroID, null);
     this.lblGiroID.TabIndex = 93;
     this.lblGiroID.Text = "Giro ID";
     this.lblGiroID.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // tabGiroTrnsHistory
     //
     this.tabGiroTrnsHistory.Controls.Add(this.GridTransaction);
     this.tabGiroTrnsHistory.Name = "tabGiroTrnsHistory";
     this.tabGiroTrnsHistory.Size = new System.Drawing.Size(998, 230);
     this.tabGiroTrnsHistory.Text = "Transaction History";
     //
     // GridTransaction
     //
     this.GridTransaction.Dock = System.Windows.Forms.DockStyle.Fill;
     this.GridTransaction.EmbeddedNavigator.Name = "";
     this.GridTransaction.Location = new System.Drawing.Point(0, 0);
     this.GridTransaction.LookAndFeel.UseDefaultLookAndFeel = false;
     this.GridTransaction.MainView = this.gridView4;
     this.GridTransaction.Name = "GridTransaction";
     this.GridTransaction.Size = new System.Drawing.Size(998, 230);
     this.GridTransaction.TabIndex = 0;
     this.GridTransaction.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridView4});
     //
     // gridView4
     //
     this.gridView4.GridControl = this.GridTransaction;
     this.gridView4.Name = "gridView4";
     this.gridView4.OptionsBehavior.Editable = false;
     this.gridView4.OptionsCustomization.AllowFilter = false;
     this.gridView4.OptionsCustomization.AllowSort = false;
     //
     // GroupGiro
     //
     this.GroupGiro.Appearance.BackColor = System.Drawing.SystemColors.Control;
     this.GroupGiro.Appearance.Options.UseBackColor = true;
     this.GroupGiro.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowOnly;
     this.GroupGiro.Controls.Add(this.comboBoxGiroStatus);
     this.GroupGiro.Controls.Add(this.label63);
     this.GroupGiro.Controls.Add(this.btnImport);
     this.GroupGiro.Controls.Add(this.btnGiroExport);
     this.GroupGiro.Controls.Add(this.btnGiroUpdate);
     this.GroupGiro.Controls.Add(this.btnGiroDelete);
     this.GroupGiro.Controls.Add(this.btnGiroNew);
     this.GroupGiro.Controls.Add(this.GiroGrid);
     this.GroupGiro.ImeMode = System.Windows.Forms.ImeMode.On;
     this.GroupGiro.Location = new System.Drawing.Point(4, 0);
     this.GroupGiro.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Office2003;
     this.GroupGiro.LookAndFeel.UseDefaultLookAndFeel = false;
     this.GroupGiro.Name = "GroupGiro";
     this.GroupGiro.Size = new System.Drawing.Size(996, 336);
     this.toolTipController1.SetSuperTip(this.GroupGiro, null);
     this.GroupGiro.TabIndex = 19;
     this.GroupGiro.Text = "GIRO";
     //
     // comboBoxGiroStatus
     //
     this.comboBoxGiroStatus.EditValue = 1;
     this.comboBoxGiroStatus.Location = new System.Drawing.Point(8, 40);
     this.comboBoxGiroStatus.Name = "comboBoxGiroStatus";
     this.comboBoxGiroStatus.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.comboBoxGiroStatus.Properties.Items.AddRange(new DevExpress.XtraEditors.Controls.ImageComboBoxItem[] {
     new DevExpress.XtraEditors.Controls.ImageComboBoxItem("Pending Approval", 1, -1),
     new DevExpress.XtraEditors.Controls.ImageComboBoxItem("Active", 2, -1),
     new DevExpress.XtraEditors.Controls.ImageComboBoxItem("Rejected", 3, -1),
     new DevExpress.XtraEditors.Controls.ImageComboBoxItem("Deleted", 4, -1)});
     this.comboBoxGiroStatus.Properties.LookAndFeel.UseDefaultLookAndFeel = false;
     this.comboBoxGiroStatus.Size = new System.Drawing.Size(128, 20);
     this.comboBoxGiroStatus.TabIndex = 35;
     this.comboBoxGiroStatus.SelectedIndexChanged += new System.EventHandler(this.comboBoxGiroStatus_SelectedIndexChanged);
     //
     // label63
     //
     this.label63.BackColor = System.Drawing.Color.Transparent;
     this.label63.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label63.Location = new System.Drawing.Point(8, 24);
     this.label63.Name = "label63";
     this.label63.Size = new System.Drawing.Size(100, 16);
     this.toolTipController1.SetSuperTip(this.label63, null);
     this.label63.TabIndex = 34;
     this.label63.Text = "Filter by Status";
     //
     // btnImport
     //
     this.btnImport.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.btnImport.Appearance.Options.UseFont = true;
     this.btnImport.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btnImport.Location = new System.Drawing.Point(264, 48);
     this.btnImport.Name = "btnImport";
     this.btnImport.Size = new System.Drawing.Size(72, 18);
     this.btnImport.TabIndex = 12;
     this.btnImport.Text = "Import";
     this.btnImport.Click += new System.EventHandler(this.btnImport_Click);
     //
     // btnGiroExport
     //
     this.btnGiroExport.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.btnGiroExport.Appearance.Options.UseFont = true;
     this.btnGiroExport.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btnGiroExport.Location = new System.Drawing.Point(192, 48);
     this.btnGiroExport.Name = "btnGiroExport";
     this.btnGiroExport.Size = new System.Drawing.Size(64, 18);
     this.btnGiroExport.TabIndex = 11;
     this.btnGiroExport.Text = "Export";
     this.btnGiroExport.Click += new System.EventHandler(this.btnGiroExport_Click);
     //
     // btnGiroUpdate
     //
     this.btnGiroUpdate.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.btnGiroUpdate.Appearance.Options.UseFont = true;
     this.btnGiroUpdate.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btnGiroUpdate.Location = new System.Drawing.Point(344, 24);
     this.btnGiroUpdate.Name = "btnGiroUpdate";
     this.btnGiroUpdate.Size = new System.Drawing.Size(64, 18);
     this.btnGiroUpdate.TabIndex = 10;
     this.btnGiroUpdate.Text = "Update";
     this.btnGiroUpdate.Click += new System.EventHandler(this.btnGiroUpdate_Click);
     //
     // btnGiroDelete
     //
     this.btnGiroDelete.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.btnGiroDelete.Appearance.Options.UseFont = true;
     this.btnGiroDelete.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btnGiroDelete.Location = new System.Drawing.Point(264, 24);
     this.btnGiroDelete.Name = "btnGiroDelete";
     this.btnGiroDelete.Size = new System.Drawing.Size(72, 18);
     this.btnGiroDelete.TabIndex = 5;
     this.btnGiroDelete.Text = "Delete";
     this.btnGiroDelete.Click += new System.EventHandler(this.btnGiroDelete_Click);
     //
     // btnGiroNew
     //
     this.btnGiroNew.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.btnGiroNew.Appearance.Options.UseFont = true;
     this.btnGiroNew.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btnGiroNew.Location = new System.Drawing.Point(192, 24);
     this.btnGiroNew.Name = "btnGiroNew";
     this.btnGiroNew.Size = new System.Drawing.Size(64, 18);
     this.btnGiroNew.TabIndex = 2;
     this.btnGiroNew.Text = "New";
     this.btnGiroNew.Click += new System.EventHandler(this.btnGiroNew_Click);
     //
     // GiroGrid
     //
     this.GiroGrid.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.GiroGrid.EmbeddedNavigator.Name = "";
     gridLevelNode3.RelationName = "Level1";
     this.GiroGrid.LevelTree.Nodes.AddRange(new DevExpress.XtraGrid.GridLevelNode[] {
     gridLevelNode3});
     this.GiroGrid.Location = new System.Drawing.Point(2, 78);
     this.GiroGrid.LookAndFeel.UseDefaultLookAndFeel = false;
     this.GiroGrid.MainView = this.GIROGridView;
     this.GiroGrid.Name = "GiroGrid";
     this.GiroGrid.Size = new System.Drawing.Size(992, 256);
     this.GiroGrid.TabIndex = 0;
     this.GiroGrid.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.GIROGridView});
     //
     // GIROGridView
     //
     this.GIROGridView.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn1,
     this.gridColumn2,
     this.gridColumn3,
     this.gridColumn4,
     this.gridColumn5,
     this.gridColumn6,
     this.gridColumn7});
     this.GIROGridView.GridControl = this.GiroGrid;
     this.GIROGridView.Name = "GIROGridView";
     this.GIROGridView.OptionsBehavior.Editable = false;
     this.GIROGridView.OptionsCustomization.AllowFilter = false;
     this.GIROGridView.OptionsSelection.MultiSelect = true;
     this.GIROGridView.OptionsView.ShowGroupPanel = false;
     //
     // gridColumn1
     //
     this.gridColumn1.Caption = "Giro Id";
     this.gridColumn1.FieldName = "nGIRORefID";
     this.gridColumn1.Name = "gridColumn1";
     this.gridColumn1.Visible = true;
     this.gridColumn1.VisibleIndex = 0;
     //
     // gridColumn2
     //
     this.gridColumn2.Caption = "Date";
     this.gridColumn2.FieldName = "dtDate";
     this.gridColumn2.Name = "gridColumn2";
     this.gridColumn2.Visible = true;
     this.gridColumn2.VisibleIndex = 1;
     //
     // gridColumn3
     //
     this.gridColumn3.Caption = "Member ID";
     this.gridColumn3.FieldName = "strMembershipID";
     this.gridColumn3.Name = "gridColumn3";
     this.gridColumn3.Visible = true;
     this.gridColumn3.VisibleIndex = 2;
     //
     // gridColumn4
     //
     this.gridColumn4.Caption = "Member Name";
     this.gridColumn4.FieldName = "strMemberName";
     this.gridColumn4.Name = "gridColumn4";
     this.gridColumn4.Visible = true;
     this.gridColumn4.VisibleIndex = 3;
     //
     // gridColumn5
     //
     this.gridColumn5.Caption = "Branch";
     this.gridColumn5.FieldName = "strBranchCode";
     this.gridColumn5.Name = "gridColumn5";
     this.gridColumn5.Visible = true;
     this.gridColumn5.VisibleIndex = 4;
     //
     // gridColumn6
     //
     this.gridColumn6.Caption = "Package Code";
     this.gridColumn6.FieldName = "strPackageCode";
     this.gridColumn6.Name = "gridColumn6";
     this.gridColumn6.Visible = true;
     this.gridColumn6.VisibleIndex = 5;
     //
     // gridColumn7
     //
     this.gridColumn7.Caption = "Package Description";
     this.gridColumn7.FieldName = "strDescription";
     this.gridColumn7.Name = "gridColumn7";
     this.gridColumn7.Visible = true;
     this.gridColumn7.VisibleIndex = 6;
     //
     // tabManagerTwo
     //
     this.tabManagerTwo.Controls.Add(this.GrpPayroll);
     this.tabManagerTwo.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.tabManagerTwo.Name = "tabManagerTwo";
     this.tabManagerTwo.PageVisible = false;
     this.tabManagerTwo.Size = new System.Drawing.Size(1007, 637);
     this.tabManagerTwo.Text = "Payroll";
     //
     // GrpPayroll
     //
     this.GrpPayroll.Appearance.BackColor = System.Drawing.SystemColors.Control;
     this.GrpPayroll.Appearance.Options.UseBackColor = true;
     this.GrpPayroll.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowOnly;
     this.GrpPayroll.Controls.Add(this.progressBarControl1);
     this.GrpPayroll.Controls.Add(this.cbJob);
     this.GrpPayroll.Controls.Add(this.label8);
     this.GrpPayroll.Controls.Add(this.grpGridExcel);
     this.GrpPayroll.Controls.Add(this.btnPayrollExport);
     this.GrpPayroll.Controls.Add(this.btnPayrollGenerate);
     this.GrpPayroll.Controls.Add(this.btnPayrollDelete);
     this.GrpPayroll.Controls.Add(this.comboBoxEditMTH);
     this.GrpPayroll.Controls.Add(this.comboBoxEditYR);
     this.GrpPayroll.Controls.Add(this.lblYear);
     this.GrpPayroll.Controls.Add(this.lblMonth);
     this.GrpPayroll.Controls.Add(this.cmbxPayroll);
     this.GrpPayroll.Controls.Add(this.gridPayroll);
     this.GrpPayroll.Location = new System.Drawing.Point(0, 0);
     this.GrpPayroll.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Office2003;
     this.GrpPayroll.LookAndFeel.UseDefaultLookAndFeel = false;
     this.GrpPayroll.Name = "GrpPayroll";
     this.GrpPayroll.Size = new System.Drawing.Size(994, 616);
     this.toolTipController1.SetSuperTip(this.GrpPayroll, null);
     this.GrpPayroll.TabIndex = 0;
     this.GrpPayroll.Text = "PAYROLL";
     //
     // progressBarControl1
     //
     this.progressBarControl1.Location = new System.Drawing.Point(784, 24);
     this.progressBarControl1.Name = "progressBarControl1";
     this.progressBarControl1.Properties.ShowTitle = true;
     this.progressBarControl1.Size = new System.Drawing.Size(200, 16);
     this.progressBarControl1.TabIndex = 17;
     this.progressBarControl1.Visible = false;
     //
     // cbJob
     //
     this.cbJob.Location = new System.Drawing.Point(432, 24);
     this.cbJob.Name = "cbJob";
     this.cbJob.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.Style3D;
     this.cbJob.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.cbJob.Size = new System.Drawing.Size(128, 22);
     this.cbJob.TabIndex = 16;
     this.cbJob.SelectedIndexChanged += new System.EventHandler(this.cbJob_SelectedIndexChanged);
     //
     // label8
     //
     this.label8.BackColor = System.Drawing.Color.Transparent;
     this.label8.Font = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label8.ForeColor = System.Drawing.Color.Black;
     this.label8.Location = new System.Drawing.Point(344, 24);
     this.label8.Name = "label8";
     this.label8.Size = new System.Drawing.Size(72, 16);
     this.toolTipController1.SetSuperTip(this.label8, null);
     this.label8.TabIndex = 15;
     this.label8.Text = "Job Position";
     //
     // grpGridExcel
     //
     this.grpGridExcel.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowOnly;
     this.grpGridExcel.Controls.Add(this.gridExcel);
     this.grpGridExcel.Location = new System.Drawing.Point(72, 144);
     this.grpGridExcel.Name = "grpGridExcel";
     this.grpGridExcel.Size = new System.Drawing.Size(544, 176);
     this.toolTipController1.SetSuperTip(this.grpGridExcel, null);
     this.grpGridExcel.TabIndex = 13;
     this.grpGridExcel.Text = "groupControl1";
     this.grpGridExcel.Visible = false;
     //
     // gridExcel
     //
     this.gridExcel.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.gridExcel.EmbeddedNavigator.Name = "";
     this.gridExcel.Location = new System.Drawing.Point(2, 30);
     this.gridExcel.MainView = this.gridViewExcel;
     this.gridExcel.Name = "gridExcel";
     this.gridExcel.Size = new System.Drawing.Size(540, 144);
     this.gridExcel.TabIndex = 12;
     this.gridExcel.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridViewExcel});
     this.gridExcel.Visible = false;
     //
     // gridViewExcel
     //
     this.gridViewExcel.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn19,
     this.FirstPayDate,
     this.gridColumn24,
     this.gridColumn25,
     this.gridColumn26,
     this.gridColumn27,
     this.gridColumn28,
     this.gridColumn29,
     this.gridColumn30,
     this.gridColumn31,
     this.gridColumn32,
     this.gridColumn33,
     this.gridColumn34,
     this.gridColumn35,
     this.gridColumn36,
     this.SecondPayDate});
     this.gridViewExcel.GridControl = this.gridExcel;
     this.gridViewExcel.Name = "gridViewExcel";
     this.gridViewExcel.OptionsBehavior.Editable = false;
     this.gridViewExcel.OptionsCustomization.AllowFilter = false;
     this.gridViewExcel.OptionsView.ColumnAutoWidth = false;
     this.gridViewExcel.OptionsView.ShowGroupPanel = false;
     //
     // gridColumn19
     //
     this.gridColumn19.Caption = "Emp ID";
     this.gridColumn19.FieldName = "nEmployeeID";
     this.gridColumn19.Name = "gridColumn19";
     this.gridColumn19.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
     this.gridColumn19.Visible = true;
     this.gridColumn19.VisibleIndex = 0;
     this.gridColumn19.Width = 68;
     //
     // FirstPayDate
     //
     this.FirstPayDate.Caption = "Payroll Date";
     this.FirstPayDate.FieldName = "dtFirstRunDate";
     this.FirstPayDate.Name = "FirstPayDate";
     this.FirstPayDate.Visible = true;
     this.FirstPayDate.VisibleIndex = 1;
     this.FirstPayDate.Width = 76;
     //
     // gridColumn24
     //
     this.gridColumn24.Caption = "OT-1.5 (HRS)";
     this.gridColumn24.FieldName = "nNormalOT";
     this.gridColumn24.Name = "gridColumn24";
     this.gridColumn24.Visible = true;
     this.gridColumn24.VisibleIndex = 2;
     this.gridColumn24.Width = 77;
     //
     // gridColumn25
     //
     this.gridColumn25.Caption = "OT-1.0 (DAYS)";
     this.gridColumn25.FieldName = "nPublicHolidayOT";
     this.gridColumn25.Name = "gridColumn25";
     this.gridColumn25.Visible = true;
     this.gridColumn25.VisibleIndex = 3;
     this.gridColumn25.Width = 83;
     //
     // gridColumn26
     //
     this.gridColumn26.Caption = "OT-2.0 (DAYS)";
     this.gridColumn26.FieldName = "nOffDayOT";
     this.gridColumn26.Name = "gridColumn26";
     this.gridColumn26.Visible = true;
     this.gridColumn26.VisibleIndex = 4;
     this.gridColumn26.Width = 82;
     //
     // gridColumn27
     //
     this.gridColumn27.Caption = "Part-Time Salary (HRS)";
     this.gridColumn27.FieldName = "nPartTimeWorkHours";
     this.gridColumn27.Name = "gridColumn27";
     this.gridColumn27.Visible = true;
     this.gridColumn27.VisibleIndex = 5;
     this.gridColumn27.Width = 85;
     //
     // gridColumn28
     //
     this.gridColumn28.Caption = "AL Entitlement (HRS)";
     this.gridColumn28.FieldName = "nALEntitlementHours";
     this.gridColumn28.Name = "gridColumn28";
     this.gridColumn28.Visible = true;
     this.gridColumn28.VisibleIndex = 6;
     this.gridColumn28.Width = 77;
     //
     // gridColumn29
     //
     this.gridColumn29.Caption = "PH Entitlement (HRS)";
     this.gridColumn29.FieldName = "nPHEntitlementHours";
     this.gridColumn29.Name = "gridColumn29";
     this.gridColumn29.Visible = true;
     this.gridColumn29.VisibleIndex = 7;
     this.gridColumn29.Width = 64;
     //
     // gridColumn30
     //
     this.gridColumn30.Caption = "Service Reimbursement (AMT)";
     this.gridColumn30.FieldName = "mServiceReimbursements";
     this.gridColumn30.Name = "gridColumn30";
     this.gridColumn30.Visible = true;
     this.gridColumn30.VisibleIndex = 8;
     this.gridColumn30.Width = 74;
     //
     // gridColumn31
     //
     this.gridColumn31.Caption = "Lateness (HRS)";
     this.gridColumn31.FieldName = "nTotalLateness";
     this.gridColumn31.Name = "gridColumn31";
     this.gridColumn31.Visible = true;
     this.gridColumn31.VisibleIndex = 9;
     this.gridColumn31.Width = 61;
     //
     // gridColumn32
     //
     this.gridColumn32.Caption = "Unpaid AL (DAYS)";
     this.gridColumn32.FieldName = "nUnpaidAL";
     this.gridColumn32.Name = "gridColumn32";
     this.gridColumn32.Visible = true;
     this.gridColumn32.VisibleIndex = 10;
     this.gridColumn32.Width = 78;
     //
     // gridColumn33
     //
     this.gridColumn33.Caption = "Unpaid T/O (HRS)";
     this.gridColumn33.FieldName = "nUnpaidTO";
     this.gridColumn33.Name = "gridColumn33";
     this.gridColumn33.Visible = true;
     this.gridColumn33.VisibleIndex = 11;
     this.gridColumn33.Width = 74;
     //
     // gridColumn34
     //
     this.gridColumn34.Caption = "Unpaid Medical Absent (DAYS)";
     this.gridColumn34.FieldName = "nUnpaidMedical";
     this.gridColumn34.Name = "gridColumn34";
     this.gridColumn34.Visible = true;
     this.gridColumn34.VisibleIndex = 12;
     this.gridColumn34.Width = 83;
     //
     // gridColumn35
     //
     this.gridColumn35.Caption = "Commision (AMT)";
     this.gridColumn35.FieldName = "mCommission";
     this.gridColumn35.Name = "gridColumn35";
     this.gridColumn35.Width = 50;
     //
     // gridColumn36
     //
     this.gridColumn36.Caption = "Commission Lateness Penalty (AMT)";
     this.gridColumn36.FieldName = "nTotalLateness";
     this.gridColumn36.Name = "gridColumn36";
     this.gridColumn36.Width = 109;
     //
     // SecondPayDate
     //
     this.SecondPayDate.Caption = "Payroll Date";
     this.SecondPayDate.FieldName = "dtSecondRunDate";
     this.SecondPayDate.Name = "SecondPayDate";
     //
     // btnPayrollExport
     //
     this.btnPayrollExport.Appearance.BackColor = System.Drawing.Color.Transparent;
     this.btnPayrollExport.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.btnPayrollExport.Appearance.Options.UseBackColor = true;
     this.btnPayrollExport.Appearance.Options.UseFont = true;
     this.btnPayrollExport.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btnPayrollExport.Location = new System.Drawing.Point(648, 24);
     this.btnPayrollExport.Name = "btnPayrollExport";
     this.btnPayrollExport.Size = new System.Drawing.Size(56, 20);
     this.btnPayrollExport.TabIndex = 9;
     this.btnPayrollExport.Text = "Export";
     this.btnPayrollExport.Click += new System.EventHandler(this.btnPayrollExport_Click);
     //
     // btnPayrollGenerate
     //
     this.btnPayrollGenerate.Appearance.BackColor = System.Drawing.Color.Transparent;
     this.btnPayrollGenerate.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.btnPayrollGenerate.Appearance.Options.UseBackColor = true;
     this.btnPayrollGenerate.Appearance.Options.UseFont = true;
     this.btnPayrollGenerate.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btnPayrollGenerate.Location = new System.Drawing.Point(568, 24);
     this.btnPayrollGenerate.Name = "btnPayrollGenerate";
     this.btnPayrollGenerate.Size = new System.Drawing.Size(64, 20);
     this.btnPayrollGenerate.TabIndex = 8;
     this.btnPayrollGenerate.Text = "Generate";
     this.btnPayrollGenerate.Click += new System.EventHandler(this.btnPayrollGenerate_Click);
     //
     // btnPayrollDelete
     //
     this.btnPayrollDelete.Appearance.BackColor = System.Drawing.Color.Transparent;
     this.btnPayrollDelete.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.btnPayrollDelete.Appearance.Options.UseBackColor = true;
     this.btnPayrollDelete.Appearance.Options.UseFont = true;
     this.btnPayrollDelete.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btnPayrollDelete.ImeMode = System.Windows.Forms.ImeMode.On;
     this.btnPayrollDelete.Location = new System.Drawing.Point(720, 24);
     this.btnPayrollDelete.Name = "btnPayrollDelete";
     this.btnPayrollDelete.Size = new System.Drawing.Size(56, 20);
     this.btnPayrollDelete.TabIndex = 7;
     this.btnPayrollDelete.Text = "Delete";
     this.btnPayrollDelete.Click += new System.EventHandler(this.btnPayrollDelete_Click);
     //
     // comboBoxEditMTH
     //
     this.comboBoxEditMTH.EditValue = "1";
     this.comboBoxEditMTH.Location = new System.Drawing.Point(288, 24);
     this.comboBoxEditMTH.Name = "comboBoxEditMTH";
     this.comboBoxEditMTH.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.Style3D;
     this.comboBoxEditMTH.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.comboBoxEditMTH.Properties.Items.AddRange(new object[] {
     "1",
     "2",
     "3",
     "4",
     "5",
     "6",
     "7",
     "8",
     "9",
     "10",
     "11",
     "12"});
     this.comboBoxEditMTH.Properties.PopupSizeable = true;
     this.comboBoxEditMTH.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
     this.comboBoxEditMTH.Size = new System.Drawing.Size(48, 22);
     this.comboBoxEditMTH.TabIndex = 6;
     this.comboBoxEditMTH.SelectedIndexChanged += new System.EventHandler(this.comboBoxEditMTH_SelectedIndexChanged);
     //
     // comboBoxEditYR
     //
     this.comboBoxEditYR.EditValue = "2006";
     this.comboBoxEditYR.Location = new System.Drawing.Point(176, 24);
     this.comboBoxEditYR.Name = "comboBoxEditYR";
     this.comboBoxEditYR.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.Style3D;
     this.comboBoxEditYR.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.comboBoxEditYR.Properties.Items.AddRange(new object[] {
     "1990",
     "1991",
     "1992",
     "1993",
     "1994",
     "1995",
     "1996",
     "1997",
     "1998",
     "1999",
     "2000",
     "2001",
     "2002",
     "2003",
     "2004",
     "2005",
     "2006",
     "2007",
     "2008",
     "2009",
     "2010",
     "2011",
     "2012",
     "2013",
     "2014",
     "2015",
     "2016",
     "2017",
     "2018",
     "2019",
     "2020",
     "2021",
     "2022",
     "2023",
     "2024",
     "2025",
     "2026",
     "2027",
     "2028",
     "2029",
     "2030"});
     this.comboBoxEditYR.Properties.PopupSizeable = true;
     this.comboBoxEditYR.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
     this.comboBoxEditYR.Size = new System.Drawing.Size(64, 22);
     this.comboBoxEditYR.TabIndex = 5;
     this.comboBoxEditYR.SelectedValueChanged += new System.EventHandler(this.comboBoxEditYR_SelectedValueChanged);
     //
     // lblYear
     //
     this.lblYear.BackColor = System.Drawing.Color.Transparent;
     this.lblYear.Font = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblYear.ForeColor = System.Drawing.Color.Black;
     this.lblYear.Location = new System.Drawing.Point(136, 24);
     this.lblYear.Name = "lblYear";
     this.lblYear.Size = new System.Drawing.Size(56, 16);
     this.toolTipController1.SetSuperTip(this.lblYear, null);
     this.lblYear.TabIndex = 4;
     this.lblYear.Text = "Year";
     //
     // lblMonth
     //
     this.lblMonth.BackColor = System.Drawing.Color.Transparent;
     this.lblMonth.Font = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblMonth.Location = new System.Drawing.Point(248, 24);
     this.lblMonth.Name = "lblMonth";
     this.lblMonth.Size = new System.Drawing.Size(48, 16);
     this.toolTipController1.SetSuperTip(this.lblMonth, null);
     this.lblMonth.TabIndex = 3;
     this.lblMonth.Text = "Month";
     //
     // cmbxPayroll
     //
     this.cmbxPayroll.EditValue = "First Run";
     this.cmbxPayroll.Location = new System.Drawing.Point(8, 24);
     this.cmbxPayroll.Name = "cmbxPayroll";
     this.cmbxPayroll.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.Style3D;
     this.cmbxPayroll.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.cmbxPayroll.Properties.Items.AddRange(new object[] {
     "First Run",
     "Second Run"});
     this.cmbxPayroll.Properties.PopupSizeable = true;
     this.cmbxPayroll.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
     this.cmbxPayroll.Size = new System.Drawing.Size(120, 22);
     this.cmbxPayroll.TabIndex = 2;
     this.cmbxPayroll.SelectedValueChanged += new System.EventHandler(this.cmbxPayroll_SelectedValueChanged);
     //
     // gridPayroll
     //
     this.gridPayroll.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.gridPayroll.EmbeddedNavigator.Name = "";
     this.gridPayroll.Location = new System.Drawing.Point(2, 62);
     this.gridPayroll.MainView = this.gridViewPayroll;
     this.gridPayroll.Name = "gridPayroll";
     this.gridPayroll.Size = new System.Drawing.Size(990, 552);
     this.gridPayroll.TabIndex = 11;
     this.gridPayroll.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridViewPayroll});
     //
     // gridViewPayroll
     //
     this.gridViewPayroll.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.nEmployeeID,
     this.gridColumn9,
     this.gridColumn17,
     this.gridColumn18,
     this.dtFirstRunDate,
     this.nNormalOT,
     this.nPublicHolidayOT,
     this.nOffDayOT,
     this.nPartTimeWorkHours,
     this.nALEntitlementHours,
     this.nPHEntitlementHours,
     this.mServiceReimbursements,
     this.nTotalLateness,
     this.nUnpaidAL,
     this.nUnpaidTO,
     this.nUnpaidMedical,
     this.mCommission,
     this.mCommissionLatenessPenalty,
     this.dtSecondRunDate});
     this.gridViewPayroll.GridControl = this.gridPayroll;
     this.gridViewPayroll.HorzScrollVisibility = DevExpress.XtraGrid.Views.Base.ScrollVisibility.Always;
     this.gridViewPayroll.Name = "gridViewPayroll";
     this.gridViewPayroll.OptionsBehavior.Editable = false;
     this.gridViewPayroll.OptionsCustomization.AllowFilter = false;
     this.gridViewPayroll.OptionsView.ColumnAutoWidth = false;
     this.gridViewPayroll.OptionsView.ShowGroupPanel = false;
     this.gridViewPayroll.VertScrollVisibility = DevExpress.XtraGrid.Views.Base.ScrollVisibility.Always;
     this.gridViewPayroll.Click += new System.EventHandler(this.gridViewPayroll_Click);
     //
     // nEmployeeID
     //
     this.nEmployeeID.Caption = "Emp ID";
     this.nEmployeeID.FieldName = "nEmployeeID";
     this.nEmployeeID.Name = "nEmployeeID";
     this.nEmployeeID.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
     this.nEmployeeID.Visible = true;
     this.nEmployeeID.VisibleIndex = 0;
     this.nEmployeeID.Width = 68;
     //
     // gridColumn9
     //
     this.gridColumn9.Caption = "Name";
     this.gridColumn9.FieldName = "strEmployeeName";
     this.gridColumn9.Name = "gridColumn9";
     this.gridColumn9.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
     this.gridColumn9.Visible = true;
     this.gridColumn9.VisibleIndex = 1;
     //
     // gridColumn17
     //
     this.gridColumn17.Caption = "Job Title";
     this.gridColumn17.FieldName = "strJobPosition";
     this.gridColumn17.Name = "gridColumn17";
     this.gridColumn17.Visible = true;
     this.gridColumn17.VisibleIndex = 2;
     //
     // gridColumn18
     //
     this.gridColumn18.Caption = "Branch";
     this.gridColumn18.FieldName = "strBranchCode";
     this.gridColumn18.Name = "gridColumn18";
     this.gridColumn18.Visible = true;
     this.gridColumn18.VisibleIndex = 3;
     //
     // dtFirstRunDate
     //
     this.dtFirstRunDate.Caption = "Payroll Date";
     this.dtFirstRunDate.FieldName = "dtFirstRunDate";
     this.dtFirstRunDate.Name = "dtFirstRunDate";
     this.dtFirstRunDate.Width = 76;
     //
     // nNormalOT
     //
     this.nNormalOT.Caption = "OT-1.5 (HRS)";
     this.nNormalOT.FieldName = "nNormalOT";
     this.nNormalOT.Name = "nNormalOT";
     this.nNormalOT.Visible = true;
     this.nNormalOT.VisibleIndex = 4;
     this.nNormalOT.Width = 77;
     //
     // nPublicHolidayOT
     //
     this.nPublicHolidayOT.Caption = "OT-1.0 (DAYS)";
     this.nPublicHolidayOT.FieldName = "nPublicHolidayOT";
     this.nPublicHolidayOT.Name = "nPublicHolidayOT";
     this.nPublicHolidayOT.Visible = true;
     this.nPublicHolidayOT.VisibleIndex = 5;
     this.nPublicHolidayOT.Width = 83;
     //
     // nOffDayOT
     //
     this.nOffDayOT.Caption = "OT-2.0 (DAYS)";
     this.nOffDayOT.FieldName = "nOffDayOT";
     this.nOffDayOT.Name = "nOffDayOT";
     this.nOffDayOT.Visible = true;
     this.nOffDayOT.VisibleIndex = 6;
     this.nOffDayOT.Width = 82;
     //
     // nPartTimeWorkHours
     //
     this.nPartTimeWorkHours.Caption = "Part-Time Salary (HRS)";
     this.nPartTimeWorkHours.FieldName = "nPartTimeWorkHours";
     this.nPartTimeWorkHours.Name = "nPartTimeWorkHours";
     this.nPartTimeWorkHours.Visible = true;
     this.nPartTimeWorkHours.VisibleIndex = 7;
     this.nPartTimeWorkHours.Width = 85;
     //
     // nALEntitlementHours
     //
     this.nALEntitlementHours.Caption = "AL Entitlement (HRS)";
     this.nALEntitlementHours.FieldName = "nALEntitlementHours";
     this.nALEntitlementHours.Name = "nALEntitlementHours";
     this.nALEntitlementHours.Visible = true;
     this.nALEntitlementHours.VisibleIndex = 8;
     this.nALEntitlementHours.Width = 77;
     //
     // nPHEntitlementHours
     //
     this.nPHEntitlementHours.Caption = "PH Entitlement (HRS)";
     this.nPHEntitlementHours.FieldName = "nPHEntitlementHours";
     this.nPHEntitlementHours.Name = "nPHEntitlementHours";
     this.nPHEntitlementHours.Visible = true;
     this.nPHEntitlementHours.VisibleIndex = 9;
     this.nPHEntitlementHours.Width = 64;
     //
     // mServiceReimbursements
     //
     this.mServiceReimbursements.Caption = "Service Reimbursement (AMT)";
     this.mServiceReimbursements.FieldName = "mServiceReimbursements";
     this.mServiceReimbursements.Name = "mServiceReimbursements";
     this.mServiceReimbursements.Visible = true;
     this.mServiceReimbursements.VisibleIndex = 10;
     this.mServiceReimbursements.Width = 74;
     //
     // nTotalLateness
     //
     this.nTotalLateness.Caption = "Lateness (HRS)";
     this.nTotalLateness.FieldName = "nTotalLateness";
     this.nTotalLateness.Name = "nTotalLateness";
     this.nTotalLateness.Visible = true;
     this.nTotalLateness.VisibleIndex = 11;
     this.nTotalLateness.Width = 61;
     //
     // nUnpaidAL
     //
     this.nUnpaidAL.Caption = "Unpaid AL (DAYS)";
     this.nUnpaidAL.FieldName = "nUnpaidAL";
     this.nUnpaidAL.Name = "nUnpaidAL";
     this.nUnpaidAL.Visible = true;
     this.nUnpaidAL.VisibleIndex = 12;
     this.nUnpaidAL.Width = 78;
     //
     // nUnpaidTO
     //
     this.nUnpaidTO.Caption = "Unpaid T/O (HRS)";
     this.nUnpaidTO.FieldName = "nUnpaidTO";
     this.nUnpaidTO.Name = "nUnpaidTO";
     this.nUnpaidTO.Visible = true;
     this.nUnpaidTO.VisibleIndex = 13;
     this.nUnpaidTO.Width = 74;
     //
     // nUnpaidMedical
     //
     this.nUnpaidMedical.Caption = "Unpaid Medical Absent (DAYS)";
     this.nUnpaidMedical.FieldName = "nUnpaidMedical";
     this.nUnpaidMedical.Name = "nUnpaidMedical";
     this.nUnpaidMedical.Visible = true;
     this.nUnpaidMedical.VisibleIndex = 14;
     this.nUnpaidMedical.Width = 83;
     //
     // mCommission
     //
     this.mCommission.Caption = "Commision (AMT)";
     this.mCommission.FieldName = "mCommission";
     this.mCommission.Name = "mCommission";
     this.mCommission.Width = 50;
     //
     // mCommissionLatenessPenalty
     //
     this.mCommissionLatenessPenalty.Caption = "Commission Lateness Penalty (AMT)";
     this.mCommissionLatenessPenalty.FieldName = "nTotalLateness";
     this.mCommissionLatenessPenalty.Name = "mCommissionLatenessPenalty";
     this.mCommissionLatenessPenalty.Width = 109;
     //
     // dtSecondRunDate
     //
     this.dtSecondRunDate.Caption = "Payroll Date";
     this.dtSecondRunDate.FieldName = "dtSecondRunDate";
     this.dtSecondRunDate.Name = "dtSecondRunDate";
     //
     // tabManagerThree
     //
     this.tabManagerThree.Appearance.PageClient.BackColor = System.Drawing.Color.DimGray;
     this.tabManagerThree.Appearance.PageClient.Options.UseBackColor = true;
     this.tabManagerThree.Controls.Add(this.lblThree_2);
     this.tabManagerThree.Controls.Add(this.lblThree_1);
     this.tabManagerThree.Controls.Add(this.lblThree_3);
     this.tabManagerThree.Controls.Add(this.grpClassSchedule);
     this.tabManagerThree.Controls.Add(this.groupMemCard);
     this.tabManagerThree.Controls.Add(this.grpRoadShow);
     this.tabManagerThree.Name = "tabManagerThree";
     this.tabManagerThree.PageVisible = false;
     this.tabManagerThree.Size = new System.Drawing.Size(1007, 637);
     this.tabManagerThree.Text = "Operation";
     //
     // lblThree_2
     //
     this.lblThree_2.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.lblThree_2.Appearance.ForeColor = System.Drawing.Color.MediumBlue;
     this.lblThree_2.Appearance.Options.UseFont = true;
     this.lblThree_2.Appearance.Options.UseForeColor = true;
     this.lblThree_2.Location = new System.Drawing.Point(152, 0);
     this.lblThree_2.Name = "lblThree_2";
     this.lblThree_2.Size = new System.Drawing.Size(138, 23);
     this.lblThree_2.TabIndex = 144;
     this.lblThree_2.Text = "Member Card";
     this.lblThree_2.Click += new System.EventHandler(this.lblThree_2_Click);
     //
     // lblThree_1
     //
     this.lblThree_1.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.lblThree_1.Appearance.ForeColor = System.Drawing.Color.MediumBlue;
     this.lblThree_1.Appearance.Options.UseFont = true;
     this.lblThree_1.Appearance.Options.UseForeColor = true;
     this.lblThree_1.Location = new System.Drawing.Point(8, 0);
     this.lblThree_1.Name = "lblThree_1";
     this.lblThree_1.Size = new System.Drawing.Size(138, 23);
     this.lblThree_1.TabIndex = 143;
     this.lblThree_1.Text = "Class Schedule";
     this.lblThree_1.Click += new System.EventHandler(this.lblThree_1_Click);
     //
     // lblThree_3
     //
     this.lblThree_3.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.lblThree_3.Appearance.ForeColor = System.Drawing.Color.MediumBlue;
     this.lblThree_3.Appearance.Options.UseFont = true;
     this.lblThree_3.Appearance.Options.UseForeColor = true;
     this.lblThree_3.Location = new System.Drawing.Point(296, 0);
     this.lblThree_3.Name = "lblThree_3";
     this.lblThree_3.Size = new System.Drawing.Size(138, 23);
     this.lblThree_3.TabIndex = 145;
     this.lblThree_3.Text = "Admin Operation";
     this.lblThree_3.Click += new System.EventHandler(this.lblThree_3_Click);
     //
     // grpClassSchedule
     //
     this.grpClassSchedule.Appearance.BackColor = System.Drawing.SystemColors.Control;
     this.grpClassSchedule.Appearance.ForeColor = System.Drawing.Color.Black;
     this.grpClassSchedule.Appearance.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
     this.grpClassSchedule.Appearance.Options.UseBackColor = true;
     this.grpClassSchedule.Appearance.Options.UseForeColor = true;
     this.grpClassSchedule.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.grpClassSchedule.AppearanceCaption.Options.UseFont = true;
     this.grpClassSchedule.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowOnly;
     this.grpClassSchedule.Controls.Add(this.comboBoxBranch);
     this.grpClassSchedule.Controls.Add(this.btnRefreshClassSchedule);
     this.grpClassSchedule.Controls.Add(this.lblPQBranch);
     this.grpClassSchedule.Controls.Add(this.lblSUN);
     this.grpClassSchedule.Controls.Add(this.panelSun);
     this.grpClassSchedule.Controls.Add(this.panelSat);
     this.grpClassSchedule.Controls.Add(this.lblFRI);
     this.grpClassSchedule.Controls.Add(this.lblTHU);
     this.grpClassSchedule.Controls.Add(this.lblWED);
     this.grpClassSchedule.Controls.Add(this.lblTUE);
     this.grpClassSchedule.Controls.Add(this.panelFri);
     this.grpClassSchedule.Controls.Add(this.panelThu);
     this.grpClassSchedule.Controls.Add(this.panelWed);
     this.grpClassSchedule.Controls.Add(this.panelTue);
     this.grpClassSchedule.Controls.Add(this.panelMon);
     this.grpClassSchedule.Controls.Add(this.lblMON);
     this.grpClassSchedule.Controls.Add(this.btnPrintClassSchedule);
     this.grpClassSchedule.Controls.Add(this.btnNewClassSchedule);
     this.grpClassSchedule.Controls.Add(this.lblSAT);
     this.grpClassSchedule.Location = new System.Drawing.Point(16, 32);
     this.grpClassSchedule.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Office2003;
     this.grpClassSchedule.LookAndFeel.UseDefaultLookAndFeel = false;
     this.grpClassSchedule.Name = "grpClassSchedule";
     this.grpClassSchedule.Size = new System.Drawing.Size(996, 592);
     this.toolTipController1.SetSuperTip(this.grpClassSchedule, null);
     this.grpClassSchedule.TabIndex = 5;
     this.grpClassSchedule.Text = "Class Schedule";
     //
     // comboBoxBranch
     //
     this.comboBoxBranch.Location = new System.Drawing.Point(16, 40);
     this.comboBoxBranch.Name = "comboBoxBranch";
     this.comboBoxBranch.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.comboBoxBranch.Size = new System.Drawing.Size(104, 20);
     this.comboBoxBranch.TabIndex = 122;
     this.comboBoxBranch.EditValueChanged += new System.EventHandler(this.comboBoxBranch_SelectedValueChanged);
     //
     // btnRefreshClassSchedule
     //
     this.btnRefreshClassSchedule.Appearance.BackColor = System.Drawing.SystemColors.Control;
     this.btnRefreshClassSchedule.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btnRefreshClassSchedule.Appearance.ForeColor = System.Drawing.Color.Black;
     this.btnRefreshClassSchedule.Appearance.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
     this.btnRefreshClassSchedule.Appearance.Options.UseBackColor = true;
     this.btnRefreshClassSchedule.Appearance.Options.UseFont = true;
     this.btnRefreshClassSchedule.Appearance.Options.UseForeColor = true;
     this.btnRefreshClassSchedule.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btnRefreshClassSchedule.Location = new System.Drawing.Point(16, 112);
     this.btnRefreshClassSchedule.LookAndFeel.UseDefaultLookAndFeel = false;
     this.btnRefreshClassSchedule.Name = "btnRefreshClassSchedule";
     this.btnRefreshClassSchedule.Size = new System.Drawing.Size(104, 20);
     this.btnRefreshClassSchedule.TabIndex = 121;
     this.btnRefreshClassSchedule.Text = "Refresh";
     this.btnRefreshClassSchedule.Click += new System.EventHandler(this.btnRefreshClassSchedule_Click);
     //
     // lblPQBranch
     //
     this.lblPQBranch.BackColor = System.Drawing.Color.Transparent;
     this.lblPQBranch.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblPQBranch.Location = new System.Drawing.Point(16, 24);
     this.lblPQBranch.Name = "lblPQBranch";
     this.lblPQBranch.Size = new System.Drawing.Size(100, 16);
     this.toolTipController1.SetSuperTip(this.lblPQBranch, null);
     this.lblPQBranch.TabIndex = 33;
     this.lblPQBranch.Text = "Filter by Branch";
     //
     // lblSUN
     //
     this.lblSUN.BackColor = System.Drawing.Color.PowderBlue;
     this.lblSUN.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.lblSUN.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblSUN.Location = new System.Drawing.Point(760, 24);
     this.lblSUN.Name = "lblSUN";
     this.lblSUN.Size = new System.Drawing.Size(104, 16);
     this.toolTipController1.SetSuperTip(this.lblSUN, null);
     this.lblSUN.TabIndex = 30;
     this.lblSUN.Text = "SUN";
     //
     // panelSun
     //
     this.panelSun.BackColor = System.Drawing.Color.White;
     this.panelSun.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.panelSun.Location = new System.Drawing.Point(760, 40);
     this.panelSun.Name = "panelSun";
     this.panelSun.Size = new System.Drawing.Size(104, 512);
     this.toolTipController1.SetSuperTip(this.panelSun, null);
     this.panelSun.TabIndex = 28;
     //
     // panelSat
     //
     this.panelSat.BackColor = System.Drawing.Color.White;
     this.panelSat.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.panelSat.Location = new System.Drawing.Point(656, 40);
     this.panelSat.Name = "panelSat";
     this.panelSat.Size = new System.Drawing.Size(104, 512);
     this.toolTipController1.SetSuperTip(this.panelSat, null);
     this.panelSat.TabIndex = 27;
     //
     // lblFRI
     //
     this.lblFRI.BackColor = System.Drawing.Color.PowderBlue;
     this.lblFRI.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.lblFRI.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblFRI.Location = new System.Drawing.Point(552, 24);
     this.lblFRI.Name = "lblFRI";
     this.lblFRI.Size = new System.Drawing.Size(104, 16);
     this.toolTipController1.SetSuperTip(this.lblFRI, null);
     this.lblFRI.TabIndex = 26;
     this.lblFRI.Text = "FRI";
     //
     // lblTHU
     //
     this.lblTHU.BackColor = System.Drawing.Color.PowderBlue;
     this.lblTHU.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.lblTHU.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblTHU.Location = new System.Drawing.Point(448, 24);
     this.lblTHU.Name = "lblTHU";
     this.lblTHU.Size = new System.Drawing.Size(104, 16);
     this.toolTipController1.SetSuperTip(this.lblTHU, null);
     this.lblTHU.TabIndex = 25;
     this.lblTHU.Text = "THU";
     //
     // lblWED
     //
     this.lblWED.BackColor = System.Drawing.Color.PowderBlue;
     this.lblWED.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.lblWED.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblWED.Location = new System.Drawing.Point(344, 24);
     this.lblWED.Name = "lblWED";
     this.lblWED.Size = new System.Drawing.Size(104, 16);
     this.toolTipController1.SetSuperTip(this.lblWED, null);
     this.lblWED.TabIndex = 24;
     this.lblWED.Text = "WED";
     //
     // lblTUE
     //
     this.lblTUE.BackColor = System.Drawing.Color.PowderBlue;
     this.lblTUE.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.lblTUE.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblTUE.Location = new System.Drawing.Point(240, 24);
     this.lblTUE.Name = "lblTUE";
     this.lblTUE.Size = new System.Drawing.Size(104, 16);
     this.toolTipController1.SetSuperTip(this.lblTUE, null);
     this.lblTUE.TabIndex = 23;
     this.lblTUE.Text = "TUE";
     //
     // panelFri
     //
     this.panelFri.BackColor = System.Drawing.Color.White;
     this.panelFri.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.panelFri.Location = new System.Drawing.Point(552, 40);
     this.panelFri.Name = "panelFri";
     this.panelFri.Size = new System.Drawing.Size(104, 512);
     this.toolTipController1.SetSuperTip(this.panelFri, null);
     this.panelFri.TabIndex = 18;
     //
     // panelThu
     //
     this.panelThu.BackColor = System.Drawing.Color.White;
     this.panelThu.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.panelThu.Location = new System.Drawing.Point(448, 40);
     this.panelThu.Name = "panelThu";
     this.panelThu.Size = new System.Drawing.Size(104, 512);
     this.toolTipController1.SetSuperTip(this.panelThu, null);
     this.panelThu.TabIndex = 17;
     //
     // panelWed
     //
     this.panelWed.BackColor = System.Drawing.Color.White;
     this.panelWed.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.panelWed.Location = new System.Drawing.Point(344, 40);
     this.panelWed.Name = "panelWed";
     this.panelWed.Size = new System.Drawing.Size(104, 512);
     this.toolTipController1.SetSuperTip(this.panelWed, null);
     this.panelWed.TabIndex = 16;
     //
     // panelTue
     //
     this.panelTue.BackColor = System.Drawing.Color.White;
     this.panelTue.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.panelTue.Location = new System.Drawing.Point(240, 40);
     this.panelTue.Name = "panelTue";
     this.panelTue.Size = new System.Drawing.Size(104, 512);
     this.toolTipController1.SetSuperTip(this.panelTue, null);
     this.panelTue.TabIndex = 15;
     //
     // panelMon
     //
     this.panelMon.BackColor = System.Drawing.Color.White;
     this.panelMon.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.panelMon.Location = new System.Drawing.Point(136, 40);
     this.panelMon.Name = "panelMon";
     this.panelMon.Size = new System.Drawing.Size(104, 512);
     this.toolTipController1.SetSuperTip(this.panelMon, null);
     this.panelMon.TabIndex = 14;
     //
     // lblMON
     //
     this.lblMON.BackColor = System.Drawing.Color.PowderBlue;
     this.lblMON.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.lblMON.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblMON.Location = new System.Drawing.Point(136, 24);
     this.lblMON.Name = "lblMON";
     this.lblMON.Size = new System.Drawing.Size(104, 16);
     this.toolTipController1.SetSuperTip(this.lblMON, null);
     this.lblMON.TabIndex = 12;
     this.lblMON.Text = "MON";
     //
     // btnPrintClassSchedule
     //
     this.btnPrintClassSchedule.Appearance.BackColor = System.Drawing.SystemColors.Control;
     this.btnPrintClassSchedule.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btnPrintClassSchedule.Appearance.ForeColor = System.Drawing.Color.Black;
     this.btnPrintClassSchedule.Appearance.Options.UseBackColor = true;
     this.btnPrintClassSchedule.Appearance.Options.UseFont = true;
     this.btnPrintClassSchedule.Appearance.Options.UseForeColor = true;
     this.btnPrintClassSchedule.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btnPrintClassSchedule.Location = new System.Drawing.Point(16, 88);
     this.btnPrintClassSchedule.Name = "btnPrintClassSchedule";
     this.btnPrintClassSchedule.Size = new System.Drawing.Size(104, 20);
     this.btnPrintClassSchedule.TabIndex = 11;
     this.btnPrintClassSchedule.Text = "Print";
     this.btnPrintClassSchedule.Click += new System.EventHandler(this.btnPrintClassSchedule_Click);
     //
     // btnNewClassSchedule
     //
     this.btnNewClassSchedule.Appearance.BackColor = System.Drawing.SystemColors.Control;
     this.btnNewClassSchedule.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btnNewClassSchedule.Appearance.ForeColor = System.Drawing.Color.Black;
     this.btnNewClassSchedule.Appearance.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
     this.btnNewClassSchedule.Appearance.Options.UseBackColor = true;
     this.btnNewClassSchedule.Appearance.Options.UseFont = true;
     this.btnNewClassSchedule.Appearance.Options.UseForeColor = true;
     this.btnNewClassSchedule.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btnNewClassSchedule.Location = new System.Drawing.Point(16, 64);
     this.btnNewClassSchedule.LookAndFeel.UseDefaultLookAndFeel = false;
     this.btnNewClassSchedule.Name = "btnNewClassSchedule";
     this.btnNewClassSchedule.Size = new System.Drawing.Size(104, 20);
     this.btnNewClassSchedule.TabIndex = 8;
     this.btnNewClassSchedule.Text = "New";
     this.btnNewClassSchedule.Click += new System.EventHandler(this.btnNewClassSchedule_Click);
     //
     // lblSAT
     //
     this.lblSAT.BackColor = System.Drawing.Color.PowderBlue;
     this.lblSAT.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.lblSAT.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblSAT.Location = new System.Drawing.Point(656, 24);
     this.lblSAT.Name = "lblSAT";
     this.lblSAT.Size = new System.Drawing.Size(104, 16);
     this.toolTipController1.SetSuperTip(this.lblSAT, null);
     this.lblSAT.TabIndex = 29;
     this.lblSAT.Text = "SAT";
     //
     // groupMemCard
     //
     this.groupMemCard.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowOnly;
     this.groupMemCard.Location = new System.Drawing.Point(16, 32);
     this.groupMemCard.Name = "groupMemCard";
     this.groupMemCard.Size = new System.Drawing.Size(1000, 592);
     this.toolTipController1.SetSuperTip(this.groupMemCard, null);
     this.groupMemCard.TabIndex = 127;
     //
     // grpRoadShow
     //
     this.grpRoadShow.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowOnly;
     this.grpRoadShow.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.grpRoadShow.Location = new System.Drawing.Point(16, 32);
     this.grpRoadShow.LookAndFeel.UseDefaultLookAndFeel = false;
     this.grpRoadShow.Name = "grpRoadShow";
     this.grpRoadShow.Size = new System.Drawing.Size(984, 592);
     this.toolTipController1.SetSuperTip(this.grpRoadShow, null);
     this.grpRoadShow.TabIndex = 129;
     //
     // tabManagerFour
     //
     this.tabManagerFour.Controls.Add(this.lblFour_2);
     this.tabManagerFour.Controls.Add(this.lblFour_1);
     this.tabManagerFour.Controls.Add(this.lblFour_3);
     this.tabManagerFour.Controls.Add(this.lblFour_4);
     this.tabManagerFour.Controls.Add(this.lblFour_5);
     this.tabManagerFour.Controls.Add(this.panel2);
     this.tabManagerFour.Name = "tabManagerFour";
     this.tabManagerFour.PageVisible = false;
     this.tabManagerFour.Size = new System.Drawing.Size(1007, 637);
     this.tabManagerFour.Text = "Human Resource";
     //
     // lblFour_2
     //
     this.lblFour_2.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.lblFour_2.Appearance.ForeColor = System.Drawing.Color.MediumBlue;
     this.lblFour_2.Appearance.Options.UseFont = true;
     this.lblFour_2.Appearance.Options.UseForeColor = true;
     this.lblFour_2.Location = new System.Drawing.Point(152, 0);
     this.lblFour_2.Name = "lblFour_2";
     this.lblFour_2.Size = new System.Drawing.Size(138, 23);
     this.lblFour_2.TabIndex = 144;
     this.lblFour_2.Text = "TimeSheet";
     this.lblFour_2.Click += new System.EventHandler(this.lblFour_2_Click);
     //
     // lblFour_1
     //
     this.lblFour_1.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.lblFour_1.Appearance.ForeColor = System.Drawing.Color.MediumBlue;
     this.lblFour_1.Appearance.Options.UseFont = true;
     this.lblFour_1.Appearance.Options.UseForeColor = true;
     this.lblFour_1.Location = new System.Drawing.Point(8, 0);
     this.lblFour_1.Name = "lblFour_1";
     this.lblFour_1.Size = new System.Drawing.Size(138, 23);
     this.lblFour_1.TabIndex = 143;
     this.lblFour_1.Text = "Roster";
     this.lblFour_1.Click += new System.EventHandler(this.lblFour_1_Click);
     //
     // lblFour_3
     //
     this.lblFour_3.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.lblFour_3.Appearance.ForeColor = System.Drawing.Color.MediumBlue;
     this.lblFour_3.Appearance.Options.UseFont = true;
     this.lblFour_3.Appearance.Options.UseForeColor = true;
     this.lblFour_3.Location = new System.Drawing.Point(296, 0);
     this.lblFour_3.Name = "lblFour_3";
     this.lblFour_3.Size = new System.Drawing.Size(138, 23);
     this.lblFour_3.TabIndex = 145;
     this.lblFour_3.Text = "OverTime";
     this.lblFour_3.Click += new System.EventHandler(this.lblFour_3_Click);
     //
     // lblFour_4
     //
     this.lblFour_4.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.lblFour_4.Appearance.ForeColor = System.Drawing.Color.MediumBlue;
     this.lblFour_4.Appearance.Options.UseFont = true;
     this.lblFour_4.Appearance.Options.UseForeColor = true;
     this.lblFour_4.Location = new System.Drawing.Point(440, 0);
     this.lblFour_4.Name = "lblFour_4";
     this.lblFour_4.Size = new System.Drawing.Size(138, 23);
     this.lblFour_4.TabIndex = 146;
     this.lblFour_4.Text = "Leave";
     this.lblFour_4.Click += new System.EventHandler(this.lblFour_4_Click);
     //
     // lblFour_5
     //
     this.lblFour_5.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.lblFour_5.Appearance.ForeColor = System.Drawing.Color.MediumBlue;
     this.lblFour_5.Appearance.Options.UseFont = true;
     this.lblFour_5.Appearance.Options.UseForeColor = true;
     this.lblFour_5.Location = new System.Drawing.Point(584, 0);
     this.lblFour_5.Name = "lblFour_5";
     this.lblFour_5.Size = new System.Drawing.Size(138, 23);
     this.lblFour_5.TabIndex = 147;
     this.lblFour_5.Text = "Appointment";
     this.lblFour_5.Click += new System.EventHandler(this.lblFour_5_Click);
     //
     // panel2
     //
     this.panel2.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("panel2.BackgroundImage")));
     this.panel2.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
     this.panel2.Location = new System.Drawing.Point(0, 32);
     this.panel2.Name = "panel2";
     this.panel2.Size = new System.Drawing.Size(1000, 600);
     this.toolTipController1.SetSuperTip(this.panel2, null);
     this.panel2.TabIndex = 125;
     //
     // tabManagerFive
     //
     this.tabManagerFive.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("tabManagerFive.BackgroundImage")));
     this.tabManagerFive.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
     this.tabManagerFive.Controls.Add(this.label6);
     this.tabManagerFive.Controls.Add(this.ReportPanel);
     this.tabManagerFive.Controls.Add(this.lk_ReportView);
     this.tabManagerFive.Controls.Add(this.lblFive_9);
     this.tabManagerFive.Controls.Add(this.lblFive_10);
     this.tabManagerFive.Controls.Add(this.lblFive_4);
     this.tabManagerFive.Controls.Add(this.lblFive_2);
     this.tabManagerFive.Controls.Add(this.lblFive_8);
     this.tabManagerFive.Controls.Add(this.lblFive_7);
     this.tabManagerFive.Controls.Add(this.lblFive_3);
     this.tabManagerFive.Controls.Add(this.lblFive_6);
     this.tabManagerFive.Controls.Add(this.lblFive_1);
     this.tabManagerFive.Controls.Add(this.lblFive_5);
     this.tabManagerFive.Name = "tabManagerFive";
     this.tabManagerFive.PageVisible = false;
     this.tabManagerFive.Size = new System.Drawing.Size(1007, 637);
     this.tabManagerFive.Text = "Report";
     //
     // label6
     //
     this.label6.Font = new System.Drawing.Font("Monotype Corsiva", 9F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Italic))), System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label6.ForeColor = System.Drawing.SystemColors.Desktop;
     this.label6.Location = new System.Drawing.Point(16, 32);
     this.label6.Name = "label6";
     this.label6.Size = new System.Drawing.Size(61, 16);
     this.toolTipController1.SetSuperTip(this.label6, null);
     this.label6.TabIndex = 57;
     this.label6.Text = "Option >>";
     //
     // ReportPanel
     //
     this.ReportPanel.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowOnly;
     this.ReportPanel.Location = new System.Drawing.Point(8, 56);
     this.ReportPanel.Name = "ReportPanel";
     this.ReportPanel.Size = new System.Drawing.Size(984, 560);
     this.toolTipController1.SetSuperTip(this.ReportPanel, null);
     this.ReportPanel.TabIndex = 28;
     //
     // lk_ReportView
     //
     this.lk_ReportView.Location = new System.Drawing.Point(88, 32);
     this.lk_ReportView.Name = "lk_ReportView";
     this.lk_ReportView.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lk_ReportView.Properties.Appearance.Options.UseFont = true;
     this.lk_ReportView.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.Style3D;
     this.lk_ReportView.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lk_ReportView.Properties.NullText = "";
     this.lk_ReportView.Size = new System.Drawing.Size(272, 22);
     this.lk_ReportView.TabIndex = 53;
     this.lk_ReportView.EditValueChanged += new System.EventHandler(this.lk_ReportView_EditValueChanged);
     this.lk_ReportView.DoubleClick += new System.EventHandler(this.lk_ReportView_EditValueChanged);
     //
     // lblFive_9
     //
     this.lblFive_9.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.lblFive_9.Appearance.ForeColor = System.Drawing.Color.MediumBlue;
     this.lblFive_9.Appearance.Options.UseFont = true;
     this.lblFive_9.Appearance.Options.UseForeColor = true;
     this.lblFive_9.Location = new System.Drawing.Point(712, 0);
     this.lblFive_9.Name = "lblFive_9";
     this.lblFive_9.Size = new System.Drawing.Size(80, 23);
     this.lblFive_9.TabIndex = 152;
     this.lblFive_9.Text = "Leave";
     this.lblFive_9.Click += new System.EventHandler(this.lblFive_9_Click);
     //
     // lblFive_10
     //
     this.lblFive_10.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.lblFive_10.Appearance.ForeColor = System.Drawing.Color.MediumBlue;
     this.lblFive_10.Appearance.Options.UseFont = true;
     this.lblFive_10.Appearance.Options.UseForeColor = true;
     this.lblFive_10.Location = new System.Drawing.Point(800, 0);
     this.lblFive_10.Name = "lblFive_10";
     this.lblFive_10.Size = new System.Drawing.Size(80, 23);
     this.lblFive_10.TabIndex = 153;
     this.lblFive_10.Text = "Member";
     this.lblFive_10.Click += new System.EventHandler(this.lblFive_10_Click);
     //
     // lblFive_4
     //
     this.lblFive_4.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.lblFive_4.Appearance.ForeColor = System.Drawing.Color.MediumBlue;
     this.lblFive_4.Appearance.Options.UseFont = true;
     this.lblFive_4.Appearance.Options.UseForeColor = true;
     this.lblFive_4.Location = new System.Drawing.Point(272, 0);
     this.lblFive_4.Name = "lblFive_4";
     this.lblFive_4.Size = new System.Drawing.Size(80, 23);
     this.lblFive_4.TabIndex = 147;
     this.lblFive_4.Text = "Promotion";
     this.lblFive_4.Click += new System.EventHandler(this.lblFive_4_Click);
     //
     // lblFive_2
     //
     this.lblFive_2.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.lblFive_2.Appearance.ForeColor = System.Drawing.Color.MediumBlue;
     this.lblFive_2.Appearance.Options.UseFont = true;
     this.lblFive_2.Appearance.Options.UseForeColor = true;
     this.lblFive_2.Location = new System.Drawing.Point(96, 0);
     this.lblFive_2.Name = "lblFive_2";
     this.lblFive_2.Size = new System.Drawing.Size(80, 23);
     this.lblFive_2.TabIndex = 145;
     this.lblFive_2.Text = "Attendance";
     this.lblFive_2.Click += new System.EventHandler(this.lblFive_2_Click);
     //
     // lblFive_8
     //
     this.lblFive_8.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.lblFive_8.Appearance.ForeColor = System.Drawing.Color.MediumBlue;
     this.lblFive_8.Appearance.Options.UseFont = true;
     this.lblFive_8.Appearance.Options.UseForeColor = true;
     this.lblFive_8.Location = new System.Drawing.Point(624, 0);
     this.lblFive_8.Name = "lblFive_8";
     this.lblFive_8.Size = new System.Drawing.Size(80, 23);
     this.lblFive_8.TabIndex = 151;
     this.lblFive_8.Text = "Stock";
     this.lblFive_8.Click += new System.EventHandler(this.lblFive_8_Click);
     //
     // lblFive_7
     //
     this.lblFive_7.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.lblFive_7.Appearance.ForeColor = System.Drawing.Color.MediumBlue;
     this.lblFive_7.Appearance.Options.UseFont = true;
     this.lblFive_7.Appearance.Options.UseForeColor = true;
     this.lblFive_7.Location = new System.Drawing.Point(536, 0);
     this.lblFive_7.Name = "lblFive_7";
     this.lblFive_7.Size = new System.Drawing.Size(80, 23);
     this.lblFive_7.TabIndex = 150;
     this.lblFive_7.Text = "Voice";
     this.lblFive_7.Click += new System.EventHandler(this.lblFive_7_Click);
     //
     // lblFive_3
     //
     this.lblFive_3.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.lblFive_3.Appearance.ForeColor = System.Drawing.Color.MediumBlue;
     this.lblFive_3.Appearance.Options.UseFont = true;
     this.lblFive_3.Appearance.Options.UseForeColor = true;
     this.lblFive_3.Location = new System.Drawing.Point(184, 0);
     this.lblFive_3.Name = "lblFive_3";
     this.lblFive_3.Size = new System.Drawing.Size(80, 23);
     this.lblFive_3.TabIndex = 146;
     this.lblFive_3.Text = "Operation";
     this.lblFive_3.Click += new System.EventHandler(this.lblFive_3_Click);
     //
     // lblFive_6
     //
     this.lblFive_6.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.lblFive_6.Appearance.ForeColor = System.Drawing.Color.MediumBlue;
     this.lblFive_6.Appearance.Options.UseFont = true;
     this.lblFive_6.Appearance.Options.UseForeColor = true;
     this.lblFive_6.Location = new System.Drawing.Point(448, 0);
     this.lblFive_6.Name = "lblFive_6";
     this.lblFive_6.Size = new System.Drawing.Size(80, 23);
     this.lblFive_6.TabIndex = 149;
     this.lblFive_6.Text = "Staff";
     this.lblFive_6.Click += new System.EventHandler(this.lblFive_6_Click);
     //
     // lblFive_1
     //
     this.lblFive_1.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.lblFive_1.Appearance.ForeColor = System.Drawing.Color.MediumBlue;
     this.lblFive_1.Appearance.Options.UseFont = true;
     this.lblFive_1.Appearance.Options.UseForeColor = true;
     this.lblFive_1.Location = new System.Drawing.Point(8, 0);
     this.lblFive_1.Name = "lblFive_1";
     this.lblFive_1.Size = new System.Drawing.Size(80, 23);
     this.lblFive_1.TabIndex = 144;
     this.lblFive_1.Text = "Sales";
     this.lblFive_1.Click += new System.EventHandler(this.lblFive_1_Click);
     //
     // lblFive_5
     //
     this.lblFive_5.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.lblFive_5.Appearance.ForeColor = System.Drawing.Color.MediumBlue;
     this.lblFive_5.Appearance.Options.UseFont = true;
     this.lblFive_5.Appearance.Options.UseForeColor = true;
     this.lblFive_5.Location = new System.Drawing.Point(360, 0);
     this.lblFive_5.Name = "lblFive_5";
     this.lblFive_5.Size = new System.Drawing.Size(80, 23);
     this.lblFive_5.TabIndex = 148;
     this.lblFive_5.Text = "Account";
     this.lblFive_5.Click += new System.EventHandler(this.lblFive_5_Click);
     //
     // tabManagerSix
     //
     this.tabManagerSix.Appearance.PageClient.BackColor = System.Drawing.Color.Gray;
     this.tabManagerSix.Appearance.PageClient.Options.UseBackColor = true;
     this.tabManagerSix.Controls.Add(this.lk_MasterData);
     this.tabManagerSix.Controls.Add(this.panel1);
     this.tabManagerSix.Controls.Add(this.label1);
     this.tabManagerSix.Name = "tabManagerSix";
     this.tabManagerSix.PageVisible = false;
     this.tabManagerSix.Size = new System.Drawing.Size(1007, 637);
     this.tabManagerSix.Text = "Master Data";
     //
     // lk_MasterData
     //
     this.lk_MasterData.Location = new System.Drawing.Point(88, 7);
     this.lk_MasterData.Name = "lk_MasterData";
     this.lk_MasterData.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lk_MasterData.Properties.Appearance.Options.UseFont = true;
     this.lk_MasterData.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.Style3D;
     this.lk_MasterData.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lk_MasterData.Size = new System.Drawing.Size(160, 22);
     this.lk_MasterData.TabIndex = 52;
     this.lk_MasterData.EditValueChanged += new System.EventHandler(this.lk_MasterData_EditValueChanged);
     //
     // panel1
     //
     this.panel1.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("panel1.BackgroundImage")));
     this.panel1.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
     this.panel1.Location = new System.Drawing.Point(3, 32);
     this.panel1.Name = "panel1";
     this.panel1.Size = new System.Drawing.Size(1000, 592);
     this.toolTipController1.SetSuperTip(this.panel1, null);
     this.panel1.TabIndex = 45;
     //
     // label1
     //
     this.label1.Font = new System.Drawing.Font("Monotype Corsiva", 9F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Italic))), System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label1.ForeColor = System.Drawing.SystemColors.Desktop;
     this.label1.Location = new System.Drawing.Point(19, 7);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(61, 16);
     this.toolTipController1.SetSuperTip(this.label1, null);
     this.label1.TabIndex = 40;
     this.label1.Text = "Option >>";
     //
     // barManager1
     //
     this.barManager1.Bars.AddRange(new DevExpress.XtraBars.Bar[] {
     this.bar1});
     this.barManager1.Controller = this.barAndDockingController1;
     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.Items.AddRange(new DevExpress.XtraBars.BarItem[] {
     this.bbiManagerLoginOut,
     this.bbiManagerTimeCard,
     this.barButtonItem1,
     this.barstaticCurrentLogin});
     this.barManager1.MainMenu = this.bar1;
     this.barManager1.MaxItemId = 5;
     //
     // bar1
     //
     this.bar1.Appearance.BackColor = System.Drawing.SystemColors.Control;
     this.bar1.Appearance.Options.UseBackColor = true;
     this.bar1.BarName = "Custom 1";
     this.bar1.DockCol = 0;
     this.bar1.DockRow = 0;
     this.bar1.DockStyle = DevExpress.XtraBars.BarDockStyle.Top;
     this.bar1.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
     new DevExpress.XtraBars.LinkPersistInfo(DevExpress.XtraBars.BarLinkUserDefines.PaintStyle, this.bbiManagerLoginOut, DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph),
     new DevExpress.XtraBars.LinkPersistInfo(DevExpress.XtraBars.BarLinkUserDefines.PaintStyle, this.barButtonItem1, DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph),
     new DevExpress.XtraBars.LinkPersistInfo(DevExpress.XtraBars.BarLinkUserDefines.PaintStyle, this.barstaticCurrentLogin, "", true, true, true, 0, null, DevExpress.XtraBars.BarItemPaintStyle.Caption)});
     this.bar1.OptionsBar.AllowQuickCustomization = false;
     this.bar1.OptionsBar.DrawDragBorder = false;
     this.bar1.OptionsBar.UseWholeRow = true;
     this.bar1.Text = "Custom 1";
     //
     // bbiManagerLoginOut
     //
     this.bbiManagerLoginOut.Caption = "Close";
     this.bbiManagerLoginOut.Glyph = ((System.Drawing.Image)(resources.GetObject("bbiManagerLoginOut.Glyph")));
     this.bbiManagerLoginOut.Id = 0;
     this.bbiManagerLoginOut.Name = "bbiManagerLoginOut";
     this.bbiManagerLoginOut.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.bbiManagerLoginOut_ItemClick);
     //
     // barButtonItem1
     //
     this.barButtonItem1.Caption = "Time Card";
     this.barButtonItem1.Glyph = ((System.Drawing.Image)(resources.GetObject("barButtonItem1.Glyph")));
     this.barButtonItem1.Id = 3;
     this.barButtonItem1.Name = "barButtonItem1";
     this.barButtonItem1.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barbtnTimeCard_ItemClick);
     //
     // barstaticCurrentLogin
     //
     this.barstaticCurrentLogin.Caption = "Current Login: {0}, {1}";
     this.barstaticCurrentLogin.Id = 4;
     this.barstaticCurrentLogin.Name = "barstaticCurrentLogin";
     this.barstaticCurrentLogin.OwnFont = new System.Drawing.Font("Tahoma", 11F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.World);
     this.barstaticCurrentLogin.UseOwnFont = true;
     //
     // barAndDockingController1
     //
     this.barAndDockingController1.AppearancesBar.ItemsFont = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.barAndDockingController1.PaintStyleName = "WindowsXP";
     //
     // barDockControlTop
     //
     this.toolTipController1.SetSuperTip(this.barDockControlTop, null);
     //
     // barDockControlBottom
     //
     this.toolTipController1.SetSuperTip(this.barDockControlBottom, null);
     //
     // barDockControlLeft
     //
     this.toolTipController1.SetSuperTip(this.barDockControlLeft, null);
     //
     // barDockControlRight
     //
     this.toolTipController1.SetSuperTip(this.barDockControlRight, null);
     //
     // bbiManagerTimeCard
     //
     this.bbiManagerTimeCard.Caption = "Time Card";
     this.bbiManagerTimeCard.Id = 2;
     this.bbiManagerTimeCard.Name = "bbiManagerTimeCard";
     this.bbiManagerTimeCard.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.bbiManagerTimeCard_ItemClick);
     //
     // printDocument1
     //
     this.printDocument1.PrintPage += new System.Drawing.Printing.PrintPageEventHandler(this.printDocument1_PrintPage);
     //
     // gridColumnPGE3
     //
     this.gridColumnPGE3.Caption = "Quantity";
     this.gridColumnPGE3.FieldName = "nQuantity";
     this.gridColumnPGE3.Name = "gridColumnPGE3";
     this.gridColumnPGE3.Visible = true;
     this.gridColumnPGE3.VisibleIndex = 2;
     //
     // gridColumnPGE2
     //
     this.gridColumnPGE2.Caption = "Package Code";
     this.gridColumnPGE2.FieldName = "strPackageCode";
     this.gridColumnPGE2.Name = "gridColumnPGE2";
     this.gridColumnPGE2.Visible = true;
     this.gridColumnPGE2.VisibleIndex = 1;
     //
     // gridColumnPGE1
     //
     this.gridColumnPGE1.Caption = "Package Group Code";
     this.gridColumnPGE1.FieldName = "strPackageGroupCode";
     this.gridColumnPGE1.Name = "gridColumnPGE1";
     this.gridColumnPGE1.Visible = true;
     this.gridColumnPGE1.VisibleIndex = 0;
     //
     // mdPGE_txtNQuantity
     //
     this.mdPGE_txtNQuantity.EditValue = "";
     this.mdPGE_txtNQuantity.Location = new System.Drawing.Point(32, 152);
     this.mdPGE_txtNQuantity.Name = "mdPGE_txtNQuantity";
     this.mdPGE_txtNQuantity.Properties.Mask.EditMask = "######0";
     this.mdPGE_txtNQuantity.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.Numeric;
     this.mdPGE_txtNQuantity.Size = new System.Drawing.Size(144, 20);
     this.mdPGE_txtNQuantity.TabIndex = 122;
     //
     // mdPGE_txtStrPackageCode
     //
     this.mdPGE_txtStrPackageCode.EditValue = "imageComboBoxEdit2";
     this.mdPGE_txtStrPackageCode.Location = new System.Drawing.Point(32, 96);
     this.mdPGE_txtStrPackageCode.Name = "mdPGE_txtStrPackageCode";
     this.mdPGE_txtStrPackageCode.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.mdPGE_txtStrPackageCode.Size = new System.Drawing.Size(144, 20);
     this.mdPGE_txtStrPackageCode.TabIndex = 121;
     //
     // mdPGE_cdStrPackageGroupCode
     //
     this.mdPGE_cdStrPackageGroupCode.EditValue = "imageComboBoxEdit1";
     this.mdPGE_cdStrPackageGroupCode.Location = new System.Drawing.Point(32, 48);
     this.mdPGE_cdStrPackageGroupCode.Name = "mdPGE_cdStrPackageGroupCode";
     this.mdPGE_cdStrPackageGroupCode.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.mdPGE_cdStrPackageGroupCode.Size = new System.Drawing.Size(144, 20);
     this.mdPGE_cdStrPackageGroupCode.TabIndex = 120;
     //
     // mdPGE_lblNQuantity
     //
     this.mdPGE_lblNQuantity.BackColor = System.Drawing.Color.Transparent;
     this.mdPGE_lblNQuantity.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.mdPGE_lblNQuantity.ForeColor = System.Drawing.Color.Black;
     this.mdPGE_lblNQuantity.Location = new System.Drawing.Point(32, 136);
     this.mdPGE_lblNQuantity.Name = "mdPGE_lblNQuantity";
     this.mdPGE_lblNQuantity.Size = new System.Drawing.Size(120, 16);
     this.toolTipController1.SetSuperTip(this.mdPGE_lblNQuantity, null);
     this.mdPGE_lblNQuantity.TabIndex = 119;
     this.mdPGE_lblNQuantity.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // mdPGE_lblStrPackageCode
     //
     this.mdPGE_lblStrPackageCode.BackColor = System.Drawing.Color.Transparent;
     this.mdPGE_lblStrPackageCode.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.mdPGE_lblStrPackageCode.ForeColor = System.Drawing.Color.Black;
     this.mdPGE_lblStrPackageCode.Location = new System.Drawing.Point(32, 80);
     this.mdPGE_lblStrPackageCode.Name = "mdPGE_lblStrPackageCode";
     this.mdPGE_lblStrPackageCode.Size = new System.Drawing.Size(120, 16);
     this.toolTipController1.SetSuperTip(this.mdPGE_lblStrPackageCode, null);
     this.mdPGE_lblStrPackageCode.TabIndex = 118;
     this.mdPGE_lblStrPackageCode.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // mdPGE_lblStrPackageGroupCode
     //
     this.mdPGE_lblStrPackageGroupCode.BackColor = System.Drawing.Color.Transparent;
     this.mdPGE_lblStrPackageGroupCode.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.mdPGE_lblStrPackageGroupCode.ForeColor = System.Drawing.Color.Black;
     this.mdPGE_lblStrPackageGroupCode.Location = new System.Drawing.Point(32, 32);
     this.mdPGE_lblStrPackageGroupCode.Name = "mdPGE_lblStrPackageGroupCode";
     this.mdPGE_lblStrPackageGroupCode.Size = new System.Drawing.Size(120, 16);
     this.toolTipController1.SetSuperTip(this.mdPGE_lblStrPackageGroupCode, null);
     this.mdPGE_lblStrPackageGroupCode.TabIndex = 117;
     this.mdPGE_lblStrPackageGroupCode.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // label5
     //
     this.label5.Font = new System.Drawing.Font("Georgia", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label5.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(153)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
     this.label5.Location = new System.Drawing.Point(888, 8);
     this.label5.Name = "label5";
     this.label5.Size = new System.Drawing.Size(120, 24);
     this.toolTipController1.SetSuperTip(this.label5, null);
     this.label5.TabIndex = 25;
     this.label5.Text = "HeadStart";
     //
     // frmManager
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.ClientSize = new System.Drawing.Size(1012, 691);
     this.Controls.Add(this.label5);
     this.Controls.Add(this.tabControlManager);
     this.Controls.Add(this.barDockControlLeft);
     this.Controls.Add(this.barDockControlRight);
     this.Controls.Add(this.barDockControlBottom);
     this.Controls.Add(this.barDockControlTop);
     this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.Menu = this.MainMenu1;
     this.Name = "frmManager";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.toolTipController1.SetSuperTip(this, null);
     this.Text = "ACMS Manager";
     this.WindowState = System.Windows.Forms.FormWindowState.Maximized;
     this.Load += new System.EventHandler(this.frmManager_Load);
     ((System.ComponentModel.ISupportInitialize)(this.tabControlManager)).EndInit();
     this.tabControlManager.ResumeLayout(false);
     this.tabManagerOne.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.groupIPPMaster)).EndInit();
     this.groupIPPMaster.ResumeLayout(false);
     this.groupIPPMaster.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.groupIPP)).EndInit();
     this.groupIPP.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.ComboBoxIPP.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.grpIPP2)).EndInit();
     this.grpIPP2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.lkBranch.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lkBank.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.IPPdtTo.Properties.VistaTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.IPPdtTo.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.IPPdtStart.Properties.VistaTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.IPPdtStart.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtCreditCardScr.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.IPPGrid)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.IPPGridView)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.GroupIPPDetails)).EndInit();
     this.GroupIPPDetails.ResumeLayout(false);
     this.GroupIPPDetails.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.strReferenceNo.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.IPPBankCode.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.IPPNMonths.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.IPPCCNo.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.IPPStatus.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.IPPDateRcv.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.IPPDateSent.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.IPPBranchCode.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.IPPCreatedDate.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.IPPMerchantNo.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.IPPAmount.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.IPPInterest.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.IPPNettAmount.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.IPPMemberId.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.IPPMemberName.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.IPPId.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupIPPReceipt)).EndInit();
     this.groupIPPReceipt.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gridReceipt)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.IPPReceiptView)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.IPPReceiptStatus.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupGIROMaster)).EndInit();
     this.groupGIROMaster.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.xtraTabControl1)).EndInit();
     this.xtraTabControl1.ResumeLayout(false);
     this.tabGiroDetails.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.luedtBankBranch.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.luedtBank.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.luedtPackage.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.luedtBranch.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtPackageDesc.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtAccountNo.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtGIROId.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtRemark.Properties)).EndInit();
     this.tabGiroTrnsHistory.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.GridTransaction)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView4)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.GroupGiro)).EndInit();
     this.GroupGiro.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.comboBoxGiroStatus.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.GiroGrid)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.GIROGridView)).EndInit();
     this.tabManagerTwo.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.GrpPayroll)).EndInit();
     this.GrpPayroll.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.progressBarControl1.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cbJob.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.grpGridExcel)).EndInit();
     this.grpGridExcel.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gridExcel)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewExcel)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.comboBoxEditMTH.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.comboBoxEditYR.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbxPayroll.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridPayroll)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewPayroll)).EndInit();
     this.tabManagerThree.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.grpClassSchedule)).EndInit();
     this.grpClassSchedule.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.comboBoxBranch.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupMemCard)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.grpRoadShow)).EndInit();
     this.tabManagerFour.ResumeLayout(false);
     this.tabManagerFive.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.ReportPanel)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lk_ReportView.Properties)).EndInit();
     this.tabManagerSix.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.lk_MasterData.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.printingSystem1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.barManager1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.barAndDockingController1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.mdPGE_txtNQuantity.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.mdPGE_txtStrPackageCode.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.mdPGE_cdStrPackageGroupCode.Properties)).EndInit();
     this.ResumeLayout(false);
 }
Пример #11
0
		/// <summary> 
		/// Required method for Designer support - do not modify 
		/// the contents of this method with the code editor.
		/// </summary>
		private void InitializeComponent()
		{
			this.components = new System.ComponentModel.Container();
			this.advBandedGridView1 = new DevExpress.XtraGrid.Views.BandedGrid.AdvBandedGridView();
			this.gridBand1 = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
			this.gridControl_TeaDutyAsign = new DevExpress.XtraGrid.GridControl();
			this.gridView1 = new DevExpress.XtraGrid.Views.Grid.GridView();
			this.gridColumn2 = new DevExpress.XtraGrid.Columns.GridColumn();
			this.gridColumn3 = new DevExpress.XtraGrid.Columns.GridColumn();
			this.gridColumn11 = new DevExpress.XtraGrid.Columns.GridColumn();
			this.gridColumn12 = new DevExpress.XtraGrid.Columns.GridColumn();
			this.gridColumn4 = new DevExpress.XtraGrid.Columns.GridColumn();
			this.repositoryItemPopupContainerEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemPopupContainerEdit();
			this.popupContainerControl1 = new DevExpress.XtraEditors.PopupContainerControl();
			this.checkedListBoxControl1 = new DevExpress.XtraEditors.CheckedListBoxControl();
			this.toolTipController1 = new DevExpress.Utils.ToolTipController(this.components);
			this.gridColumn5 = new DevExpress.XtraGrid.Columns.GridColumn();
			this.repositoryItemPopupContainerEdit2 = new DevExpress.XtraEditors.Repository.RepositoryItemPopupContainerEdit();
			this.popupContainerControl2 = new DevExpress.XtraEditors.PopupContainerControl();
			this.checkedListBoxControl2 = new DevExpress.XtraEditors.CheckedListBoxControl();
			this.gridColumn6 = new DevExpress.XtraGrid.Columns.GridColumn();
			this.repositoryItemPopupContainerEdit3 = new DevExpress.XtraEditors.Repository.RepositoryItemPopupContainerEdit();
			this.popupContainerControl3 = new DevExpress.XtraEditors.PopupContainerControl();
			this.checkedListBoxControl3 = new DevExpress.XtraEditors.CheckedListBoxControl();
			this.gridColumn7 = new DevExpress.XtraGrid.Columns.GridColumn();
			this.repositoryItemPopupContainerEdit4 = new DevExpress.XtraEditors.Repository.RepositoryItemPopupContainerEdit();
			this.popupContainerControl4 = new DevExpress.XtraEditors.PopupContainerControl();
			this.checkedListBoxControl4 = new DevExpress.XtraEditors.CheckedListBoxControl();
			this.gridColumn8 = new DevExpress.XtraGrid.Columns.GridColumn();
			this.repositoryItemPopupContainerEdit5 = new DevExpress.XtraEditors.Repository.RepositoryItemPopupContainerEdit();
			this.popupContainerControl5 = new DevExpress.XtraEditors.PopupContainerControl();
			this.checkedListBoxControl5 = new DevExpress.XtraEditors.CheckedListBoxControl();
			this.gridColumn9 = new DevExpress.XtraGrid.Columns.GridColumn();
			this.repositoryItemPopupContainerEdit6 = new DevExpress.XtraEditors.Repository.RepositoryItemPopupContainerEdit();
			this.popupContainerControl6 = new DevExpress.XtraEditors.PopupContainerControl();
			this.checkedListBoxControl6 = new DevExpress.XtraEditors.CheckedListBoxControl();
			this.gridColumn10 = new DevExpress.XtraGrid.Columns.GridColumn();
			this.repositoryItemPopupContainerEdit7 = new DevExpress.XtraEditors.Repository.RepositoryItemPopupContainerEdit();
			this.popupContainerControl7 = new DevExpress.XtraEditors.PopupContainerControl();
			this.checkedListBoxControl7 = new DevExpress.XtraEditors.CheckedListBoxControl();
			this.gridColumn1 = new DevExpress.XtraGrid.Columns.GridColumn();
			this.repositoryItemLookUpEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
			this.xtraTabControl_TeaDutyDetailInfo = new DevExpress.XtraTab.XtraTabControl();
			this.xtraTabPage_TeaDutyDetails = new DevExpress.XtraTab.XtraTabPage();
			this.groupControl_TeaDutyAsign = new DevExpress.XtraEditors.GroupControl();
			this.simpleButton_SaveDutyAsign = new DevExpress.XtraEditors.SimpleButton();
			this.notePanel2 = new DevExpress.Utils.Frames.NotePanel();
			this.groupControl_TeaDutyDetailsMgmt = new DevExpress.XtraEditors.GroupControl();
			this.splitContainerControl_DutyMgmt = new DevExpress.XtraEditors.SplitContainerControl();
			this.textEdit_DutyStartTime = new DevExpress.XtraEditors.TextEdit();
			this.dataNavigator_DutyDetails = new DevExpress.XtraEditors.DataNavigator();
			this.notePanel_DutyDetailsTitle = new DevExpress.Utils.Frames.NotePanel();
			this.pnlHint_DutyName = new DevExpress.Utils.Frames.NotePanel();
			this.label_ReqOfDutyName = new System.Windows.Forms.Label();
			this.textEdit_AddDutyName = new DevExpress.XtraEditors.TextEdit();
			this.notePanel_DutyStartTime = new DevExpress.Utils.Frames.NotePanel();
			this.label_ReqOfDutyEndTime = new System.Windows.Forms.Label();
			this.notePanel_DutyRemark = new DevExpress.Utils.Frames.NotePanel();
			this.textEdit_AddDutyRemark = new DevExpress.XtraEditors.TextEdit();
			this.notePanel_DutyEndTime = new DevExpress.Utils.Frames.NotePanel();
			this.label_ReqOfDutyStartTime = new System.Windows.Forms.Label();
			this.textEdit_DutyEndTime = new DevExpress.XtraEditors.TextEdit();
			this.simpleButton_TeaDutySave = new DevExpress.XtraEditors.SimpleButton();
			this.simpleButton_LoadCurDuty = new DevExpress.XtraEditors.SimpleButton();
			this.simpleButton_LoadHisDuty = new DevExpress.XtraEditors.SimpleButton();
			this.dateEdit_DutyHistory = new DevExpress.XtraEditors.DateEdit();
			this.notePanel_DutyHistory = new DevExpress.Utils.Frames.NotePanel();
			this.comboBoxEdit_DutySearTeaClass = new DevExpress.XtraEditors.ComboBoxEdit();
			this.comboBoxEdit_DutySearTeaGarde = new DevExpress.XtraEditors.ComboBoxEdit();
			this.textEdit_DutySearTeaID = new DevExpress.XtraEditors.TextEdit();
			this.notePanel_AsignDutyByTeaID = new DevExpress.Utils.Frames.NotePanel();
			this.notePanel_TeaDutyAsignSearTitle = new DevExpress.Utils.Frames.NotePanel();
			this.notePannotePanel_AsignDutyByTeaGrade = new DevExpress.Utils.Frames.NotePanel();
			this.notePannotePanel_AsignDutyByTeaName = new DevExpress.Utils.Frames.NotePanel();
			this.notePannotePanel_AsignDutyByTeaClass = new DevExpress.Utils.Frames.NotePanel();
			this.textEdit_DutySearTeaName = new DevExpress.XtraEditors.TextEdit();
			this.simpleButton_TeaSearForDuty = new DevExpress.XtraEditors.SimpleButton();
			this.xtraTabPage_TeaOnDutyInfo = new DevExpress.XtraTab.XtraTabPage();
			this.groupControl_TeaDutyDetailsStatistic = new DevExpress.XtraEditors.GroupControl();
			this.textEdit_TeaOut = new DevExpress.XtraEditors.TextEdit();
			this.textEdit_TeaShouldAttend = new DevExpress.XtraEditors.TextEdit();
			this.textEdit_TeaAttend = new DevExpress.XtraEditors.TextEdit();
			this.textEdit_TeaAbsence = new DevExpress.XtraEditors.TextEdit();
			this.textEdit_TeaOffTime = new DevExpress.XtraEditors.TextEdit();
			this.textEdit_TeaOnTime = new DevExpress.XtraEditors.TextEdit();
			this.notePanel_TeaOut = new DevExpress.Utils.Frames.NotePanel();
			this.notePanel_TeaShouldAttend = new DevExpress.Utils.Frames.NotePanel();
			this.notePanel_TeaOnTime = new DevExpress.Utils.Frames.NotePanel();
			this.notePanel_TeaOffTime = new DevExpress.Utils.Frames.NotePanel();
			this.notePanel_TeaAttend = new DevExpress.Utils.Frames.NotePanel();
			this.notePanel_TeaAbsence = new DevExpress.Utils.Frames.NotePanel();
			this.groupControl_TeaDutyDetailsSearch = new DevExpress.XtraEditors.GroupControl();
			this.simpleButton4 = new DevExpress.XtraEditors.SimpleButton();
			this.comboBoxEdit_TeaDutyDetailsFlowType = new DevExpress.XtraEditors.ComboBoxEdit();
			this.notePanel_TeaDutyDetailsFlowType = new DevExpress.Utils.Frames.NotePanel();
			this.comboBoxEdit_TeaDutyDetailsSerType = new DevExpress.XtraEditors.ComboBoxEdit();
			this.notePanel_TeaDutyDetailsSerType = new DevExpress.Utils.Frames.NotePanel();
			this.simpleButton_SearTeaDutyDetails = new DevExpress.XtraEditors.SimpleButton();
			this.dateEdit_TeaDutyDetailsSearByStartTime = new DevExpress.XtraEditors.DateEdit();
			this.comboBoxEdit_TeaDutyDetailsSearByGrade = new DevExpress.XtraEditors.ComboBoxEdit();
			this.textEdit_TeaDutyDetailsSearByID = new DevExpress.XtraEditors.TextEdit();
			this.notePanel_TeaDutyDetailsSearByID = new DevExpress.Utils.Frames.NotePanel();
			this.notePanel_TeaDutyDetailSearByName = new DevExpress.Utils.Frames.NotePanel();
			this.notePanel_TeaDutyDetailsSearByGrade = new DevExpress.Utils.Frames.NotePanel();
			this.notePanel_TeaDutyDetailsSearByClass = new DevExpress.Utils.Frames.NotePanel();
			this.notePanel_TeaDutyDetailsSearByStartTime = new DevExpress.Utils.Frames.NotePanel();
			this.notePanel_TeaDutyDetailsSearByEndTime = new DevExpress.Utils.Frames.NotePanel();
			this.textEdit_TeaDutyDetailsSearByName = new DevExpress.XtraEditors.TextEdit();
			this.comboBoxEdit_TeaDutyDetailsSearByClass = new DevExpress.XtraEditors.ComboBoxEdit();
			this.dateEdit_TeaDutyDetailsSearByEndTime = new DevExpress.XtraEditors.DateEdit();
			this.simpleButton1 = new DevExpress.XtraEditors.SimpleButton();
			this.simpleButton3 = new DevExpress.XtraEditors.SimpleButton();
			this.groupControl_TeaDutyDetails = new DevExpress.XtraEditors.GroupControl();
			this.gridControl_TeaDutySummary = new DevExpress.XtraGrid.GridControl();
			this.advBandedGridView4 = new DevExpress.XtraGrid.Views.BandedGrid.AdvBandedGridView();
			this.gridBand4 = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
			this.bandedGridColumn8 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
			this.bandedGridColumn10 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
			this.bandedGridColumn12 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
			this.bandedGridColumn14 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
			this.bandedGridColumn9 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
			this.bandedGridColumn11 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
			this.bandedGridColumn13 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
			this.bandedGridColumn15 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
			this.gridView3 = new DevExpress.XtraGrid.Views.Grid.GridView();
			this.gridControl_TeaDutyNormal = new DevExpress.XtraGrid.GridControl();
			this.advBandedGridView3 = new DevExpress.XtraGrid.Views.BandedGrid.AdvBandedGridView();
			this.gridBand3 = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
			this.bandedGridColumn1 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
			this.bandedGridColumn2 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
			this.bandedGridColumn3 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
			this.bandedGridColumn4 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
			this.bandedGridColumn5 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
			this.bandedGridColumn6 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
			this.bandedGridColumn7 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
			this.popupContainerControl_Remarks = new DevExpress.XtraEditors.PopupContainerControl();
			this.memoEdit_Remarks = new DevExpress.XtraEditors.MemoEdit();
			this.gridControl_TeaDutyDetails = new DevExpress.XtraGrid.GridControl();
			this.advBandedGridView2 = new DevExpress.XtraGrid.Views.BandedGrid.AdvBandedGridView();
			this.gridBand2 = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
			this.gridColumn13 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
			this.gridColumn14 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
			this.gridColumn15 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
			this.gridColumn16 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
			this.gridColumn17 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
			this.gridColumn18 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
			this.gridColumn19 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
			this.gridColumn20 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
			this.gridColumn21 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
			this.gridColumn22 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
			this.gridColumn23 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
			this.gridColumn24 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
			this.gridColumn25 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
			this.repositoryItemPopupContainerEdit8 = new DevExpress.XtraEditors.Repository.RepositoryItemPopupContainerEdit();
			this.gridColumn34 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
			this.gridColumn35 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
			this.repositoryItemMemoEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemMemoEdit();
			this.gridView2 = new DevExpress.XtraGrid.Views.Grid.GridView();
			this.groupControl_TeaDutyOutDetails = new DevExpress.XtraEditors.GroupControl();
			this.gridControl_TeaOutDetails = new DevExpress.XtraGrid.GridControl();
			this.gridView4 = new DevExpress.XtraGrid.Views.Grid.GridView();
			this.gridColumn26 = new DevExpress.XtraGrid.Columns.GridColumn();
			this.gridColumn27 = new DevExpress.XtraGrid.Columns.GridColumn();
			this.gridColumn28 = new DevExpress.XtraGrid.Columns.GridColumn();
			this.gridColumn29 = new DevExpress.XtraGrid.Columns.GridColumn();
			this.gridColumn30 = new DevExpress.XtraGrid.Columns.GridColumn();
			this.gridColumn31 = new DevExpress.XtraGrid.Columns.GridColumn();
			this.gridColumn32 = new DevExpress.XtraGrid.Columns.GridColumn();
			this.gridColumn33 = new DevExpress.XtraGrid.Columns.GridColumn();
			this.xtraTabPage_TeaOnDutyReports = new DevExpress.XtraTab.XtraTabPage();
			this.groupControl_Graph = new DevExpress.XtraEditors.GroupControl();
			this.groupControl_TeaDutyReportsSear = new DevExpress.XtraEditors.GroupControl();
			this.comboBoxEdit_Graphic_TeaDept = new DevExpress.XtraEditors.ComboBoxEdit();
			this.textEdit_Graphic_TeaID = new DevExpress.XtraEditors.TextEdit();
			this.notePanel_Graphic_TeaID = new DevExpress.Utils.Frames.NotePanel();
			this.notePanel_Graphic_TeaName = new DevExpress.Utils.Frames.NotePanel();
			this.notePanel_Graphic_TeaDept = new DevExpress.Utils.Frames.NotePanel();
			this.notePanel_Graphic_TeaDuty = new DevExpress.Utils.Frames.NotePanel();
			this.textEdit_Graphic_TeaName = new DevExpress.XtraEditors.TextEdit();
			this.comboBoxEdit_Graphic_TeaDuty = new DevExpress.XtraEditors.ComboBoxEdit();
			this.dateEdit1 = new DevExpress.XtraEditors.DateEdit();
			this.notePanel6 = new DevExpress.Utils.Frames.NotePanel();
			this.notePanel7 = new DevExpress.Utils.Frames.NotePanel();
			this.dateEdit2 = new DevExpress.XtraEditors.DateEdit();
			this.simpleButton_ReportAnalysis = new DevExpress.XtraEditors.SimpleButton();
			this.simpleButton2 = new DevExpress.XtraEditors.SimpleButton();
			this.saveFileDialog_Report = new System.Windows.Forms.SaveFileDialog();
			this.helpProvider_DutyInfo = new System.Windows.Forms.HelpProvider();
			((System.ComponentModel.ISupportInitialize)(this.advBandedGridView1)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.gridControl_TeaDutyAsign)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.gridView1)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.repositoryItemPopupContainerEdit1)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.popupContainerControl1)).BeginInit();
			this.popupContainerControl1.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.checkedListBoxControl1)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.repositoryItemPopupContainerEdit2)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.popupContainerControl2)).BeginInit();
			this.popupContainerControl2.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.checkedListBoxControl2)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.repositoryItemPopupContainerEdit3)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.popupContainerControl3)).BeginInit();
			this.popupContainerControl3.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.checkedListBoxControl3)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.repositoryItemPopupContainerEdit4)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.popupContainerControl4)).BeginInit();
			this.popupContainerControl4.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.checkedListBoxControl4)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.repositoryItemPopupContainerEdit5)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.popupContainerControl5)).BeginInit();
			this.popupContainerControl5.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.checkedListBoxControl5)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.repositoryItemPopupContainerEdit6)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.popupContainerControl6)).BeginInit();
			this.popupContainerControl6.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.checkedListBoxControl6)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.repositoryItemPopupContainerEdit7)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.popupContainerControl7)).BeginInit();
			this.popupContainerControl7.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.checkedListBoxControl7)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.repositoryItemLookUpEdit1)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.xtraTabControl_TeaDutyDetailInfo)).BeginInit();
			this.xtraTabControl_TeaDutyDetailInfo.SuspendLayout();
			this.xtraTabPage_TeaDutyDetails.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.groupControl_TeaDutyAsign)).BeginInit();
			this.groupControl_TeaDutyAsign.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.groupControl_TeaDutyDetailsMgmt)).BeginInit();
			this.groupControl_TeaDutyDetailsMgmt.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.splitContainerControl_DutyMgmt)).BeginInit();
			this.splitContainerControl_DutyMgmt.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_DutyStartTime.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_AddDutyName.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_AddDutyRemark.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_DutyEndTime.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.dateEdit_DutyHistory.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_DutySearTeaClass.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_DutySearTeaGarde.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_DutySearTeaID.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_DutySearTeaName.Properties)).BeginInit();
			this.xtraTabPage_TeaOnDutyInfo.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.groupControl_TeaDutyDetailsStatistic)).BeginInit();
			this.groupControl_TeaDutyDetailsStatistic.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_TeaOut.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_TeaShouldAttend.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_TeaAttend.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_TeaAbsence.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_TeaOffTime.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_TeaOnTime.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.groupControl_TeaDutyDetailsSearch)).BeginInit();
			this.groupControl_TeaDutyDetailsSearch.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_TeaDutyDetailsFlowType.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_TeaDutyDetailsSerType.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.dateEdit_TeaDutyDetailsSearByStartTime.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_TeaDutyDetailsSearByGrade.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_TeaDutyDetailsSearByID.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_TeaDutyDetailsSearByName.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_TeaDutyDetailsSearByClass.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.dateEdit_TeaDutyDetailsSearByEndTime.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.groupControl_TeaDutyDetails)).BeginInit();
			this.groupControl_TeaDutyDetails.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.gridControl_TeaDutySummary)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.advBandedGridView4)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.gridView3)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.gridControl_TeaDutyNormal)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.advBandedGridView3)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.popupContainerControl_Remarks)).BeginInit();
			this.popupContainerControl_Remarks.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.memoEdit_Remarks.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.gridControl_TeaDutyDetails)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.advBandedGridView2)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.repositoryItemPopupContainerEdit8)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.repositoryItemMemoEdit1)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.gridView2)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.groupControl_TeaDutyOutDetails)).BeginInit();
			this.groupControl_TeaDutyOutDetails.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.gridControl_TeaOutDetails)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.gridView4)).BeginInit();
			this.xtraTabPage_TeaOnDutyReports.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.groupControl_Graph)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.groupControl_TeaDutyReportsSear)).BeginInit();
			this.groupControl_TeaDutyReportsSear.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_Graphic_TeaDept.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_Graphic_TeaID.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_Graphic_TeaName.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_Graphic_TeaDuty.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.dateEdit1.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.dateEdit2.Properties)).BeginInit();
			this.SuspendLayout();
			// 
			// advBandedGridView1
			// 
			this.advBandedGridView1.Bands.AddRange(new DevExpress.XtraGrid.Views.BandedGrid.GridBand[] {
																										   this.gridBand1});
			this.advBandedGridView1.GridControl = this.gridControl_TeaDutyAsign;
			this.advBandedGridView1.Name = "advBandedGridView1";
			// 
			// gridBand1
			// 
			this.gridBand1.Caption = "gridBand1";
			this.gridBand1.Name = "gridBand1";
			// 
			// gridControl_TeaDutyAsign
			// 
			this.gridControl_TeaDutyAsign.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)));
			// 
			// gridControl_TeaDutyAsign.EmbeddedNavigator
			// 
			this.gridControl_TeaDutyAsign.EmbeddedNavigator.Name = "";
			this.gridControl_TeaDutyAsign.Location = new System.Drawing.Point(3, 80);
			this.gridControl_TeaDutyAsign.MainView = this.gridView1;
			this.gridControl_TeaDutyAsign.Name = "gridControl_TeaDutyAsign";
			this.gridControl_TeaDutyAsign.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
																															  this.repositoryItemLookUpEdit1,
																															  this.repositoryItemPopupContainerEdit1,
																															  this.repositoryItemPopupContainerEdit2,
																															  this.repositoryItemPopupContainerEdit3,
																															  this.repositoryItemPopupContainerEdit4,
																															  this.repositoryItemPopupContainerEdit5,
																															  this.repositoryItemPopupContainerEdit6,
																															  this.repositoryItemPopupContainerEdit7});
			this.gridControl_TeaDutyAsign.Size = new System.Drawing.Size(762, 224);
			this.gridControl_TeaDutyAsign.TabIndex = 0;
			this.gridControl_TeaDutyAsign.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
																													this.gridView1,
																													this.advBandedGridView1});
			// 
			// gridView1
			// 
			this.gridView1.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
																							 this.gridColumn2,
																							 this.gridColumn3,
																							 this.gridColumn11,
																							 this.gridColumn12,
																							 this.gridColumn4,
																							 this.gridColumn5,
																							 this.gridColumn6,
																							 this.gridColumn7,
																							 this.gridColumn8,
																							 this.gridColumn9,
																							 this.gridColumn10,
																							 this.gridColumn1});
			this.gridView1.GridControl = this.gridControl_TeaDutyAsign;
			this.gridView1.Name = "gridView1";
			this.gridView1.OptionsCustomization.AllowFilter = false;
			this.gridView1.OptionsView.ShowFilterPanel = false;
			this.gridView1.OptionsView.ShowFooter = true;
			this.gridView1.OptionsView.ShowGroupPanel = false;
			// 
			// gridColumn2
			// 
			this.gridColumn2.Caption = "工号";
			this.gridColumn2.FieldName = "T_Number";
			this.gridColumn2.Name = "gridColumn2";
			this.gridColumn2.OptionsColumn.AllowEdit = false;
			this.gridColumn2.Visible = true;
			this.gridColumn2.VisibleIndex = 0;
			this.gridColumn2.Width = 41;
			// 
			// gridColumn3
			// 
			this.gridColumn3.Caption = "教师姓名";
			this.gridColumn3.FieldName = "T_Name";
			this.gridColumn3.Name = "gridColumn3";
			this.gridColumn3.OptionsColumn.AllowEdit = false;
			this.gridColumn3.Visible = true;
			this.gridColumn3.VisibleIndex = 1;
			this.gridColumn3.Width = 59;
			// 
			// gridColumn11
			// 
			this.gridColumn11.Caption = "岗位";
			this.gridColumn11.FieldName = "T_Depart";
			this.gridColumn11.Name = "gridColumn11";
			this.gridColumn11.OptionsColumn.AllowEdit = false;
			this.gridColumn11.Visible = true;
			this.gridColumn11.VisibleIndex = 2;
			this.gridColumn11.Width = 59;
			// 
			// gridColumn12
			// 
			this.gridColumn12.Caption = "部门";
			this.gridColumn12.FieldName = "T_Duty";
			this.gridColumn12.Name = "gridColumn12";
			this.gridColumn12.OptionsColumn.AllowEdit = false;
			this.gridColumn12.Visible = true;
			this.gridColumn12.VisibleIndex = 3;
			this.gridColumn12.Width = 56;
			// 
			// gridColumn4
			// 
			this.gridColumn4.Caption = "周一班次";
			this.gridColumn4.ColumnEdit = this.repositoryItemPopupContainerEdit1;
			this.gridColumn4.FieldName = "teaonduty_monday";
			this.gridColumn4.Name = "gridColumn4";
			this.gridColumn4.Visible = true;
			this.gridColumn4.VisibleIndex = 4;
			this.gridColumn4.Width = 83;
			// 
			// repositoryItemPopupContainerEdit1
			// 
			this.repositoryItemPopupContainerEdit1.AutoHeight = false;
			this.repositoryItemPopupContainerEdit1.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
																														   new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
			this.repositoryItemPopupContainerEdit1.Name = "repositoryItemPopupContainerEdit1";
			this.repositoryItemPopupContainerEdit1.PopupControl = this.popupContainerControl1;
			this.repositoryItemPopupContainerEdit1.QueryPopUp += new System.ComponentModel.CancelEventHandler(this.repositoryItemPopupContainerEdit1_QueryPopUp);
			this.repositoryItemPopupContainerEdit1.QueryResultValue += new DevExpress.XtraEditors.Controls.QueryResultValueEventHandler(this.repositoryItemPopupContainerEdit1_QueryResultValue);
			// 
			// popupContainerControl1
			// 
			this.popupContainerControl1.Controls.Add(this.checkedListBoxControl1);
			this.popupContainerControl1.Location = new System.Drawing.Point(8, 120);
			this.popupContainerControl1.Name = "popupContainerControl1";
			this.popupContainerControl1.TabIndex = 6;
			this.popupContainerControl1.Text = "popupContainerControl1";
			// 
			// checkedListBoxControl1
			// 
			this.checkedListBoxControl1.CheckOnClick = true;
			this.checkedListBoxControl1.Dock = System.Windows.Forms.DockStyle.Fill;
			this.checkedListBoxControl1.ItemHeight = 16;
			this.checkedListBoxControl1.Location = new System.Drawing.Point(0, 0);
			this.checkedListBoxControl1.Name = "checkedListBoxControl1";
			this.checkedListBoxControl1.Size = new System.Drawing.Size(200, 100);
			this.checkedListBoxControl1.TabIndex = 0;
			this.checkedListBoxControl1.ToolTipController = this.toolTipController1;
			this.checkedListBoxControl1.ToolTipIconType = DevExpress.Utils.ToolTipIconType.Error;
			this.checkedListBoxControl1.Click += new System.EventHandler(this.checkedListBoxControl1_Click);
			// 
			// gridColumn5
			// 
			this.gridColumn5.Caption = "周二班次";
			this.gridColumn5.ColumnEdit = this.repositoryItemPopupContainerEdit2;
			this.gridColumn5.FieldName = "teaonduty_tuesday";
			this.gridColumn5.Name = "gridColumn5";
			this.gridColumn5.Visible = true;
			this.gridColumn5.VisibleIndex = 5;
			this.gridColumn5.Width = 77;
			// 
			// repositoryItemPopupContainerEdit2
			// 
			this.repositoryItemPopupContainerEdit2.AutoHeight = false;
			this.repositoryItemPopupContainerEdit2.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
																														   new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
			this.repositoryItemPopupContainerEdit2.Name = "repositoryItemPopupContainerEdit2";
			this.repositoryItemPopupContainerEdit2.PopupControl = this.popupContainerControl2;
			this.repositoryItemPopupContainerEdit2.QueryPopUp += new System.ComponentModel.CancelEventHandler(this.repositoryItemPopupContainerEdit2_QueryPopUp);
			this.repositoryItemPopupContainerEdit2.QueryResultValue += new DevExpress.XtraEditors.Controls.QueryResultValueEventHandler(this.repositoryItemPopupContainerEdit2_QueryResultValue);
			// 
			// popupContainerControl2
			// 
			this.popupContainerControl2.Controls.Add(this.checkedListBoxControl2);
			this.popupContainerControl2.Location = new System.Drawing.Point(224, 24);
			this.popupContainerControl2.Name = "popupContainerControl2";
			this.popupContainerControl2.TabIndex = 7;
			this.popupContainerControl2.Text = "popupContainerControl2";
			// 
			// checkedListBoxControl2
			// 
			this.checkedListBoxControl2.CheckOnClick = true;
			this.checkedListBoxControl2.Dock = System.Windows.Forms.DockStyle.Fill;
			this.checkedListBoxControl2.ItemHeight = 16;
			this.checkedListBoxControl2.Location = new System.Drawing.Point(0, 0);
			this.checkedListBoxControl2.Name = "checkedListBoxControl2";
			this.checkedListBoxControl2.Size = new System.Drawing.Size(200, 100);
			this.checkedListBoxControl2.TabIndex = 0;
			this.checkedListBoxControl2.ToolTipController = this.toolTipController1;
			this.checkedListBoxControl2.Click += new System.EventHandler(this.checkedListBoxControl2_Click);
			// 
			// gridColumn6
			// 
			this.gridColumn6.Caption = "周三班次";
			this.gridColumn6.ColumnEdit = this.repositoryItemPopupContainerEdit3;
			this.gridColumn6.FieldName = "teaonduty_wednesday";
			this.gridColumn6.Name = "gridColumn6";
			this.gridColumn6.Visible = true;
			this.gridColumn6.VisibleIndex = 6;
			this.gridColumn6.Width = 74;
			// 
			// repositoryItemPopupContainerEdit3
			// 
			this.repositoryItemPopupContainerEdit3.AutoHeight = false;
			this.repositoryItemPopupContainerEdit3.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
																														   new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
			this.repositoryItemPopupContainerEdit3.Name = "repositoryItemPopupContainerEdit3";
			this.repositoryItemPopupContainerEdit3.PopupControl = this.popupContainerControl3;
			this.repositoryItemPopupContainerEdit3.QueryPopUp += new System.ComponentModel.CancelEventHandler(this.repositoryItemPopupContainerEdit3_QueryPopUp);
			this.repositoryItemPopupContainerEdit3.QueryResultValue += new DevExpress.XtraEditors.Controls.QueryResultValueEventHandler(this.repositoryItemPopupContainerEdit3_QueryResultValue);
			// 
			// popupContainerControl3
			// 
			this.popupContainerControl3.Controls.Add(this.checkedListBoxControl3);
			this.popupContainerControl3.Location = new System.Drawing.Point(224, 120);
			this.popupContainerControl3.Name = "popupContainerControl3";
			this.popupContainerControl3.TabIndex = 8;
			this.popupContainerControl3.Text = "popupContainerControl3";
			// 
			// checkedListBoxControl3
			// 
			this.checkedListBoxControl3.CheckOnClick = true;
			this.checkedListBoxControl3.Dock = System.Windows.Forms.DockStyle.Fill;
			this.checkedListBoxControl3.ItemHeight = 16;
			this.checkedListBoxControl3.Location = new System.Drawing.Point(0, 0);
			this.checkedListBoxControl3.Name = "checkedListBoxControl3";
			this.checkedListBoxControl3.Size = new System.Drawing.Size(200, 100);
			this.checkedListBoxControl3.TabIndex = 0;
			this.checkedListBoxControl3.ToolTipController = this.toolTipController1;
			this.checkedListBoxControl3.ToolTipIconType = DevExpress.Utils.ToolTipIconType.Exclamation;
			this.checkedListBoxControl3.Click += new System.EventHandler(this.checkedListBoxControl3_Click);
			// 
			// gridColumn7
			// 
			this.gridColumn7.Caption = "周四班次";
			this.gridColumn7.ColumnEdit = this.repositoryItemPopupContainerEdit4;
			this.gridColumn7.FieldName = "teaonduty_thursday";
			this.gridColumn7.Name = "gridColumn7";
			this.gridColumn7.Visible = true;
			this.gridColumn7.VisibleIndex = 7;
			this.gridColumn7.Width = 73;
			// 
			// repositoryItemPopupContainerEdit4
			// 
			this.repositoryItemPopupContainerEdit4.AutoHeight = false;
			this.repositoryItemPopupContainerEdit4.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
																														   new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
			this.repositoryItemPopupContainerEdit4.Name = "repositoryItemPopupContainerEdit4";
			this.repositoryItemPopupContainerEdit4.PopupControl = this.popupContainerControl4;
			this.repositoryItemPopupContainerEdit4.QueryPopUp += new System.ComponentModel.CancelEventHandler(this.repositoryItemPopupContainerEdit4_QueryPopUp);
			this.repositoryItemPopupContainerEdit4.QueryResultValue += new DevExpress.XtraEditors.Controls.QueryResultValueEventHandler(this.repositoryItemPopupContainerEdit4_QueryResultValue);
			// 
			// popupContainerControl4
			// 
			this.popupContainerControl4.Controls.Add(this.checkedListBoxControl4);
			this.popupContainerControl4.Location = new System.Drawing.Point(16, 16);
			this.popupContainerControl4.Name = "popupContainerControl4";
			this.popupContainerControl4.TabIndex = 9;
			this.popupContainerControl4.Text = "popupContainerControl4";
			// 
			// checkedListBoxControl4
			// 
			this.checkedListBoxControl4.CheckOnClick = true;
			this.checkedListBoxControl4.Dock = System.Windows.Forms.DockStyle.Fill;
			this.checkedListBoxControl4.ItemHeight = 16;
			this.checkedListBoxControl4.Location = new System.Drawing.Point(0, 0);
			this.checkedListBoxControl4.Name = "checkedListBoxControl4";
			this.checkedListBoxControl4.Size = new System.Drawing.Size(200, 100);
			this.checkedListBoxControl4.TabIndex = 0;
			this.checkedListBoxControl4.ToolTipController = this.toolTipController1;
			this.checkedListBoxControl4.ToolTipIconType = DevExpress.Utils.ToolTipIconType.Application;
			this.checkedListBoxControl4.Click += new System.EventHandler(this.checkedListBoxControl4_Click);
			// 
			// gridColumn8
			// 
			this.gridColumn8.Caption = "周五班次";
			this.gridColumn8.ColumnEdit = this.repositoryItemPopupContainerEdit5;
			this.gridColumn8.FieldName = "teaonduty_friday";
			this.gridColumn8.Name = "gridColumn8";
			this.gridColumn8.Visible = true;
			this.gridColumn8.VisibleIndex = 8;
			this.gridColumn8.Width = 70;
			// 
			// repositoryItemPopupContainerEdit5
			// 
			this.repositoryItemPopupContainerEdit5.AutoHeight = false;
			this.repositoryItemPopupContainerEdit5.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
																														   new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
			this.repositoryItemPopupContainerEdit5.Name = "repositoryItemPopupContainerEdit5";
			this.repositoryItemPopupContainerEdit5.PopupControl = this.popupContainerControl5;
			this.repositoryItemPopupContainerEdit5.QueryPopUp += new System.ComponentModel.CancelEventHandler(this.repositoryItemPopupContainerEdit5_QueryPopUp);
			this.repositoryItemPopupContainerEdit5.QueryResultValue += new DevExpress.XtraEditors.Controls.QueryResultValueEventHandler(this.repositoryItemPopupContainerEdit5_QueryResultValue);
			// 
			// popupContainerControl5
			// 
			this.popupContainerControl5.Controls.Add(this.checkedListBoxControl5);
			this.popupContainerControl5.Location = new System.Drawing.Point(0, 224);
			this.popupContainerControl5.Name = "popupContainerControl5";
			this.popupContainerControl5.TabIndex = 10;
			this.popupContainerControl5.Text = "popupContainerControl5";
			// 
			// checkedListBoxControl5
			// 
			this.checkedListBoxControl5.CheckOnClick = true;
			this.checkedListBoxControl5.Dock = System.Windows.Forms.DockStyle.Fill;
			this.checkedListBoxControl5.ItemHeight = 16;
			this.checkedListBoxControl5.Location = new System.Drawing.Point(0, 0);
			this.checkedListBoxControl5.Name = "checkedListBoxControl5";
			this.checkedListBoxControl5.Size = new System.Drawing.Size(200, 100);
			this.checkedListBoxControl5.TabIndex = 0;
			this.checkedListBoxControl5.ToolTipController = this.toolTipController1;
			this.checkedListBoxControl5.ToolTipIconType = DevExpress.Utils.ToolTipIconType.Hand;
			this.checkedListBoxControl5.Click += new System.EventHandler(this.checkedListBoxControl5_Click);
			// 
			// gridColumn9
			// 
			this.gridColumn9.Caption = "周六班次";
			this.gridColumn9.ColumnEdit = this.repositoryItemPopupContainerEdit6;
			this.gridColumn9.FieldName = "teaonduty_saturday";
			this.gridColumn9.Name = "gridColumn9";
			this.gridColumn9.Width = 70;
			// 
			// repositoryItemPopupContainerEdit6
			// 
			this.repositoryItemPopupContainerEdit6.AutoHeight = false;
			this.repositoryItemPopupContainerEdit6.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
																														   new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
			this.repositoryItemPopupContainerEdit6.Name = "repositoryItemPopupContainerEdit6";
			this.repositoryItemPopupContainerEdit6.PopupControl = this.popupContainerControl6;
			this.repositoryItemPopupContainerEdit6.QueryPopUp += new System.ComponentModel.CancelEventHandler(this.repositoryItemPopupContainerEdit6_QueryPopUp);
			this.repositoryItemPopupContainerEdit6.QueryResultValue += new DevExpress.XtraEditors.Controls.QueryResultValueEventHandler(this.repositoryItemPopupContainerEdit6_QueryResultValue);
			// 
			// popupContainerControl6
			// 
			this.popupContainerControl6.Controls.Add(this.checkedListBoxControl6);
			this.popupContainerControl6.Location = new System.Drawing.Point(232, 232);
			this.popupContainerControl6.Name = "popupContainerControl6";
			this.popupContainerControl6.TabIndex = 11;
			this.popupContainerControl6.Text = "popupContainerControl6";
			// 
			// checkedListBoxControl6
			// 
			this.checkedListBoxControl6.CheckOnClick = true;
			this.checkedListBoxControl6.Dock = System.Windows.Forms.DockStyle.Fill;
			this.checkedListBoxControl6.ItemHeight = 16;
			this.checkedListBoxControl6.Location = new System.Drawing.Point(0, 0);
			this.checkedListBoxControl6.Name = "checkedListBoxControl6";
			this.checkedListBoxControl6.Size = new System.Drawing.Size(200, 100);
			this.checkedListBoxControl6.TabIndex = 0;
			this.checkedListBoxControl6.ToolTipController = this.toolTipController1;
			this.checkedListBoxControl6.ToolTipIconType = DevExpress.Utils.ToolTipIconType.Warning;
			this.checkedListBoxControl6.Click += new System.EventHandler(this.checkedListBoxControl6_Click);
			// 
			// gridColumn10
			// 
			this.gridColumn10.Caption = "周末班次";
			this.gridColumn10.ColumnEdit = this.repositoryItemPopupContainerEdit7;
			this.gridColumn10.FieldName = "teaonduty_sunday";
			this.gridColumn10.Name = "gridColumn10";
			this.gridColumn10.Width = 83;
			// 
			// repositoryItemPopupContainerEdit7
			// 
			this.repositoryItemPopupContainerEdit7.AutoHeight = false;
			this.repositoryItemPopupContainerEdit7.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
																														   new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
			this.repositoryItemPopupContainerEdit7.Name = "repositoryItemPopupContainerEdit7";
			this.repositoryItemPopupContainerEdit7.PopupControl = this.popupContainerControl7;
			this.repositoryItemPopupContainerEdit7.QueryPopUp += new System.ComponentModel.CancelEventHandler(this.repositoryItemPopupContainerEdit7_QueryPopUp);
			this.repositoryItemPopupContainerEdit7.QueryResultValue += new DevExpress.XtraEditors.Controls.QueryResultValueEventHandler(this.repositoryItemPopupContainerEdit7_QueryResultValue);
			// 
			// popupContainerControl7
			// 
			this.popupContainerControl7.Controls.Add(this.checkedListBoxControl7);
			this.popupContainerControl7.Location = new System.Drawing.Point(432, 48);
			this.popupContainerControl7.Name = "popupContainerControl7";
			this.popupContainerControl7.TabIndex = 12;
			this.popupContainerControl7.Text = "popupContainerControl7";
			// 
			// checkedListBoxControl7
			// 
			this.checkedListBoxControl7.CheckOnClick = true;
			this.checkedListBoxControl7.Dock = System.Windows.Forms.DockStyle.Fill;
			this.checkedListBoxControl7.ItemHeight = 16;
			this.checkedListBoxControl7.Location = new System.Drawing.Point(0, 0);
			this.checkedListBoxControl7.Name = "checkedListBoxControl7";
			this.checkedListBoxControl7.Size = new System.Drawing.Size(200, 100);
			this.checkedListBoxControl7.TabIndex = 0;
			this.checkedListBoxControl7.ToolTipController = this.toolTipController1;
			this.checkedListBoxControl7.ToolTipIconType = DevExpress.Utils.ToolTipIconType.WindLogo;
			this.checkedListBoxControl7.Click += new System.EventHandler(this.checkedListBoxControl7_Click);
			// 
			// gridColumn1
			// 
			this.gridColumn1.Caption = "Teacher_ID";
			this.gridColumn1.FieldName = "T_ID";
			this.gridColumn1.Name = "gridColumn1";
			// 
			// repositoryItemLookUpEdit1
			// 
			this.repositoryItemLookUpEdit1.AutoHeight = false;
			this.repositoryItemLookUpEdit1.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
																												   new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
			this.repositoryItemLookUpEdit1.Name = "repositoryItemLookUpEdit1";
			// 
			// xtraTabControl_TeaDutyDetailInfo
			// 
			this.xtraTabControl_TeaDutyDetailInfo.Appearance.BackColor = System.Drawing.Color.WhiteSmoke;
			this.xtraTabControl_TeaDutyDetailInfo.Appearance.Options.UseBackColor = true;
			this.xtraTabControl_TeaDutyDetailInfo.AppearancePage.HeaderActive.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold);
			this.xtraTabControl_TeaDutyDetailInfo.AppearancePage.HeaderActive.ForeColor = System.Drawing.Color.DarkOrange;
			this.xtraTabControl_TeaDutyDetailInfo.AppearancePage.HeaderActive.Options.UseFont = true;
			this.xtraTabControl_TeaDutyDetailInfo.AppearancePage.HeaderActive.Options.UseForeColor = true;
			this.xtraTabControl_TeaDutyDetailInfo.Controls.Add(this.xtraTabPage_TeaDutyDetails);
			this.xtraTabControl_TeaDutyDetailInfo.Controls.Add(this.xtraTabPage_TeaOnDutyInfo);
			this.xtraTabControl_TeaDutyDetailInfo.Controls.Add(this.xtraTabPage_TeaOnDutyReports);
			this.xtraTabControl_TeaDutyDetailInfo.Dock = System.Windows.Forms.DockStyle.Fill;
			this.xtraTabControl_TeaDutyDetailInfo.Location = new System.Drawing.Point(0, 0);
			this.xtraTabControl_TeaDutyDetailInfo.Name = "xtraTabControl_TeaDutyDetailInfo";
			this.xtraTabControl_TeaDutyDetailInfo.SelectedTabPage = this.xtraTabPage_TeaOnDutyInfo;
			this.xtraTabControl_TeaDutyDetailInfo.Size = new System.Drawing.Size(772, 540);
			this.xtraTabControl_TeaDutyDetailInfo.TabIndex = 0;
			this.xtraTabControl_TeaDutyDetailInfo.TabPages.AddRange(new DevExpress.XtraTab.XtraTabPage[] {
																											 this.xtraTabPage_TeaDutyDetails,
																											 this.xtraTabPage_TeaOnDutyInfo,
																											 this.xtraTabPage_TeaOnDutyReports});
			this.xtraTabControl_TeaDutyDetailInfo.Text = "出勤信息管理";
			// 
			// xtraTabPage_TeaDutyDetails
			// 
			this.xtraTabPage_TeaDutyDetails.Appearance.PageClient.BackColor = System.Drawing.Color.WhiteSmoke;
			this.xtraTabPage_TeaDutyDetails.Appearance.PageClient.Options.UseBackColor = true;
			this.xtraTabPage_TeaDutyDetails.Controls.Add(this.groupControl_TeaDutyAsign);
			this.xtraTabPage_TeaDutyDetails.Controls.Add(this.groupControl_TeaDutyDetailsMgmt);
			this.xtraTabPage_TeaDutyDetails.Name = "xtraTabPage_TeaDutyDetails";
			this.xtraTabPage_TeaDutyDetails.Size = new System.Drawing.Size(768, 515);
			this.xtraTabPage_TeaDutyDetails.Text = "班次管理";
			// 
			// groupControl_TeaDutyAsign
			// 
			this.groupControl_TeaDutyAsign.Controls.Add(this.popupContainerControl7);
			this.groupControl_TeaDutyAsign.Controls.Add(this.popupContainerControl6);
			this.groupControl_TeaDutyAsign.Controls.Add(this.popupContainerControl5);
			this.groupControl_TeaDutyAsign.Controls.Add(this.popupContainerControl4);
			this.groupControl_TeaDutyAsign.Controls.Add(this.popupContainerControl3);
			this.groupControl_TeaDutyAsign.Controls.Add(this.popupContainerControl2);
			this.groupControl_TeaDutyAsign.Controls.Add(this.popupContainerControl1);
			this.groupControl_TeaDutyAsign.Controls.Add(this.simpleButton_SaveDutyAsign);
			this.groupControl_TeaDutyAsign.Controls.Add(this.notePanel2);
			this.groupControl_TeaDutyAsign.Controls.Add(this.gridControl_TeaDutyAsign);
			this.groupControl_TeaDutyAsign.Dock = System.Windows.Forms.DockStyle.Fill;
			this.groupControl_TeaDutyAsign.Location = new System.Drawing.Point(0, 208);
			this.groupControl_TeaDutyAsign.Name = "groupControl_TeaDutyAsign";
			this.groupControl_TeaDutyAsign.Size = new System.Drawing.Size(768, 307);
			this.groupControl_TeaDutyAsign.TabIndex = 1;
			this.groupControl_TeaDutyAsign.Text = "班次分配";
			// 
			// simpleButton_SaveDutyAsign
			// 
			this.simpleButton_SaveDutyAsign.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
			this.simpleButton_SaveDutyAsign.Location = new System.Drawing.Point(648, 48);
			this.simpleButton_SaveDutyAsign.Name = "simpleButton_SaveDutyAsign";
			this.simpleButton_SaveDutyAsign.Size = new System.Drawing.Size(96, 24);
			this.simpleButton_SaveDutyAsign.TabIndex = 5;
			this.simpleButton_SaveDutyAsign.Text = "更新当前班次";
			this.simpleButton_SaveDutyAsign.Click += new System.EventHandler(this.simpleButton_SaveDutyAsign_Click);
			// 
			// notePanel2
			// 
			this.notePanel2.BackColor = System.Drawing.Color.LightGoldenrodYellow;
			this.notePanel2.Dock = System.Windows.Forms.DockStyle.Top;
			this.notePanel2.ForeColor = System.Drawing.Color.OrangeRed;
			this.notePanel2.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel2.Location = new System.Drawing.Point(3, 18);
			this.notePanel2.MaxRows = 5;
			this.notePanel2.Name = "notePanel2";
			this.notePanel2.ParentAutoHeight = true;
			this.notePanel2.Size = new System.Drawing.Size(762, 23);
			this.notePanel2.TabIndex = 4;
			this.notePanel2.TabStop = false;
			this.notePanel2.Text = "班次信息";
			// 
			// groupControl_TeaDutyDetailsMgmt
			// 
			this.groupControl_TeaDutyDetailsMgmt.Controls.Add(this.splitContainerControl_DutyMgmt);
			this.groupControl_TeaDutyDetailsMgmt.Dock = System.Windows.Forms.DockStyle.Top;
			this.groupControl_TeaDutyDetailsMgmt.Location = new System.Drawing.Point(0, 0);
			this.groupControl_TeaDutyDetailsMgmt.Name = "groupControl_TeaDutyDetailsMgmt";
			this.groupControl_TeaDutyDetailsMgmt.Size = new System.Drawing.Size(768, 208);
			this.groupControl_TeaDutyDetailsMgmt.TabIndex = 0;
			// 
			// splitContainerControl_DutyMgmt
			// 
			this.splitContainerControl_DutyMgmt.Dock = System.Windows.Forms.DockStyle.Fill;
			this.splitContainerControl_DutyMgmt.Location = new System.Drawing.Point(3, 18);
			this.splitContainerControl_DutyMgmt.Name = "splitContainerControl_DutyMgmt";
			this.splitContainerControl_DutyMgmt.Panel1.Controls.Add(this.textEdit_DutyStartTime);
			this.splitContainerControl_DutyMgmt.Panel1.Controls.Add(this.dataNavigator_DutyDetails);
			this.splitContainerControl_DutyMgmt.Panel1.Controls.Add(this.notePanel_DutyDetailsTitle);
			this.splitContainerControl_DutyMgmt.Panel1.Controls.Add(this.pnlHint_DutyName);
			this.splitContainerControl_DutyMgmt.Panel1.Controls.Add(this.label_ReqOfDutyName);
			this.splitContainerControl_DutyMgmt.Panel1.Controls.Add(this.textEdit_AddDutyName);
			this.splitContainerControl_DutyMgmt.Panel1.Controls.Add(this.notePanel_DutyStartTime);
			this.splitContainerControl_DutyMgmt.Panel1.Controls.Add(this.label_ReqOfDutyEndTime);
			this.splitContainerControl_DutyMgmt.Panel1.Controls.Add(this.notePanel_DutyRemark);
			this.splitContainerControl_DutyMgmt.Panel1.Controls.Add(this.textEdit_AddDutyRemark);
			this.splitContainerControl_DutyMgmt.Panel1.Controls.Add(this.notePanel_DutyEndTime);
			this.splitContainerControl_DutyMgmt.Panel1.Controls.Add(this.label_ReqOfDutyStartTime);
			this.splitContainerControl_DutyMgmt.Panel1.Controls.Add(this.textEdit_DutyEndTime);
			this.splitContainerControl_DutyMgmt.Panel1.Text = "splitContainerControl2_Panel1";
			this.splitContainerControl_DutyMgmt.Panel2.Controls.Add(this.simpleButton_TeaDutySave);
			this.splitContainerControl_DutyMgmt.Panel2.Controls.Add(this.simpleButton_LoadCurDuty);
			this.splitContainerControl_DutyMgmt.Panel2.Controls.Add(this.simpleButton_LoadHisDuty);
			this.splitContainerControl_DutyMgmt.Panel2.Controls.Add(this.dateEdit_DutyHistory);
			this.splitContainerControl_DutyMgmt.Panel2.Controls.Add(this.notePanel_DutyHistory);
			this.splitContainerControl_DutyMgmt.Panel2.Controls.Add(this.comboBoxEdit_DutySearTeaClass);
			this.splitContainerControl_DutyMgmt.Panel2.Controls.Add(this.comboBoxEdit_DutySearTeaGarde);
			this.splitContainerControl_DutyMgmt.Panel2.Controls.Add(this.textEdit_DutySearTeaID);
			this.splitContainerControl_DutyMgmt.Panel2.Controls.Add(this.notePanel_AsignDutyByTeaID);
			this.splitContainerControl_DutyMgmt.Panel2.Controls.Add(this.notePanel_TeaDutyAsignSearTitle);
			this.splitContainerControl_DutyMgmt.Panel2.Controls.Add(this.notePannotePanel_AsignDutyByTeaGrade);
			this.splitContainerControl_DutyMgmt.Panel2.Controls.Add(this.notePannotePanel_AsignDutyByTeaName);
			this.splitContainerControl_DutyMgmt.Panel2.Controls.Add(this.notePannotePanel_AsignDutyByTeaClass);
			this.splitContainerControl_DutyMgmt.Panel2.Controls.Add(this.textEdit_DutySearTeaName);
			this.splitContainerControl_DutyMgmt.Panel2.Controls.Add(this.simpleButton_TeaSearForDuty);
			this.splitContainerControl_DutyMgmt.Panel2.Text = "splitContainerControl2_Panel2";
			this.splitContainerControl_DutyMgmt.Size = new System.Drawing.Size(762, 187);
			this.splitContainerControl_DutyMgmt.SplitterPosition = 324;
			this.splitContainerControl_DutyMgmt.TabIndex = 0;
			this.splitContainerControl_DutyMgmt.Text = "splitContainerControl2";
			// 
			// textEdit_DutyStartTime
			// 
			this.textEdit_DutyStartTime.EditValue = "";
			this.textEdit_DutyStartTime.Location = new System.Drawing.Point(120, 61);
			this.textEdit_DutyStartTime.Name = "textEdit_DutyStartTime";
			// 
			// textEdit_DutyStartTime.Properties
			// 
			this.textEdit_DutyStartTime.Properties.DisplayFormat.FormatString = "HH:mm:ss";
			this.textEdit_DutyStartTime.Properties.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
			this.textEdit_DutyStartTime.Properties.EditValueChangedFiringMode = DevExpress.XtraEditors.Controls.EditValueChangedFiringMode.Buffered;
			this.textEdit_DutyStartTime.Properties.Mask.EditMask = "HH:mm:ss";
			this.textEdit_DutyStartTime.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.DateTime;
			this.textEdit_DutyStartTime.Size = new System.Drawing.Size(160, 23);
			this.textEdit_DutyStartTime.TabIndex = 12;
			// 
			// dataNavigator_DutyDetails
			// 
			this.dataNavigator_DutyDetails.Buttons.Append.Hint = "添加一条新记录";
			this.dataNavigator_DutyDetails.Buttons.CancelEdit.Hint = "取消修改";
			this.dataNavigator_DutyDetails.Buttons.EndEdit.Hint = "保存修改";
			this.dataNavigator_DutyDetails.Buttons.First.Hint = "查看第一条记录";
			this.dataNavigator_DutyDetails.Buttons.Last.Hint = "查看最后一条记录";
			this.dataNavigator_DutyDetails.Buttons.Next.Hint = "查看下一条记录";
			this.dataNavigator_DutyDetails.Buttons.NextPage.Hint = "跳至下一页";
			this.dataNavigator_DutyDetails.Buttons.Prev.Hint = "查看前一条记录";
			this.dataNavigator_DutyDetails.Buttons.PrevPage.Hint = "跳至前一页";
			this.dataNavigator_DutyDetails.Buttons.Remove.Hint = "删除此条记录";
			this.dataNavigator_DutyDetails.Dock = System.Windows.Forms.DockStyle.Bottom;
			this.dataNavigator_DutyDetails.Location = new System.Drawing.Point(0, 157);
			this.dataNavigator_DutyDetails.Name = "dataNavigator_DutyDetails";
			this.dataNavigator_DutyDetails.ShowToolTips = true;
			this.dataNavigator_DutyDetails.Size = new System.Drawing.Size(318, 24);
			this.dataNavigator_DutyDetails.TabIndex = 10;
			this.dataNavigator_DutyDetails.Text = "班次信息管理";
			this.dataNavigator_DutyDetails.TextLocation = DevExpress.XtraEditors.NavigatorButtonsTextLocation.End;
			this.dataNavigator_DutyDetails.ButtonClick += new DevExpress.XtraEditors.NavigatorButtonClickEventHandler(this.dataNavigator_DutyDetails_ButtonClick);
			// 
			// notePanel_DutyDetailsTitle
			// 
			this.notePanel_DutyDetailsTitle.BackColor = System.Drawing.Color.LightGoldenrodYellow;
			this.notePanel_DutyDetailsTitle.Dock = System.Windows.Forms.DockStyle.Top;
			this.notePanel_DutyDetailsTitle.ForeColor = System.Drawing.Color.OrangeRed;
			this.notePanel_DutyDetailsTitle.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_DutyDetailsTitle.Location = new System.Drawing.Point(0, 0);
			this.notePanel_DutyDetailsTitle.MaxRows = 5;
			this.notePanel_DutyDetailsTitle.Name = "notePanel_DutyDetailsTitle";
			this.notePanel_DutyDetailsTitle.ParentAutoHeight = true;
			this.notePanel_DutyDetailsTitle.Size = new System.Drawing.Size(318, 23);
			this.notePanel_DutyDetailsTitle.TabIndex = 2;
			this.notePanel_DutyDetailsTitle.TabStop = false;
			this.notePanel_DutyDetailsTitle.Text = "班次详细信息管理(*为必须填写)";
			// 
			// pnlHint_DutyName
			// 
			this.pnlHint_DutyName.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.pnlHint_DutyName.BackColor2 = System.Drawing.Color.DarkGray;
			this.pnlHint_DutyName.Font = new System.Drawing.Font("Tahoma", 8F);
			this.pnlHint_DutyName.ForeColor = System.Drawing.Color.Black;
			this.pnlHint_DutyName.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.pnlHint_DutyName.Location = new System.Drawing.Point(24, 32);
			this.pnlHint_DutyName.MaxRows = 5;
			this.pnlHint_DutyName.Name = "pnlHint_DutyName";
			this.pnlHint_DutyName.ParentAutoHeight = true;
			this.pnlHint_DutyName.Size = new System.Drawing.Size(80, 22);
			this.pnlHint_DutyName.TabIndex = 3;
			this.pnlHint_DutyName.TabStop = false;
			this.pnlHint_DutyName.Text = "班次名称";
			// 
			// label_ReqOfDutyName
			// 
			this.label_ReqOfDutyName.ForeColor = System.Drawing.Color.Red;
			this.label_ReqOfDutyName.Location = new System.Drawing.Point(8, 32);
			this.label_ReqOfDutyName.Name = "label_ReqOfDutyName";
			this.label_ReqOfDutyName.Size = new System.Drawing.Size(16, 16);
			this.label_ReqOfDutyName.TabIndex = 6;
			this.label_ReqOfDutyName.Text = "*";
			this.label_ReqOfDutyName.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
			// 
			// textEdit_AddDutyName
			// 
			this.textEdit_AddDutyName.EditValue = "";
			this.textEdit_AddDutyName.Location = new System.Drawing.Point(120, 32);
			this.textEdit_AddDutyName.Name = "textEdit_AddDutyName";
			this.textEdit_AddDutyName.Size = new System.Drawing.Size(160, 23);
			this.textEdit_AddDutyName.TabIndex = 4;
			this.textEdit_AddDutyName.EditValueChanged += new System.EventHandler(this.textEdit_AddDutyName_EditValueChanged);
			this.textEdit_AddDutyName.Leave += new System.EventHandler(this.textEdit_AddDutyName_Leave);
			// 
			// notePanel_DutyStartTime
			// 
			this.notePanel_DutyStartTime.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_DutyStartTime.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_DutyStartTime.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_DutyStartTime.ForeColor = System.Drawing.Color.Black;
			this.notePanel_DutyStartTime.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_DutyStartTime.Location = new System.Drawing.Point(24, 61);
			this.notePanel_DutyStartTime.MaxRows = 5;
			this.notePanel_DutyStartTime.Name = "notePanel_DutyStartTime";
			this.notePanel_DutyStartTime.ParentAutoHeight = true;
			this.notePanel_DutyStartTime.Size = new System.Drawing.Size(80, 22);
			this.notePanel_DutyStartTime.TabIndex = 3;
			this.notePanel_DutyStartTime.TabStop = false;
			this.notePanel_DutyStartTime.Text = "起始时间";
			// 
			// label_ReqOfDutyEndTime
			// 
			this.label_ReqOfDutyEndTime.ForeColor = System.Drawing.Color.Red;
			this.label_ReqOfDutyEndTime.Location = new System.Drawing.Point(8, 64);
			this.label_ReqOfDutyEndTime.Name = "label_ReqOfDutyEndTime";
			this.label_ReqOfDutyEndTime.Size = new System.Drawing.Size(16, 16);
			this.label_ReqOfDutyEndTime.TabIndex = 8;
			this.label_ReqOfDutyEndTime.Text = "*";
			this.label_ReqOfDutyEndTime.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
			// 
			// notePanel_DutyRemark
			// 
			this.notePanel_DutyRemark.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_DutyRemark.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_DutyRemark.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_DutyRemark.ForeColor = System.Drawing.Color.Black;
			this.notePanel_DutyRemark.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_DutyRemark.Location = new System.Drawing.Point(24, 119);
			this.notePanel_DutyRemark.MaxRows = 5;
			this.notePanel_DutyRemark.Name = "notePanel_DutyRemark";
			this.notePanel_DutyRemark.ParentAutoHeight = true;
			this.notePanel_DutyRemark.Size = new System.Drawing.Size(80, 22);
			this.notePanel_DutyRemark.TabIndex = 3;
			this.notePanel_DutyRemark.TabStop = false;
			this.notePanel_DutyRemark.Text = "  备  注";
			// 
			// textEdit_AddDutyRemark
			// 
			this.textEdit_AddDutyRemark.EditValue = "";
			this.textEdit_AddDutyRemark.Location = new System.Drawing.Point(120, 120);
			this.textEdit_AddDutyRemark.Name = "textEdit_AddDutyRemark";
			this.textEdit_AddDutyRemark.Size = new System.Drawing.Size(160, 23);
			this.textEdit_AddDutyRemark.TabIndex = 4;
			// 
			// notePanel_DutyEndTime
			// 
			this.notePanel_DutyEndTime.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_DutyEndTime.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_DutyEndTime.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_DutyEndTime.ForeColor = System.Drawing.Color.Black;
			this.notePanel_DutyEndTime.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_DutyEndTime.Location = new System.Drawing.Point(24, 90);
			this.notePanel_DutyEndTime.MaxRows = 5;
			this.notePanel_DutyEndTime.Name = "notePanel_DutyEndTime";
			this.notePanel_DutyEndTime.ParentAutoHeight = true;
			this.notePanel_DutyEndTime.Size = new System.Drawing.Size(80, 22);
			this.notePanel_DutyEndTime.TabIndex = 3;
			this.notePanel_DutyEndTime.TabStop = false;
			this.notePanel_DutyEndTime.Text = "结束时间";
			// 
			// label_ReqOfDutyStartTime
			// 
			this.label_ReqOfDutyStartTime.ForeColor = System.Drawing.Color.Red;
			this.label_ReqOfDutyStartTime.Location = new System.Drawing.Point(8, 88);
			this.label_ReqOfDutyStartTime.Name = "label_ReqOfDutyStartTime";
			this.label_ReqOfDutyStartTime.Size = new System.Drawing.Size(16, 16);
			this.label_ReqOfDutyStartTime.TabIndex = 7;
			this.label_ReqOfDutyStartTime.Text = "*";
			this.label_ReqOfDutyStartTime.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
			// 
			// textEdit_DutyEndTime
			// 
			this.textEdit_DutyEndTime.EditValue = "";
			this.textEdit_DutyEndTime.Location = new System.Drawing.Point(120, 90);
			this.textEdit_DutyEndTime.Name = "textEdit_DutyEndTime";
			// 
			// textEdit_DutyEndTime.Properties
			// 
			this.textEdit_DutyEndTime.Properties.DisplayFormat.FormatString = "d";
			this.textEdit_DutyEndTime.Properties.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
			this.textEdit_DutyEndTime.Properties.Mask.EditMask = "HH:mm:ss";
			this.textEdit_DutyEndTime.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.DateTime;
			this.textEdit_DutyEndTime.Size = new System.Drawing.Size(160, 23);
			this.textEdit_DutyEndTime.TabIndex = 16;
			this.textEdit_DutyEndTime.Tag = "";
			// 
			// simpleButton_TeaDutySave
			// 
			this.simpleButton_TeaDutySave.Location = new System.Drawing.Point(224, 136);
			this.simpleButton_TeaDutySave.Name = "simpleButton_TeaDutySave";
			this.simpleButton_TeaDutySave.Size = new System.Drawing.Size(88, 24);
			this.simpleButton_TeaDutySave.TabIndex = 13;
			this.simpleButton_TeaDutySave.Text = "下周班保存";
			this.simpleButton_TeaDutySave.Click += new System.EventHandler(this.simpleButton_TeaDutySave_Click);
			// 
			// simpleButton_LoadCurDuty
			// 
			this.simpleButton_LoadCurDuty.Enabled = false;
			this.simpleButton_LoadCurDuty.Location = new System.Drawing.Point(128, 136);
			this.simpleButton_LoadCurDuty.Name = "simpleButton_LoadCurDuty";
			this.simpleButton_LoadCurDuty.Size = new System.Drawing.Size(88, 24);
			this.simpleButton_LoadCurDuty.TabIndex = 12;
			this.simpleButton_LoadCurDuty.Text = "本周班载入";
			this.simpleButton_LoadCurDuty.Click += new System.EventHandler(this.simpleButton_LoadCurDuty_Click);
			// 
			// simpleButton_LoadHisDuty
			// 
			this.simpleButton_LoadHisDuty.Location = new System.Drawing.Point(32, 136);
			this.simpleButton_LoadHisDuty.Name = "simpleButton_LoadHisDuty";
			this.simpleButton_LoadHisDuty.Size = new System.Drawing.Size(88, 24);
			this.simpleButton_LoadHisDuty.TabIndex = 11;
			this.simpleButton_LoadHisDuty.Text = "历史班载入";
			this.simpleButton_LoadHisDuty.Click += new System.EventHandler(this.simpleButton_LoadHisDuty_Click);
			// 
			// dateEdit_DutyHistory
			// 
			this.dateEdit_DutyHistory.EditValue = new System.DateTime(2006, 3, 23, 0, 0, 0, 0);
			this.dateEdit_DutyHistory.Location = new System.Drawing.Point(120, 96);
			this.dateEdit_DutyHistory.Name = "dateEdit_DutyHistory";
			// 
			// dateEdit_DutyHistory.Properties
			// 
			this.dateEdit_DutyHistory.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
																														 new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
			this.dateEdit_DutyHistory.Properties.Mask.EditMask = "d";
			this.dateEdit_DutyHistory.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.DateTime;
			this.dateEdit_DutyHistory.Size = new System.Drawing.Size(88, 23);
			this.dateEdit_DutyHistory.TabIndex = 10;
			// 
			// notePanel_DutyHistory
			// 
			this.notePanel_DutyHistory.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_DutyHistory.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_DutyHistory.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_DutyHistory.ForeColor = System.Drawing.Color.Black;
			this.notePanel_DutyHistory.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_DutyHistory.Location = new System.Drawing.Point(32, 96);
			this.notePanel_DutyHistory.MaxRows = 5;
			this.notePanel_DutyHistory.Name = "notePanel_DutyHistory";
			this.notePanel_DutyHistory.ParentAutoHeight = true;
			this.notePanel_DutyHistory.Size = new System.Drawing.Size(80, 22);
			this.notePanel_DutyHistory.TabIndex = 9;
			this.notePanel_DutyHistory.TabStop = false;
			this.notePanel_DutyHistory.Text = "班次时间";
			// 
			// comboBoxEdit_DutySearTeaClass
			// 
			this.comboBoxEdit_DutySearTeaClass.EditValue = "全部";
			this.comboBoxEdit_DutySearTeaClass.Location = new System.Drawing.Point(312, 64);
			this.comboBoxEdit_DutySearTeaClass.Name = "comboBoxEdit_DutySearTeaClass";
			// 
			// comboBoxEdit_DutySearTeaClass.Properties
			// 
			this.comboBoxEdit_DutySearTeaClass.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
																																  new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
			this.comboBoxEdit_DutySearTeaClass.Properties.Items.AddRange(new object[] {
																						  "全部"});
			this.comboBoxEdit_DutySearTeaClass.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
			this.comboBoxEdit_DutySearTeaClass.Size = new System.Drawing.Size(88, 23);
			this.comboBoxEdit_DutySearTeaClass.TabIndex = 7;
			this.comboBoxEdit_DutySearTeaClass.SelectedIndexChanged += new System.EventHandler(this.comboBoxEdit_DutySearTeaClass_SelectedIndexChanged);
			// 
			// comboBoxEdit_DutySearTeaGarde
			// 
			this.comboBoxEdit_DutySearTeaGarde.EditValue = "全部";
			this.comboBoxEdit_DutySearTeaGarde.Location = new System.Drawing.Point(120, 64);
			this.comboBoxEdit_DutySearTeaGarde.Name = "comboBoxEdit_DutySearTeaGarde";
			// 
			// comboBoxEdit_DutySearTeaGarde.Properties
			// 
			this.comboBoxEdit_DutySearTeaGarde.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
																																  new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
			this.comboBoxEdit_DutySearTeaGarde.Properties.Items.AddRange(new object[] {
																						  "全部"});
			this.comboBoxEdit_DutySearTeaGarde.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
			this.comboBoxEdit_DutySearTeaGarde.Size = new System.Drawing.Size(88, 23);
			this.comboBoxEdit_DutySearTeaGarde.TabIndex = 6;
			this.comboBoxEdit_DutySearTeaGarde.SelectedIndexChanged += new System.EventHandler(this.comboBoxEdit_DutySearTeaGarde_SelectedIndexChanged);
			// 
			// textEdit_DutySearTeaID
			// 
			this.textEdit_DutySearTeaID.EditValue = "";
			this.textEdit_DutySearTeaID.Location = new System.Drawing.Point(120, 32);
			this.textEdit_DutySearTeaID.Name = "textEdit_DutySearTeaID";
			this.textEdit_DutySearTeaID.Size = new System.Drawing.Size(88, 23);
			this.textEdit_DutySearTeaID.TabIndex = 5;
			// 
			// notePanel_AsignDutyByTeaID
			// 
			this.notePanel_AsignDutyByTeaID.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_AsignDutyByTeaID.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_AsignDutyByTeaID.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_AsignDutyByTeaID.ForeColor = System.Drawing.Color.Black;
			this.notePanel_AsignDutyByTeaID.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_AsignDutyByTeaID.Location = new System.Drawing.Point(32, 32);
			this.notePanel_AsignDutyByTeaID.MaxRows = 5;
			this.notePanel_AsignDutyByTeaID.Name = "notePanel_AsignDutyByTeaID";
			this.notePanel_AsignDutyByTeaID.ParentAutoHeight = true;
			this.notePanel_AsignDutyByTeaID.Size = new System.Drawing.Size(80, 22);
			this.notePanel_AsignDutyByTeaID.TabIndex = 4;
			this.notePanel_AsignDutyByTeaID.TabStop = false;
			this.notePanel_AsignDutyByTeaID.Text = "教师工号";
			// 
			// notePanel_TeaDutyAsignSearTitle
			// 
			this.notePanel_TeaDutyAsignSearTitle.BackColor = System.Drawing.Color.LightGoldenrodYellow;
			this.notePanel_TeaDutyAsignSearTitle.Dock = System.Windows.Forms.DockStyle.Top;
			this.notePanel_TeaDutyAsignSearTitle.ForeColor = System.Drawing.Color.OrangeRed;
			this.notePanel_TeaDutyAsignSearTitle.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_TeaDutyAsignSearTitle.Location = new System.Drawing.Point(0, 0);
			this.notePanel_TeaDutyAsignSearTitle.MaxRows = 5;
			this.notePanel_TeaDutyAsignSearTitle.Name = "notePanel_TeaDutyAsignSearTitle";
			this.notePanel_TeaDutyAsignSearTitle.ParentAutoHeight = true;
			this.notePanel_TeaDutyAsignSearTitle.Size = new System.Drawing.Size(428, 23);
			this.notePanel_TeaDutyAsignSearTitle.TabIndex = 3;
			this.notePanel_TeaDutyAsignSearTitle.TabStop = false;
			this.notePanel_TeaDutyAsignSearTitle.Text = "**班次载入时间以一周为准";
			// 
			// notePannotePanel_AsignDutyByTeaGrade
			// 
			this.notePannotePanel_AsignDutyByTeaGrade.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePannotePanel_AsignDutyByTeaGrade.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePannotePanel_AsignDutyByTeaGrade.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePannotePanel_AsignDutyByTeaGrade.ForeColor = System.Drawing.Color.Black;
			this.notePannotePanel_AsignDutyByTeaGrade.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePannotePanel_AsignDutyByTeaGrade.Location = new System.Drawing.Point(32, 64);
			this.notePannotePanel_AsignDutyByTeaGrade.MaxRows = 5;
			this.notePannotePanel_AsignDutyByTeaGrade.Name = "notePannotePanel_AsignDutyByTeaGrade";
			this.notePannotePanel_AsignDutyByTeaGrade.ParentAutoHeight = true;
			this.notePannotePanel_AsignDutyByTeaGrade.Size = new System.Drawing.Size(80, 22);
			this.notePannotePanel_AsignDutyByTeaGrade.TabIndex = 4;
			this.notePannotePanel_AsignDutyByTeaGrade.TabStop = false;
			this.notePannotePanel_AsignDutyByTeaGrade.Text = "所在部门";
			// 
			// notePannotePanel_AsignDutyByTeaName
			// 
			this.notePannotePanel_AsignDutyByTeaName.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePannotePanel_AsignDutyByTeaName.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePannotePanel_AsignDutyByTeaName.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePannotePanel_AsignDutyByTeaName.ForeColor = System.Drawing.Color.Black;
			this.notePannotePanel_AsignDutyByTeaName.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePannotePanel_AsignDutyByTeaName.Location = new System.Drawing.Point(224, 32);
			this.notePannotePanel_AsignDutyByTeaName.MaxRows = 5;
			this.notePannotePanel_AsignDutyByTeaName.Name = "notePannotePanel_AsignDutyByTeaName";
			this.notePannotePanel_AsignDutyByTeaName.ParentAutoHeight = true;
			this.notePannotePanel_AsignDutyByTeaName.Size = new System.Drawing.Size(80, 22);
			this.notePannotePanel_AsignDutyByTeaName.TabIndex = 4;
			this.notePannotePanel_AsignDutyByTeaName.TabStop = false;
			this.notePannotePanel_AsignDutyByTeaName.Text = "教师姓名";
			// 
			// notePannotePanel_AsignDutyByTeaClass
			// 
			this.notePannotePanel_AsignDutyByTeaClass.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePannotePanel_AsignDutyByTeaClass.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePannotePanel_AsignDutyByTeaClass.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePannotePanel_AsignDutyByTeaClass.ForeColor = System.Drawing.Color.Black;
			this.notePannotePanel_AsignDutyByTeaClass.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePannotePanel_AsignDutyByTeaClass.Location = new System.Drawing.Point(224, 64);
			this.notePannotePanel_AsignDutyByTeaClass.MaxRows = 5;
			this.notePannotePanel_AsignDutyByTeaClass.Name = "notePannotePanel_AsignDutyByTeaClass";
			this.notePannotePanel_AsignDutyByTeaClass.ParentAutoHeight = true;
			this.notePannotePanel_AsignDutyByTeaClass.Size = new System.Drawing.Size(80, 22);
			this.notePannotePanel_AsignDutyByTeaClass.TabIndex = 4;
			this.notePannotePanel_AsignDutyByTeaClass.TabStop = false;
			this.notePannotePanel_AsignDutyByTeaClass.Text = "岗位";
			// 
			// textEdit_DutySearTeaName
			// 
			this.textEdit_DutySearTeaName.EditValue = "";
			this.textEdit_DutySearTeaName.Location = new System.Drawing.Point(312, 32);
			this.textEdit_DutySearTeaName.Name = "textEdit_DutySearTeaName";
			this.textEdit_DutySearTeaName.Size = new System.Drawing.Size(88, 23);
			this.textEdit_DutySearTeaName.TabIndex = 5;
			// 
			// simpleButton_TeaSearForDuty
			// 
			this.simpleButton_TeaSearForDuty.Location = new System.Drawing.Point(320, 136);
			this.simpleButton_TeaSearForDuty.Name = "simpleButton_TeaSearForDuty";
			this.simpleButton_TeaSearForDuty.Size = new System.Drawing.Size(88, 24);
			this.simpleButton_TeaSearForDuty.TabIndex = 8;
			this.simpleButton_TeaSearForDuty.Text = "班次检索";
			this.simpleButton_TeaSearForDuty.Click += new System.EventHandler(this.simpleButton_TeaSearForDuty_Click);
			// 
			// xtraTabPage_TeaOnDutyInfo
			// 
			this.xtraTabPage_TeaOnDutyInfo.Appearance.PageClient.BackColor = System.Drawing.Color.WhiteSmoke;
			this.xtraTabPage_TeaOnDutyInfo.Appearance.PageClient.Options.UseBackColor = true;
			this.xtraTabPage_TeaOnDutyInfo.Controls.Add(this.groupControl_TeaDutyDetailsStatistic);
			this.xtraTabPage_TeaOnDutyInfo.Controls.Add(this.groupControl_TeaDutyDetailsSearch);
			this.xtraTabPage_TeaOnDutyInfo.Controls.Add(this.groupControl_TeaDutyDetails);
			this.xtraTabPage_TeaOnDutyInfo.Controls.Add(this.groupControl_TeaDutyOutDetails);
			this.xtraTabPage_TeaOnDutyInfo.Name = "xtraTabPage_TeaOnDutyInfo";
			this.xtraTabPage_TeaOnDutyInfo.Size = new System.Drawing.Size(768, 515);
			this.xtraTabPage_TeaOnDutyInfo.Text = "出勤信息";
			// 
			// groupControl_TeaDutyDetailsStatistic
			// 
			this.groupControl_TeaDutyDetailsStatistic.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.groupControl_TeaDutyDetailsStatistic.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
			this.groupControl_TeaDutyDetailsStatistic.AppearanceCaption.Options.UseFont = true;
			this.groupControl_TeaDutyDetailsStatistic.Controls.Add(this.textEdit_TeaOut);
			this.groupControl_TeaDutyDetailsStatistic.Controls.Add(this.textEdit_TeaShouldAttend);
			this.groupControl_TeaDutyDetailsStatistic.Controls.Add(this.textEdit_TeaAttend);
			this.groupControl_TeaDutyDetailsStatistic.Controls.Add(this.textEdit_TeaAbsence);
			this.groupControl_TeaDutyDetailsStatistic.Controls.Add(this.textEdit_TeaOffTime);
			this.groupControl_TeaDutyDetailsStatistic.Controls.Add(this.textEdit_TeaOnTime);
			this.groupControl_TeaDutyDetailsStatistic.Controls.Add(this.notePanel_TeaOut);
			this.groupControl_TeaDutyDetailsStatistic.Controls.Add(this.notePanel_TeaShouldAttend);
			this.groupControl_TeaDutyDetailsStatistic.Controls.Add(this.notePanel_TeaOnTime);
			this.groupControl_TeaDutyDetailsStatistic.Controls.Add(this.notePanel_TeaOffTime);
			this.groupControl_TeaDutyDetailsStatistic.Controls.Add(this.notePanel_TeaAttend);
			this.groupControl_TeaDutyDetailsStatistic.Controls.Add(this.notePanel_TeaAbsence);
			this.groupControl_TeaDutyDetailsStatistic.Location = new System.Drawing.Point(480, 304);
			this.groupControl_TeaDutyDetailsStatistic.Name = "groupControl_TeaDutyDetailsStatistic";
			this.groupControl_TeaDutyDetailsStatistic.Size = new System.Drawing.Size(288, 208);
			this.groupControl_TeaDutyDetailsStatistic.TabIndex = 1;
			this.groupControl_TeaDutyDetailsStatistic.Text = "出勤数据统计";
			// 
			// textEdit_TeaOut
			// 
			this.textEdit_TeaOut.EditValue = "";
			this.textEdit_TeaOut.Location = new System.Drawing.Point(160, 248);
			this.textEdit_TeaOut.Name = "textEdit_TeaOut";
			// 
			// textEdit_TeaOut.Properties
			// 
			this.textEdit_TeaOut.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
			this.textEdit_TeaOut.Properties.Appearance.ForeColor = System.Drawing.Color.RoyalBlue;
			this.textEdit_TeaOut.Properties.Appearance.Options.UseFont = true;
			this.textEdit_TeaOut.Properties.Appearance.Options.UseForeColor = true;
			this.textEdit_TeaOut.Size = new System.Drawing.Size(120, 23);
			this.textEdit_TeaOut.TabIndex = 13;
			// 
			// textEdit_TeaShouldAttend
			// 
			this.textEdit_TeaShouldAttend.EditValue = "";
			this.textEdit_TeaShouldAttend.Location = new System.Drawing.Point(160, 200);
			this.textEdit_TeaShouldAttend.Name = "textEdit_TeaShouldAttend";
			// 
			// textEdit_TeaShouldAttend.Properties
			// 
			this.textEdit_TeaShouldAttend.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
			this.textEdit_TeaShouldAttend.Properties.Appearance.ForeColor = System.Drawing.Color.RoyalBlue;
			this.textEdit_TeaShouldAttend.Properties.Appearance.Options.UseFont = true;
			this.textEdit_TeaShouldAttend.Properties.Appearance.Options.UseForeColor = true;
			this.textEdit_TeaShouldAttend.Size = new System.Drawing.Size(120, 23);
			this.textEdit_TeaShouldAttend.TabIndex = 12;
			// 
			// textEdit_TeaAttend
			// 
			this.textEdit_TeaAttend.EditValue = "";
			this.textEdit_TeaAttend.Location = new System.Drawing.Point(160, 160);
			this.textEdit_TeaAttend.Name = "textEdit_TeaAttend";
			// 
			// textEdit_TeaAttend.Properties
			// 
			this.textEdit_TeaAttend.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
			this.textEdit_TeaAttend.Properties.Appearance.ForeColor = System.Drawing.Color.RoyalBlue;
			this.textEdit_TeaAttend.Properties.Appearance.Options.UseFont = true;
			this.textEdit_TeaAttend.Properties.Appearance.Options.UseForeColor = true;
			this.textEdit_TeaAttend.Size = new System.Drawing.Size(120, 23);
			this.textEdit_TeaAttend.TabIndex = 11;
			// 
			// textEdit_TeaAbsence
			// 
			this.textEdit_TeaAbsence.EditValue = "";
			this.textEdit_TeaAbsence.Location = new System.Drawing.Point(160, 120);
			this.textEdit_TeaAbsence.Name = "textEdit_TeaAbsence";
			// 
			// textEdit_TeaAbsence.Properties
			// 
			this.textEdit_TeaAbsence.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
			this.textEdit_TeaAbsence.Properties.Appearance.ForeColor = System.Drawing.Color.RoyalBlue;
			this.textEdit_TeaAbsence.Properties.Appearance.Options.UseFont = true;
			this.textEdit_TeaAbsence.Properties.Appearance.Options.UseForeColor = true;
			this.textEdit_TeaAbsence.Size = new System.Drawing.Size(120, 23);
			this.textEdit_TeaAbsence.TabIndex = 10;
			// 
			// textEdit_TeaOffTime
			// 
			this.textEdit_TeaOffTime.EditValue = "";
			this.textEdit_TeaOffTime.Location = new System.Drawing.Point(160, 80);
			this.textEdit_TeaOffTime.Name = "textEdit_TeaOffTime";
			// 
			// textEdit_TeaOffTime.Properties
			// 
			this.textEdit_TeaOffTime.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
			this.textEdit_TeaOffTime.Properties.Appearance.ForeColor = System.Drawing.Color.RoyalBlue;
			this.textEdit_TeaOffTime.Properties.Appearance.Options.UseFont = true;
			this.textEdit_TeaOffTime.Properties.Appearance.Options.UseForeColor = true;
			this.textEdit_TeaOffTime.Size = new System.Drawing.Size(120, 23);
			this.textEdit_TeaOffTime.TabIndex = 9;
			// 
			// textEdit_TeaOnTime
			// 
			this.textEdit_TeaOnTime.EditValue = "";
			this.textEdit_TeaOnTime.Location = new System.Drawing.Point(160, 40);
			this.textEdit_TeaOnTime.Name = "textEdit_TeaOnTime";
			// 
			// textEdit_TeaOnTime.Properties
			// 
			this.textEdit_TeaOnTime.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
			this.textEdit_TeaOnTime.Properties.Appearance.ForeColor = System.Drawing.Color.RoyalBlue;
			this.textEdit_TeaOnTime.Properties.Appearance.Options.UseFont = true;
			this.textEdit_TeaOnTime.Properties.Appearance.Options.UseForeColor = true;
			this.textEdit_TeaOnTime.Size = new System.Drawing.Size(120, 23);
			this.textEdit_TeaOnTime.TabIndex = 8;
			// 
			// notePanel_TeaOut
			// 
			this.notePanel_TeaOut.BackColor = System.Drawing.Color.Orange;
			this.notePanel_TeaOut.ForeColor = System.Drawing.Color.White;
			this.notePanel_TeaOut.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_TeaOut.Location = new System.Drawing.Point(56, 248);
			this.notePanel_TeaOut.MaxRows = 5;
			this.notePanel_TeaOut.Name = "notePanel_TeaOut";
			this.notePanel_TeaOut.ParentAutoHeight = true;
			this.notePanel_TeaOut.Size = new System.Drawing.Size(88, 23);
			this.notePanel_TeaOut.TabIndex = 7;
			this.notePanel_TeaOut.TabStop = false;
			this.notePanel_TeaOut.Text = "  外  出";
			// 
			// notePanel_TeaShouldAttend
			// 
			this.notePanel_TeaShouldAttend.BackColor = System.Drawing.Color.Orange;
			this.notePanel_TeaShouldAttend.ForeColor = System.Drawing.Color.White;
			this.notePanel_TeaShouldAttend.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_TeaShouldAttend.Location = new System.Drawing.Point(56, 200);
			this.notePanel_TeaShouldAttend.MaxRows = 5;
			this.notePanel_TeaShouldAttend.Name = "notePanel_TeaShouldAttend";
			this.notePanel_TeaShouldAttend.ParentAutoHeight = true;
			this.notePanel_TeaShouldAttend.Size = new System.Drawing.Size(88, 23);
			this.notePanel_TeaShouldAttend.TabIndex = 6;
			this.notePanel_TeaShouldAttend.TabStop = false;
			this.notePanel_TeaShouldAttend.Text = " 应出勤";
			// 
			// notePanel_TeaOnTime
			// 
			this.notePanel_TeaOnTime.BackColor = System.Drawing.Color.Orange;
			this.notePanel_TeaOnTime.ForeColor = System.Drawing.Color.White;
			this.notePanel_TeaOnTime.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_TeaOnTime.Location = new System.Drawing.Point(56, 40);
			this.notePanel_TeaOnTime.MaxRows = 5;
			this.notePanel_TeaOnTime.Name = "notePanel_TeaOnTime";
			this.notePanel_TeaOnTime.ParentAutoHeight = true;
			this.notePanel_TeaOnTime.Size = new System.Drawing.Size(88, 23);
			this.notePanel_TeaOnTime.TabIndex = 5;
			this.notePanel_TeaOnTime.TabStop = false;
			this.notePanel_TeaOnTime.Text = "  迟  到";
			// 
			// notePanel_TeaOffTime
			// 
			this.notePanel_TeaOffTime.BackColor = System.Drawing.Color.Orange;
			this.notePanel_TeaOffTime.ForeColor = System.Drawing.Color.White;
			this.notePanel_TeaOffTime.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_TeaOffTime.Location = new System.Drawing.Point(56, 80);
			this.notePanel_TeaOffTime.MaxRows = 5;
			this.notePanel_TeaOffTime.Name = "notePanel_TeaOffTime";
			this.notePanel_TeaOffTime.ParentAutoHeight = true;
			this.notePanel_TeaOffTime.Size = new System.Drawing.Size(88, 23);
			this.notePanel_TeaOffTime.TabIndex = 5;
			this.notePanel_TeaOffTime.TabStop = false;
			this.notePanel_TeaOffTime.Text = "  早  退";
			// 
			// notePanel_TeaAttend
			// 
			this.notePanel_TeaAttend.BackColor = System.Drawing.Color.Orange;
			this.notePanel_TeaAttend.ForeColor = System.Drawing.Color.White;
			this.notePanel_TeaAttend.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_TeaAttend.Location = new System.Drawing.Point(56, 160);
			this.notePanel_TeaAttend.MaxRows = 5;
			this.notePanel_TeaAttend.Name = "notePanel_TeaAttend";
			this.notePanel_TeaAttend.ParentAutoHeight = true;
			this.notePanel_TeaAttend.Size = new System.Drawing.Size(88, 23);
			this.notePanel_TeaAttend.TabIndex = 5;
			this.notePanel_TeaAttend.TabStop = false;
			this.notePanel_TeaAttend.Text = " 实出勤";
			// 
			// notePanel_TeaAbsence
			// 
			this.notePanel_TeaAbsence.BackColor = System.Drawing.Color.Orange;
			this.notePanel_TeaAbsence.ForeColor = System.Drawing.Color.White;
			this.notePanel_TeaAbsence.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_TeaAbsence.Location = new System.Drawing.Point(56, 120);
			this.notePanel_TeaAbsence.MaxRows = 5;
			this.notePanel_TeaAbsence.Name = "notePanel_TeaAbsence";
			this.notePanel_TeaAbsence.ParentAutoHeight = true;
			this.notePanel_TeaAbsence.Size = new System.Drawing.Size(88, 23);
			this.notePanel_TeaAbsence.TabIndex = 5;
			this.notePanel_TeaAbsence.TabStop = false;
			this.notePanel_TeaAbsence.Text = "  缺  勤";
			// 
			// groupControl_TeaDutyDetailsSearch
			// 
			this.groupControl_TeaDutyDetailsSearch.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
			this.groupControl_TeaDutyDetailsSearch.AppearanceCaption.Options.UseFont = true;
			this.groupControl_TeaDutyDetailsSearch.Controls.Add(this.simpleButton4);
			this.groupControl_TeaDutyDetailsSearch.Controls.Add(this.comboBoxEdit_TeaDutyDetailsFlowType);
			this.groupControl_TeaDutyDetailsSearch.Controls.Add(this.notePanel_TeaDutyDetailsFlowType);
			this.groupControl_TeaDutyDetailsSearch.Controls.Add(this.comboBoxEdit_TeaDutyDetailsSerType);
			this.groupControl_TeaDutyDetailsSearch.Controls.Add(this.notePanel_TeaDutyDetailsSerType);
			this.groupControl_TeaDutyDetailsSearch.Controls.Add(this.simpleButton_SearTeaDutyDetails);
			this.groupControl_TeaDutyDetailsSearch.Controls.Add(this.dateEdit_TeaDutyDetailsSearByStartTime);
			this.groupControl_TeaDutyDetailsSearch.Controls.Add(this.comboBoxEdit_TeaDutyDetailsSearByGrade);
			this.groupControl_TeaDutyDetailsSearch.Controls.Add(this.textEdit_TeaDutyDetailsSearByID);
			this.groupControl_TeaDutyDetailsSearch.Controls.Add(this.notePanel_TeaDutyDetailsSearByID);
			this.groupControl_TeaDutyDetailsSearch.Controls.Add(this.notePanel_TeaDutyDetailSearByName);
			this.groupControl_TeaDutyDetailsSearch.Controls.Add(this.notePanel_TeaDutyDetailsSearByGrade);
			this.groupControl_TeaDutyDetailsSearch.Controls.Add(this.notePanel_TeaDutyDetailsSearByClass);
			this.groupControl_TeaDutyDetailsSearch.Controls.Add(this.notePanel_TeaDutyDetailsSearByStartTime);
			this.groupControl_TeaDutyDetailsSearch.Controls.Add(this.notePanel_TeaDutyDetailsSearByEndTime);
			this.groupControl_TeaDutyDetailsSearch.Controls.Add(this.textEdit_TeaDutyDetailsSearByName);
			this.groupControl_TeaDutyDetailsSearch.Controls.Add(this.comboBoxEdit_TeaDutyDetailsSearByClass);
			this.groupControl_TeaDutyDetailsSearch.Controls.Add(this.dateEdit_TeaDutyDetailsSearByEndTime);
			this.groupControl_TeaDutyDetailsSearch.Controls.Add(this.simpleButton1);
			this.groupControl_TeaDutyDetailsSearch.Controls.Add(this.simpleButton3);
			this.groupControl_TeaDutyDetailsSearch.Location = new System.Drawing.Point(0, 0);
			this.groupControl_TeaDutyDetailsSearch.Name = "groupControl_TeaDutyDetailsSearch";
			this.groupControl_TeaDutyDetailsSearch.Size = new System.Drawing.Size(264, 304);
			this.groupControl_TeaDutyDetailsSearch.TabIndex = 0;
			this.groupControl_TeaDutyDetailsSearch.Text = "出勤信息检索条件";
			// 
			// simpleButton4
			// 
			this.simpleButton4.Location = new System.Drawing.Point(200, 272);
			this.simpleButton4.Name = "simpleButton4";
			this.simpleButton4.Size = new System.Drawing.Size(60, 23);
			this.simpleButton4.TabIndex = 13;
			this.simpleButton4.Text = "统计报表";
			this.simpleButton4.Click += new System.EventHandler(this.simpleButton4_Click);
			// 
			// comboBoxEdit_TeaDutyDetailsFlowType
			// 
			this.comboBoxEdit_TeaDutyDetailsFlowType.EditValue = "全部";
			this.comboBoxEdit_TeaDutyDetailsFlowType.Location = new System.Drawing.Point(136, 214);
			this.comboBoxEdit_TeaDutyDetailsFlowType.Name = "comboBoxEdit_TeaDutyDetailsFlowType";
			// 
			// comboBoxEdit_TeaDutyDetailsFlowType.Properties
			// 
			this.comboBoxEdit_TeaDutyDetailsFlowType.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
																																		new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
			this.comboBoxEdit_TeaDutyDetailsFlowType.Properties.Items.AddRange(new object[] {
																								"上班",
																								"下班",
																								"全部"});
			this.comboBoxEdit_TeaDutyDetailsFlowType.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
			this.comboBoxEdit_TeaDutyDetailsFlowType.Size = new System.Drawing.Size(112, 23);
			this.comboBoxEdit_TeaDutyDetailsFlowType.TabIndex = 12;
			// 
			// notePanel_TeaDutyDetailsFlowType
			// 
			this.notePanel_TeaDutyDetailsFlowType.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_TeaDutyDetailsFlowType.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_TeaDutyDetailsFlowType.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_TeaDutyDetailsFlowType.ForeColor = System.Drawing.Color.Black;
			this.notePanel_TeaDutyDetailsFlowType.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_TeaDutyDetailsFlowType.Location = new System.Drawing.Point(32, 214);
			this.notePanel_TeaDutyDetailsFlowType.MaxRows = 5;
			this.notePanel_TeaDutyDetailsFlowType.Name = "notePanel_TeaDutyDetailsFlowType";
			this.notePanel_TeaDutyDetailsFlowType.ParentAutoHeight = true;
			this.notePanel_TeaDutyDetailsFlowType.Size = new System.Drawing.Size(88, 22);
			this.notePanel_TeaDutyDetailsFlowType.TabIndex = 11;
			this.notePanel_TeaDutyDetailsFlowType.TabStop = false;
			this.notePanel_TeaDutyDetailsFlowType.Text = "状          态";
			// 
			// comboBoxEdit_TeaDutyDetailsSerType
			// 
			this.comboBoxEdit_TeaDutyDetailsSerType.EditValue = "一般查询";
			this.comboBoxEdit_TeaDutyDetailsSerType.Location = new System.Drawing.Point(136, 246);
			this.comboBoxEdit_TeaDutyDetailsSerType.Name = "comboBoxEdit_TeaDutyDetailsSerType";
			// 
			// comboBoxEdit_TeaDutyDetailsSerType.Properties
			// 
			this.comboBoxEdit_TeaDutyDetailsSerType.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
																																	   new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
			this.comboBoxEdit_TeaDutyDetailsSerType.Properties.Items.AddRange(new object[] {
																							   "一般查询",
																							   "精确查询",
																							   "综合查询"});
			this.comboBoxEdit_TeaDutyDetailsSerType.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
			this.comboBoxEdit_TeaDutyDetailsSerType.Size = new System.Drawing.Size(112, 23);
			this.comboBoxEdit_TeaDutyDetailsSerType.TabIndex = 10;
			this.comboBoxEdit_TeaDutyDetailsSerType.SelectedIndexChanged += new System.EventHandler(this.comboBoxEdit_TeaDutyDetailsSerType_SelectedIndexChanged);
			// 
			// notePanel_TeaDutyDetailsSerType
			// 
			this.notePanel_TeaDutyDetailsSerType.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_TeaDutyDetailsSerType.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_TeaDutyDetailsSerType.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_TeaDutyDetailsSerType.ForeColor = System.Drawing.Color.Black;
			this.notePanel_TeaDutyDetailsSerType.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_TeaDutyDetailsSerType.Location = new System.Drawing.Point(32, 246);
			this.notePanel_TeaDutyDetailsSerType.MaxRows = 5;
			this.notePanel_TeaDutyDetailsSerType.Name = "notePanel_TeaDutyDetailsSerType";
			this.notePanel_TeaDutyDetailsSerType.ParentAutoHeight = true;
			this.notePanel_TeaDutyDetailsSerType.Size = new System.Drawing.Size(88, 22);
			this.notePanel_TeaDutyDetailsSerType.TabIndex = 9;
			this.notePanel_TeaDutyDetailsSerType.TabStop = false;
			this.notePanel_TeaDutyDetailsSerType.Text = "查 询 类 型";
			// 
			// simpleButton_SearTeaDutyDetails
			// 
			this.simpleButton_SearTeaDutyDetails.Location = new System.Drawing.Point(70, 272);
			this.simpleButton_SearTeaDutyDetails.Name = "simpleButton_SearTeaDutyDetails";
			this.simpleButton_SearTeaDutyDetails.Size = new System.Drawing.Size(64, 23);
			this.simpleButton_SearTeaDutyDetails.TabIndex = 8;
			this.simpleButton_SearTeaDutyDetails.Text = "出勤报表";
			this.simpleButton_SearTeaDutyDetails.Click += new System.EventHandler(this.simpleButton_SearTeaDutyDetails_Click);
			// 
			// dateEdit_TeaDutyDetailsSearByStartTime
			// 
			this.dateEdit_TeaDutyDetailsSearByStartTime.EditValue = new System.DateTime(2005, 12, 31, 0, 0, 0, 0);
			this.dateEdit_TeaDutyDetailsSearByStartTime.Location = new System.Drawing.Point(136, 148);
			this.dateEdit_TeaDutyDetailsSearByStartTime.Name = "dateEdit_TeaDutyDetailsSearByStartTime";
			// 
			// dateEdit_TeaDutyDetailsSearByStartTime.Properties
			// 
			this.dateEdit_TeaDutyDetailsSearByStartTime.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
																																		   new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
			this.dateEdit_TeaDutyDetailsSearByStartTime.Properties.Mask.EditMask = "d";
			this.dateEdit_TeaDutyDetailsSearByStartTime.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.DateTime;
			this.dateEdit_TeaDutyDetailsSearByStartTime.Size = new System.Drawing.Size(112, 23);
			this.dateEdit_TeaDutyDetailsSearByStartTime.TabIndex = 7;
			// 
			// comboBoxEdit_TeaDutyDetailsSearByGrade
			// 
			this.comboBoxEdit_TeaDutyDetailsSearByGrade.EditValue = "全部";
			this.comboBoxEdit_TeaDutyDetailsSearByGrade.Location = new System.Drawing.Point(136, 84);
			this.comboBoxEdit_TeaDutyDetailsSearByGrade.Name = "comboBoxEdit_TeaDutyDetailsSearByGrade";
			// 
			// comboBoxEdit_TeaDutyDetailsSearByGrade.Properties
			// 
			this.comboBoxEdit_TeaDutyDetailsSearByGrade.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
																																		   new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
			this.comboBoxEdit_TeaDutyDetailsSearByGrade.Properties.Items.AddRange(new object[] {
																								   "全部"});
			this.comboBoxEdit_TeaDutyDetailsSearByGrade.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
			this.comboBoxEdit_TeaDutyDetailsSearByGrade.Size = new System.Drawing.Size(112, 23);
			this.comboBoxEdit_TeaDutyDetailsSearByGrade.TabIndex = 6;
			this.comboBoxEdit_TeaDutyDetailsSearByGrade.SelectedIndexChanged += new System.EventHandler(this.comboBoxEdit_TeaDutyDetailsSearByGrade_SelectedIndexChanged);
			// 
			// textEdit_TeaDutyDetailsSearByID
			// 
			this.textEdit_TeaDutyDetailsSearByID.EditValue = "";
			this.textEdit_TeaDutyDetailsSearByID.Location = new System.Drawing.Point(136, 24);
			this.textEdit_TeaDutyDetailsSearByID.Name = "textEdit_TeaDutyDetailsSearByID";
			this.textEdit_TeaDutyDetailsSearByID.Size = new System.Drawing.Size(112, 23);
			this.textEdit_TeaDutyDetailsSearByID.TabIndex = 5;
			// 
			// notePanel_TeaDutyDetailsSearByID
			// 
			this.notePanel_TeaDutyDetailsSearByID.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_TeaDutyDetailsSearByID.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_TeaDutyDetailsSearByID.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_TeaDutyDetailsSearByID.ForeColor = System.Drawing.Color.Black;
			this.notePanel_TeaDutyDetailsSearByID.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_TeaDutyDetailsSearByID.Location = new System.Drawing.Point(32, 24);
			this.notePanel_TeaDutyDetailsSearByID.MaxRows = 5;
			this.notePanel_TeaDutyDetailsSearByID.Name = "notePanel_TeaDutyDetailsSearByID";
			this.notePanel_TeaDutyDetailsSearByID.ParentAutoHeight = true;
			this.notePanel_TeaDutyDetailsSearByID.Size = new System.Drawing.Size(88, 22);
			this.notePanel_TeaDutyDetailsSearByID.TabIndex = 4;
			this.notePanel_TeaDutyDetailsSearByID.TabStop = false;
			this.notePanel_TeaDutyDetailsSearByID.Text = "教 师 工 号";
			// 
			// notePanel_TeaDutyDetailSearByName
			// 
			this.notePanel_TeaDutyDetailSearByName.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_TeaDutyDetailSearByName.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_TeaDutyDetailSearByName.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_TeaDutyDetailSearByName.ForeColor = System.Drawing.Color.Black;
			this.notePanel_TeaDutyDetailSearByName.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_TeaDutyDetailSearByName.Location = new System.Drawing.Point(32, 56);
			this.notePanel_TeaDutyDetailSearByName.MaxRows = 5;
			this.notePanel_TeaDutyDetailSearByName.Name = "notePanel_TeaDutyDetailSearByName";
			this.notePanel_TeaDutyDetailSearByName.ParentAutoHeight = true;
			this.notePanel_TeaDutyDetailSearByName.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.notePanel_TeaDutyDetailSearByName.Size = new System.Drawing.Size(88, 22);
			this.notePanel_TeaDutyDetailSearByName.TabIndex = 4;
			this.notePanel_TeaDutyDetailSearByName.TabStop = false;
			this.notePanel_TeaDutyDetailSearByName.Text = "教 师 姓 名";
			// 
			// notePanel_TeaDutyDetailsSearByGrade
			// 
			this.notePanel_TeaDutyDetailsSearByGrade.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_TeaDutyDetailsSearByGrade.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_TeaDutyDetailsSearByGrade.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_TeaDutyDetailsSearByGrade.ForeColor = System.Drawing.Color.Black;
			this.notePanel_TeaDutyDetailsSearByGrade.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_TeaDutyDetailsSearByGrade.Location = new System.Drawing.Point(32, 88);
			this.notePanel_TeaDutyDetailsSearByGrade.MaxRows = 5;
			this.notePanel_TeaDutyDetailsSearByGrade.Name = "notePanel_TeaDutyDetailsSearByGrade";
			this.notePanel_TeaDutyDetailsSearByGrade.ParentAutoHeight = true;
			this.notePanel_TeaDutyDetailsSearByGrade.Size = new System.Drawing.Size(88, 22);
			this.notePanel_TeaDutyDetailsSearByGrade.TabIndex = 4;
			this.notePanel_TeaDutyDetailsSearByGrade.TabStop = false;
			this.notePanel_TeaDutyDetailsSearByGrade.Text = "所 在 部 门";
			// 
			// notePanel_TeaDutyDetailsSearByClass
			// 
			this.notePanel_TeaDutyDetailsSearByClass.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_TeaDutyDetailsSearByClass.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_TeaDutyDetailsSearByClass.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_TeaDutyDetailsSearByClass.ForeColor = System.Drawing.Color.Black;
			this.notePanel_TeaDutyDetailsSearByClass.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_TeaDutyDetailsSearByClass.Location = new System.Drawing.Point(32, 120);
			this.notePanel_TeaDutyDetailsSearByClass.MaxRows = 5;
			this.notePanel_TeaDutyDetailsSearByClass.Name = "notePanel_TeaDutyDetailsSearByClass";
			this.notePanel_TeaDutyDetailsSearByClass.ParentAutoHeight = true;
			this.notePanel_TeaDutyDetailsSearByClass.Size = new System.Drawing.Size(88, 22);
			this.notePanel_TeaDutyDetailsSearByClass.TabIndex = 4;
			this.notePanel_TeaDutyDetailsSearByClass.TabStop = false;
			this.notePanel_TeaDutyDetailsSearByClass.Text = "岗          位";
			// 
			// notePanel_TeaDutyDetailsSearByStartTime
			// 
			this.notePanel_TeaDutyDetailsSearByStartTime.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_TeaDutyDetailsSearByStartTime.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_TeaDutyDetailsSearByStartTime.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_TeaDutyDetailsSearByStartTime.ForeColor = System.Drawing.Color.Black;
			this.notePanel_TeaDutyDetailsSearByStartTime.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_TeaDutyDetailsSearByStartTime.Location = new System.Drawing.Point(32, 152);
			this.notePanel_TeaDutyDetailsSearByStartTime.MaxRows = 5;
			this.notePanel_TeaDutyDetailsSearByStartTime.Name = "notePanel_TeaDutyDetailsSearByStartTime";
			this.notePanel_TeaDutyDetailsSearByStartTime.ParentAutoHeight = true;
			this.notePanel_TeaDutyDetailsSearByStartTime.Size = new System.Drawing.Size(88, 22);
			this.notePanel_TeaDutyDetailsSearByStartTime.TabIndex = 4;
			this.notePanel_TeaDutyDetailsSearByStartTime.TabStop = false;
			this.notePanel_TeaDutyDetailsSearByStartTime.Text = "起 始 时 间";
			// 
			// notePanel_TeaDutyDetailsSearByEndTime
			// 
			this.notePanel_TeaDutyDetailsSearByEndTime.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_TeaDutyDetailsSearByEndTime.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_TeaDutyDetailsSearByEndTime.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_TeaDutyDetailsSearByEndTime.ForeColor = System.Drawing.Color.Black;
			this.notePanel_TeaDutyDetailsSearByEndTime.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_TeaDutyDetailsSearByEndTime.Location = new System.Drawing.Point(32, 184);
			this.notePanel_TeaDutyDetailsSearByEndTime.MaxRows = 5;
			this.notePanel_TeaDutyDetailsSearByEndTime.Name = "notePanel_TeaDutyDetailsSearByEndTime";
			this.notePanel_TeaDutyDetailsSearByEndTime.ParentAutoHeight = true;
			this.notePanel_TeaDutyDetailsSearByEndTime.Size = new System.Drawing.Size(88, 22);
			this.notePanel_TeaDutyDetailsSearByEndTime.TabIndex = 4;
			this.notePanel_TeaDutyDetailsSearByEndTime.TabStop = false;
			this.notePanel_TeaDutyDetailsSearByEndTime.Text = "结 束 时 间";
			// 
			// textEdit_TeaDutyDetailsSearByName
			// 
			this.textEdit_TeaDutyDetailsSearByName.EditValue = "";
			this.textEdit_TeaDutyDetailsSearByName.Location = new System.Drawing.Point(136, 52);
			this.textEdit_TeaDutyDetailsSearByName.Name = "textEdit_TeaDutyDetailsSearByName";
			this.textEdit_TeaDutyDetailsSearByName.Size = new System.Drawing.Size(112, 23);
			this.textEdit_TeaDutyDetailsSearByName.TabIndex = 5;
			// 
			// comboBoxEdit_TeaDutyDetailsSearByClass
			// 
			this.comboBoxEdit_TeaDutyDetailsSearByClass.EditValue = "全部";
			this.comboBoxEdit_TeaDutyDetailsSearByClass.Location = new System.Drawing.Point(136, 116);
			this.comboBoxEdit_TeaDutyDetailsSearByClass.Name = "comboBoxEdit_TeaDutyDetailsSearByClass";
			// 
			// comboBoxEdit_TeaDutyDetailsSearByClass.Properties
			// 
			this.comboBoxEdit_TeaDutyDetailsSearByClass.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
																																		   new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
			this.comboBoxEdit_TeaDutyDetailsSearByClass.Properties.Items.AddRange(new object[] {
																								   "全部"});
			this.comboBoxEdit_TeaDutyDetailsSearByClass.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
			this.comboBoxEdit_TeaDutyDetailsSearByClass.Size = new System.Drawing.Size(112, 23);
			this.comboBoxEdit_TeaDutyDetailsSearByClass.TabIndex = 6;
			this.comboBoxEdit_TeaDutyDetailsSearByClass.SelectedIndexChanged += new System.EventHandler(this.comboBoxEdit_TeaDutyDetailsSearByClass_SelectedIndexChanged);
			// 
			// dateEdit_TeaDutyDetailsSearByEndTime
			// 
			this.dateEdit_TeaDutyDetailsSearByEndTime.EditValue = new System.DateTime(2005, 12, 31, 0, 0, 0, 0);
			this.dateEdit_TeaDutyDetailsSearByEndTime.Location = new System.Drawing.Point(136, 182);
			this.dateEdit_TeaDutyDetailsSearByEndTime.Name = "dateEdit_TeaDutyDetailsSearByEndTime";
			// 
			// dateEdit_TeaDutyDetailsSearByEndTime.Properties
			// 
			this.dateEdit_TeaDutyDetailsSearByEndTime.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
																																		 new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
			this.dateEdit_TeaDutyDetailsSearByEndTime.Properties.Mask.EditMask = "d";
			this.dateEdit_TeaDutyDetailsSearByEndTime.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.DateTime;
			this.dateEdit_TeaDutyDetailsSearByEndTime.Size = new System.Drawing.Size(112, 23);
			this.dateEdit_TeaDutyDetailsSearByEndTime.TabIndex = 7;
			// 
			// simpleButton1
			// 
			this.simpleButton1.Location = new System.Drawing.Point(8, 272);
			this.simpleButton1.Name = "simpleButton1";
			this.simpleButton1.Size = new System.Drawing.Size(60, 23);
			this.simpleButton1.TabIndex = 8;
			this.simpleButton1.Text = "检索";
			this.simpleButton1.Click += new System.EventHandler(this.simpleButton1_Click);
			// 
			// simpleButton3
			// 
			this.simpleButton3.Location = new System.Drawing.Point(136, 272);
			this.simpleButton3.Name = "simpleButton3";
			this.simpleButton3.Size = new System.Drawing.Size(60, 23);
			this.simpleButton3.TabIndex = 8;
			this.simpleButton3.Text = "外出报表";
			this.simpleButton3.Click += new System.EventHandler(this.simpleButton3_Click);
			// 
			// groupControl_TeaDutyDetails
			// 
			this.groupControl_TeaDutyDetails.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 
				| System.Windows.Forms.AnchorStyles.Right)));
			this.groupControl_TeaDutyDetails.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
			this.groupControl_TeaDutyDetails.AppearanceCaption.Options.UseFont = true;
			this.groupControl_TeaDutyDetails.Controls.Add(this.gridControl_TeaDutySummary);
			this.groupControl_TeaDutyDetails.Controls.Add(this.gridControl_TeaDutyNormal);
			this.groupControl_TeaDutyDetails.Controls.Add(this.popupContainerControl_Remarks);
			this.groupControl_TeaDutyDetails.Controls.Add(this.gridControl_TeaDutyDetails);
			this.groupControl_TeaDutyDetails.Location = new System.Drawing.Point(264, 0);
			this.groupControl_TeaDutyDetails.Name = "groupControl_TeaDutyDetails";
			this.groupControl_TeaDutyDetails.Size = new System.Drawing.Size(504, 304);
			this.groupControl_TeaDutyDetails.TabIndex = 0;
			this.groupControl_TeaDutyDetails.Text = "出勤信息";
			// 
			// gridControl_TeaDutySummary
			// 
			this.gridControl_TeaDutySummary.Dock = System.Windows.Forms.DockStyle.Fill;
			// 
			// gridControl_TeaDutySummary.EmbeddedNavigator
			// 
			this.gridControl_TeaDutySummary.EmbeddedNavigator.Name = "";
			this.gridControl_TeaDutySummary.Location = new System.Drawing.Point(3, 18);
			this.gridControl_TeaDutySummary.MainView = this.advBandedGridView4;
			this.gridControl_TeaDutySummary.Name = "gridControl_TeaDutySummary";
			this.gridControl_TeaDutySummary.Size = new System.Drawing.Size(498, 283);
			this.gridControl_TeaDutySummary.TabIndex = 3;
			this.gridControl_TeaDutySummary.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
																													  this.advBandedGridView4,
																													  this.gridView3});
			this.gridControl_TeaDutySummary.Visible = false;
			// 
			// advBandedGridView4
			// 
			this.advBandedGridView4.Bands.AddRange(new DevExpress.XtraGrid.Views.BandedGrid.GridBand[] {
																										   this.gridBand4});
			this.advBandedGridView4.Columns.AddRange(new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn[] {
																													 this.bandedGridColumn8,
																													 this.bandedGridColumn9,
																													 this.bandedGridColumn10,
																													 this.bandedGridColumn11,
																													 this.bandedGridColumn12,
																													 this.bandedGridColumn13,
																													 this.bandedGridColumn14,
																													 this.bandedGridColumn15});
			this.advBandedGridView4.GridControl = this.gridControl_TeaDutySummary;
			this.advBandedGridView4.Name = "advBandedGridView4";
			this.advBandedGridView4.OptionsCustomization.AllowFilter = false;
			this.advBandedGridView4.OptionsView.ShowFilterPanel = false;
			this.advBandedGridView4.OptionsView.ShowGroupPanel = false;
			// 
			// gridBand4
			// 
			this.gridBand4.Caption = "教师出勤综合信息";
			this.gridBand4.Columns.Add(this.bandedGridColumn8);
			this.gridBand4.Columns.Add(this.bandedGridColumn10);
			this.gridBand4.Columns.Add(this.bandedGridColumn12);
			this.gridBand4.Columns.Add(this.bandedGridColumn14);
			this.gridBand4.Columns.Add(this.bandedGridColumn9);
			this.gridBand4.Columns.Add(this.bandedGridColumn11);
			this.gridBand4.Columns.Add(this.bandedGridColumn13);
			this.gridBand4.Columns.Add(this.bandedGridColumn15);
			this.gridBand4.Name = "gridBand4";
			this.gridBand4.Width = 589;
			// 
			// bandedGridColumn8
			// 
			this.bandedGridColumn8.AppearanceCell.Options.UseTextOptions = true;
			this.bandedGridColumn8.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.bandedGridColumn8.AppearanceHeader.Options.UseTextOptions = true;
			this.bandedGridColumn8.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.bandedGridColumn8.Caption = "教师姓名";
			this.bandedGridColumn8.FieldName = "T_Name";
			this.bandedGridColumn8.Name = "bandedGridColumn8";
			this.bandedGridColumn8.OptionsColumn.AllowEdit = false;
			this.bandedGridColumn8.OptionsColumn.AllowFocus = false;
			this.bandedGridColumn8.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.bandedGridColumn8.OptionsColumn.AllowIncrementalSearch = false;
			this.bandedGridColumn8.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
			this.bandedGridColumn8.OptionsColumn.AllowMove = false;
			this.bandedGridColumn8.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
			this.bandedGridColumn8.OptionsColumn.ReadOnly = true;
			this.bandedGridColumn8.OptionsColumn.ShowInCustomizationForm = false;
			this.bandedGridColumn8.Visible = true;
			this.bandedGridColumn8.Width = 145;
			// 
			// bandedGridColumn10
			// 
			this.bandedGridColumn10.AppearanceCell.Options.UseTextOptions = true;
			this.bandedGridColumn10.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.bandedGridColumn10.AppearanceHeader.Options.UseTextOptions = true;
			this.bandedGridColumn10.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.bandedGridColumn10.Caption = "迟到";
			this.bandedGridColumn10.FieldName = "Late";
			this.bandedGridColumn10.Name = "bandedGridColumn10";
			this.bandedGridColumn10.OptionsColumn.AllowEdit = false;
			this.bandedGridColumn10.OptionsColumn.AllowFocus = false;
			this.bandedGridColumn10.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.bandedGridColumn10.OptionsColumn.AllowIncrementalSearch = false;
			this.bandedGridColumn10.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
			this.bandedGridColumn10.OptionsColumn.AllowMove = false;
			this.bandedGridColumn10.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
			this.bandedGridColumn10.OptionsColumn.ReadOnly = true;
			this.bandedGridColumn10.OptionsColumn.ShowInCustomizationForm = false;
			this.bandedGridColumn10.Visible = true;
			this.bandedGridColumn10.Width = 145;
			// 
			// bandedGridColumn12
			// 
			this.bandedGridColumn12.AppearanceCell.Options.UseTextOptions = true;
			this.bandedGridColumn12.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.bandedGridColumn12.AppearanceHeader.Options.UseTextOptions = true;
			this.bandedGridColumn12.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.bandedGridColumn12.Caption = "缺席";
			this.bandedGridColumn12.FieldName = "Absence";
			this.bandedGridColumn12.Name = "bandedGridColumn12";
			this.bandedGridColumn12.OptionsColumn.AllowEdit = false;
			this.bandedGridColumn12.OptionsColumn.AllowFocus = false;
			this.bandedGridColumn12.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.bandedGridColumn12.OptionsColumn.AllowIncrementalSearch = false;
			this.bandedGridColumn12.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
			this.bandedGridColumn12.OptionsColumn.AllowMove = false;
			this.bandedGridColumn12.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
			this.bandedGridColumn12.OptionsColumn.ReadOnly = true;
			this.bandedGridColumn12.OptionsColumn.ShowInCustomizationForm = false;
			this.bandedGridColumn12.Visible = true;
			this.bandedGridColumn12.Width = 145;
			// 
			// bandedGridColumn14
			// 
			this.bandedGridColumn14.AppearanceCell.Options.UseTextOptions = true;
			this.bandedGridColumn14.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.bandedGridColumn14.AppearanceHeader.Options.UseTextOptions = true;
			this.bandedGridColumn14.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.bandedGridColumn14.Caption = "应出勤";
			this.bandedGridColumn14.FieldName = "ShouldAttend";
			this.bandedGridColumn14.Name = "bandedGridColumn14";
			this.bandedGridColumn14.OptionsColumn.AllowEdit = false;
			this.bandedGridColumn14.OptionsColumn.AllowFocus = false;
			this.bandedGridColumn14.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.bandedGridColumn14.OptionsColumn.AllowIncrementalSearch = false;
			this.bandedGridColumn14.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
			this.bandedGridColumn14.OptionsColumn.AllowMove = false;
			this.bandedGridColumn14.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
			this.bandedGridColumn14.OptionsColumn.ReadOnly = true;
			this.bandedGridColumn14.OptionsColumn.ShowInCustomizationForm = false;
			this.bandedGridColumn14.Visible = true;
			this.bandedGridColumn14.Width = 154;
			// 
			// bandedGridColumn9
			// 
			this.bandedGridColumn9.AppearanceCell.Options.UseTextOptions = true;
			this.bandedGridColumn9.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.bandedGridColumn9.AppearanceHeader.Options.UseTextOptions = true;
			this.bandedGridColumn9.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.bandedGridColumn9.Caption = "教师工号";
			this.bandedGridColumn9.FieldName = "T_Number";
			this.bandedGridColumn9.Name = "bandedGridColumn9";
			this.bandedGridColumn9.OptionsColumn.AllowEdit = false;
			this.bandedGridColumn9.OptionsColumn.AllowFocus = false;
			this.bandedGridColumn9.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.bandedGridColumn9.OptionsColumn.AllowIncrementalSearch = false;
			this.bandedGridColumn9.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
			this.bandedGridColumn9.OptionsColumn.AllowMove = false;
			this.bandedGridColumn9.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
			this.bandedGridColumn9.OptionsColumn.ReadOnly = true;
			this.bandedGridColumn9.OptionsColumn.ShowInCustomizationForm = false;
			this.bandedGridColumn9.RowIndex = 1;
			this.bandedGridColumn9.Visible = true;
			this.bandedGridColumn9.Width = 145;
			// 
			// bandedGridColumn11
			// 
			this.bandedGridColumn11.AppearanceCell.Options.UseTextOptions = true;
			this.bandedGridColumn11.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.bandedGridColumn11.AppearanceHeader.Options.UseTextOptions = true;
			this.bandedGridColumn11.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.bandedGridColumn11.Caption = "早退";
			this.bandedGridColumn11.FieldName = "OffTime";
			this.bandedGridColumn11.Name = "bandedGridColumn11";
			this.bandedGridColumn11.OptionsColumn.AllowEdit = false;
			this.bandedGridColumn11.OptionsColumn.AllowFocus = false;
			this.bandedGridColumn11.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.bandedGridColumn11.OptionsColumn.AllowIncrementalSearch = false;
			this.bandedGridColumn11.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
			this.bandedGridColumn11.OptionsColumn.AllowMove = false;
			this.bandedGridColumn11.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
			this.bandedGridColumn11.OptionsColumn.ReadOnly = true;
			this.bandedGridColumn11.OptionsColumn.ShowInCustomizationForm = false;
			this.bandedGridColumn11.RowIndex = 1;
			this.bandedGridColumn11.Visible = true;
			this.bandedGridColumn11.Width = 145;
			// 
			// bandedGridColumn13
			// 
			this.bandedGridColumn13.AppearanceCell.Options.UseTextOptions = true;
			this.bandedGridColumn13.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.bandedGridColumn13.AppearanceHeader.Options.UseTextOptions = true;
			this.bandedGridColumn13.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.bandedGridColumn13.Caption = "实出勤";
			this.bandedGridColumn13.FieldName = "Attend";
			this.bandedGridColumn13.Name = "bandedGridColumn13";
			this.bandedGridColumn13.OptionsColumn.AllowEdit = false;
			this.bandedGridColumn13.OptionsColumn.AllowFocus = false;
			this.bandedGridColumn13.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.bandedGridColumn13.OptionsColumn.AllowIncrementalSearch = false;
			this.bandedGridColumn13.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
			this.bandedGridColumn13.OptionsColumn.AllowMove = false;
			this.bandedGridColumn13.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
			this.bandedGridColumn13.OptionsColumn.ReadOnly = true;
			this.bandedGridColumn13.OptionsColumn.ShowInCustomizationForm = false;
			this.bandedGridColumn13.RowIndex = 1;
			this.bandedGridColumn13.Visible = true;
			this.bandedGridColumn13.Width = 145;
			// 
			// bandedGridColumn15
			// 
			this.bandedGridColumn15.AppearanceCell.Options.UseTextOptions = true;
			this.bandedGridColumn15.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.bandedGridColumn15.AppearanceHeader.Options.UseTextOptions = true;
			this.bandedGridColumn15.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.bandedGridColumn15.Caption = "外出";
			this.bandedGridColumn15.FieldName = "Out";
			this.bandedGridColumn15.Name = "bandedGridColumn15";
			this.bandedGridColumn15.OptionsColumn.AllowEdit = false;
			this.bandedGridColumn15.OptionsColumn.AllowFocus = false;
			this.bandedGridColumn15.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.bandedGridColumn15.OptionsColumn.AllowIncrementalSearch = false;
			this.bandedGridColumn15.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
			this.bandedGridColumn15.OptionsColumn.AllowMove = false;
			this.bandedGridColumn15.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
			this.bandedGridColumn15.OptionsColumn.ReadOnly = true;
			this.bandedGridColumn15.OptionsColumn.ShowInCustomizationForm = false;
			this.bandedGridColumn15.RowIndex = 1;
			this.bandedGridColumn15.Visible = true;
			this.bandedGridColumn15.Width = 154;
			// 
			// gridView3
			// 
			this.gridView3.GridControl = this.gridControl_TeaDutySummary;
			this.gridView3.Name = "gridView3";
			// 
			// gridControl_TeaDutyNormal
			// 
			this.gridControl_TeaDutyNormal.Dock = System.Windows.Forms.DockStyle.Fill;
			// 
			// gridControl_TeaDutyNormal.EmbeddedNavigator
			// 
			this.gridControl_TeaDutyNormal.EmbeddedNavigator.Name = "";
			this.gridControl_TeaDutyNormal.Location = new System.Drawing.Point(3, 18);
			this.gridControl_TeaDutyNormal.MainView = this.advBandedGridView3;
			this.gridControl_TeaDutyNormal.Name = "gridControl_TeaDutyNormal";
			this.gridControl_TeaDutyNormal.Size = new System.Drawing.Size(498, 283);
			this.gridControl_TeaDutyNormal.TabIndex = 2;
			this.gridControl_TeaDutyNormal.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
																													 this.advBandedGridView3});
			// 
			// advBandedGridView3
			// 
			this.advBandedGridView3.Bands.AddRange(new DevExpress.XtraGrid.Views.BandedGrid.GridBand[] {
																										   this.gridBand3});
			this.advBandedGridView3.Columns.AddRange(new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn[] {
																													 this.bandedGridColumn1,
																													 this.bandedGridColumn2,
																													 this.bandedGridColumn3,
																													 this.bandedGridColumn4,
																													 this.bandedGridColumn5,
																													 this.bandedGridColumn6,
																													 this.bandedGridColumn7});
			this.advBandedGridView3.GridControl = this.gridControl_TeaDutyNormal;
			this.advBandedGridView3.Name = "advBandedGridView3";
			this.advBandedGridView3.OptionsCustomization.AllowFilter = false;
			this.advBandedGridView3.OptionsView.ShowFilterPanel = false;
			this.advBandedGridView3.OptionsView.ShowGroupPanel = false;
			// 
			// gridBand3
			// 
			this.gridBand3.Caption = "教师出勤信息";
			this.gridBand3.Columns.Add(this.bandedGridColumn1);
			this.gridBand3.Columns.Add(this.bandedGridColumn2);
			this.gridBand3.Columns.Add(this.bandedGridColumn3);
			this.gridBand3.Columns.Add(this.bandedGridColumn4);
			this.gridBand3.Columns.Add(this.bandedGridColumn5);
			this.gridBand3.Columns.Add(this.bandedGridColumn6);
			this.gridBand3.Columns.Add(this.bandedGridColumn7);
			this.gridBand3.Name = "gridBand3";
			this.gridBand3.Width = 645;
			// 
			// bandedGridColumn1
			// 
			this.bandedGridColumn1.AppearanceCell.Options.UseTextOptions = true;
			this.bandedGridColumn1.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.bandedGridColumn1.AppearanceHeader.Options.UseTextOptions = true;
			this.bandedGridColumn1.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.bandedGridColumn1.Caption = "序号";
			this.bandedGridColumn1.FieldName = "T_OrderNumber";
			this.bandedGridColumn1.Name = "bandedGridColumn1";
			this.bandedGridColumn1.OptionsColumn.AllowEdit = false;
			this.bandedGridColumn1.OptionsColumn.AllowFocus = false;
			this.bandedGridColumn1.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.bandedGridColumn1.OptionsColumn.AllowIncrementalSearch = false;
			this.bandedGridColumn1.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
			this.bandedGridColumn1.OptionsColumn.AllowMove = false;
			this.bandedGridColumn1.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
			this.bandedGridColumn1.OptionsColumn.ReadOnly = true;
			this.bandedGridColumn1.OptionsColumn.ShowInCustomizationForm = false;
			this.bandedGridColumn1.Visible = true;
			this.bandedGridColumn1.Width = 67;
			// 
			// bandedGridColumn2
			// 
			this.bandedGridColumn2.AppearanceCell.Options.UseTextOptions = true;
			this.bandedGridColumn2.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.bandedGridColumn2.AppearanceHeader.Options.UseTextOptions = true;
			this.bandedGridColumn2.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.bandedGridColumn2.Caption = "教师姓名";
			this.bandedGridColumn2.FieldName = "T_Name";
			this.bandedGridColumn2.Name = "bandedGridColumn2";
			this.bandedGridColumn2.OptionsColumn.AllowEdit = false;
			this.bandedGridColumn2.OptionsColumn.AllowFocus = false;
			this.bandedGridColumn2.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.bandedGridColumn2.OptionsColumn.AllowIncrementalSearch = false;
			this.bandedGridColumn2.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
			this.bandedGridColumn2.OptionsColumn.AllowMove = false;
			this.bandedGridColumn2.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
			this.bandedGridColumn2.OptionsColumn.ReadOnly = true;
			this.bandedGridColumn2.OptionsColumn.ShowInCustomizationForm = false;
			this.bandedGridColumn2.Visible = true;
			this.bandedGridColumn2.Width = 86;
			// 
			// bandedGridColumn3
			// 
			this.bandedGridColumn3.AppearanceCell.Options.UseTextOptions = true;
			this.bandedGridColumn3.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.bandedGridColumn3.AppearanceHeader.Options.UseTextOptions = true;
			this.bandedGridColumn3.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.bandedGridColumn3.Caption = "教师工号";
			this.bandedGridColumn3.FieldName = "T_Number";
			this.bandedGridColumn3.Name = "bandedGridColumn3";
			this.bandedGridColumn3.OptionsColumn.AllowEdit = false;
			this.bandedGridColumn3.OptionsColumn.AllowFocus = false;
			this.bandedGridColumn3.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.bandedGridColumn3.OptionsColumn.AllowIncrementalSearch = false;
			this.bandedGridColumn3.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
			this.bandedGridColumn3.OptionsColumn.AllowMove = false;
			this.bandedGridColumn3.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
			this.bandedGridColumn3.OptionsColumn.ReadOnly = true;
			this.bandedGridColumn3.OptionsColumn.ShowInCustomizationForm = false;
			this.bandedGridColumn3.Visible = true;
			this.bandedGridColumn3.Width = 87;
			// 
			// bandedGridColumn4
			// 
			this.bandedGridColumn4.AppearanceCell.Options.UseTextOptions = true;
			this.bandedGridColumn4.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.bandedGridColumn4.AppearanceHeader.Options.UseTextOptions = true;
			this.bandedGridColumn4.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.bandedGridColumn4.Caption = "所在部门";
			this.bandedGridColumn4.FieldName = "T_Depart";
			this.bandedGridColumn4.Name = "bandedGridColumn4";
			this.bandedGridColumn4.OptionsColumn.AllowEdit = false;
			this.bandedGridColumn4.OptionsColumn.AllowFocus = false;
			this.bandedGridColumn4.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.bandedGridColumn4.OptionsColumn.AllowIncrementalSearch = false;
			this.bandedGridColumn4.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
			this.bandedGridColumn4.OptionsColumn.AllowMove = false;
			this.bandedGridColumn4.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
			this.bandedGridColumn4.OptionsColumn.ReadOnly = true;
			this.bandedGridColumn4.OptionsColumn.ShowInCustomizationForm = false;
			this.bandedGridColumn4.Visible = true;
			this.bandedGridColumn4.Width = 84;
			// 
			// bandedGridColumn5
			// 
			this.bandedGridColumn5.AppearanceCell.Options.UseTextOptions = true;
			this.bandedGridColumn5.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.bandedGridColumn5.AppearanceHeader.Options.UseTextOptions = true;
			this.bandedGridColumn5.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.bandedGridColumn5.Caption = "岗位";
			this.bandedGridColumn5.FieldName = "T_Duty";
			this.bandedGridColumn5.Name = "bandedGridColumn5";
			this.bandedGridColumn5.OptionsColumn.AllowEdit = false;
			this.bandedGridColumn5.OptionsColumn.AllowFocus = false;
			this.bandedGridColumn5.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.bandedGridColumn5.OptionsColumn.AllowIncrementalSearch = false;
			this.bandedGridColumn5.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
			this.bandedGridColumn5.OptionsColumn.AllowMove = false;
			this.bandedGridColumn5.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
			this.bandedGridColumn5.OptionsColumn.ReadOnly = true;
			this.bandedGridColumn5.OptionsColumn.ShowInCustomizationForm = false;
			this.bandedGridColumn5.Visible = true;
			this.bandedGridColumn5.Width = 78;
			// 
			// bandedGridColumn6
			// 
			this.bandedGridColumn6.AppearanceCell.Options.UseTextOptions = true;
			this.bandedGridColumn6.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.bandedGridColumn6.AppearanceHeader.Options.UseTextOptions = true;
			this.bandedGridColumn6.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.bandedGridColumn6.Caption = "记录时间";
			this.bandedGridColumn6.DisplayFormat.FormatString = "yyyy-MM-dd HH:mm:ss";
			this.bandedGridColumn6.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
			this.bandedGridColumn6.FieldName = "teaflow_date";
			this.bandedGridColumn6.Name = "bandedGridColumn6";
			this.bandedGridColumn6.OptionsColumn.AllowEdit = false;
			this.bandedGridColumn6.OptionsColumn.AllowFocus = false;
			this.bandedGridColumn6.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.bandedGridColumn6.OptionsColumn.AllowIncrementalSearch = false;
			this.bandedGridColumn6.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
			this.bandedGridColumn6.OptionsColumn.AllowMove = false;
			this.bandedGridColumn6.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
			this.bandedGridColumn6.OptionsColumn.ReadOnly = true;
			this.bandedGridColumn6.OptionsColumn.ShowInCustomizationForm = false;
			this.bandedGridColumn6.Visible = true;
			this.bandedGridColumn6.Width = 127;
			// 
			// bandedGridColumn7
			// 
			this.bandedGridColumn7.AppearanceCell.Options.UseTextOptions = true;
			this.bandedGridColumn7.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.bandedGridColumn7.AppearanceHeader.Options.UseTextOptions = true;
			this.bandedGridColumn7.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.bandedGridColumn7.Caption = "记录状态";
			this.bandedGridColumn7.FieldName = "teafs_name";
			this.bandedGridColumn7.Name = "bandedGridColumn7";
			this.bandedGridColumn7.OptionsColumn.AllowEdit = false;
			this.bandedGridColumn7.OptionsColumn.AllowFocus = false;
			this.bandedGridColumn7.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.bandedGridColumn7.OptionsColumn.AllowIncrementalSearch = false;
			this.bandedGridColumn7.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
			this.bandedGridColumn7.OptionsColumn.AllowMove = false;
			this.bandedGridColumn7.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
			this.bandedGridColumn7.OptionsColumn.ReadOnly = true;
			this.bandedGridColumn7.OptionsColumn.ShowInCustomizationForm = false;
			this.bandedGridColumn7.Visible = true;
			this.bandedGridColumn7.Width = 116;
			// 
			// popupContainerControl_Remarks
			// 
			this.popupContainerControl_Remarks.Controls.Add(this.memoEdit_Remarks);
			this.popupContainerControl_Remarks.Location = new System.Drawing.Point(48, 120);
			this.popupContainerControl_Remarks.Name = "popupContainerControl_Remarks";
			this.popupContainerControl_Remarks.TabIndex = 1;
			this.popupContainerControl_Remarks.Text = "popupContainerControl8";
			// 
			// memoEdit_Remarks
			// 
			this.memoEdit_Remarks.Dock = System.Windows.Forms.DockStyle.Fill;
			this.memoEdit_Remarks.EditValue = "";
			this.memoEdit_Remarks.Location = new System.Drawing.Point(0, 0);
			this.memoEdit_Remarks.Name = "memoEdit_Remarks";
			this.memoEdit_Remarks.Size = new System.Drawing.Size(200, 100);
			this.memoEdit_Remarks.TabIndex = 0;
			// 
			// gridControl_TeaDutyDetails
			// 
			this.gridControl_TeaDutyDetails.Dock = System.Windows.Forms.DockStyle.Fill;
			// 
			// gridControl_TeaDutyDetails.EmbeddedNavigator
			// 
			this.gridControl_TeaDutyDetails.EmbeddedNavigator.Name = "";
			this.gridControl_TeaDutyDetails.Location = new System.Drawing.Point(3, 18);
			this.gridControl_TeaDutyDetails.MainView = this.advBandedGridView2;
			this.gridControl_TeaDutyDetails.Name = "gridControl_TeaDutyDetails";
			this.gridControl_TeaDutyDetails.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
																																this.repositoryItemMemoEdit1,
																																this.repositoryItemPopupContainerEdit8});
			this.gridControl_TeaDutyDetails.Size = new System.Drawing.Size(498, 283);
			this.gridControl_TeaDutyDetails.TabIndex = 0;
			this.gridControl_TeaDutyDetails.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
																													  this.advBandedGridView2,
																													  this.gridView2});
			// 
			// advBandedGridView2
			// 
			this.advBandedGridView2.Bands.AddRange(new DevExpress.XtraGrid.Views.BandedGrid.GridBand[] {
																										   this.gridBand2});
			this.advBandedGridView2.Columns.AddRange(new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn[] {
																													 this.gridColumn13,
																													 this.gridColumn14,
																													 this.gridColumn15,
																													 this.gridColumn16,
																													 this.gridColumn17,
																													 this.gridColumn18,
																													 this.gridColumn19,
																													 this.gridColumn20,
																													 this.gridColumn21,
																													 this.gridColumn22,
																													 this.gridColumn23,
																													 this.gridColumn24,
																													 this.gridColumn25,
																													 this.gridColumn34,
																													 this.gridColumn35});
			this.advBandedGridView2.GridControl = this.gridControl_TeaDutyDetails;
			this.advBandedGridView2.Name = "advBandedGridView2";
			this.advBandedGridView2.OptionsCustomization.AllowFilter = false;
			this.advBandedGridView2.OptionsCustomization.AllowGroup = false;
			this.advBandedGridView2.OptionsDetail.EnableDetailToolTip = true;
			this.advBandedGridView2.OptionsView.ShowFilterPanel = false;
			this.advBandedGridView2.OptionsView.ShowGroupPanel = false;
			// 
			// gridBand2
			// 
			this.gridBand2.Caption = "教师出勤详细信息";
			this.gridBand2.Columns.Add(this.gridColumn13);
			this.gridBand2.Columns.Add(this.gridColumn14);
			this.gridBand2.Columns.Add(this.gridColumn15);
			this.gridBand2.Columns.Add(this.gridColumn16);
			this.gridBand2.Columns.Add(this.gridColumn17);
			this.gridBand2.Columns.Add(this.gridColumn18);
			this.gridBand2.Columns.Add(this.gridColumn19);
			this.gridBand2.Columns.Add(this.gridColumn20);
			this.gridBand2.Columns.Add(this.gridColumn21);
			this.gridBand2.Columns.Add(this.gridColumn22);
			this.gridBand2.Columns.Add(this.gridColumn23);
			this.gridBand2.Columns.Add(this.gridColumn24);
			this.gridBand2.Columns.Add(this.gridColumn25);
			this.gridBand2.Columns.Add(this.gridColumn34);
			this.gridBand2.Columns.Add(this.gridColumn35);
			this.gridBand2.Name = "gridBand2";
			this.gridBand2.Width = 602;
			// 
			// gridColumn13
			// 
			this.gridColumn13.AppearanceCell.Options.UseTextOptions = true;
			this.gridColumn13.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn13.AppearanceHeader.Options.UseTextOptions = true;
			this.gridColumn13.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn13.Caption = "姓名";
			this.gridColumn13.FieldName = "T_Name";
			this.gridColumn13.Name = "gridColumn13";
			this.gridColumn13.OptionsColumn.AllowEdit = false;
			this.gridColumn13.Visible = true;
			this.gridColumn13.Width = 44;
			// 
			// gridColumn14
			// 
			this.gridColumn14.AppearanceCell.Options.UseTextOptions = true;
			this.gridColumn14.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn14.AppearanceHeader.Options.UseTextOptions = true;
			this.gridColumn14.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn14.Caption = "工号";
			this.gridColumn14.FieldName = "T_Number";
			this.gridColumn14.Name = "gridColumn14";
			this.gridColumn14.OptionsColumn.AllowEdit = false;
			this.gridColumn14.Visible = true;
			this.gridColumn14.Width = 41;
			// 
			// gridColumn15
			// 
			this.gridColumn15.AppearanceCell.Options.UseTextOptions = true;
			this.gridColumn15.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn15.AppearanceHeader.Options.UseTextOptions = true;
			this.gridColumn15.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn15.Caption = "部门";
			this.gridColumn15.FieldName = "T_Depart";
			this.gridColumn15.Name = "gridColumn15";
			this.gridColumn15.OptionsColumn.AllowEdit = false;
			this.gridColumn15.Visible = true;
			this.gridColumn15.Width = 41;
			// 
			// gridColumn16
			// 
			this.gridColumn16.AppearanceCell.Options.UseTextOptions = true;
			this.gridColumn16.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn16.AppearanceHeader.Options.UseTextOptions = true;
			this.gridColumn16.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn16.Caption = "岗位";
			this.gridColumn16.FieldName = "T_Duty";
			this.gridColumn16.Name = "gridColumn16";
			this.gridColumn16.OptionsColumn.AllowEdit = false;
			this.gridColumn16.Visible = true;
			this.gridColumn16.Width = 45;
			// 
			// gridColumn17
			// 
			this.gridColumn17.AppearanceCell.Options.UseTextOptions = true;
			this.gridColumn17.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn17.AppearanceHeader.Options.UseTextOptions = true;
			this.gridColumn17.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn17.Caption = "日期";
			this.gridColumn17.FieldName = "teaondutyanaly_date";
			this.gridColumn17.MinWidth = 10;
			this.gridColumn17.Name = "gridColumn17";
			this.gridColumn17.OptionsColumn.AllowEdit = false;
			this.gridColumn17.Width = 49;
			// 
			// gridColumn18
			// 
			this.gridColumn18.AppearanceCell.Options.UseTextOptions = true;
			this.gridColumn18.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn18.AppearanceHeader.Options.UseTextOptions = true;
			this.gridColumn18.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn18.Caption = "入校时间";
			this.gridColumn18.DisplayFormat.FormatString = "g";
			this.gridColumn18.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
			this.gridColumn18.FieldName = "teaondutyanaly_entertime";
			this.gridColumn18.Name = "gridColumn18";
			this.gridColumn18.OptionsColumn.AllowEdit = false;
			this.gridColumn18.Visible = true;
			this.gridColumn18.Width = 68;
			// 
			// gridColumn19
			// 
			this.gridColumn19.AppearanceCell.Options.UseTextOptions = true;
			this.gridColumn19.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn19.AppearanceHeader.Options.UseTextOptions = true;
			this.gridColumn19.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn19.Caption = "离校时间";
			this.gridColumn19.DisplayFormat.FormatString = "g";
			this.gridColumn19.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
			this.gridColumn19.FieldName = "teaondutyanaly_leavetime";
			this.gridColumn19.Name = "gridColumn19";
			this.gridColumn19.OptionsColumn.AllowEdit = false;
			this.gridColumn19.Visible = true;
			this.gridColumn19.Width = 60;
			// 
			// gridColumn20
			// 
			this.gridColumn20.AppearanceCell.Options.UseTextOptions = true;
			this.gridColumn20.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn20.AppearanceHeader.Options.UseTextOptions = true;
			this.gridColumn20.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn20.Caption = "班次";
			this.gridColumn20.FieldName = "teaduty_name";
			this.gridColumn20.Name = "gridColumn20";
			this.gridColumn20.OptionsColumn.AllowEdit = false;
			this.gridColumn20.Visible = true;
			this.gridColumn20.Width = 48;
			// 
			// gridColumn21
			// 
			this.gridColumn21.AppearanceCell.Options.UseTextOptions = true;
			this.gridColumn21.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn21.AppearanceHeader.Options.UseTextOptions = true;
			this.gridColumn21.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn21.Caption = "迟到";
			this.gridColumn21.FieldName = "teaondutyanaly_isontime";
			this.gridColumn21.MinWidth = 10;
			this.gridColumn21.Name = "gridColumn21";
			this.gridColumn21.OptionsColumn.AllowEdit = false;
			this.gridColumn21.Visible = true;
			this.gridColumn21.Width = 34;
			// 
			// gridColumn22
			// 
			this.gridColumn22.AppearanceCell.Options.UseTextOptions = true;
			this.gridColumn22.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn22.AppearanceHeader.Options.UseTextOptions = true;
			this.gridColumn22.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn22.Caption = "早退";
			this.gridColumn22.FieldName = "teaondutyanaly_isofftime";
			this.gridColumn22.Name = "gridColumn22";
			this.gridColumn22.OptionsColumn.AllowEdit = false;
			this.gridColumn22.Visible = true;
			this.gridColumn22.Width = 41;
			// 
			// gridColumn23
			// 
			this.gridColumn23.AppearanceCell.Options.UseTextOptions = true;
			this.gridColumn23.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn23.AppearanceHeader.Options.UseTextOptions = true;
			this.gridColumn23.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn23.Caption = "缺勤";
			this.gridColumn23.FieldName = "teaondutyanaly_isabsence";
			this.gridColumn23.Name = "gridColumn23";
			this.gridColumn23.OptionsColumn.AllowEdit = false;
			this.gridColumn23.Visible = true;
			this.gridColumn23.Width = 34;
			// 
			// gridColumn24
			// 
			this.gridColumn24.AppearanceCell.Options.UseTextOptions = true;
			this.gridColumn24.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn24.AppearanceHeader.Options.UseTextOptions = true;
			this.gridColumn24.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn24.Caption = "外出";
			this.gridColumn24.FieldName = "teaondutyanaly_isout";
			this.gridColumn24.Name = "gridColumn24";
			this.gridColumn24.OptionsColumn.AllowEdit = false;
			this.gridColumn24.Visible = true;
			this.gridColumn24.Width = 38;
			// 
			// gridColumn25
			// 
			this.gridColumn25.AppearanceCell.Options.UseTextOptions = true;
			this.gridColumn25.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn25.AppearanceHeader.Options.UseTextOptions = true;
			this.gridColumn25.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn25.Caption = "备注";
			this.gridColumn25.ColumnEdit = this.repositoryItemPopupContainerEdit8;
			this.gridColumn25.FieldName = "teaondutyanaly_remark";
			this.gridColumn25.Name = "gridColumn25";
			this.gridColumn25.Visible = true;
			this.gridColumn25.Width = 108;
			// 
			// repositoryItemPopupContainerEdit8
			// 
			this.repositoryItemPopupContainerEdit8.AutoHeight = false;
			this.repositoryItemPopupContainerEdit8.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
																														   new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
			this.repositoryItemPopupContainerEdit8.CharacterCasing = System.Windows.Forms.CharacterCasing.Lower;
			this.repositoryItemPopupContainerEdit8.Name = "repositoryItemPopupContainerEdit8";
			this.repositoryItemPopupContainerEdit8.PopupControl = this.popupContainerControl_Remarks;
			this.repositoryItemPopupContainerEdit8.ShowPopupCloseButton = false;
			this.repositoryItemPopupContainerEdit8.QueryPopUp += new System.ComponentModel.CancelEventHandler(this.repositoryItemPopupContainerEdit8_QueryPopUp);
			this.repositoryItemPopupContainerEdit8.QueryResultValue += new DevExpress.XtraEditors.Controls.QueryResultValueEventHandler(this.repositoryItemPopupContainerEdit8_QueryResultValue);
			// 
			// gridColumn34
			// 
			this.gridColumn34.AppearanceCell.Options.UseTextOptions = true;
			this.gridColumn34.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn34.AppearanceHeader.Options.UseTextOptions = true;
			this.gridColumn34.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn34.Caption = "tID";
			this.gridColumn34.FieldName = "teaondutyanaly_teaid";
			this.gridColumn34.Name = "gridColumn34";
			// 
			// gridColumn35
			// 
			this.gridColumn35.AppearanceCell.Options.UseTextOptions = true;
			this.gridColumn35.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn35.AppearanceHeader.Options.UseTextOptions = true;
			this.gridColumn35.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn35.Caption = "dutyID";
			this.gridColumn35.FieldName = "teaondutyanaly_number";
			this.gridColumn35.MinWidth = 10;
			this.gridColumn35.Name = "gridColumn35";
			// 
			// repositoryItemMemoEdit1
			// 
			this.repositoryItemMemoEdit1.Name = "repositoryItemMemoEdit1";
			// 
			// gridView2
			// 
			this.gridView2.GridControl = this.gridControl_TeaDutyDetails;
			this.gridView2.Name = "gridView2";
			// 
			// groupControl_TeaDutyOutDetails
			// 
			this.groupControl_TeaDutyOutDetails.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) 
				| System.Windows.Forms.AnchorStyles.Left)));
			this.groupControl_TeaDutyOutDetails.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
			this.groupControl_TeaDutyOutDetails.AppearanceCaption.Options.UseFont = true;
			this.groupControl_TeaDutyOutDetails.Controls.Add(this.gridControl_TeaOutDetails);
			this.groupControl_TeaDutyOutDetails.Location = new System.Drawing.Point(2, 304);
			this.groupControl_TeaDutyOutDetails.Name = "groupControl_TeaDutyOutDetails";
			this.groupControl_TeaDutyOutDetails.Size = new System.Drawing.Size(478, 208);
			this.groupControl_TeaDutyOutDetails.TabIndex = 1;
			this.groupControl_TeaDutyOutDetails.Text = "外出详细信息";
			// 
			// gridControl_TeaOutDetails
			// 
			this.gridControl_TeaOutDetails.Dock = System.Windows.Forms.DockStyle.Fill;
			// 
			// gridControl_TeaOutDetails.EmbeddedNavigator
			// 
			this.gridControl_TeaOutDetails.EmbeddedNavigator.Name = "";
			this.gridControl_TeaOutDetails.Location = new System.Drawing.Point(3, 18);
			this.gridControl_TeaOutDetails.MainView = this.gridView4;
			this.gridControl_TeaOutDetails.Name = "gridControl_TeaOutDetails";
			this.gridControl_TeaOutDetails.Size = new System.Drawing.Size(472, 187);
			this.gridControl_TeaOutDetails.TabIndex = 0;
			this.gridControl_TeaOutDetails.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
																													 this.gridView4});
			// 
			// gridView4
			// 
			this.gridView4.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
																							 this.gridColumn26,
																							 this.gridColumn27,
																							 this.gridColumn28,
																							 this.gridColumn29,
																							 this.gridColumn30,
																							 this.gridColumn31,
																							 this.gridColumn32,
																							 this.gridColumn33});
			this.gridView4.GridControl = this.gridControl_TeaOutDetails;
			this.gridView4.Name = "gridView4";
			this.gridView4.OptionsBehavior.Editable = false;
			this.gridView4.OptionsCustomization.AllowFilter = false;
			this.gridView4.OptionsCustomization.AllowGroup = false;
			this.gridView4.OptionsView.ShowFilterPanel = false;
			this.gridView4.OptionsView.ShowFooter = true;
			this.gridView4.OptionsView.ShowGroupPanel = false;
			// 
			// gridColumn26
			// 
			this.gridColumn26.Caption = "姓名";
			this.gridColumn26.FieldName = "T_Name";
			this.gridColumn26.Name = "gridColumn26";
			this.gridColumn26.OptionsColumn.AllowEdit = false;
			this.gridColumn26.Visible = true;
			this.gridColumn26.VisibleIndex = 0;
			this.gridColumn26.Width = 44;
			// 
			// gridColumn27
			// 
			this.gridColumn27.Caption = "工号";
			this.gridColumn27.FieldName = "T_Number";
			this.gridColumn27.Name = "gridColumn27";
			this.gridColumn27.OptionsColumn.AllowEdit = false;
			this.gridColumn27.Visible = true;
			this.gridColumn27.VisibleIndex = 1;
			this.gridColumn27.Width = 40;
			// 
			// gridColumn28
			// 
			this.gridColumn28.Caption = "部门";
			this.gridColumn28.FieldName = "T_Depart";
			this.gridColumn28.Name = "gridColumn28";
			this.gridColumn28.OptionsColumn.AllowEdit = false;
			this.gridColumn28.Visible = true;
			this.gridColumn28.VisibleIndex = 2;
			this.gridColumn28.Width = 46;
			// 
			// gridColumn29
			// 
			this.gridColumn29.Caption = "岗位";
			this.gridColumn29.FieldName = "T_Duty";
			this.gridColumn29.Name = "gridColumn29";
			this.gridColumn29.OptionsColumn.AllowEdit = false;
			this.gridColumn29.Visible = true;
			this.gridColumn29.VisibleIndex = 3;
			this.gridColumn29.Width = 45;
			// 
			// gridColumn30
			// 
			this.gridColumn30.Caption = "外出时班次";
			this.gridColumn30.FieldName = "teaduty_name";
			this.gridColumn30.Name = "gridColumn30";
			this.gridColumn30.OptionsColumn.AllowEdit = false;
			this.gridColumn30.Visible = true;
			this.gridColumn30.VisibleIndex = 4;
			this.gridColumn30.Width = 73;
			// 
			// gridColumn31
			// 
			this.gridColumn31.Caption = "外出时间";
			this.gridColumn31.DisplayFormat.FormatString = "g";
			this.gridColumn31.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
			this.gridColumn31.FieldName = "teaout_leavetime";
			this.gridColumn31.Name = "gridColumn31";
			this.gridColumn31.OptionsColumn.AllowEdit = false;
			this.gridColumn31.Visible = true;
			this.gridColumn31.VisibleIndex = 5;
			this.gridColumn31.Width = 59;
			// 
			// gridColumn32
			// 
			this.gridColumn32.Caption = "外出归来时间";
			this.gridColumn32.DisplayFormat.FormatString = "g";
			this.gridColumn32.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
			this.gridColumn32.FieldName = "teaout_backtime";
			this.gridColumn32.Name = "gridColumn32";
			this.gridColumn32.OptionsColumn.AllowEdit = false;
			this.gridColumn32.Visible = true;
			this.gridColumn32.VisibleIndex = 6;
			this.gridColumn32.Width = 84;
			// 
			// gridColumn33
			// 
			this.gridColumn33.Caption = "外出原因";
			this.gridColumn33.FieldName = "teafs_name";
			this.gridColumn33.Name = "gridColumn33";
			this.gridColumn33.OptionsColumn.AllowEdit = false;
			this.gridColumn33.Visible = true;
			this.gridColumn33.VisibleIndex = 7;
			this.gridColumn33.Width = 64;
			// 
			// xtraTabPage_TeaOnDutyReports
			// 
			this.xtraTabPage_TeaOnDutyReports.Appearance.PageClient.BackColor = System.Drawing.Color.WhiteSmoke;
			this.xtraTabPage_TeaOnDutyReports.Appearance.PageClient.Options.UseBackColor = true;
			this.xtraTabPage_TeaOnDutyReports.Controls.Add(this.groupControl_Graph);
			this.xtraTabPage_TeaOnDutyReports.Controls.Add(this.groupControl_TeaDutyReportsSear);
			this.xtraTabPage_TeaOnDutyReports.Name = "xtraTabPage_TeaOnDutyReports";
			this.xtraTabPage_TeaOnDutyReports.Size = new System.Drawing.Size(768, 515);
			this.xtraTabPage_TeaOnDutyReports.Text = "出勤信息分析";
			// 
			// groupControl_Graph
			// 
			this.groupControl_Graph.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 
				| System.Windows.Forms.AnchorStyles.Right)));
			this.groupControl_Graph.Location = new System.Drawing.Point(200, 8);
			this.groupControl_Graph.Name = "groupControl_Graph";
			this.groupControl_Graph.Size = new System.Drawing.Size(568, 392);
			this.groupControl_Graph.TabIndex = 2;
			this.groupControl_Graph.Text = "分析图形";
			this.groupControl_Graph.Resize += new System.EventHandler(this.groupControl_Graph_Resize);
			// 
			// groupControl_TeaDutyReportsSear
			// 
			this.groupControl_TeaDutyReportsSear.Controls.Add(this.comboBoxEdit_Graphic_TeaDept);
			this.groupControl_TeaDutyReportsSear.Controls.Add(this.textEdit_Graphic_TeaID);
			this.groupControl_TeaDutyReportsSear.Controls.Add(this.notePanel_Graphic_TeaID);
			this.groupControl_TeaDutyReportsSear.Controls.Add(this.notePanel_Graphic_TeaName);
			this.groupControl_TeaDutyReportsSear.Controls.Add(this.notePanel_Graphic_TeaDept);
			this.groupControl_TeaDutyReportsSear.Controls.Add(this.notePanel_Graphic_TeaDuty);
			this.groupControl_TeaDutyReportsSear.Controls.Add(this.textEdit_Graphic_TeaName);
			this.groupControl_TeaDutyReportsSear.Controls.Add(this.comboBoxEdit_Graphic_TeaDuty);
			this.groupControl_TeaDutyReportsSear.Controls.Add(this.dateEdit1);
			this.groupControl_TeaDutyReportsSear.Controls.Add(this.notePanel6);
			this.groupControl_TeaDutyReportsSear.Controls.Add(this.notePanel7);
			this.groupControl_TeaDutyReportsSear.Controls.Add(this.dateEdit2);
			this.groupControl_TeaDutyReportsSear.Controls.Add(this.simpleButton_ReportAnalysis);
			this.groupControl_TeaDutyReportsSear.Controls.Add(this.simpleButton2);
			this.groupControl_TeaDutyReportsSear.Location = new System.Drawing.Point(8, 8);
			this.groupControl_TeaDutyReportsSear.Name = "groupControl_TeaDutyReportsSear";
			this.groupControl_TeaDutyReportsSear.Size = new System.Drawing.Size(184, 272);
			this.groupControl_TeaDutyReportsSear.TabIndex = 1;
			this.groupControl_TeaDutyReportsSear.Text = "总出勤情况报表";
			// 
			// comboBoxEdit_Graphic_TeaDept
			// 
			this.comboBoxEdit_Graphic_TeaDept.EditValue = "全部";
			this.comboBoxEdit_Graphic_TeaDept.Location = new System.Drawing.Point(88, 88);
			this.comboBoxEdit_Graphic_TeaDept.Name = "comboBoxEdit_Graphic_TeaDept";
			// 
			// comboBoxEdit_Graphic_TeaDept.Properties
			// 
			this.comboBoxEdit_Graphic_TeaDept.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
																																 new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
			this.comboBoxEdit_Graphic_TeaDept.Properties.Items.AddRange(new object[] {
																						 "全部"});
			this.comboBoxEdit_Graphic_TeaDept.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
			this.comboBoxEdit_Graphic_TeaDept.Size = new System.Drawing.Size(88, 23);
			this.comboBoxEdit_Graphic_TeaDept.TabIndex = 20;
			this.comboBoxEdit_Graphic_TeaDept.SelectedIndexChanged += new System.EventHandler(this.comboBoxEdit_Graphic_TeaDept_SelectedIndexChanged);
			// 
			// textEdit_Graphic_TeaID
			// 
			this.textEdit_Graphic_TeaID.EditValue = "";
			this.textEdit_Graphic_TeaID.Location = new System.Drawing.Point(88, 24);
			this.textEdit_Graphic_TeaID.Name = "textEdit_Graphic_TeaID";
			this.textEdit_Graphic_TeaID.Size = new System.Drawing.Size(88, 23);
			this.textEdit_Graphic_TeaID.TabIndex = 18;
			// 
			// notePanel_Graphic_TeaID
			// 
			this.notePanel_Graphic_TeaID.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_Graphic_TeaID.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_Graphic_TeaID.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_Graphic_TeaID.ForeColor = System.Drawing.Color.Black;
			this.notePanel_Graphic_TeaID.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_Graphic_TeaID.Location = new System.Drawing.Point(8, 24);
			this.notePanel_Graphic_TeaID.MaxRows = 5;
			this.notePanel_Graphic_TeaID.Name = "notePanel_Graphic_TeaID";
			this.notePanel_Graphic_TeaID.ParentAutoHeight = true;
			this.notePanel_Graphic_TeaID.Size = new System.Drawing.Size(72, 22);
			this.notePanel_Graphic_TeaID.TabIndex = 16;
			this.notePanel_Graphic_TeaID.TabStop = false;
			this.notePanel_Graphic_TeaID.Text = "教师工号";
			// 
			// notePanel_Graphic_TeaName
			// 
			this.notePanel_Graphic_TeaName.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_Graphic_TeaName.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_Graphic_TeaName.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_Graphic_TeaName.ForeColor = System.Drawing.Color.Black;
			this.notePanel_Graphic_TeaName.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_Graphic_TeaName.Location = new System.Drawing.Point(8, 56);
			this.notePanel_Graphic_TeaName.MaxRows = 5;
			this.notePanel_Graphic_TeaName.Name = "notePanel_Graphic_TeaName";
			this.notePanel_Graphic_TeaName.ParentAutoHeight = true;
			this.notePanel_Graphic_TeaName.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.notePanel_Graphic_TeaName.Size = new System.Drawing.Size(72, 22);
			this.notePanel_Graphic_TeaName.TabIndex = 13;
			this.notePanel_Graphic_TeaName.TabStop = false;
			this.notePanel_Graphic_TeaName.Text = "教师姓名";
			// 
			// notePanel_Graphic_TeaDept
			// 
			this.notePanel_Graphic_TeaDept.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_Graphic_TeaDept.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_Graphic_TeaDept.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_Graphic_TeaDept.ForeColor = System.Drawing.Color.Black;
			this.notePanel_Graphic_TeaDept.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_Graphic_TeaDept.Location = new System.Drawing.Point(8, 88);
			this.notePanel_Graphic_TeaDept.MaxRows = 5;
			this.notePanel_Graphic_TeaDept.Name = "notePanel_Graphic_TeaDept";
			this.notePanel_Graphic_TeaDept.ParentAutoHeight = true;
			this.notePanel_Graphic_TeaDept.Size = new System.Drawing.Size(72, 22);
			this.notePanel_Graphic_TeaDept.TabIndex = 14;
			this.notePanel_Graphic_TeaDept.TabStop = false;
			this.notePanel_Graphic_TeaDept.Text = "所在部门";
			// 
			// notePanel_Graphic_TeaDuty
			// 
			this.notePanel_Graphic_TeaDuty.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_Graphic_TeaDuty.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_Graphic_TeaDuty.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_Graphic_TeaDuty.ForeColor = System.Drawing.Color.Black;
			this.notePanel_Graphic_TeaDuty.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_Graphic_TeaDuty.Location = new System.Drawing.Point(8, 120);
			this.notePanel_Graphic_TeaDuty.MaxRows = 5;
			this.notePanel_Graphic_TeaDuty.Name = "notePanel_Graphic_TeaDuty";
			this.notePanel_Graphic_TeaDuty.ParentAutoHeight = true;
			this.notePanel_Graphic_TeaDuty.Size = new System.Drawing.Size(72, 22);
			this.notePanel_Graphic_TeaDuty.TabIndex = 15;
			this.notePanel_Graphic_TeaDuty.TabStop = false;
			this.notePanel_Graphic_TeaDuty.Text = "岗位";
			// 
			// textEdit_Graphic_TeaName
			// 
			this.textEdit_Graphic_TeaName.EditValue = "";
			this.textEdit_Graphic_TeaName.Location = new System.Drawing.Point(88, 56);
			this.textEdit_Graphic_TeaName.Name = "textEdit_Graphic_TeaName";
			this.textEdit_Graphic_TeaName.Size = new System.Drawing.Size(88, 23);
			this.textEdit_Graphic_TeaName.TabIndex = 17;
			// 
			// comboBoxEdit_Graphic_TeaDuty
			// 
			this.comboBoxEdit_Graphic_TeaDuty.EditValue = "全部";
			this.comboBoxEdit_Graphic_TeaDuty.Location = new System.Drawing.Point(88, 120);
			this.comboBoxEdit_Graphic_TeaDuty.Name = "comboBoxEdit_Graphic_TeaDuty";
			// 
			// comboBoxEdit_Graphic_TeaDuty.Properties
			// 
			this.comboBoxEdit_Graphic_TeaDuty.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
																																 new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
			this.comboBoxEdit_Graphic_TeaDuty.Properties.Items.AddRange(new object[] {
																						 "全部"});
			this.comboBoxEdit_Graphic_TeaDuty.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
			this.comboBoxEdit_Graphic_TeaDuty.Size = new System.Drawing.Size(88, 23);
			this.comboBoxEdit_Graphic_TeaDuty.TabIndex = 19;
			// 
			// dateEdit1
			// 
			this.dateEdit1.EditValue = new System.DateTime(2005, 12, 31, 0, 0, 0, 0);
			this.dateEdit1.Location = new System.Drawing.Point(88, 152);
			this.dateEdit1.Name = "dateEdit1";
			// 
			// dateEdit1.Properties
			// 
			this.dateEdit1.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
																											  new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
			this.dateEdit1.Properties.Mask.EditMask = "d";
			this.dateEdit1.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.DateTime;
			this.dateEdit1.Size = new System.Drawing.Size(88, 23);
			this.dateEdit1.TabIndex = 12;
			// 
			// notePanel6
			// 
			this.notePanel6.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel6.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel6.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel6.ForeColor = System.Drawing.Color.Black;
			this.notePanel6.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel6.Location = new System.Drawing.Point(8, 152);
			this.notePanel6.MaxRows = 5;
			this.notePanel6.Name = "notePanel6";
			this.notePanel6.ParentAutoHeight = true;
			this.notePanel6.Size = new System.Drawing.Size(72, 22);
			this.notePanel6.TabIndex = 10;
			this.notePanel6.TabStop = false;
			this.notePanel6.Text = "起始时间";
			// 
			// notePanel7
			// 
			this.notePanel7.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel7.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel7.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel7.ForeColor = System.Drawing.Color.Black;
			this.notePanel7.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel7.Location = new System.Drawing.Point(8, 184);
			this.notePanel7.MaxRows = 5;
			this.notePanel7.Name = "notePanel7";
			this.notePanel7.ParentAutoHeight = true;
			this.notePanel7.Size = new System.Drawing.Size(72, 22);
			this.notePanel7.TabIndex = 9;
			this.notePanel7.TabStop = false;
			this.notePanel7.Text = "结束时间";
			// 
			// dateEdit2
			// 
			this.dateEdit2.EditValue = new System.DateTime(2005, 12, 31, 0, 0, 0, 0);
			this.dateEdit2.Location = new System.Drawing.Point(88, 184);
			this.dateEdit2.Name = "dateEdit2";
			// 
			// dateEdit2.Properties
			// 
			this.dateEdit2.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
																											  new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
			this.dateEdit2.Properties.Mask.EditMask = "d";
			this.dateEdit2.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.DateTime;
			this.dateEdit2.Size = new System.Drawing.Size(88, 23);
			this.dateEdit2.TabIndex = 11;
			// 
			// simpleButton_ReportAnalysis
			// 
			this.simpleButton_ReportAnalysis.Location = new System.Drawing.Point(24, 224);
			this.simpleButton_ReportAnalysis.Name = "simpleButton_ReportAnalysis";
			this.simpleButton_ReportAnalysis.Size = new System.Drawing.Size(64, 23);
			this.simpleButton_ReportAnalysis.TabIndex = 8;
			this.simpleButton_ReportAnalysis.Text = "分析";
			this.simpleButton_ReportAnalysis.Click += new System.EventHandler(this.simpleButton_ReportAnalysis_Click);
			// 
			// simpleButton2
			// 
			this.simpleButton2.Location = new System.Drawing.Point(96, 224);
			this.simpleButton2.Name = "simpleButton2";
			this.simpleButton2.Size = new System.Drawing.Size(64, 23);
			this.simpleButton2.TabIndex = 8;
			this.simpleButton2.Text = "生成报表";
			this.simpleButton2.Click += new System.EventHandler(this.simpleButton2_Click);
			// 
			// TeacherOnDutyInfo
			// 
			this.Appearance.BackColor = System.Drawing.Color.WhiteSmoke;
			this.Appearance.Options.UseBackColor = true;
			this.Controls.Add(this.xtraTabControl_TeaDutyDetailInfo);
			this.Name = "TeacherOnDutyInfo";
			this.Size = new System.Drawing.Size(772, 540);
			((System.ComponentModel.ISupportInitialize)(this.advBandedGridView1)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.gridControl_TeaDutyAsign)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.gridView1)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.repositoryItemPopupContainerEdit1)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.popupContainerControl1)).EndInit();
			this.popupContainerControl1.ResumeLayout(false);
			((System.ComponentModel.ISupportInitialize)(this.checkedListBoxControl1)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.repositoryItemPopupContainerEdit2)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.popupContainerControl2)).EndInit();
			this.popupContainerControl2.ResumeLayout(false);
			((System.ComponentModel.ISupportInitialize)(this.checkedListBoxControl2)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.repositoryItemPopupContainerEdit3)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.popupContainerControl3)).EndInit();
			this.popupContainerControl3.ResumeLayout(false);
			((System.ComponentModel.ISupportInitialize)(this.checkedListBoxControl3)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.repositoryItemPopupContainerEdit4)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.popupContainerControl4)).EndInit();
			this.popupContainerControl4.ResumeLayout(false);
			((System.ComponentModel.ISupportInitialize)(this.checkedListBoxControl4)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.repositoryItemPopupContainerEdit5)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.popupContainerControl5)).EndInit();
			this.popupContainerControl5.ResumeLayout(false);
			((System.ComponentModel.ISupportInitialize)(this.checkedListBoxControl5)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.repositoryItemPopupContainerEdit6)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.popupContainerControl6)).EndInit();
			this.popupContainerControl6.ResumeLayout(false);
			((System.ComponentModel.ISupportInitialize)(this.checkedListBoxControl6)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.repositoryItemPopupContainerEdit7)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.popupContainerControl7)).EndInit();
			this.popupContainerControl7.ResumeLayout(false);
			((System.ComponentModel.ISupportInitialize)(this.checkedListBoxControl7)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.repositoryItemLookUpEdit1)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.xtraTabControl_TeaDutyDetailInfo)).EndInit();
			this.xtraTabControl_TeaDutyDetailInfo.ResumeLayout(false);
			this.xtraTabPage_TeaDutyDetails.ResumeLayout(false);
			((System.ComponentModel.ISupportInitialize)(this.groupControl_TeaDutyAsign)).EndInit();
			this.groupControl_TeaDutyAsign.ResumeLayout(false);
			((System.ComponentModel.ISupportInitialize)(this.groupControl_TeaDutyDetailsMgmt)).EndInit();
			this.groupControl_TeaDutyDetailsMgmt.ResumeLayout(false);
			((System.ComponentModel.ISupportInitialize)(this.splitContainerControl_DutyMgmt)).EndInit();
			this.splitContainerControl_DutyMgmt.ResumeLayout(false);
			((System.ComponentModel.ISupportInitialize)(this.textEdit_DutyStartTime.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_AddDutyName.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_AddDutyRemark.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_DutyEndTime.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.dateEdit_DutyHistory.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_DutySearTeaClass.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_DutySearTeaGarde.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_DutySearTeaID.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_DutySearTeaName.Properties)).EndInit();
			this.xtraTabPage_TeaOnDutyInfo.ResumeLayout(false);
			((System.ComponentModel.ISupportInitialize)(this.groupControl_TeaDutyDetailsStatistic)).EndInit();
			this.groupControl_TeaDutyDetailsStatistic.ResumeLayout(false);
			((System.ComponentModel.ISupportInitialize)(this.textEdit_TeaOut.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_TeaShouldAttend.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_TeaAttend.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_TeaAbsence.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_TeaOffTime.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_TeaOnTime.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.groupControl_TeaDutyDetailsSearch)).EndInit();
			this.groupControl_TeaDutyDetailsSearch.ResumeLayout(false);
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_TeaDutyDetailsFlowType.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_TeaDutyDetailsSerType.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.dateEdit_TeaDutyDetailsSearByStartTime.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_TeaDutyDetailsSearByGrade.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_TeaDutyDetailsSearByID.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_TeaDutyDetailsSearByName.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_TeaDutyDetailsSearByClass.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.dateEdit_TeaDutyDetailsSearByEndTime.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.groupControl_TeaDutyDetails)).EndInit();
			this.groupControl_TeaDutyDetails.ResumeLayout(false);
			((System.ComponentModel.ISupportInitialize)(this.gridControl_TeaDutySummary)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.advBandedGridView4)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.gridView3)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.gridControl_TeaDutyNormal)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.advBandedGridView3)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.popupContainerControl_Remarks)).EndInit();
			this.popupContainerControl_Remarks.ResumeLayout(false);
			((System.ComponentModel.ISupportInitialize)(this.memoEdit_Remarks.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.gridControl_TeaDutyDetails)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.advBandedGridView2)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.repositoryItemPopupContainerEdit8)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.repositoryItemMemoEdit1)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.gridView2)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.groupControl_TeaDutyOutDetails)).EndInit();
			this.groupControl_TeaDutyOutDetails.ResumeLayout(false);
			((System.ComponentModel.ISupportInitialize)(this.gridControl_TeaOutDetails)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.gridView4)).EndInit();
			this.xtraTabPage_TeaOnDutyReports.ResumeLayout(false);
			((System.ComponentModel.ISupportInitialize)(this.groupControl_Graph)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.groupControl_TeaDutyReportsSear)).EndInit();
			this.groupControl_TeaDutyReportsSear.ResumeLayout(false);
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_Graphic_TeaDept.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_Graphic_TeaID.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_Graphic_TeaName.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_Graphic_TeaDuty.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.dateEdit1.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.dateEdit2.Properties)).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()
 {
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(ApprovalForm));
     this.boxSizedList = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
     this.repositoryItemSpinEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemSpinEdit();
     this.repositoryItemDateEdit3 = new DevExpress.XtraEditors.Repository.RepositoryItemDateEdit();
     this.repositoryItemButtonEdit4 = new DevExpress.XtraEditors.Repository.RepositoryItemButtonEdit();
     this.layoutControl1 = new DevExpress.XtraLayout.LayoutControl();
     this.tabControlOrderDetail = new DevExpress.XtraTab.XtraTabControl();
     this.tabGeneral = new DevExpress.XtraTab.XtraTabPage();
     this.layoutControl5 = new DevExpress.XtraLayout.LayoutControl();
     this.uxApproval = new HCMIS.Desktop.Forms.Controls.Approval();
     this.layoutControlGroup12 = new DevExpress.XtraLayout.LayoutControlGroup();
     this.layoutControlItem2 = new DevExpress.XtraLayout.LayoutControlItem();
     this.tabFacility = new DevExpress.XtraTab.XtraTabPage();
     this.layoutControl4 = new DevExpress.XtraLayout.LayoutControl();
     this.gridOrderDetailForFacility = new DevExpress.XtraGrid.GridControl();
     this.gridViewOrderDetailForFacility = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn4 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemMemoEdit3 = new DevExpress.XtraEditors.Repository.RepositoryItemMemoEdit();
     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.gridColumn12 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn11 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn17 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemMemoEdit4 = new DevExpress.XtraEditors.Repository.RepositoryItemMemoEdit();
     this.gridColumn20 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn22 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn23 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.layoutControlGroup5 = new DevExpress.XtraLayout.LayoutControlGroup();
     this.layoutControlItem3 = new DevExpress.XtraLayout.LayoutControlItem();
     this.btnReturnToEdit = new DevExpress.XtraEditors.SimpleButton();
     this.btnSaveDraft = new DevExpress.XtraEditors.SimpleButton();
     this.txtFacilityName = new DevExpress.XtraEditors.TextEdit();
     this.btnPrintStockOutReport = new DevExpress.XtraEditors.SimpleButton();
     this.lkMode = new DevExpress.XtraEditors.LookUpEdit();
     this.btnCancelApproval = new DevExpress.XtraEditors.SimpleButton();
     this.btnApproveOrder = new DevExpress.XtraEditors.SimpleButton();
     this.gridOrder = new DevExpress.XtraGrid.GridControl();
     this.gridViewOrder = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn42 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn43 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colRoute = new DevExpress.XtraGrid.Columns.GridColumn();
     this.layoutControlItem7 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlGroup1 = new DevExpress.XtraLayout.LayoutControlGroup();
     this.layoutControlGroup4 = new DevExpress.XtraLayout.LayoutControlGroup();
     this.layoutControlGroup18 = new DevExpress.XtraLayout.LayoutControlGroup();
     this.layoutControlItem49 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem9 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem59 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem4 = new DevExpress.XtraLayout.LayoutControlItem();
     this.splitterItem1 = new DevExpress.XtraLayout.SplitterItem();
     this.ActionGroup = new DevExpress.XtraLayout.LayoutControlGroup();
     this.layoutControlItem12 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem23 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem24 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem11 = new DevExpress.XtraLayout.LayoutControlItem();
     this.emptySpaceItem2 = new DevExpress.XtraLayout.EmptySpaceItem();
     this.toolTip = new DevExpress.Utils.ToolTipController();
     this.popupMenu1 = new DevExpress.XtraBars.PopupMenu();
     this.dxValidationProvider1 = new DevExpress.XtraEditors.DXErrorProvider.DXValidationProvider();
     this.emptySpaceItem15 = new DevExpress.XtraLayout.EmptySpaceItem();
     this.layoutControlGroup8 = new DevExpress.XtraLayout.LayoutControlGroup();
     this.layoutControlGroup9 = new DevExpress.XtraLayout.LayoutControlGroup();
     this.layoutControlGroup10 = new DevExpress.XtraLayout.LayoutControlGroup();
     this.emptySpaceItem10 = new DevExpress.XtraLayout.EmptySpaceItem();
     this.emptySpaceItem22 = new DevExpress.XtraLayout.EmptySpaceItem();
     this.emptySpaceItem23 = new DevExpress.XtraLayout.EmptySpaceItem();
     this.printingSystem1 = new DevExpress.XtraPrinting.PrintingSystem();
     this.printableComponentLink1 = new DevExpress.XtraPrinting.PrintableComponentLink();
     this.printOrder = new DevExpress.XtraPrinting.PrintableComponentLink();
     this.bgWorker = new System.ComponentModel.BackgroundWorker();
     this.layoutControlGroup7 = new DevExpress.XtraLayout.LayoutControlGroup();
     this.emptySpaceItem5 = new DevExpress.XtraLayout.EmptySpaceItem();
     this.layoutControlItem28 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem33 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlGroup11 = new DevExpress.XtraLayout.LayoutControlGroup();
     this.emptySpaceItem1 = new DevExpress.XtraLayout.EmptySpaceItem();
     this.layoutControlItem34 = new DevExpress.XtraLayout.LayoutControlItem();
     this.bindingSource1 = new System.Windows.Forms.BindingSource();
     this.layoutControlGroup3 = new DevExpress.XtraLayout.LayoutControlGroup();
     this.deletetabFacility = new DevExpress.XtraLayout.LayoutControlGroup();
     ((System.ComponentModel.ISupportInitialize)(this.boxSizedList)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemSpinEdit1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEdit3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEdit3.CalendarTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemButtonEdit4)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControl1)).BeginInit();
     this.layoutControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.tabControlOrderDetail)).BeginInit();
     this.tabControlOrderDetail.SuspendLayout();
     this.tabGeneral.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControl5)).BeginInit();
     this.layoutControl5.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup12)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem2)).BeginInit();
     this.tabFacility.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControl4)).BeginInit();
     this.layoutControl4.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridOrderDetailForFacility)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewOrderDetailForFacility)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemMemoEdit3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemMemoEdit4)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup5)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtFacilityName.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lkMode.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridOrder)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewOrder)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem7)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup4)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup18)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem49)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem9)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem59)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem4)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.splitterItem1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ActionGroup)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem12)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem23)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem24)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem11)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.popupMenu1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dxValidationProvider1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem15)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup8)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup9)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup10)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem10)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem22)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem23)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.printingSystem1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup7)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem5)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem28)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem33)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup11)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem34)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.bindingSource1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.deletetabFacility)).BeginInit();
     this.SuspendLayout();
     //
     // boxSizedList
     //
     this.boxSizedList.AutoHeight = false;
     this.boxSizedList.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.boxSizedList.DisplayMember = "Name";
     this.boxSizedList.Name = "boxSizedList";
     this.boxSizedList.ValueMember = "ID";
     //
     // repositoryItemSpinEdit1
     //
     this.repositoryItemSpinEdit1.AutoHeight = false;
     this.repositoryItemSpinEdit1.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.repositoryItemSpinEdit1.Name = "repositoryItemSpinEdit1";
     //
     // repositoryItemDateEdit3
     //
     this.repositoryItemDateEdit3.AutoHeight = false;
     this.repositoryItemDateEdit3.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemDateEdit3.CalendarTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.repositoryItemDateEdit3.EditFormat.FormatString = "mm-DD-YYYY";
     this.repositoryItemDateEdit3.EditFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.repositoryItemDateEdit3.ExportMode = DevExpress.XtraEditors.Repository.ExportMode.DisplayText;
     this.repositoryItemDateEdit3.Name = "repositoryItemDateEdit3";
     //
     // repositoryItemButtonEdit4
     //
     this.repositoryItemButtonEdit4.AutoHeight = false;
     this.repositoryItemButtonEdit4.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Plus)});
     this.repositoryItemButtonEdit4.Name = "repositoryItemButtonEdit4";
     this.repositoryItemButtonEdit4.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.HideTextEditor;
     //
     // layoutControl1
     //
     this.layoutControl1.AllowCustomizationMenu = false;
     this.layoutControl1.Controls.Add(this.tabControlOrderDetail);
     this.layoutControl1.Controls.Add(this.btnReturnToEdit);
     this.layoutControl1.Controls.Add(this.btnSaveDraft);
     this.layoutControl1.Controls.Add(this.txtFacilityName);
     this.layoutControl1.Controls.Add(this.btnPrintStockOutReport);
     this.layoutControl1.Controls.Add(this.lkMode);
     this.layoutControl1.Controls.Add(this.btnCancelApproval);
     this.layoutControl1.Controls.Add(this.btnApproveOrder);
     this.layoutControl1.Controls.Add(this.gridOrder);
     this.layoutControl1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.layoutControl1.HiddenItems.AddRange(new DevExpress.XtraLayout.BaseLayoutItem[] {
     this.layoutControlItem7});
     this.layoutControl1.Location = new System.Drawing.Point(0, 0);
     this.layoutControl1.Name = "layoutControl1";
     this.layoutControl1.OptionsCustomizationForm.DesignTimeCustomizationFormPositionAndSize = new System.Drawing.Rectangle(12, 183, 250, 350);
     this.layoutControl1.Root = this.layoutControlGroup1;
     this.layoutControl1.Size = new System.Drawing.Size(1354, 575);
     this.layoutControl1.TabIndex = 30;
     this.layoutControl1.Text = "layoutControl1";
     //
     // tabControlOrderDetail
     //
     this.tabControlOrderDetail.Location = new System.Drawing.Point(271, 5);
     this.tabControlOrderDetail.Name = "tabControlOrderDetail";
     this.tabControlOrderDetail.SelectedTabPage = this.tabGeneral;
     this.tabControlOrderDetail.Size = new System.Drawing.Size(1078, 539);
     this.tabControlOrderDetail.TabIndex = 1;
     this.tabControlOrderDetail.TabPages.AddRange(new DevExpress.XtraTab.XtraTabPage[] {
     this.tabGeneral,
     this.tabFacility});
     this.tabControlOrderDetail.SelectedPageChanged += new DevExpress.XtraTab.TabPageChangedEventHandler(this.tabControlOrderDetail_SelectedPageChanged);
     this.tabControlOrderDetail.Click += new System.EventHandler(this.tabControlOrderDetail_Click);
     //
     // tabGeneral
     //
     this.tabGeneral.Controls.Add(this.layoutControl5);
     this.tabGeneral.Name = "tabGeneral";
     this.tabGeneral.Size = new System.Drawing.Size(1072, 511);
     this.tabGeneral.Text = "General";
     //
     // layoutControl5
     //
     this.layoutControl5.AllowCustomizationMenu = false;
     this.layoutControl5.Controls.Add(this.uxApproval);
     this.layoutControl5.Dock = System.Windows.Forms.DockStyle.Fill;
     this.layoutControl5.Location = new System.Drawing.Point(0, 0);
     this.layoutControl5.Name = "layoutControl5";
     this.layoutControl5.Root = this.layoutControlGroup12;
     this.layoutControl5.Size = new System.Drawing.Size(1072, 511);
     this.layoutControl5.TabIndex = 0;
     this.layoutControl5.Text = "layoutControl5";
     //
     // uxApproval
     //
     this.uxApproval.Location = new System.Drawing.Point(12, 12);
     this.uxApproval.Name = "uxApproval";
     this.uxApproval.ShowAMCandMOS = true;
     this.uxApproval.ShowPipeline = true;
     this.uxApproval.Size = new System.Drawing.Size(1048, 487);
     this.uxApproval.TabIndex = 65;
     //
     // layoutControlGroup12
     //
     this.layoutControlGroup12.CustomizationFormText = "layoutControlGroup12";
     this.layoutControlGroup12.EnableIndentsWithoutBorders = DevExpress.Utils.DefaultBoolean.True;
     this.layoutControlGroup12.GroupBordersVisible = false;
     this.layoutControlGroup12.Items.AddRange(new DevExpress.XtraLayout.BaseLayoutItem[] {
     this.layoutControlItem2});
     this.layoutControlGroup12.Location = new System.Drawing.Point(0, 0);
     this.layoutControlGroup12.Name = "layoutControlGroup12";
     this.layoutControlGroup12.Size = new System.Drawing.Size(1072, 511);
     this.layoutControlGroup12.Text = "layoutControlGroup12";
     this.layoutControlGroup12.TextVisible = false;
     //
     // layoutControlItem2
     //
     this.layoutControlItem2.Control = this.uxApproval;
     this.layoutControlItem2.CustomizationFormText = "layoutControlItem2";
     this.layoutControlItem2.Location = new System.Drawing.Point(0, 0);
     this.layoutControlItem2.Name = "layoutControlItem2";
     this.layoutControlItem2.Size = new System.Drawing.Size(1052, 491);
     this.layoutControlItem2.Text = "layoutControlItem2";
     this.layoutControlItem2.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem2.TextToControlDistance = 0;
     this.layoutControlItem2.TextVisible = false;
     //
     // tabFacility
     //
     this.tabFacility.Controls.Add(this.layoutControl4);
     this.tabFacility.Name = "tabFacility";
     this.tabFacility.Size = new System.Drawing.Size(1072, 511);
     this.tabFacility.Text = "Facility";
     //
     // layoutControl4
     //
     this.layoutControl4.AllowCustomizationMenu = false;
     this.layoutControl4.Controls.Add(this.gridOrderDetailForFacility);
     this.layoutControl4.Dock = System.Windows.Forms.DockStyle.Fill;
     this.layoutControl4.Location = new System.Drawing.Point(0, 0);
     this.layoutControl4.Name = "layoutControl4";
     this.layoutControl4.Root = this.layoutControlGroup5;
     this.layoutControl4.Size = new System.Drawing.Size(1072, 511);
     this.layoutControl4.TabIndex = 0;
     this.layoutControl4.Text = "layoutControl4";
     //
     // gridOrderDetailForFacility
     //
     this.gridOrderDetailForFacility.Location = new System.Drawing.Point(12, 12);
     this.gridOrderDetailForFacility.MainView = this.gridViewOrderDetailForFacility;
     this.gridOrderDetailForFacility.Name = "gridOrderDetailForFacility";
     this.gridOrderDetailForFacility.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.repositoryItemMemoEdit3,
     this.repositoryItemMemoEdit4});
     this.gridOrderDetailForFacility.Size = new System.Drawing.Size(1048, 487);
     this.gridOrderDetailForFacility.TabIndex = 45;
     this.gridOrderDetailForFacility.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridViewOrderDetailForFacility});
     //
     // gridViewOrderDetailForFacility
     //
     this.gridViewOrderDetailForFacility.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn4,
     this.gridColumn5,
     this.gridColumn6,
     this.gridColumn7,
     this.gridColumn8,
     this.gridColumn9,
     this.gridColumn10,
     this.gridColumn12,
     this.gridColumn11,
     this.gridColumn17,
     this.gridColumn20,
     this.gridColumn22,
     this.gridColumn23});
     this.gridViewOrderDetailForFacility.GridControl = this.gridOrderDetailForFacility;
     this.gridViewOrderDetailForFacility.IndicatorWidth = 40;
     this.gridViewOrderDetailForFacility.Name = "gridViewOrderDetailForFacility";
     this.gridViewOrderDetailForFacility.OptionsBehavior.Editable = false;
     this.gridViewOrderDetailForFacility.OptionsCustomization.AllowColumnMoving = false;
     this.gridViewOrderDetailForFacility.OptionsCustomization.AllowColumnResizing = false;
     this.gridViewOrderDetailForFacility.OptionsCustomization.AllowFilter = false;
     this.gridViewOrderDetailForFacility.OptionsCustomization.AllowQuickHideColumns = false;
     this.gridViewOrderDetailForFacility.OptionsCustomization.AllowSort = false;
     this.gridViewOrderDetailForFacility.OptionsView.RowAutoHeight = true;
     this.gridViewOrderDetailForFacility.OptionsView.ShowGroupedColumns = true;
     this.gridViewOrderDetailForFacility.OptionsView.ShowGroupPanel = false;
     this.gridViewOrderDetailForFacility.CustomDrawRowIndicator += new DevExpress.XtraGrid.Views.Grid.RowIndicatorCustomDrawEventHandler(this.gridViewOrderDetailForFacility_CustomDrawRowIndicator);
     this.gridViewOrderDetailForFacility.CustomColumnDisplayText += new DevExpress.XtraGrid.Views.Base.CustomColumnDisplayTextEventHandler(this.gridViewOrderDetailForFacility_CustomColumnDisplayText);
     //
     // gridColumn4
     //
     this.gridColumn4.AppearanceCell.Options.UseTextOptions = true;
     this.gridColumn4.AppearanceCell.TextOptions.Trimming = DevExpress.Utils.Trimming.None;
     this.gridColumn4.AppearanceCell.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;
     this.gridColumn4.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumn4.AppearanceHeader.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;
     this.gridColumn4.Caption = "Item Name";
     this.gridColumn4.ColumnEdit = this.repositoryItemMemoEdit3;
     this.gridColumn4.FieldName = "FullItemName";
     this.gridColumn4.Name = "gridColumn4";
     this.gridColumn4.OptionsColumn.AllowEdit = false;
     this.gridColumn4.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
     this.gridColumn4.OptionsFilter.AllowAutoFilter = false;
     this.gridColumn4.OptionsFilter.AllowFilter = false;
     this.gridColumn4.Visible = true;
     this.gridColumn4.VisibleIndex = 0;
     this.gridColumn4.Width = 226;
     //
     // repositoryItemMemoEdit3
     //
     this.repositoryItemMemoEdit3.LinesCount = 2;
     this.repositoryItemMemoEdit3.Name = "repositoryItemMemoEdit3";
     //
     // gridColumn5
     //
     this.gridColumn5.Caption = "Unit";
     this.gridColumn5.FieldName = "Text";
     this.gridColumn5.Name = "gridColumn5";
     this.gridColumn5.OptionsColumn.AllowEdit = false;
     this.gridColumn5.OptionsFilter.AllowFilter = false;
     this.gridColumn5.Visible = true;
     this.gridColumn5.VisibleIndex = 1;
     this.gridColumn5.Width = 76;
     //
     // gridColumn6
     //
     this.gridColumn6.Caption = "SOH";
     this.gridColumn6.DisplayFormat.FormatString = "#,##0";
     this.gridColumn6.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.gridColumn6.FieldName = "SOH";
     this.gridColumn6.Name = "gridColumn6";
     this.gridColumn6.OptionsColumn.AllowEdit = false;
     this.gridColumn6.OptionsFilter.AllowFilter = false;
     this.gridColumn6.Visible = true;
     this.gridColumn6.VisibleIndex = 2;
     this.gridColumn6.Width = 47;
     //
     // gridColumn7
     //
     this.gridColumn7.Caption = "Dmg.";
     this.gridColumn7.DisplayFormat.FormatString = "#,##0";
     this.gridColumn7.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.gridColumn7.FieldName = "Damaged";
     this.gridColumn7.Name = "gridColumn7";
     this.gridColumn7.OptionsColumn.AllowEdit = false;
     this.gridColumn7.OptionsFilter.AllowFilter = false;
     this.gridColumn7.Visible = true;
     this.gridColumn7.VisibleIndex = 3;
     this.gridColumn7.Width = 55;
     //
     // gridColumn8
     //
     this.gridColumn8.Caption = "Exp.";
     this.gridColumn8.DisplayFormat.FormatString = "#,##0";
     this.gridColumn8.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.gridColumn8.FieldName = "Expired";
     this.gridColumn8.Name = "gridColumn8";
     this.gridColumn8.OptionsColumn.AllowEdit = false;
     this.gridColumn8.OptionsFilter.AllowFilter = false;
     this.gridColumn8.Visible = true;
     this.gridColumn8.VisibleIndex = 4;
     this.gridColumn8.Width = 47;
     //
     // gridColumn9
     //
     this.gridColumn9.Caption = "Total Requested";
     this.gridColumn9.DisplayFormat.FormatString = "#,##0";
     this.gridColumn9.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.gridColumn9.FieldName = "TotalRequested";
     this.gridColumn9.Name = "gridColumn9";
     this.gridColumn9.OptionsColumn.AllowEdit = false;
     this.gridColumn9.OptionsFilter.AllowFilter = false;
     this.gridColumn9.Visible = true;
     this.gridColumn9.VisibleIndex = 5;
     this.gridColumn9.Width = 131;
     //
     // gridColumn10
     //
     this.gridColumn10.Caption = "Last Approved Qty";
     this.gridColumn10.DisplayFormat.FormatString = "#,##0";
     this.gridColumn10.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.gridColumn10.FieldName = "LastApprovedQuantity";
     this.gridColumn10.Name = "gridColumn10";
     this.gridColumn10.OptionsColumn.AllowEdit = false;
     this.gridColumn10.OptionsFilter.AllowFilter = false;
     this.gridColumn10.Width = 118;
     //
     // gridColumn12
     //
     this.gridColumn12.Caption = "Total Issued";
     this.gridColumn12.DisplayFormat.FormatString = "#,##0";
     this.gridColumn12.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.gridColumn12.FieldName = "TotalIssued";
     this.gridColumn12.Name = "gridColumn12";
     this.gridColumn12.OptionsColumn.AllowEdit = false;
     this.gridColumn12.OptionsFilter.AllowFilter = false;
     this.gridColumn12.Visible = true;
     this.gridColumn12.VisibleIndex = 6;
     this.gridColumn12.Width = 107;
     //
     // gridColumn11
     //
     this.gridColumn11.Caption = "No. Refills Count";
     this.gridColumn11.FieldName = "NumberOfRefills";
     this.gridColumn11.Name = "gridColumn11";
     this.gridColumn11.OptionsColumn.AllowEdit = false;
     this.gridColumn11.OptionsFilter.AllowFilter = false;
     this.gridColumn11.Visible = true;
     this.gridColumn11.VisibleIndex = 7;
     this.gridColumn11.Width = 133;
     //
     // gridColumn17
     //
     this.gridColumn17.Caption = "Last Visit Date";
     this.gridColumn17.ColumnEdit = this.repositoryItemMemoEdit4;
     this.gridColumn17.FieldName = "LastRequestedDate";
     this.gridColumn17.Name = "gridColumn17";
     this.gridColumn17.OptionsColumn.AllowEdit = false;
     this.gridColumn17.OptionsFilter.AllowFilter = false;
     this.gridColumn17.Visible = true;
     this.gridColumn17.VisibleIndex = 8;
     this.gridColumn17.Width = 120;
     //
     // repositoryItemMemoEdit4
     //
     this.repositoryItemMemoEdit4.LinesCount = 2;
     this.repositoryItemMemoEdit4.Name = "repositoryItemMemoEdit4";
     //
     // gridColumn20
     //
     this.gridColumn20.Caption = "pAMC";
     this.gridColumn20.DisplayFormat.FormatString = "#,##0";
     this.gridColumn20.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.gridColumn20.FieldName = "gridColumn20";
     this.gridColumn20.Name = "gridColumn20";
     this.gridColumn20.OptionsColumn.AllowEdit = false;
     this.gridColumn20.OptionsFilter.AllowFilter = false;
     this.gridColumn20.UnboundExpression = "[TotalIssued]/6";
     this.gridColumn20.UnboundType = DevExpress.Data.UnboundColumnType.Decimal;
     this.gridColumn20.Visible = true;
     this.gridColumn20.VisibleIndex = 9;
     this.gridColumn20.Width = 61;
     //
     // gridColumn22
     //
     this.gridColumn22.Caption = "pMin";
     this.gridColumn22.DisplayFormat.FormatString = "#,##0";
     this.gridColumn22.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.gridColumn22.FieldName = "gridColumn22";
     this.gridColumn22.Name = "gridColumn22";
     this.gridColumn22.OptionsColumn.AllowEdit = false;
     this.gridColumn22.OptionsFilter.AllowFilter = false;
     this.gridColumn22.ToolTip = "2 * [AMC]";
     this.gridColumn22.UnboundExpression = "2 * [gridColumn20]";
     this.gridColumn22.UnboundType = DevExpress.Data.UnboundColumnType.Decimal;
     this.gridColumn22.Visible = true;
     this.gridColumn22.VisibleIndex = 10;
     this.gridColumn22.Width = 70;
     //
     // gridColumn23
     //
     this.gridColumn23.Caption = "pMax";
     this.gridColumn23.DisplayFormat.FormatString = "#,##0";
     this.gridColumn23.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.gridColumn23.FieldName = "gridColumn23";
     this.gridColumn23.Name = "gridColumn23";
     this.gridColumn23.OptionsColumn.AllowEdit = false;
     this.gridColumn23.OptionsFilter.AllowFilter = false;
     this.gridColumn23.ToolTip = "4 * [AMC]";
     this.gridColumn23.UnboundExpression = "4*[gridColumn20]";
     this.gridColumn23.UnboundType = DevExpress.Data.UnboundColumnType.Decimal;
     this.gridColumn23.Visible = true;
     this.gridColumn23.VisibleIndex = 11;
     this.gridColumn23.Width = 83;
     //
     // layoutControlGroup5
     //
     this.layoutControlGroup5.CustomizationFormText = "layoutControlGroup5";
     this.layoutControlGroup5.EnableIndentsWithoutBorders = DevExpress.Utils.DefaultBoolean.True;
     this.layoutControlGroup5.GroupBordersVisible = false;
     this.layoutControlGroup5.Items.AddRange(new DevExpress.XtraLayout.BaseLayoutItem[] {
     this.layoutControlItem3});
     this.layoutControlGroup5.Location = new System.Drawing.Point(0, 0);
     this.layoutControlGroup5.Name = "layoutControlGroup5";
     this.layoutControlGroup5.Size = new System.Drawing.Size(1072, 511);
     this.layoutControlGroup5.Text = "layoutControlGroup5";
     this.layoutControlGroup5.TextVisible = false;
     //
     // layoutControlItem3
     //
     this.layoutControlItem3.Control = this.gridOrderDetailForFacility;
     this.layoutControlItem3.CustomizationFormText = "layoutControlItem3";
     this.layoutControlItem3.Location = new System.Drawing.Point(0, 0);
     this.layoutControlItem3.Name = "layoutControlItem3";
     this.layoutControlItem3.Size = new System.Drawing.Size(1052, 491);
     this.layoutControlItem3.Text = "layoutControlItem3";
     this.layoutControlItem3.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem3.TextToControlDistance = 0;
     this.layoutControlItem3.TextVisible = false;
     //
     // btnReturnToEdit
     //
     this.btnReturnToEdit.Image = ((System.Drawing.Image)(resources.GetObject("btnReturnToEdit.Image")));
     this.btnReturnToEdit.Location = new System.Drawing.Point(754, 549);
     this.btnReturnToEdit.Name = "btnReturnToEdit";
     this.btnReturnToEdit.Size = new System.Drawing.Size(146, 22);
     this.btnReturnToEdit.StyleController = this.layoutControl1;
     this.btnReturnToEdit.TabIndex = 42;
     this.btnReturnToEdit.Tag = "Approve";
     this.btnReturnToEdit.Text = "Return To Requisition";
     this.btnReturnToEdit.Click += new System.EventHandler(this.btnReturnToEdit_Click);
     //
     // btnSaveDraft
     //
     this.btnSaveDraft.Image = ((System.Drawing.Image)(resources.GetObject("btnSaveDraft.Image")));
     this.btnSaveDraft.Location = new System.Drawing.Point(904, 549);
     this.btnSaveDraft.Name = "btnSaveDraft";
     this.btnSaveDraft.Size = new System.Drawing.Size(146, 22);
     this.btnSaveDraft.StyleController = this.layoutControl1;
     this.btnSaveDraft.TabIndex = 41;
     this.btnSaveDraft.Tag = "Cancel";
     this.btnSaveDraft.Text = "Save Draft";
     this.btnSaveDraft.Click += new System.EventHandler(this.btnSaveDraft_Click);
     //
     // txtFacilityName
     //
     this.txtFacilityName.Location = new System.Drawing.Point(47, 29);
     this.txtFacilityName.Name = "txtFacilityName";
     this.txtFacilityName.Size = new System.Drawing.Size(215, 20);
     this.txtFacilityName.StyleController = this.layoutControl1;
     this.txtFacilityName.TabIndex = 38;
     this.txtFacilityName.EditValueChanged += new System.EventHandler(this.txtFacilityName_EditValueChanged);
     //
     // btnPrintStockOutReport
     //
     this.btnPrintStockOutReport.Location = new System.Drawing.Point(24, 55);
     this.btnPrintStockOutReport.Name = "btnPrintStockOutReport";
     this.btnPrintStockOutReport.Size = new System.Drawing.Size(106, 22);
     this.btnPrintStockOutReport.StyleController = this.layoutControl1;
     this.btnPrintStockOutReport.TabIndex = 37;
     this.btnPrintStockOutReport.Text = "Stockout Report";
     this.btnPrintStockOutReport.Click += new System.EventHandler(this.btnPrintStockOutReport_Click);
     //
     // lkMode
     //
     this.lkMode.Location = new System.Drawing.Point(47, 5);
     this.lkMode.Name = "lkMode";
     this.lkMode.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lkMode.Properties.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("TypeName", "Name")});
     this.lkMode.Properties.DisplayMember = "TypeName";
     this.lkMode.Properties.NullText = "Select Activity";
     this.lkMode.Properties.ValueMember = "ID";
     this.lkMode.Size = new System.Drawing.Size(215, 20);
     this.lkMode.StyleController = this.layoutControl1;
     this.lkMode.TabIndex = 34;
     this.lkMode.EditValueChanged += new System.EventHandler(this.lkStoreType_EditValueChanged);
     //
     // btnCancelApproval
     //
     this.btnCancelApproval.Image = ((System.Drawing.Image)(resources.GetObject("btnCancelApproval.Image")));
     this.btnCancelApproval.Location = new System.Drawing.Point(1204, 549);
     this.btnCancelApproval.Name = "btnCancelApproval";
     this.btnCancelApproval.Size = new System.Drawing.Size(146, 22);
     this.btnCancelApproval.StyleController = this.layoutControl1;
     this.btnCancelApproval.TabIndex = 31;
     this.btnCancelApproval.Text = "Cancel";
     this.btnCancelApproval.Click += new System.EventHandler(this.BtnCancelClicked);
     //
     // btnApproveOrder
     //
     this.btnApproveOrder.Image = ((System.Drawing.Image)(resources.GetObject("btnApproveOrder.Image")));
     this.btnApproveOrder.Location = new System.Drawing.Point(1054, 549);
     this.btnApproveOrder.Name = "btnApproveOrder";
     this.btnApproveOrder.Size = new System.Drawing.Size(146, 22);
     this.btnApproveOrder.StyleController = this.layoutControl1;
     this.btnApproveOrder.TabIndex = 30;
     this.btnApproveOrder.Text = "Approve Quantity";
     this.btnApproveOrder.Click += new System.EventHandler(this.OnSaveApproval);
     //
     // gridOrder
     //
     this.gridOrder.Location = new System.Drawing.Point(5, 53);
     this.gridOrder.MainView = this.gridViewOrder;
     this.gridOrder.Name = "gridOrder";
     this.gridOrder.Size = new System.Drawing.Size(257, 491);
     this.gridOrder.TabIndex = 15;
     this.gridOrder.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridViewOrder});
     //
     // gridViewOrder
     //
     this.gridViewOrder.Appearance.FocusedRow.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.gridViewOrder.Appearance.FocusedRow.Options.UseFont = true;
     this.gridViewOrder.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn42,
     this.gridColumn43,
     this.colRoute});
     this.gridViewOrder.GridControl = this.gridOrder;
     this.gridViewOrder.GroupCount = 1;
     this.gridViewOrder.Name = "gridViewOrder";
     this.gridViewOrder.OptionsBehavior.Editable = false;
     this.gridViewOrder.OptionsCustomization.AllowSort = false;
     this.gridViewOrder.OptionsFilter.AllowFilterEditor = false;
     this.gridViewOrder.OptionsSelection.EnableAppearanceFocusedCell = false;
     this.gridViewOrder.OptionsSelection.UseIndicatorForSelection = false;
     this.gridViewOrder.OptionsView.ShowFilterPanelMode = DevExpress.XtraGrid.Views.Base.ShowFilterPanelMode.Never;
     this.gridViewOrder.OptionsView.ShowGroupPanel = false;
     this.gridViewOrder.SortInfo.AddRange(new DevExpress.XtraGrid.Columns.GridColumnSortInfo[] {
     new DevExpress.XtraGrid.Columns.GridColumnSortInfo(this.colRoute, DevExpress.Data.ColumnSortOrder.Ascending)});
     this.gridViewOrder.RowClick += new DevExpress.XtraGrid.Views.Grid.RowClickEventHandler(this.OnOutstandingOrdersRowClicked);
     //
     // gridColumn42
     //
     this.gridColumn42.Caption = "Ref No";
     this.gridColumn42.FieldName = "RefNo";
     this.gridColumn42.Name = "gridColumn42";
     this.gridColumn42.OptionsColumn.AllowMove = false;
     this.gridColumn42.OptionsFilter.AllowFilter = false;
     this.gridColumn42.Visible = true;
     this.gridColumn42.VisibleIndex = 0;
     //
     // gridColumn43
     //
     this.gridColumn43.Caption = "Requested By";
     this.gridColumn43.FieldName = "RequestedBy";
     this.gridColumn43.Name = "gridColumn43";
     this.gridColumn43.OptionsColumn.AllowMove = false;
     this.gridColumn43.OptionsFilter.AllowAutoFilter = false;
     this.gridColumn43.OptionsFilter.AllowFilter = false;
     this.gridColumn43.Visible = true;
     this.gridColumn43.VisibleIndex = 1;
     this.gridColumn43.Width = 159;
     //
     // colRoute
     //
     this.colRoute.Caption = "Route";
     this.colRoute.FieldName = "RouteName";
     this.colRoute.Name = "colRoute";
     this.colRoute.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.True;
     this.colRoute.OptionsColumn.AllowMove = false;
     this.colRoute.Visible = true;
     this.colRoute.VisibleIndex = 2;
     //
     // layoutControlItem7
     //
     this.layoutControlItem7.Control = this.btnPrintStockOutReport;
     this.layoutControlItem7.CustomizationFormText = "layoutControlItem7";
     this.layoutControlItem7.Location = new System.Drawing.Point(0, 50);
     this.layoutControlItem7.MaxSize = new System.Drawing.Size(110, 0);
     this.layoutControlItem7.MinSize = new System.Drawing.Size(110, 26);
     this.layoutControlItem7.Name = "layoutControlItem7";
     this.layoutControlItem7.Size = new System.Drawing.Size(261, 26);
     this.layoutControlItem7.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem7.Text = "layoutControlItem7";
     this.layoutControlItem7.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem7.TextToControlDistance = 0;
     this.layoutControlItem7.TextVisible = false;
     //
     // layoutControlGroup1
     //
     this.layoutControlGroup1.CustomizationFormText = "Root";
     this.layoutControlGroup1.EnableIndentsWithoutBorders = DevExpress.Utils.DefaultBoolean.True;
     this.layoutControlGroup1.GroupBordersVisible = false;
     this.layoutControlGroup1.Items.AddRange(new DevExpress.XtraLayout.BaseLayoutItem[] {
     this.layoutControlGroup4,
     this.ActionGroup});
     this.layoutControlGroup1.Location = new System.Drawing.Point(0, 0);
     this.layoutControlGroup1.Name = "Root";
     this.layoutControlGroup1.OptionsItemText.TextToControlDistance = 5;
     this.layoutControlGroup1.Padding = new DevExpress.XtraLayout.Utils.Padding(2, 2, 2, 2);
     this.layoutControlGroup1.Size = new System.Drawing.Size(1354, 575);
     this.layoutControlGroup1.Text = "Root";
     this.layoutControlGroup1.TextVisible = false;
     //
     // layoutControlGroup4
     //
     this.layoutControlGroup4.CustomizationFormText = "Order Details";
     this.layoutControlGroup4.GroupBordersVisible = false;
     this.layoutControlGroup4.Items.AddRange(new DevExpress.XtraLayout.BaseLayoutItem[] {
     this.layoutControlGroup18});
     this.layoutControlGroup4.Location = new System.Drawing.Point(0, 0);
     this.layoutControlGroup4.Name = "layoutControlGroup4";
     this.layoutControlGroup4.OptionsItemText.TextToControlDistance = 5;
     this.layoutControlGroup4.Size = new System.Drawing.Size(1350, 545);
     this.layoutControlGroup4.Text = "Order Details";
     //
     // layoutControlGroup18
     //
     this.layoutControlGroup18.CustomizationFormText = "layoutControlGroup18";
     this.layoutControlGroup18.Items.AddRange(new DevExpress.XtraLayout.BaseLayoutItem[] {
     this.layoutControlItem49,
     this.layoutControlItem9,
     this.layoutControlItem59,
     this.layoutControlItem4,
     this.splitterItem1});
     this.layoutControlGroup18.Location = new System.Drawing.Point(0, 0);
     this.layoutControlGroup18.Name = "layoutControlGroup18";
     this.layoutControlGroup18.Padding = new DevExpress.XtraLayout.Utils.Padding(0, 0, 0, 0);
     this.layoutControlGroup18.Size = new System.Drawing.Size(1350, 545);
     this.layoutControlGroup18.Spacing = new DevExpress.XtraLayout.Utils.Padding(0, 0, 0, 0);
     this.layoutControlGroup18.Text = "layoutControlGroup18";
     this.layoutControlGroup18.TextLocation = DevExpress.Utils.Locations.Left;
     this.layoutControlGroup18.TextVisible = false;
     //
     // layoutControlItem49
     //
     this.layoutControlItem49.Control = this.gridOrder;
     this.layoutControlItem49.CustomizationFormText = "layoutControlItem49";
     this.layoutControlItem49.Location = new System.Drawing.Point(0, 48);
     this.layoutControlItem49.MaxSize = new System.Drawing.Size(261, 0);
     this.layoutControlItem49.MinSize = new System.Drawing.Size(261, 24);
     this.layoutControlItem49.Name = "layoutControlItem49";
     this.layoutControlItem49.Size = new System.Drawing.Size(261, 495);
     this.layoutControlItem49.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem49.Text = "layoutControlItem49";
     this.layoutControlItem49.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem49.TextToControlDistance = 0;
     this.layoutControlItem49.TextVisible = false;
     //
     // layoutControlItem9
     //
     this.layoutControlItem9.Control = this.txtFacilityName;
     this.layoutControlItem9.CustomizationFormText = "layoutControlItem9";
     this.layoutControlItem9.Location = new System.Drawing.Point(0, 24);
     this.layoutControlItem9.MaxSize = new System.Drawing.Size(0, 24);
     this.layoutControlItem9.MinSize = new System.Drawing.Size(54, 24);
     this.layoutControlItem9.Name = "layoutControlItem9";
     this.layoutControlItem9.Size = new System.Drawing.Size(261, 24);
     this.layoutControlItem9.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem9.Text = "Search:";
     this.layoutControlItem9.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.AutoSize;
     this.layoutControlItem9.TextSize = new System.Drawing.Size(37, 13);
     this.layoutControlItem9.TextToControlDistance = 5;
     //
     // layoutControlItem59
     //
     this.layoutControlItem59.Control = this.lkMode;
     this.layoutControlItem59.CustomizationFormText = "Mode";
     this.layoutControlItem59.Location = new System.Drawing.Point(0, 0);
     this.layoutControlItem59.MaxSize = new System.Drawing.Size(0, 24);
     this.layoutControlItem59.MinSize = new System.Drawing.Size(140, 24);
     this.layoutControlItem59.Name = "layoutControlItem59";
     this.layoutControlItem59.Size = new System.Drawing.Size(261, 24);
     this.layoutControlItem59.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem59.Text = "Mode:";
     this.layoutControlItem59.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.AutoSize;
     this.layoutControlItem59.TextSize = new System.Drawing.Size(30, 13);
     this.layoutControlItem59.TextToControlDistance = 12;
     //
     // layoutControlItem4
     //
     this.layoutControlItem4.Control = this.tabControlOrderDetail;
     this.layoutControlItem4.CustomizationFormText = "layoutControlItem4";
     this.layoutControlItem4.Location = new System.Drawing.Point(266, 0);
     this.layoutControlItem4.Name = "layoutControlItem4";
     this.layoutControlItem4.Size = new System.Drawing.Size(1082, 543);
     this.layoutControlItem4.Text = "layoutControlItem4";
     this.layoutControlItem4.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem4.TextToControlDistance = 0;
     this.layoutControlItem4.TextVisible = false;
     //
     // splitterItem1
     //
     this.splitterItem1.AllowHotTrack = true;
     this.splitterItem1.CustomizationFormText = "splitterItem1";
     this.splitterItem1.Location = new System.Drawing.Point(261, 0);
     this.splitterItem1.Name = "splitterItem1";
     this.splitterItem1.Size = new System.Drawing.Size(5, 543);
     //
     // ActionGroup
     //
     this.ActionGroup.CustomizationFormText = "layoutActions";
     this.ActionGroup.GroupBordersVisible = false;
     this.ActionGroup.Items.AddRange(new DevExpress.XtraLayout.BaseLayoutItem[] {
     this.layoutControlItem12,
     this.layoutControlItem23,
     this.layoutControlItem24,
     this.layoutControlItem11,
     this.emptySpaceItem2});
     this.ActionGroup.Location = new System.Drawing.Point(0, 545);
     this.ActionGroup.Name = "ActionGroup";
     this.ActionGroup.Size = new System.Drawing.Size(1350, 26);
     this.ActionGroup.Text = "ActionGroup";
     //
     // layoutControlItem12
     //
     this.layoutControlItem12.Control = this.btnReturnToEdit;
     this.layoutControlItem12.CustomizationFormText = "layoutControlItem12";
     this.layoutControlItem12.Location = new System.Drawing.Point(750, 0);
     this.layoutControlItem12.MaxSize = new System.Drawing.Size(150, 26);
     this.layoutControlItem12.MinSize = new System.Drawing.Size(150, 26);
     this.layoutControlItem12.Name = "layoutControlItem12";
     this.layoutControlItem12.Size = new System.Drawing.Size(150, 26);
     this.layoutControlItem12.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem12.Tag = "Approve";
     this.layoutControlItem12.Text = "layoutControlItem12";
     this.layoutControlItem12.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem12.TextToControlDistance = 0;
     this.layoutControlItem12.TextVisible = false;
     //
     // layoutControlItem23
     //
     this.layoutControlItem23.Control = this.btnApproveOrder;
     this.layoutControlItem23.CustomizationFormText = "layoutControlItem23";
     this.layoutControlItem23.Location = new System.Drawing.Point(1050, 0);
     this.layoutControlItem23.MaxSize = new System.Drawing.Size(150, 26);
     this.layoutControlItem23.MinSize = new System.Drawing.Size(150, 26);
     this.layoutControlItem23.Name = "layoutControlItem23";
     this.layoutControlItem23.Size = new System.Drawing.Size(150, 26);
     this.layoutControlItem23.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem23.Text = "layoutControlItem23";
     this.layoutControlItem23.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem23.TextToControlDistance = 0;
     this.layoutControlItem23.TextVisible = false;
     //
     // layoutControlItem24
     //
     this.layoutControlItem24.Control = this.btnCancelApproval;
     this.layoutControlItem24.CustomizationFormText = "layoutControlItem24";
     this.layoutControlItem24.Location = new System.Drawing.Point(1200, 0);
     this.layoutControlItem24.MaxSize = new System.Drawing.Size(150, 26);
     this.layoutControlItem24.MinSize = new System.Drawing.Size(150, 26);
     this.layoutControlItem24.Name = "layoutControlItem24";
     this.layoutControlItem24.Size = new System.Drawing.Size(150, 26);
     this.layoutControlItem24.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem24.Text = "layoutControlItem24";
     this.layoutControlItem24.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem24.TextToControlDistance = 0;
     this.layoutControlItem24.TextVisible = false;
     //
     // layoutControlItem11
     //
     this.layoutControlItem11.Control = this.btnSaveDraft;
     this.layoutControlItem11.CustomizationFormText = "layoutControlItem11";
     this.layoutControlItem11.Location = new System.Drawing.Point(900, 0);
     this.layoutControlItem11.MaxSize = new System.Drawing.Size(150, 26);
     this.layoutControlItem11.MinSize = new System.Drawing.Size(150, 26);
     this.layoutControlItem11.Name = "layoutControlItem11";
     this.layoutControlItem11.Size = new System.Drawing.Size(150, 26);
     this.layoutControlItem11.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem11.Tag = "Cancel";
     this.layoutControlItem11.Text = "layoutControlItem11";
     this.layoutControlItem11.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem11.TextToControlDistance = 0;
     this.layoutControlItem11.TextVisible = false;
     //
     // emptySpaceItem2
     //
     this.emptySpaceItem2.AllowHotTrack = false;
     this.emptySpaceItem2.CustomizationFormText = "emptySpaceItem2";
     this.emptySpaceItem2.Location = new System.Drawing.Point(0, 0);
     this.emptySpaceItem2.Name = "emptySpaceItem2";
     this.emptySpaceItem2.Size = new System.Drawing.Size(750, 26);
     this.emptySpaceItem2.Text = "emptySpaceItem2";
     this.emptySpaceItem2.TextSize = new System.Drawing.Size(0, 0);
     //
     // toolTip
     //
     this.toolTip.ToolTipType = DevExpress.Utils.ToolTipType.SuperTip;
     //
     // popupMenu1
     //
     this.popupMenu1.Name = "popupMenu1";
     //
     // emptySpaceItem15
     //
     this.emptySpaceItem15.AllowHotTrack = false;
     this.emptySpaceItem15.CustomizationFormText = "emptySpaceItem15";
     this.emptySpaceItem15.Location = new System.Drawing.Point(0, 116);
     this.emptySpaceItem15.Name = "emptySpaceItem15";
     this.emptySpaceItem15.Size = new System.Drawing.Size(717, 10);
     this.emptySpaceItem15.Text = "emptySpaceItem15";
     this.emptySpaceItem15.TextSize = new System.Drawing.Size(0, 0);
     //
     // layoutControlGroup8
     //
     this.layoutControlGroup8.CustomizationFormText = "layoutControlGroup8";
     this.layoutControlGroup8.Location = new System.Drawing.Point(0, 0);
     this.layoutControlGroup8.Name = "layoutControlGroup8";
     this.layoutControlGroup8.OptionsItemText.TextToControlDistance = 5;
     this.layoutControlGroup8.Size = new System.Drawing.Size(717, 116);
     this.layoutControlGroup8.Text = "layoutControlGroup8";
     //
     // layoutControlGroup9
     //
     this.layoutControlGroup9.CustomizationFormText = "layoutControlGroup9";
     this.layoutControlGroup9.Location = new System.Drawing.Point(0, 126);
     this.layoutControlGroup9.Name = "layoutControlGroup9";
     this.layoutControlGroup9.OptionsItemText.TextToControlDistance = 5;
     this.layoutControlGroup9.Size = new System.Drawing.Size(717, 68);
     this.layoutControlGroup9.Text = "layoutControlGroup9";
     //
     // layoutControlGroup10
     //
     this.layoutControlGroup10.CustomizationFormText = "layoutControlGroup10";
     this.layoutControlGroup10.Location = new System.Drawing.Point(0, 126);
     this.layoutControlGroup10.Name = "layoutControlGroup10";
     this.layoutControlGroup10.OptionsItemText.TextToControlDistance = 5;
     this.layoutControlGroup10.Size = new System.Drawing.Size(717, 68);
     this.layoutControlGroup10.Text = "layoutControlGroup10";
     //
     // emptySpaceItem10
     //
     this.emptySpaceItem10.AllowHotTrack = false;
     this.emptySpaceItem10.CustomizationFormText = "emptySpaceItem10";
     this.emptySpaceItem10.Location = new System.Drawing.Point(0, 0);
     this.emptySpaceItem10.Name = "emptySpaceItem10";
     this.emptySpaceItem10.Size = new System.Drawing.Size(693, 10);
     this.emptySpaceItem10.Text = "emptySpaceItem10";
     this.emptySpaceItem10.TextSize = new System.Drawing.Size(0, 0);
     //
     // emptySpaceItem22
     //
     this.emptySpaceItem22.AllowHotTrack = false;
     this.emptySpaceItem22.CustomizationFormText = "emptySpaceItem22";
     this.emptySpaceItem22.Location = new System.Drawing.Point(85, 0);
     this.emptySpaceItem22.Name = "emptySpaceItem22";
     this.emptySpaceItem22.Size = new System.Drawing.Size(119, 479);
     this.emptySpaceItem22.Text = "emptySpaceItem22";
     this.emptySpaceItem22.TextSize = new System.Drawing.Size(0, 0);
     //
     // emptySpaceItem23
     //
     this.emptySpaceItem23.AllowHotTrack = false;
     this.emptySpaceItem23.CustomizationFormText = "emptySpaceItem23";
     this.emptySpaceItem23.Location = new System.Drawing.Point(1179, 24);
     this.emptySpaceItem23.Name = "emptySpaceItem23";
     this.emptySpaceItem23.Size = new System.Drawing.Size(10, 455);
     this.emptySpaceItem23.Text = "emptySpaceItem23";
     this.emptySpaceItem23.TextSize = new System.Drawing.Size(0, 0);
     //
     // printingSystem1
     //
     this.printingSystem1.Links.AddRange(new object[] {
     this.printableComponentLink1,
     this.printOrder});
     //
     // printableComponentLink1
     //
     this.printableComponentLink1.Landscape = true;
     this.printableComponentLink1.Margins = new System.Drawing.Printing.Margins(20, 20, 20, 20);
     this.printableComponentLink1.PageHeaderFooter = new DevExpress.XtraPrinting.PageHeaderFooter(null, new DevExpress.XtraPrinting.PageFooterArea(new string[] {
         "[Time Printed]",
         "[Date Printed]",
         "[Page # of Pages #]"}, new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))), DevExpress.XtraPrinting.BrickAlignment.Near));
     this.printableComponentLink1.PaperKind = System.Drawing.Printing.PaperKind.A4;
     this.printableComponentLink1.PrintingSystemBase = this.printingSystem1;
     this.printableComponentLink1.RtfReportHeader = resources.GetString("printableComponentLink1.RtfReportHeader");
     //
     // printOrder
     //
     this.printOrder.Landscape = true;
     this.printOrder.PaperKind = System.Drawing.Printing.PaperKind.A4;
     this.printOrder.PrintingSystemBase = this.printingSystem1;
     //
     // layoutControlGroup7
     //
     this.layoutControlGroup7.CustomizationFormText = "layoutControlGroup7";
     this.layoutControlGroup7.Location = new System.Drawing.Point(711, 0);
     this.layoutControlGroup7.Name = "layoutControlGroup7";
     this.layoutControlGroup7.Size = new System.Drawing.Size(97, 111);
     this.layoutControlGroup7.Text = "layoutControlGroup7";
     //
     // emptySpaceItem5
     //
     this.emptySpaceItem5.AllowHotTrack = false;
     this.emptySpaceItem5.CustomizationFormText = "emptySpaceItem5";
     this.emptySpaceItem5.Location = new System.Drawing.Point(735, 51);
     this.emptySpaceItem5.Name = "emptySpaceItem5";
     this.emptySpaceItem5.Size = new System.Drawing.Size(73, 37);
     this.emptySpaceItem5.Text = "emptySpaceItem5";
     this.emptySpaceItem5.TextSize = new System.Drawing.Size(0, 0);
     //
     // layoutControlItem28
     //
     this.layoutControlItem28.CustomizationFormText = "layoutControlItem28";
     this.layoutControlItem28.Location = new System.Drawing.Point(0, 269);
     this.layoutControlItem28.Name = "layoutControlItem28";
     this.layoutControlItem28.Size = new System.Drawing.Size(1119, 302);
     this.layoutControlItem28.Text = "layoutControlItem28";
     this.layoutControlItem28.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem28.TextToControlDistance = 0;
     this.layoutControlItem28.TextVisible = false;
     //
     // layoutControlItem33
     //
     this.layoutControlItem33.CustomizationFormText = "layoutControlItem33";
     this.layoutControlItem33.Location = new System.Drawing.Point(735, 68);
     this.layoutControlItem33.Name = "layoutControlItem33";
     this.layoutControlItem33.Size = new System.Drawing.Size(73, 10);
     this.layoutControlItem33.Text = "layoutControlItem33";
     this.layoutControlItem33.TextSize = new System.Drawing.Size(50, 20);
     this.layoutControlItem33.TextToControlDistance = 5;
     //
     // layoutControlGroup11
     //
     this.layoutControlGroup11.CustomizationFormText = "layoutControlGroup11";
     this.layoutControlGroup11.Location = new System.Drawing.Point(605, 0);
     this.layoutControlGroup11.Name = "layoutControlGroup11";
     this.layoutControlGroup11.Size = new System.Drawing.Size(458, 113);
     this.layoutControlGroup11.Text = "layoutControlGroup11";
     //
     // emptySpaceItem1
     //
     this.emptySpaceItem1.AllowHotTrack = false;
     this.emptySpaceItem1.CustomizationFormText = "emptySpaceItem1";
     this.emptySpaceItem1.Location = new System.Drawing.Point(709, 94);
     this.emptySpaceItem1.Name = "emptySpaceItem1";
     this.emptySpaceItem1.Size = new System.Drawing.Size(330, 10);
     this.emptySpaceItem1.Text = "emptySpaceItem1";
     this.emptySpaceItem1.TextSize = new System.Drawing.Size(0, 0);
     //
     // layoutControlItem34
     //
     this.layoutControlItem34.CustomizationFormText = "layoutControlItem34";
     this.layoutControlItem34.Location = new System.Drawing.Point(931, 26);
     this.layoutControlItem34.Name = "layoutControlItem34";
     this.layoutControlItem34.Size = new System.Drawing.Size(108, 17);
     this.layoutControlItem34.Text = "layoutControlItem34";
     this.layoutControlItem34.TextSize = new System.Drawing.Size(50, 20);
     this.layoutControlItem34.TextToControlDistance = 5;
     //
     // layoutControlGroup3
     //
     this.layoutControlGroup3.CustomizationFormText = "General";
     this.layoutControlGroup3.Location = new System.Drawing.Point(0, 0);
     this.layoutControlGroup3.Name = "layoutControlGroup3";
     this.layoutControlGroup3.Size = new System.Drawing.Size(1039, 499);
     this.layoutControlGroup3.Text = "General";
     //
     // deletetabFacility
     //
     this.deletetabFacility.CustomizationFormText = "Facility ";
     this.deletetabFacility.Location = new System.Drawing.Point(0, 0);
     this.deletetabFacility.Name = "layoutControlGroup5";
     this.deletetabFacility.Size = new System.Drawing.Size(1039, 499);
     this.deletetabFacility.Text = "Facility ";
     //
     // ApprovalForm
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(1354, 575);
     this.Controls.Add(this.layoutControl1);
     this.Name = "ApprovalForm";
     this.Text = "Order";
     this.Load += new System.EventHandler(this.OrderForm_Load);
     ((System.ComponentModel.ISupportInitialize)(this.boxSizedList)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemSpinEdit1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEdit3.CalendarTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEdit3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemButtonEdit4)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControl1)).EndInit();
     this.layoutControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.tabControlOrderDetail)).EndInit();
     this.tabControlOrderDetail.ResumeLayout(false);
     this.tabGeneral.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.layoutControl5)).EndInit();
     this.layoutControl5.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup12)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem2)).EndInit();
     this.tabFacility.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.layoutControl4)).EndInit();
     this.layoutControl4.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gridOrderDetailForFacility)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewOrderDetailForFacility)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemMemoEdit3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemMemoEdit4)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup5)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtFacilityName.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lkMode.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridOrder)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewOrder)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem7)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup4)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup18)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem49)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem9)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem59)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem4)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.splitterItem1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ActionGroup)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem12)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem23)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem24)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem11)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.popupMenu1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dxValidationProvider1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem15)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup8)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup9)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup10)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem10)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem22)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem23)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.printingSystem1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup7)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem5)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem28)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem33)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup11)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem34)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.bindingSource1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.deletetabFacility)).EndInit();
     this.ResumeLayout(false);
 }
Пример #13
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();
     this.gridControl1       = new DevExpress.XtraGrid.GridControl();
     this.dataTable1         = new System.Data.DataTable();
     this.dataColumn1        = new System.Data.DataColumn();
     this.dataColumn2        = new System.Data.DataColumn();
     this.dataColumn3        = new System.Data.DataColumn();
     this.gridView1          = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.colName            = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colCity            = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colAge             = new DevExpress.XtraGrid.Columns.GridColumn();
     this.dataSet1           = new System.Data.DataSet();
     this.toolTipController1 = new DevExpress.Utils.ToolTipController(this.components);
     ((System.ComponentModel.ISupportInitialize)(this.gridControl1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dataTable1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dataSet1)).BeginInit();
     this.SuspendLayout();
     //
     // gridControl1
     //
     this.gridControl1.DataSource = this.dataTable1;
     this.gridControl1.Dock       = System.Windows.Forms.DockStyle.Fill;
     this.gridControl1.Location   = new System.Drawing.Point(0, 0);
     this.gridControl1.MainView   = this.gridView1;
     this.gridControl1.Name       = "gridControl1";
     this.gridControl1.Size       = new System.Drawing.Size(464, 306);
     this.gridControl1.TabIndex   = 0;
     this.gridControl1.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
         this.gridView1
     });
     //
     // dataTable1
     //
     this.dataTable1.Columns.AddRange(new System.Data.DataColumn[] {
         this.dataColumn1,
         this.dataColumn2,
         this.dataColumn3
     });
     this.dataTable1.TableName = "Table1";
     //
     // dataColumn1
     //
     this.dataColumn1.ColumnName = "Name";
     //
     // dataColumn2
     //
     this.dataColumn2.ColumnName = "City";
     //
     // dataColumn3
     //
     this.dataColumn3.ColumnName = "Age";
     this.dataColumn3.DataType   = typeof(int);
     //
     // gridView1
     //
     this.gridView1.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
         this.colName,
         this.colCity,
         this.colAge
     });
     this.gridView1.GridControl = this.gridControl1;
     this.gridView1.GroupSummary.AddRange(new DevExpress.XtraGrid.GridSummaryItem[] {
         new DevExpress.XtraGrid.GridGroupSummaryItem(DevExpress.Data.SummaryItemType.Count, "Name", null, "Count = {0}"),
         new DevExpress.XtraGrid.GridGroupSummaryItem(DevExpress.Data.SummaryItemType.Average, "Age", null, "Average = {0}")
     });
     this.gridView1.Name = "gridView1";
     this.gridView1.CustomDrawGroupRow += new DevExpress.XtraGrid.Views.Base.RowObjectCustomDrawEventHandler(this.gridView1_CustomDrawGroupRow);
     //
     // colName
     //
     this.colName.Caption      = "Name";
     this.colName.FieldName    = "Name";
     this.colName.Name         = "colName";
     this.colName.Visible      = true;
     this.colName.VisibleIndex = 0;
     //
     // colCity
     //
     this.colCity.Caption      = "City";
     this.colCity.FieldName    = "City";
     this.colCity.Name         = "colCity";
     this.colCity.Visible      = true;
     this.colCity.VisibleIndex = 1;
     //
     // colAge
     //
     this.colAge.Caption      = "Age";
     this.colAge.FieldName    = "Age";
     this.colAge.Name         = "colAge";
     this.colAge.Visible      = true;
     this.colAge.VisibleIndex = 2;
     //
     // dataSet1
     //
     this.dataSet1.DataSetName = "NewDataSet";
     this.dataSet1.Locale      = new System.Globalization.CultureInfo("en-US");
     this.dataSet1.Tables.AddRange(new System.Data.DataTable[] {
         this.dataTable1
     });
     //
     // Form1
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.ClientSize        = new System.Drawing.Size(464, 306);
     this.Controls.Add(this.gridControl1);
     this.Name  = "Form1";
     this.Text  = "Form1";
     this.Load += new System.EventHandler(this.Form1_Load);
     ((System.ComponentModel.ISupportInitialize)(this.gridControl1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dataTable1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dataSet1)).EndInit();
     this.ResumeLayout(false);
 }
Пример #14
0
        private void InitializeComponent()
        {
            this.components = new System.ComponentModel.Container();
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(MainForm));
            this.TrayContextMenuStrip = new System.Windows.Forms.ContextMenuStrip(this.components);
            this.AboutToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.toolStripSeparator2 = new System.Windows.Forms.ToolStripSeparator();
            this.MinimizeToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.MaximizeToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
            this.logOutToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.ExitToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.notifyIcon1 = new System.Windows.Forms.NotifyIcon(this.components);
            this.toolTipController1 = new DevExpress.Utils.ToolTipController(this.components);
            ((System.ComponentModel.ISupportInitialize)(this.mainBarAndDockingController)).BeginInit();
            this.dockPanelNavigation.SuspendLayout();
            this.dockPanelNavigation_Container.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.viewSitePanel)).BeginInit();
            this.TrayContextMenuStrip.SuspendLayout();
            this.SuspendLayout();
            // 
            // mainBarAndDockingController
            // 
            this.mainBarAndDockingController.PropertiesBar.AllowLinkLighting = false;
            // 
            // dockPanelNavigation
            // 
            this.dockPanelNavigation.Options.AllowDockBottom = false;
            this.dockPanelNavigation.Options.AllowDockTop = false;
            // 
            // viewSitePanel
            // 
            this.viewSitePanel.Location = new System.Drawing.Point(146, 49);
            this.viewSitePanel.Size = new System.Drawing.Size(646, 495);
            // 
            // TrayContextMenuStrip
            // 
            this.TrayContextMenuStrip.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
            this.TrayContextMenuStrip.Font = new System.Drawing.Font("Tahoma", 10F);
            this.TrayContextMenuStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.AboutToolStripMenuItem,
            this.toolStripSeparator2,
            this.MinimizeToolStripMenuItem,
            this.MaximizeToolStripMenuItem,
            this.toolStripSeparator1,
            this.logOutToolStripMenuItem,
            this.ExitToolStripMenuItem});
            this.TrayContextMenuStrip.Name = "contextMenuStrip1";
            this.TrayContextMenuStrip.Size = new System.Drawing.Size(156, 136);
            // 
            // AboutToolStripMenuItem
            // 
            this.AboutToolStripMenuItem.Font = new System.Drawing.Font("Tahoma", 10F, System.Drawing.FontStyle.Underline);
            this.AboutToolStripMenuItem.Image = ((System.Drawing.Image)(resources.GetObject("AboutToolStripMenuItem.Image")));
            this.AboutToolStripMenuItem.Name = "AboutToolStripMenuItem";
            this.AboutToolStripMenuItem.Size = new System.Drawing.Size(155, 24);
            this.AboutToolStripMenuItem.Text = "About";
            // 
            // toolStripSeparator2
            // 
            this.toolStripSeparator2.Name = "toolStripSeparator2";
            this.toolStripSeparator2.Size = new System.Drawing.Size(152, 6);
            // 
            // MinimizeToolStripMenuItem
            // 
            this.MinimizeToolStripMenuItem.Font = new System.Drawing.Font("Tahoma", 10F, System.Drawing.FontStyle.Bold);
            this.MinimizeToolStripMenuItem.ForeColor = System.Drawing.SystemColors.MenuText;
            this.MinimizeToolStripMenuItem.Name = "MinimizeToolStripMenuItem";
            this.MinimizeToolStripMenuItem.Size = new System.Drawing.Size(155, 24);
            this.MinimizeToolStripMenuItem.Text = "Minimize";
            this.MinimizeToolStripMenuItem.Click += new System.EventHandler(this.MinimizeToolStripMenuItem_Click);
            // 
            // MaximizeToolStripMenuItem
            // 
            this.MaximizeToolStripMenuItem.Enabled = false;
            this.MaximizeToolStripMenuItem.Font = new System.Drawing.Font("Tahoma", 12F, System.Drawing.FontStyle.Bold);
            this.MaximizeToolStripMenuItem.ForeColor = System.Drawing.Color.LightYellow;
            this.MaximizeToolStripMenuItem.Name = "MaximizeToolStripMenuItem";
            this.MaximizeToolStripMenuItem.Size = new System.Drawing.Size(155, 24);
            this.MaximizeToolStripMenuItem.Text = "Maximize";
            this.MaximizeToolStripMenuItem.Click += new System.EventHandler(this.MaximizeToolStripMenuItem_Click);
            // 
            // toolStripSeparator1
            // 
            this.toolStripSeparator1.Name = "toolStripSeparator1";
            this.toolStripSeparator1.Size = new System.Drawing.Size(152, 6);
            // 
            // logOutToolStripMenuItem
            // 
            this.logOutToolStripMenuItem.Name = "logOutToolStripMenuItem";
            this.logOutToolStripMenuItem.Size = new System.Drawing.Size(155, 24);
            this.logOutToolStripMenuItem.Text = "Log out";
            this.logOutToolStripMenuItem.Click += new System.EventHandler(this.logOutToolStripMenuItem_Click);
            // 
            // ExitToolStripMenuItem
            // 
            this.ExitToolStripMenuItem.Name = "ExitToolStripMenuItem";
            this.ExitToolStripMenuItem.Size = new System.Drawing.Size(155, 24);
            this.ExitToolStripMenuItem.Text = "Exit";
            this.ExitToolStripMenuItem.Click += new System.EventHandler(this.ExitToolStripMenuItem_Click);
            // 
            // notifyIcon1
            // 
            this.notifyIcon1.ContextMenuStrip = this.TrayContextMenuStrip;
            this.notifyIcon1.Icon = ((System.Drawing.Icon)(resources.GetObject("notifyIcon1.Icon")));
            this.notifyIcon1.Visible = true;
            this.notifyIcon1.DoubleClick += new System.EventHandler(this.notifyIcon1_DoubleClick);
            // 
            // MainForm
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.ClientSize = new System.Drawing.Size(792, 566);
            this.Name = "MainForm";
            this.Controls.SetChildIndex(this.dockPanelNavigation, 0);
            this.Controls.SetChildIndex(this.viewSitePanel, 0);
            ((System.ComponentModel.ISupportInitialize)(this.mainBarAndDockingController)).EndInit();
            this.dockPanelNavigation.ResumeLayout(false);
            this.dockPanelNavigation_Container.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.viewSitePanel)).EndInit();
            this.TrayContextMenuStrip.ResumeLayout(false);
            this.ResumeLayout(false);

        }
Пример #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.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(MapViewerEx));
     this.simpleButton3 = new DevExpress.XtraEditors.SimpleButton();
     this.simpleButton2 = new DevExpress.XtraEditors.SimpleButton();
     this.groupControl1 = new DevExpress.XtraEditors.GroupControl();
     this.splitContainer1 = new System.Windows.Forms.SplitContainer();
     this.panel1 = new System.Windows.Forms.Panel();
     this.gridControl1 = new DevExpress.XtraGrid.GridControl();
     this.contextMenuStrip1 = new System.Windows.Forms.ContextMenuStrip(this.components);
     this.copySelectedCellsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.pasteSelectedCellsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.inOrgininalPositionToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.atCurrentlySelectedLocationToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.editXaxisSymbolToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.editYaxisSymbolToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.smoothSelectionToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.gridView1 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.xtraTabControl1 = new DevExpress.XtraTab.XtraTabControl();
     this.xtraTabPage1 = new DevExpress.XtraTab.XtraTabPage();
     this.btnToggleOverlay = new DevExpress.XtraEditors.SimpleButton();
     this.nChartControl1 = new Nevron.Chart.WinForm.NChartControl();
     this.simpleButton4 = new DevExpress.XtraEditors.SimpleButton();
     this.simpleButton5 = new DevExpress.XtraEditors.SimpleButton();
     this.simpleButton6 = new DevExpress.XtraEditors.SimpleButton();
     this.simpleButton7 = new DevExpress.XtraEditors.SimpleButton();
     this.xtraTabPage2 = new DevExpress.XtraTab.XtraTabPage();
     this.nChartControl2 = new Nevron.Chart.WinForm.NChartControl();
     this.labelControl9 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl8 = new DevExpress.XtraEditors.LabelControl();
     this.trackBarControl1 = new DevExpress.XtraEditors.TrackBarControl();
     this.timer1 = new System.Windows.Forms.Timer(this.components);
     this.timer2 = new System.Windows.Forms.Timer(this.components);
     this.toolTipController1 = new DevExpress.Utils.ToolTipController(this.components);
     this.toolStrip1 = new System.Windows.Forms.ToolStrip();
     this.toolStripComboBox1 = new System.Windows.Forms.ToolStripComboBox();
     this.toolStripTextBox1 = new System.Windows.Forms.ToolStripTextBox();
     this.toolStripButton3 = new System.Windows.Forms.ToolStripButton();
     this.toolStripSeparator4 = new System.Windows.Forms.ToolStripSeparator();
     this.toolStripLabel3 = new System.Windows.Forms.ToolStripLabel();
     this.toolStripComboBox3 = new System.Windows.Forms.ToolStripComboBox();
     this.toolStripSeparator2 = new System.Windows.Forms.ToolStripSeparator();
     this.toolStripButton7 = new System.Windows.Forms.ToolStripButton();
     this.toolStripButton6 = new System.Windows.Forms.ToolStripButton();
     this.toolStripButton1 = new System.Windows.Forms.ToolStripButton();
     this.toolStripButton2 = new System.Windows.Forms.ToolStripButton();
     this.toolStripButton4 = new System.Windows.Forms.ToolStripButton();
     this.toolStripButton5 = new System.Windows.Forms.ToolStripButton();
     this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
     this.toolStripLabel1 = new System.Windows.Forms.ToolStripLabel();
     this.toolStripComboBox2 = new System.Windows.Forms.ToolStripComboBox();
     this.timer3 = new System.Windows.Forms.Timer(this.components);
     this.timer4 = new System.Windows.Forms.Timer(this.components);
     this.timer5 = new System.Windows.Forms.Timer(this.components);
     this.simpleButton1 = new DevExpress.XtraEditors.SimpleButton();
     this.simpleButton8 = new DevExpress.XtraEditors.SimpleButton();
     this.simpleButton9 = new DevExpress.XtraEditors.SimpleButton();
     this.simpleButton10 = new DevExpress.XtraEditors.SimpleButton();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).BeginInit();
     this.groupControl1.SuspendLayout();
     this.splitContainer1.Panel1.SuspendLayout();
     this.splitContainer1.Panel2.SuspendLayout();
     this.splitContainer1.SuspendLayout();
     this.panel1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridControl1)).BeginInit();
     this.contextMenuStrip1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.xtraTabControl1)).BeginInit();
     this.xtraTabControl1.SuspendLayout();
     this.xtraTabPage1.SuspendLayout();
     this.xtraTabPage2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.trackBarControl1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.trackBarControl1.Properties)).BeginInit();
     this.toolStrip1.SuspendLayout();
     this.SuspendLayout();
     //
     // simpleButton3
     //
     this.simpleButton3.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.simpleButton3.Enabled = false;
     this.simpleButton3.Location = new System.Drawing.Point(5, 636);
     this.simpleButton3.Name = "simpleButton3";
     this.simpleButton3.Size = new System.Drawing.Size(92, 23);
     this.simpleButton3.TabIndex = 9;
     this.simpleButton3.Text = "Undo changes";
     this.simpleButton3.Click += new System.EventHandler(this.simpleButton3_Click);
     //
     // simpleButton2
     //
     this.simpleButton2.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.simpleButton2.Location = new System.Drawing.Point(710, 636);
     this.simpleButton2.Name = "simpleButton2";
     this.simpleButton2.Size = new System.Drawing.Size(75, 23);
     this.simpleButton2.TabIndex = 8;
     this.simpleButton2.Text = "Save to file";
     this.simpleButton2.Click += new System.EventHandler(this.simpleButton2_Click);
     //
     // groupControl1
     //
     this.toolTipController1.SetAllowHtmlText(this.groupControl1, DevExpress.Utils.DefaultBoolean.False);
     this.groupControl1.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.groupControl1.Controls.Add(this.splitContainer1);
     this.groupControl1.Location = new System.Drawing.Point(3, 28);
     this.groupControl1.Name = "groupControl1";
     this.groupControl1.Size = new System.Drawing.Size(870, 604);
     this.toolTipController1.SetSuperTip(this.groupControl1, null);
     this.groupControl1.TabIndex = 5;
     this.groupControl1.Text = "Symbol data";
     this.groupControl1.DoubleClick += new System.EventHandler(this.groupControl1_DoubleClick);
     this.groupControl1.Paint += new System.Windows.Forms.PaintEventHandler(this.groupControl1_Paint);
     //
     // splitContainer1
     //
     this.toolTipController1.SetAllowHtmlText(this.splitContainer1, DevExpress.Utils.DefaultBoolean.False);
     this.splitContainer1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.splitContainer1.Location = new System.Drawing.Point(2, 20);
     this.splitContainer1.Name = "splitContainer1";
     this.splitContainer1.Orientation = System.Windows.Forms.Orientation.Horizontal;
     //
     // splitContainer1.Panel1
     //
     this.toolTipController1.SetAllowHtmlText(this.splitContainer1.Panel1, DevExpress.Utils.DefaultBoolean.False);
     this.splitContainer1.Panel1.Controls.Add(this.panel1);
     this.toolTipController1.SetSuperTip(this.splitContainer1.Panel1, null);
     //
     // splitContainer1.Panel2
     //
     this.toolTipController1.SetAllowHtmlText(this.splitContainer1.Panel2, DevExpress.Utils.DefaultBoolean.False);
     this.splitContainer1.Panel2.Controls.Add(this.xtraTabControl1);
     this.toolTipController1.SetSuperTip(this.splitContainer1.Panel2, null);
     this.splitContainer1.Size = new System.Drawing.Size(866, 582);
     this.splitContainer1.SplitterDistance = 288;
     this.toolTipController1.SetSuperTip(this.splitContainer1, null);
     this.splitContainer1.TabIndex = 1;
     this.splitContainer1.MouseLeave += new System.EventHandler(this.splitContainer1_MouseLeave);
     this.splitContainer1.SplitterMoved += new System.Windows.Forms.SplitterEventHandler(this.splitContainer1_SplitterMoved);
     this.splitContainer1.MouseDown += new System.Windows.Forms.MouseEventHandler(this.splitContainer1_MouseDown);
     this.splitContainer1.MouseUp += new System.Windows.Forms.MouseEventHandler(this.splitContainer1_MouseUp);
     //
     // panel1
     //
     this.toolTipController1.SetAllowHtmlText(this.panel1, DevExpress.Utils.DefaultBoolean.False);
     this.panel1.Controls.Add(this.gridControl1);
     this.panel1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.panel1.Location = new System.Drawing.Point(0, 0);
     this.panel1.Name = "panel1";
     this.panel1.Size = new System.Drawing.Size(866, 288);
     this.toolTipController1.SetSuperTip(this.panel1, null);
     this.panel1.TabIndex = 2;
     //
     // gridControl1
     //
     this.gridControl1.ContextMenuStrip = this.contextMenuStrip1;
     this.gridControl1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.gridControl1.Font = new System.Drawing.Font("Tahoma", 6.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.gridControl1.Location = new System.Drawing.Point(0, 0);
     this.gridControl1.MainView = this.gridView1;
     this.gridControl1.Name = "gridControl1";
     this.gridControl1.Size = new System.Drawing.Size(866, 288);
     this.gridControl1.TabIndex = 0;
     this.gridControl1.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridView1});
     //
     // contextMenuStrip1
     //
     this.toolTipController1.SetAllowHtmlText(this.contextMenuStrip1, DevExpress.Utils.DefaultBoolean.False);
     this.contextMenuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.copySelectedCellsToolStripMenuItem,
     this.pasteSelectedCellsToolStripMenuItem,
     this.editXaxisSymbolToolStripMenuItem,
     this.editYaxisSymbolToolStripMenuItem,
     this.smoothSelectionToolStripMenuItem});
     this.contextMenuStrip1.Name = "contextMenuStrip1";
     this.contextMenuStrip1.Size = new System.Drawing.Size(179, 114);
     this.toolTipController1.SetSuperTip(this.contextMenuStrip1, null);
     this.contextMenuStrip1.Opening += new System.ComponentModel.CancelEventHandler(this.contextMenuStrip1_Opening);
     //
     // copySelectedCellsToolStripMenuItem
     //
     this.copySelectedCellsToolStripMenuItem.Name = "copySelectedCellsToolStripMenuItem";
     this.copySelectedCellsToolStripMenuItem.Size = new System.Drawing.Size(178, 22);
     this.copySelectedCellsToolStripMenuItem.Text = "Copy selected cells";
     this.copySelectedCellsToolStripMenuItem.Click += new System.EventHandler(this.copySelectedCellsToolStripMenuItem_Click);
     //
     // pasteSelectedCellsToolStripMenuItem
     //
     this.pasteSelectedCellsToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.inOrgininalPositionToolStripMenuItem,
     this.atCurrentlySelectedLocationToolStripMenuItem});
     this.pasteSelectedCellsToolStripMenuItem.Name = "pasteSelectedCellsToolStripMenuItem";
     this.pasteSelectedCellsToolStripMenuItem.Size = new System.Drawing.Size(178, 22);
     this.pasteSelectedCellsToolStripMenuItem.Text = "Paste selected cells";
     //
     // inOrgininalPositionToolStripMenuItem
     //
     this.inOrgininalPositionToolStripMenuItem.Name = "inOrgininalPositionToolStripMenuItem";
     this.inOrgininalPositionToolStripMenuItem.Size = new System.Drawing.Size(225, 22);
     this.inOrgininalPositionToolStripMenuItem.Text = "At original position";
     this.inOrgininalPositionToolStripMenuItem.Click += new System.EventHandler(this.inOrgininalPositionToolStripMenuItem_Click);
     //
     // atCurrentlySelectedLocationToolStripMenuItem
     //
     this.atCurrentlySelectedLocationToolStripMenuItem.Name = "atCurrentlySelectedLocationToolStripMenuItem";
     this.atCurrentlySelectedLocationToolStripMenuItem.Size = new System.Drawing.Size(225, 22);
     this.atCurrentlySelectedLocationToolStripMenuItem.Text = "At currently selected location";
     this.atCurrentlySelectedLocationToolStripMenuItem.Click += new System.EventHandler(this.atCurrentlySelectedLocationToolStripMenuItem_Click);
     //
     // editXaxisSymbolToolStripMenuItem
     //
     this.editXaxisSymbolToolStripMenuItem.Name = "editXaxisSymbolToolStripMenuItem";
     this.editXaxisSymbolToolStripMenuItem.Size = new System.Drawing.Size(178, 22);
     this.editXaxisSymbolToolStripMenuItem.Text = "Edit x-axis";
     this.editXaxisSymbolToolStripMenuItem.Click += new System.EventHandler(this.editXaxisSymbolToolStripMenuItem_Click);
     //
     // editYaxisSymbolToolStripMenuItem
     //
     this.editYaxisSymbolToolStripMenuItem.Name = "editYaxisSymbolToolStripMenuItem";
     this.editYaxisSymbolToolStripMenuItem.Size = new System.Drawing.Size(178, 22);
     this.editYaxisSymbolToolStripMenuItem.Text = "Edit y-axis";
     this.editYaxisSymbolToolStripMenuItem.Click += new System.EventHandler(this.editYaxisSymbolToolStripMenuItem_Click);
     //
     // smoothSelectionToolStripMenuItem
     //
     this.smoothSelectionToolStripMenuItem.Name = "smoothSelectionToolStripMenuItem";
     this.smoothSelectionToolStripMenuItem.Size = new System.Drawing.Size(178, 22);
     this.smoothSelectionToolStripMenuItem.Text = "Smooth selection";
     this.smoothSelectionToolStripMenuItem.Click += new System.EventHandler(this.smoothSelectionToolStripMenuItem_Click);
     //
     // gridView1
     //
     this.gridView1.GridControl = this.gridControl1;
     this.gridView1.Name = "gridView1";
     this.gridView1.OptionsCustomization.AllowColumnMoving = false;
     this.gridView1.OptionsCustomization.AllowFilter = false;
     this.gridView1.OptionsCustomization.AllowGroup = false;
     this.gridView1.OptionsCustomization.AllowSort = false;
     this.gridView1.OptionsNavigation.EnterMoveNextColumn = true;
     this.gridView1.OptionsSelection.EnableAppearanceFocusedRow = false;
     this.gridView1.OptionsSelection.MultiSelect = true;
     this.gridView1.OptionsSelection.MultiSelectMode = DevExpress.XtraGrid.Views.Grid.GridMultiSelectMode.CellSelect;
     this.gridView1.OptionsView.ShowGroupPanel = false;
     this.gridView1.SelectionChanged += new DevExpress.Data.SelectionChangedEventHandler(this.gridView1_SelectionChanged_1);
     this.gridView1.ValidatingEditor += new DevExpress.XtraEditors.Controls.BaseContainerValidateEditorEventHandler(this.gridView1_ValidatingEditor);
     this.gridView1.CustomDrawRowIndicator += new DevExpress.XtraGrid.Views.Grid.RowIndicatorCustomDrawEventHandler(this.gridView1_CustomDrawRowIndicator);
     this.gridView1.CellValueChanged += new DevExpress.XtraGrid.Views.Base.CellValueChangedEventHandler(this.gridView1_CellValueChanged);
     this.gridView1.KeyDown += new System.Windows.Forms.KeyEventHandler(this.gridView1_KeyDown);
     this.gridView1.CellValueChanging += new DevExpress.XtraGrid.Views.Base.CellValueChangedEventHandler(this.gridView1_CellValueChanging);
     this.gridView1.CustomDrawCell += new DevExpress.XtraGrid.Views.Base.RowCellCustomDrawEventHandler(this.gridView1_CustomDrawCell);
     this.gridView1.ShownEditor += new System.EventHandler(this.gridView1_ShownEditor);
     this.gridView1.RowUpdated += new DevExpress.XtraGrid.Views.Base.RowObjectEventHandler(this.gridView1_RowUpdated);
     this.gridView1.ShowingEditor += new System.ComponentModel.CancelEventHandler(this.gridView1_ShowingEditor);
     this.gridView1.HiddenEditor += new System.EventHandler(this.gridView1_HiddenEditor);
     this.gridView1.CustomDrawColumnHeader += new DevExpress.XtraGrid.Views.Grid.ColumnHeaderCustomDrawEventHandler(this.gridView1_CustomDrawColumnHeader);
     //
     // xtraTabControl1
     //
     this.xtraTabControl1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.xtraTabControl1.HeaderLocation = DevExpress.XtraTab.TabHeaderLocation.Left;
     this.xtraTabControl1.HeaderOrientation = DevExpress.XtraTab.TabOrientation.Vertical;
     this.xtraTabControl1.Location = new System.Drawing.Point(0, 0);
     this.xtraTabControl1.Name = "xtraTabControl1";
     this.xtraTabControl1.SelectedTabPage = this.xtraTabPage1;
     this.xtraTabControl1.Size = new System.Drawing.Size(866, 290);
     this.xtraTabControl1.TabIndex = 2;
     this.xtraTabControl1.TabPages.AddRange(new DevExpress.XtraTab.XtraTabPage[] {
     this.xtraTabPage1,
     this.xtraTabPage2});
     this.xtraTabControl1.SelectedPageChanged += new DevExpress.XtraTab.TabPageChangedEventHandler(this.xtraTabControl1_SelectedPageChanged);
     //
     // xtraTabPage1
     //
     this.xtraTabPage1.Controls.Add(this.btnToggleOverlay);
     this.xtraTabPage1.Controls.Add(this.nChartControl1);
     this.xtraTabPage1.Controls.Add(this.simpleButton4);
     this.xtraTabPage1.Controls.Add(this.simpleButton5);
     this.xtraTabPage1.Controls.Add(this.simpleButton6);
     this.xtraTabPage1.Controls.Add(this.simpleButton7);
     this.xtraTabPage1.Name = "xtraTabPage1";
     this.xtraTabPage1.Size = new System.Drawing.Size(836, 281);
     this.xtraTabPage1.Text = "3D Graph";
     //
     // btnToggleOverlay
     //
     this.btnToggleOverlay.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.btnToggleOverlay.Location = new System.Drawing.Point(803, 118);
     this.btnToggleOverlay.Name = "btnToggleOverlay";
     this.btnToggleOverlay.Size = new System.Drawing.Size(23, 23);
     this.btnToggleOverlay.TabIndex = 14;
     this.btnToggleOverlay.ToolTip = "Toggle graph overlay";
     this.btnToggleOverlay.Visible = false;
     this.btnToggleOverlay.Click += new System.EventHandler(this.btnToggleOverlay_Click);
     //
     // nChartControl1
     //
     this.toolTipController1.SetAllowHtmlText(this.nChartControl1, DevExpress.Utils.DefaultBoolean.False);
     this.nChartControl1.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.nChartControl1.AutoRefresh = false;
     this.nChartControl1.BackColor = System.Drawing.SystemColors.Control;
     this.nChartControl1.InputKeys = new System.Windows.Forms.Keys[0];
     this.nChartControl1.Location = new System.Drawing.Point(0, -1);
     this.nChartControl1.Name = "nChartControl1";
     this.nChartControl1.Size = new System.Drawing.Size(797, 282);
     this.nChartControl1.State = ((Nevron.Chart.WinForm.NState)(resources.GetObject("nChartControl1.State")));
     this.toolTipController1.SetSuperTip(this.nChartControl1, null);
     this.nChartControl1.TabIndex = 13;
     this.nChartControl1.Text = "nChartControl1";
     //
     // simpleButton4
     //
     this.simpleButton4.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.simpleButton4.Image = ((System.Drawing.Image)(resources.GetObject("simpleButton4.Image")));
     this.simpleButton4.Location = new System.Drawing.Point(803, 60);
     this.simpleButton4.Name = "simpleButton4";
     this.simpleButton4.Size = new System.Drawing.Size(23, 23);
     this.simpleButton4.TabIndex = 12;
     this.simpleButton4.ToolTip = "Turn graph counter clockwise";
     this.simpleButton4.Click += new System.EventHandler(this.simpleButton4_Click);
     //
     // simpleButton5
     //
     this.simpleButton5.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.simpleButton5.Image = ((System.Drawing.Image)(resources.GetObject("simpleButton5.Image")));
     this.simpleButton5.Location = new System.Drawing.Point(803, 89);
     this.simpleButton5.Name = "simpleButton5";
     this.simpleButton5.Size = new System.Drawing.Size(23, 23);
     this.simpleButton5.TabIndex = 11;
     this.simpleButton5.ToolTip = "Turn graph clockwise";
     this.simpleButton5.Click += new System.EventHandler(this.simpleButton5_Click);
     //
     // simpleButton6
     //
     this.simpleButton6.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.simpleButton6.Image = ((System.Drawing.Image)(resources.GetObject("simpleButton6.Image")));
     this.simpleButton6.Location = new System.Drawing.Point(803, 32);
     this.simpleButton6.Name = "simpleButton6";
     this.simpleButton6.Size = new System.Drawing.Size(23, 23);
     this.simpleButton6.TabIndex = 10;
     this.simpleButton6.ToolTip = "Zoom out";
     this.simpleButton6.Click += new System.EventHandler(this.simpleButton6_Click);
     //
     // simpleButton7
     //
     this.simpleButton7.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.simpleButton7.Image = ((System.Drawing.Image)(resources.GetObject("simpleButton7.Image")));
     this.simpleButton7.Location = new System.Drawing.Point(803, 3);
     this.simpleButton7.Name = "simpleButton7";
     this.simpleButton7.Size = new System.Drawing.Size(23, 23);
     this.simpleButton7.TabIndex = 9;
     this.simpleButton7.ToolTip = "Zoom in";
     this.simpleButton7.Click += new System.EventHandler(this.simpleButton7_Click);
     //
     // xtraTabPage2
     //
     this.xtraTabPage2.Controls.Add(this.nChartControl2);
     this.xtraTabPage2.Controls.Add(this.labelControl9);
     this.xtraTabPage2.Controls.Add(this.labelControl8);
     this.xtraTabPage2.Controls.Add(this.trackBarControl1);
     this.xtraTabPage2.Name = "xtraTabPage2";
     this.xtraTabPage2.Size = new System.Drawing.Size(836, 281);
     this.xtraTabPage2.Text = "2D Graph";
     //
     // nChartControl2
     //
     this.toolTipController1.SetAllowHtmlText(this.nChartControl2, DevExpress.Utils.DefaultBoolean.False);
     this.nChartControl2.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.nChartControl2.AutoRefresh = false;
     this.nChartControl2.BackColor = System.Drawing.SystemColors.Control;
     this.nChartControl2.InputKeys = new System.Windows.Forms.Keys[0];
     this.nChartControl2.Location = new System.Drawing.Point(6, 3);
     this.nChartControl2.Name = "nChartControl2";
     this.nChartControl2.Size = new System.Drawing.Size(826, 192);
     this.nChartControl2.State = ((Nevron.Chart.WinForm.NState)(resources.GetObject("nChartControl2.State")));
     this.toolTipController1.SetSuperTip(this.nChartControl2, null);
     this.nChartControl2.TabIndex = 5;
     this.nChartControl2.Text = "nChartControl2";
     //
     // labelControl9
     //
     this.labelControl9.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.labelControl9.AutoEllipsis = true;
     this.labelControl9.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl9.Location = new System.Drawing.Point(645, 201);
     this.labelControl9.Name = "labelControl9";
     this.labelControl9.Size = new System.Drawing.Size(188, 34);
     this.labelControl9.TabIndex = 4;
     this.labelControl9.Text = "MAP";
     //
     // labelControl8
     //
     this.labelControl8.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.labelControl8.AutoEllipsis = true;
     this.labelControl8.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl8.Location = new System.Drawing.Point(6, 201);
     this.labelControl8.Name = "labelControl8";
     this.labelControl8.Size = new System.Drawing.Size(104, 34);
     this.labelControl8.TabIndex = 3;
     this.labelControl8.Text = "MAP values";
     //
     // trackBarControl1
     //
     this.trackBarControl1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.trackBarControl1.EditValue = null;
     this.trackBarControl1.Location = new System.Drawing.Point(125, 201);
     this.trackBarControl1.Name = "trackBarControl1";
     this.trackBarControl1.Size = new System.Drawing.Size(500, 45);
     this.trackBarControl1.TabIndex = 2;
     this.trackBarControl1.ValueChanged += new System.EventHandler(this.trackBarControl1_ValueChanged);
     //
     // timer1
     //
     this.timer1.Tick += new System.EventHandler(this.timer1_Tick);
     //
     // timer2
     //
     this.timer2.Tick += new System.EventHandler(this.timer2_Tick);
     //
     // toolTipController1
     //
     this.toolTipController1.Rounded = true;
     //
     // toolStrip1
     //
     this.toolTipController1.SetAllowHtmlText(this.toolStrip1, DevExpress.Utils.DefaultBoolean.False);
     this.toolStrip1.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.toolStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.toolStripComboBox1,
     this.toolStripTextBox1,
     this.toolStripButton3,
     this.toolStripSeparator4,
     this.toolStripLabel3,
     this.toolStripComboBox3,
     this.toolStripSeparator2,
     this.toolStripButton7,
     this.toolStripButton6,
     this.toolStripButton1,
     this.toolStripButton2,
     this.toolStripButton4,
     this.toolStripButton5,
     this.toolStripSeparator1,
     this.toolStripLabel1,
     this.toolStripComboBox2});
     this.toolStrip1.Location = new System.Drawing.Point(0, 0);
     this.toolStrip1.Name = "toolStrip1";
     this.toolStrip1.Size = new System.Drawing.Size(876, 25);
     this.toolTipController1.SetSuperTip(this.toolStrip1, null);
     this.toolStrip1.TabIndex = 10;
     this.toolStrip1.Text = "toolStrip1";
     //
     // toolStripComboBox1
     //
     this.toolStripComboBox1.AutoCompleteMode = System.Windows.Forms.AutoCompleteMode.Suggest;
     this.toolStripComboBox1.AutoCompleteSource = System.Windows.Forms.AutoCompleteSource.ListItems;
     this.toolStripComboBox1.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.toolStripComboBox1.Items.AddRange(new object[] {
     "Addition",
     "Multiply",
     "Divide",
     "Fill"});
     this.toolStripComboBox1.Name = "toolStripComboBox1";
     this.toolStripComboBox1.Size = new System.Drawing.Size(121, 25);
     //
     // toolStripTextBox1
     //
     this.toolStripTextBox1.Name = "toolStripTextBox1";
     this.toolStripTextBox1.Size = new System.Drawing.Size(60, 25);
     this.toolStripTextBox1.Text = "2";
     this.toolStripTextBox1.TextBoxTextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     //
     // toolStripButton3
     //
     this.toolStripButton3.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.toolStripButton3.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButton3.Image")));
     this.toolStripButton3.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.toolStripButton3.Name = "toolStripButton3";
     this.toolStripButton3.Size = new System.Drawing.Size(23, 22);
     this.toolStripButton3.Text = "Execute";
     this.toolStripButton3.Click += new System.EventHandler(this.toolStripButton3_Click);
     //
     // toolStripSeparator4
     //
     this.toolStripSeparator4.Name = "toolStripSeparator4";
     this.toolStripSeparator4.Size = new System.Drawing.Size(6, 25);
     //
     // toolStripLabel3
     //
     this.toolStripLabel3.Name = "toolStripLabel3";
     this.toolStripLabel3.Size = new System.Drawing.Size(51, 22);
     this.toolStripLabel3.Text = "Viewtype";
     //
     // toolStripComboBox3
     //
     this.toolStripComboBox3.AutoCompleteMode = System.Windows.Forms.AutoCompleteMode.Suggest;
     this.toolStripComboBox3.AutoCompleteSource = System.Windows.Forms.AutoCompleteSource.ListItems;
     this.toolStripComboBox3.Items.AddRange(new object[] {
     "Hex view ",
     "Decimal view ",
     "Easy view",
     "ASCII"});
     this.toolStripComboBox3.Name = "toolStripComboBox3";
     this.toolStripComboBox3.Size = new System.Drawing.Size(160, 25);
     this.toolStripComboBox3.SelectedIndexChanged += new System.EventHandler(this.toolStripComboBox3_SelectedIndexChanged);
     this.toolStripComboBox3.KeyDown += new System.Windows.Forms.KeyEventHandler(this.toolStripComboBox3_KeyDown);
     //
     // toolStripSeparator2
     //
     this.toolStripSeparator2.Name = "toolStripSeparator2";
     this.toolStripSeparator2.Size = new System.Drawing.Size(6, 25);
     //
     // toolStripButton7
     //
     this.toolStripButton7.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.toolStripButton7.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButton7.Image")));
     this.toolStripButton7.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.toolStripButton7.Name = "toolStripButton7";
     this.toolStripButton7.Size = new System.Drawing.Size(23, 22);
     this.toolStripButton7.Text = "Toggle graph/map";
     this.toolStripButton7.Click += new System.EventHandler(this.toolStripButton7_Click);
     //
     // toolStripButton6
     //
     this.toolStripButton6.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.toolStripButton6.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButton6.Image")));
     this.toolStripButton6.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.toolStripButton6.Name = "toolStripButton6";
     this.toolStripButton6.Size = new System.Drawing.Size(23, 22);
     this.toolStripButton6.Text = "Maximize window";
     this.toolStripButton6.Click += new System.EventHandler(this.toolStripButton6_Click);
     //
     // toolStripButton1
     //
     this.toolStripButton1.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.toolStripButton1.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButton1.Image")));
     this.toolStripButton1.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.toolStripButton1.Name = "toolStripButton1";
     this.toolStripButton1.Size = new System.Drawing.Size(23, 22);
     this.toolStripButton1.Text = "Toggle graph section";
     this.toolStripButton1.Visible = false;
     this.toolStripButton1.Click += new System.EventHandler(this.toolStripButton1_Click);
     //
     // toolStripButton2
     //
     this.toolStripButton2.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.toolStripButton2.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButton2.Image")));
     this.toolStripButton2.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.toolStripButton2.Name = "toolStripButton2";
     this.toolStripButton2.Size = new System.Drawing.Size(23, 22);
     this.toolStripButton2.Text = "Toggle hexview";
     this.toolStripButton2.Visible = false;
     this.toolStripButton2.Click += new System.EventHandler(this.toolStripButton2_Click);
     //
     // toolStripButton4
     //
     this.toolStripButton4.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.toolStripButton4.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButton4.Image")));
     this.toolStripButton4.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.toolStripButton4.Name = "toolStripButton4";
     this.toolStripButton4.Size = new System.Drawing.Size(23, 22);
     this.toolStripButton4.Text = "Maximize graph";
     this.toolStripButton4.Visible = false;
     this.toolStripButton4.Click += new System.EventHandler(this.toolStripButton4_Click);
     //
     // toolStripButton5
     //
     this.toolStripButton5.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.toolStripButton5.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButton5.Image")));
     this.toolStripButton5.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.toolStripButton5.Name = "toolStripButton5";
     this.toolStripButton5.Size = new System.Drawing.Size(23, 22);
     this.toolStripButton5.Text = "Maximize table";
     this.toolStripButton5.Visible = false;
     this.toolStripButton5.Click += new System.EventHandler(this.toolStripButton5_Click);
     //
     // toolStripSeparator1
     //
     this.toolStripSeparator1.Name = "toolStripSeparator1";
     this.toolStripSeparator1.Size = new System.Drawing.Size(6, 25);
     //
     // toolStripLabel1
     //
     this.toolStripLabel1.Name = "toolStripLabel1";
     this.toolStripLabel1.Size = new System.Drawing.Size(77, 22);
     this.toolStripLabel1.Text = "Axis lock mode";
     //
     // toolStripComboBox2
     //
     this.toolStripComboBox2.AutoCompleteMode = System.Windows.Forms.AutoCompleteMode.Suggest;
     this.toolStripComboBox2.AutoCompleteSource = System.Windows.Forms.AutoCompleteSource.ListItems;
     this.toolStripComboBox2.Items.AddRange(new object[] {
     "Autoscale",
     "Lock to peak in maps",
     "Lock to map limit"});
     this.toolStripComboBox2.Name = "toolStripComboBox2";
     this.toolStripComboBox2.Size = new System.Drawing.Size(121, 25);
     this.toolStripComboBox2.SelectedIndexChanged += new System.EventHandler(this.toolStripComboBox2_SelectedIndexChanged);
     //
     // timer3
     //
     this.timer3.Tick += new System.EventHandler(this.timer3_Tick);
     //
     // timer4
     //
     this.timer4.Enabled = true;
     this.timer4.Interval = 500;
     this.timer4.Tick += new System.EventHandler(this.timer4_Tick);
     //
     // timer5
     //
     this.timer5.Interval = 10000;
     this.timer5.Tick += new System.EventHandler(this.timer5_Tick);
     //
     // simpleButton1
     //
     this.simpleButton1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.simpleButton1.Location = new System.Drawing.Point(791, 636);
     this.simpleButton1.Name = "simpleButton1";
     this.simpleButton1.Size = new System.Drawing.Size(75, 23);
     this.simpleButton1.TabIndex = 14;
     this.simpleButton1.Text = "Close";
     this.simpleButton1.Click += new System.EventHandler(this.simpleButton1_Click);
     //
     // simpleButton8
     //
     this.simpleButton8.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.simpleButton8.Location = new System.Drawing.Point(518, 636);
     this.simpleButton8.Name = "simpleButton8";
     this.simpleButton8.Size = new System.Drawing.Size(90, 23);
     this.simpleButton8.TabIndex = 15;
     this.simpleButton8.Text = "Save to ECU";
     this.simpleButton8.Visible = false;
     this.simpleButton8.Click += new System.EventHandler(this.simpleButton8_Click);
     //
     // simpleButton9
     //
     this.simpleButton9.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.simpleButton9.Location = new System.Drawing.Point(422, 636);
     this.simpleButton9.Name = "simpleButton9";
     this.simpleButton9.Size = new System.Drawing.Size(90, 23);
     this.simpleButton9.TabIndex = 16;
     this.simpleButton9.Text = "Read from ECU";
     this.simpleButton9.Visible = false;
     this.simpleButton9.Click += new System.EventHandler(this.simpleButton9_Click);
     //
     // simpleButton10
     //
     this.simpleButton10.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.simpleButton10.Location = new System.Drawing.Point(614, 636);
     this.simpleButton10.Name = "simpleButton10";
     this.simpleButton10.Size = new System.Drawing.Size(90, 23);
     this.simpleButton10.TabIndex = 17;
     this.simpleButton10.Text = "Read from file";
     this.simpleButton10.Click += new System.EventHandler(this.simpleButton10_Click);
     //
     // MapViewerEx
     //
     this.toolTipController1.SetAllowHtmlText(this, DevExpress.Utils.DefaultBoolean.False);
     this.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.Appearance.Options.UseFont = true;
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.Controls.Add(this.simpleButton10);
     this.Controls.Add(this.toolStrip1);
     this.Controls.Add(this.simpleButton9);
     this.Controls.Add(this.simpleButton1);
     this.Controls.Add(this.simpleButton8);
     this.Controls.Add(this.groupControl1);
     this.Controls.Add(this.simpleButton3);
     this.Controls.Add(this.simpleButton2);
     this.Name = "MapViewerEx";
     this.Size = new System.Drawing.Size(876, 664);
     this.toolTipController1.SetSuperTip(this, null);
     this.VisibleChanged += new System.EventHandler(this.MapViewer_VisibleChanged);
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).EndInit();
     this.groupControl1.ResumeLayout(false);
     this.splitContainer1.Panel1.ResumeLayout(false);
     this.splitContainer1.Panel2.ResumeLayout(false);
     this.splitContainer1.ResumeLayout(false);
     this.panel1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gridControl1)).EndInit();
     this.contextMenuStrip1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.xtraTabControl1)).EndInit();
     this.xtraTabControl1.ResumeLayout(false);
     this.xtraTabPage1.ResumeLayout(false);
     this.xtraTabPage2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.trackBarControl1.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.trackBarControl1)).EndInit();
     this.toolStrip1.ResumeLayout(false);
     this.toolStrip1.PerformLayout();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Пример #16
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(FormNewQaQc));
     DevExpress.XtraGrid.GridLevelNode gridLevelNode1 = new DevExpress.XtraGrid.GridLevelNode();
     DevExpress.XtraGrid.GridLevelNode gridLevelNode2 = new DevExpress.XtraGrid.GridLevelNode();
     DevExpress.XtraGrid.GridLevelNode gridLevelNode3 = new DevExpress.XtraGrid.GridLevelNode();
     DevExpress.XtraGrid.StyleFormatCondition styleFormatCondition1 = new DevExpress.XtraGrid.StyleFormatCondition();
     DevExpress.XtraTreeList.StyleFormatConditions.StyleFormatCondition styleFormatCondition2 = new DevExpress.XtraTreeList.StyleFormatConditions.StyleFormatCondition();
     this.bgvBatchCalc1 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridView();
     this.gridBand1 = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
     this.gcBachCalc = new DevExpress.XtraGrid.GridControl();
     this.bgvBatchCalc3 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridView();
     this.gridBand2 = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
     this.bgvBatchCalc4 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridView();
     this.bgvBatchCalc2 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridView();
     this.gridBand13 = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
     this.gv2col_Qaqc_par_prev_batch = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.repQaqc_Previous_par = new DevExpress.XtraEditors.Repository.RepositoryItemImageComboBox();
     this.imageStatus = new System.Windows.Forms.ImageList(this.components);
     this.gbSample = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
     this.gv2col_Cod_sample = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.gv2col_Cod_des_sample = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.repDes_Sample = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
     this.gv2col_Fum = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.gv2col_Idunit_result = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.gv2col_Idtemplate_method = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.gv2col_Idrecep_sample_detail = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.gv2col_Flag_mri = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.gv2col_Idrecep_sample_detail_elem = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.gridBand3 = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
     this.gv2col_Weight1 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.gv2col_Weight2 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.gridBand10 = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
     this.gv2col_Volumen1 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.gv2col_Volumen2 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.gridBand4 = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
     this.gv2col_Reading1 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.gv2col_Reading2 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.gbDilution = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
     this.gv2col_Flag_dila1 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.repCheckDilution = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
     this.gv2col_Dilua1 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.gv2col_Flag_dilb1 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.gv2col_Dilub1 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.gridBand6 = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
     this.gv2col_Rank1 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.gv2col_Rank2 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.gridBand5 = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
     this.gv2col_Factor1 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.gv2col_Factor2 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.gridBand7 = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
     this.gv2col_Law1 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.gv2col_Law2 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.gridBand12 = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
     this.gv2col_Str_result_analysis = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.gv2col_Result_analysis = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.gridBand9 = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
     this.gv2col_Qaqc_text_obs = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.gv2col_Qaqc_observation = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.repQaqc_ShowPopup = new DevExpress.XtraEditors.Repository.RepositoryItemButtonEdit();
     this.gv2col_Qaqc_mr = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.gv2col_Qaqc_blk = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.gv2col_Qaqc_par = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.repQaqc_parity = new DevExpress.XtraEditors.Repository.RepositoryItemImageComboBox();
     this.gv2col_Qaqc_approve = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.repQaqc_approve = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
     this.gv2col_Qaqc_review = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.repQaqc_review = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
     this.gv2col_Qaqc_status_result = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.repQaqc_StatusResult = new DevExpress.XtraEditors.Repository.RepositoryItemImageComboBox();
     this.gv2col_Qaqc_error = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.repQaqc_ShowObs = new DevExpress.XtraEditors.Repository.RepositoryItemImageComboBox();
     this.gridBand14 = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
     this.gv2col_Qaqc_has_retest = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.repQaqc_HasRetest = new DevExpress.XtraEditors.Repository.RepositoryItemImageComboBox();
     this.gv2col_Qaqc_tmp_retest_idmethod = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.gv2col_Qaqc_tmp_retest = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.gv2col_Idretest = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.gv2col_Qaqc_approve_text = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.gv2col_Qaqc_review_text = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.imgChecks = new System.Windows.Forms.ImageList(this.components);
     this.repProcedence2 = new DevExpress.XtraEditors.Repository.RepositoryItemMemoExEdit();
     this.treeCol_Urgent_sample = new DevExpress.XtraTreeList.Columns.TreeListColumn();
     this.treeTrayWaiting = new DevExpress.XtraTreeList.TreeList();
     this.treeCol_Idtemplate_method = new DevExpress.XtraTreeList.Columns.TreeListColumn();
     this.treeCol_Idrecep_sample_detail_elem = new DevExpress.XtraTreeList.Columns.TreeListColumn();
     this.treeCol_Abbreviation = new DevExpress.XtraTreeList.Columns.TreeListColumn();
     this.treeCol_Cod_repetition = new DevExpress.XtraTreeList.Columns.TreeListColumn();
     this.repRepetition = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
     this.treeCol_Id = new DevExpress.XtraTreeList.Columns.TreeListColumn();
     this.treeCol_Parentid = new DevExpress.XtraTreeList.Columns.TreeListColumn();
     this.treeCol_Num_tray = new DevExpress.XtraTreeList.Columns.TreeListColumn();
     this.treeCol_Date_result = new DevExpress.XtraTreeList.Columns.TreeListColumn();
     this.repDate = new DevExpress.XtraEditors.Repository.RepositoryItemDateEdit();
     this.treeCol_Hour_result = new DevExpress.XtraTreeList.Columns.TreeListColumn();
     this.repHour = new DevExpress.XtraEditors.Repository.RepositoryItemTimeEdit();
     this.imgPriority = new System.Windows.Forms.ImageList(this.components);
     this.expandablePanel1 = new DevComponents.DotNetBar.ExpandablePanel();
     this.tabTreeQaqc = new DevExpress.XtraTab.XtraTabControl();
     this.xtraTabPage4 = new DevExpress.XtraTab.XtraTabPage();
     this.groupControl1 = new DevExpress.XtraEditors.GroupControl();
     this.cbAuthorizationWait = new DevExpress.XtraEditors.LookUpEdit();
     this.label23 = new System.Windows.Forms.Label();
     this.xtraTabPage5 = new DevExpress.XtraTab.XtraTabPage();
     this.treeTrayFinished = new DevExpress.XtraTreeList.TreeList();
     this.treeListColumn1 = new DevExpress.XtraTreeList.Columns.TreeListColumn();
     this.treeListColumn2 = new DevExpress.XtraTreeList.Columns.TreeListColumn();
     this.treeListColumn3 = new DevExpress.XtraTreeList.Columns.TreeListColumn();
     this.treeListColumn4 = new DevExpress.XtraTreeList.Columns.TreeListColumn();
     this.repositoryItemLookUpEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
     this.treeListColumn5 = new DevExpress.XtraTreeList.Columns.TreeListColumn();
     this.treeListColumn6 = new DevExpress.XtraTreeList.Columns.TreeListColumn();
     this.treeListColumn7 = new DevExpress.XtraTreeList.Columns.TreeListColumn();
     this.treeListColumn8 = new DevExpress.XtraTreeList.Columns.TreeListColumn();
     this.treeListColumn9 = new DevExpress.XtraTreeList.Columns.TreeListColumn();
     this.paListAuthorization = new DevExpress.XtraEditors.GroupControl();
     this.cbAuthorizationApproved = new DevExpress.XtraEditors.LookUpEdit();
     this.label25 = new System.Windows.Forms.Label();
     this.paHistoryFilter = new DevExpress.XtraEditors.GroupControl();
     this.txYear = new DevExpress.XtraEditors.TextEdit();
     this.txSample = new DevExpress.XtraEditors.SpinEdit();
     this.cbTypeSample = new DevExpress.XtraEditors.LookUpEdit();
     this.cbCompany = new LimsProject.MyLookUpEdit();
     this.btSearchTray = new DevExpress.XtraEditors.SimpleButton();
     this.label22 = new System.Windows.Forms.Label();
     this.ckSample = new DevExpress.XtraEditors.CheckEdit();
     this.ckCompany = new DevExpress.XtraEditors.CheckEdit();
     this.panel9 = new System.Windows.Forms.Panel();
     this.deFrom = new DevExpress.XtraEditors.DateEdit();
     this.deUntil = new DevExpress.XtraEditors.DateEdit();
     this.label21 = new System.Windows.Forms.Label();
     this.label26 = new System.Windows.Forms.Label();
     this.paButtons = new DevExpress.XtraEditors.PanelControl();
     this.paNewTray = new System.Windows.Forms.Panel();
     this.btRefresh = new DevExpress.XtraEditors.SimpleButton();
     this.splitter1 = new System.Windows.Forms.Splitter();
     this.panel5 = new System.Windows.Forms.Panel();
     this.gbApprove = new System.Windows.Forms.GroupBox();
     this.laDate_approved = new System.Windows.Forms.Label();
     this.laUser_approved = new System.Windows.Forms.Label();
     this.label13 = new System.Windows.Forms.Label();
     this.label7 = new System.Windows.Forms.Label();
     this.paAuthorization = new System.Windows.Forms.Panel();
     this.ucSign1 = new LimsProject.UcSign();
     this.gbReview = new System.Windows.Forms.GroupBox();
     this.laDate_revised = new System.Windows.Forms.Label();
     this.laUser_revised = new System.Windows.Forms.Label();
     this.label28 = new System.Windows.Forms.Label();
     this.label29 = new System.Windows.Forms.Label();
     this.tbStd = new DevExpress.XtraEditors.SpinEdit();
     this.tbAbs = new DevExpress.XtraEditors.SpinEdit();
     this.btRegAbsStd = new DevExpress.XtraEditors.SimpleButton();
     this.label4 = new System.Windows.Forms.Label();
     this.panel6 = new System.Windows.Forms.Panel();
     this.tbTitle = new DevExpress.XtraEditors.MemoEdit();
     this.label16 = new System.Windows.Forms.Label();
     this.tbCodMethod = new DevExpress.XtraEditors.ButtonEdit();
     this.tbAbbreviation = new DevExpress.XtraEditors.TextEdit();
     this.label12 = new System.Windows.Forms.Label();
     this.panel4 = new System.Windows.Forms.Panel();
     this.ucSignCloseTray = new LimsProject.UcSign();
     this.laTitleModule = new System.Windows.Forms.Label();
     this.label5 = new System.Windows.Forms.Label();
     this.tbUnitMeasure = new DevExpress.XtraEditors.TextEdit();
     this.tbLawMri = new DevExpress.XtraEditors.TextEdit();
     this.tbSdMr = new DevExpress.XtraEditors.TextEdit();
     this.tbSdBlk = new DevExpress.XtraEditors.TextEdit();
     this.tbMri = new DevExpress.XtraEditors.TextEdit();
     this.label18 = new System.Windows.Forms.Label();
     this.label15 = new System.Windows.Forms.Label();
     this.tbErrorAllowed = new DevExpress.XtraEditors.TextEdit();
     this.label20 = new System.Windows.Forms.Label();
     this.label19 = new System.Windows.Forms.Label();
     this.label17 = new System.Windows.Forms.Label();
     this.deDate_allowed_error = new DevExpress.XtraEditors.DateEdit();
     this.label14 = new System.Windows.Forms.Label();
     this.toolTipController1 = new DevExpress.Utils.ToolTipController(this.components);
     this.panelControl1 = new DevExpress.XtraEditors.PanelControl();
     this.paQaqc2 = new DevExpress.XtraEditors.PanelControl();
     this.paQaqc1 = new DevExpress.XtraEditors.PanelControl();
     this.panel7 = new System.Windows.Forms.Panel();
     this.img32x32 = new System.Windows.Forms.ImageList(this.components);
     this.paTitleSearch.SuspendLayout();
     this.paTopBasicButtons.SuspendLayout();
     this.paTopSearch.SuspendLayout();
     this.paBottomSearch.SuspendLayout();
     this.panel1.SuspendLayout();
     this.paSearchGen.SuspendLayout();
     this.panel2.SuspendLayout();
     this.paInferior.SuspendLayout();
     this.paTitulo.SuspendLayout();
     this.paCentral.SuspendLayout();
     this.thePanelTab1.SuspendLayout();
     this.tpDatos.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.bgvBatchCalc1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gcBachCalc)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.bgvBatchCalc3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.bgvBatchCalc4)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.bgvBatchCalc2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repQaqc_Previous_par)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repDes_Sample)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repCheckDilution)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repQaqc_ShowPopup)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repQaqc_parity)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repQaqc_approve)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repQaqc_review)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repQaqc_StatusResult)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repQaqc_ShowObs)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repQaqc_HasRetest)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repProcedence2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.treeTrayWaiting)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repRepetition)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repDate)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repHour)).BeginInit();
     this.expandablePanel1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.tabTreeQaqc)).BeginInit();
     this.tabTreeQaqc.SuspendLayout();
     this.xtraTabPage4.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).BeginInit();
     this.groupControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.cbAuthorizationWait.Properties)).BeginInit();
     this.xtraTabPage5.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.treeTrayFinished)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemLookUpEdit1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.paListAuthorization)).BeginInit();
     this.paListAuthorization.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.cbAuthorizationApproved.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.paHistoryFilter)).BeginInit();
     this.paHistoryFilter.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.txYear.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txSample.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cbTypeSample.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cbCompany.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ckSample.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ckCompany.Properties)).BeginInit();
     this.panel9.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.deFrom.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.deUntil.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.paButtons)).BeginInit();
     this.paButtons.SuspendLayout();
     this.panel5.SuspendLayout();
     this.gbApprove.SuspendLayout();
     this.paAuthorization.SuspendLayout();
     this.gbReview.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.tbStd.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.tbAbs.Properties)).BeginInit();
     this.panel6.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.tbTitle.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.tbCodMethod.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.tbAbbreviation.Properties)).BeginInit();
     this.panel4.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.tbUnitMeasure.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.tbLawMri.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.tbSdMr.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.tbSdBlk.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.tbMri.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.tbErrorAllowed.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.deDate_allowed_error.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).BeginInit();
     this.panelControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.paQaqc2)).BeginInit();
     this.paQaqc2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.paQaqc1)).BeginInit();
     this.paQaqc1.SuspendLayout();
     this.panel7.SuspendLayout();
     this.SuspendLayout();
     //
     // imageList1
     //
     this.imageList1.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageList1.ImageStream")));
     this.imageList1.Images.SetKeyName(0, "save.png");
     this.imageList1.Images.SetKeyName(1, "nuevo.png");
     this.imageList1.Images.SetKeyName(2, "eliminar.png");
     this.imageList1.Images.SetKeyName(3, "buscar.png");
     this.imageList1.Images.SetKeyName(4, "salir.png");
     this.imageList1.Images.SetKeyName(5, "cancelar.png");
     this.imageList1.Images.SetKeyName(6, "ok.png");
     this.imageList1.Images.SetKeyName(7, "deshacer.png");
     this.imageList1.Images.SetKeyName(8, "editar.png");
     //
     // paTitleSearch
     //
     this.paTitleSearch.Size = new System.Drawing.Size(526, 37);
     //
     // label1
     //
     this.label1.Size = new System.Drawing.Size(443, 37);
     this.label1.Text = "Módulo de QaQc - Búsqueda";
     //
     // paTopBasicButtons
     //
     this.paTopBasicButtons.Size = new System.Drawing.Size(282, 35);
     //
     // btSalir2
     //
     this.btSalir2.FlatAppearance.BorderColor = System.Drawing.SystemColors.Control;
     this.btSalir2.FlatAppearance.BorderSize = 0;
     this.btSalir2.Location = new System.Drawing.Point(10, 5);
     //
     // btGuardar
     //
     this.btGuardar.FlatAppearance.BorderColor = System.Drawing.SystemColors.Control;
     this.btGuardar.FlatAppearance.BorderSize = 0;
     this.btGuardar.Location = new System.Drawing.Point(5, 5);
     //
     // btNuevo2
     //
     this.btNuevo2.FlatAppearance.BorderColor = System.Drawing.SystemColors.Control;
     this.btNuevo2.FlatAppearance.BorderSize = 0;
     this.btNuevo2.Location = new System.Drawing.Point(84, 5);
     //
     // btEliminar2
     //
     this.btEliminar2.FlatAppearance.BorderColor = System.Drawing.SystemColors.Control;
     this.btEliminar2.FlatAppearance.BorderSize = 0;
     this.btEliminar2.Location = new System.Drawing.Point(163, 5);
     //
     // paTopSearch
     //
     this.paTopSearch.Size = new System.Drawing.Size(526, 57);
     //
     // paBottomSearch
     //
     this.paBottomSearch.Location = new System.Drawing.Point(3, 194);
     this.paBottomSearch.Size = new System.Drawing.Size(526, 43);
     //
     // btBuscar
     //
     this.btBuscar.FlatAppearance.BorderColor = System.Drawing.SystemColors.Control;
     this.btBuscar.FlatAppearance.BorderSize = 0;
     //
     // btEditar
     //
     this.btEditar.FlatAppearance.BorderColor = System.Drawing.SystemColors.Control;
     this.btEditar.FlatAppearance.BorderSize = 0;
     //
     // btCancel
     //
     this.btCancel.FlatAppearance.BorderColor = System.Drawing.SystemColors.Control;
     this.btCancel.FlatAppearance.BorderSize = 0;
     //
     // btOk
     //
     this.btOk.FlatAppearance.BorderColor = System.Drawing.SystemColors.Control;
     this.btOk.FlatAppearance.BorderSize = 0;
     //
     // panel1
     //
     this.panel1.Location = new System.Drawing.Point(1144, 0);
     this.panel1.Size = new System.Drawing.Size(72, 35);
     //
     // btFiltroBuscar
     //
     this.btFiltroBuscar.FlatAppearance.BorderColor = System.Drawing.SystemColors.Control;
     this.btFiltroBuscar.FlatAppearance.BorderSize = 0;
     //
     // paMiddleFind
     //
     this.paMiddleFind.Size = new System.Drawing.Size(526, 97);
     //
     // panel2
     //
     this.panel2.Location = new System.Drawing.Point(1132, 0);
     //
     // paInferior
     //
     this.paInferior.Location = new System.Drawing.Point(3, 544);
     this.paInferior.Size = new System.Drawing.Size(1216, 35);
     this.paInferior.Visible = false;
     //
     // paTitulo
     //
     this.paTitulo.Size = new System.Drawing.Size(1216, 36);
     //
     // paCentral
     //
     this.paCentral.Controls.Add(this.gcBachCalc);
     this.paCentral.Controls.Add(this.panelControl1);
     this.paCentral.Controls.Add(this.panel5);
     this.paCentral.Controls.Add(this.splitter1);
     this.paCentral.Controls.Add(this.expandablePanel1);
     this.paCentral.Location = new System.Drawing.Point(3, 51);
     this.paCentral.Size = new System.Drawing.Size(1216, 493);
     //
     // paSuperior
     //
     this.paSuperior.Size = new System.Drawing.Size(1216, 12);
     this.paSuperior.Visible = false;
     //
     // laTitulo
     //
     this.laTitulo.Size = new System.Drawing.Size(1132, 36);
     this.laTitulo.Text = "QaQc";
     //
     // thePanelTab1
     //
     this.thePanelTab1.Size = new System.Drawing.Size(1230, 611);
     //
     // tpDatos
     //
     this.tpDatos.Size = new System.Drawing.Size(1222, 582);
     //
     // paSupBotones
     //
     this.paSupBotones.Size = new System.Drawing.Size(1230, 32);
     //
     // bgvBatchCalc1
     //
     this.bgvBatchCalc1.Bands.AddRange(new DevExpress.XtraGrid.Views.BandedGrid.GridBand[] {
     this.gridBand1});
     this.bgvBatchCalc1.GridControl = this.gcBachCalc;
     this.bgvBatchCalc1.Name = "bgvBatchCalc1";
     //
     // gridBand1
     //
     this.gridBand1.Caption = "gridBand1";
     this.gridBand1.Name = "gridBand1";
     //
     // gcBachCalc
     //
     this.gcBachCalc.AllowDrop = true;
     this.gcBachCalc.Dock = System.Windows.Forms.DockStyle.Fill;
     this.gcBachCalc.EmbeddedNavigator.Name = "";
     gridLevelNode1.LevelTemplate = this.bgvBatchCalc1;
     gridLevelNode1.RelationName = "Level1";
     gridLevelNode2.LevelTemplate = this.bgvBatchCalc3;
     gridLevelNode2.RelationName = "Level2";
     gridLevelNode3.LevelTemplate = this.bgvBatchCalc4;
     gridLevelNode3.RelationName = "Level3";
     this.gcBachCalc.LevelTree.Nodes.AddRange(new DevExpress.XtraGrid.GridLevelNode[] {
     gridLevelNode1,
     gridLevelNode2,
     gridLevelNode3});
     this.gcBachCalc.Location = new System.Drawing.Point(231, 103);
     this.gcBachCalc.MainView = this.bgvBatchCalc2;
     this.gcBachCalc.Name = "gcBachCalc";
     this.gcBachCalc.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.repQaqc_parity,
     this.repQaqc_ShowObs,
     this.repQaqc_review,
     this.repQaqc_StatusResult,
     this.repQaqc_ShowPopup,
     this.repQaqc_Previous_par,
     this.repQaqc_approve,
     this.repQaqc_HasRetest,
     this.repCheckDilution,
     this.repProcedence2,
     this.repDes_Sample});
     this.gcBachCalc.Size = new System.Drawing.Size(985, 341);
     this.gcBachCalc.TabIndex = 7;
     this.gcBachCalc.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.bgvBatchCalc3,
     this.bgvBatchCalc4,
     this.bgvBatchCalc2,
     this.bgvBatchCalc1});
     this.gcBachCalc.DragDrop += new System.Windows.Forms.DragEventHandler(this.gcBachCalc_DragDrop);
     this.gcBachCalc.DragOver += new System.Windows.Forms.DragEventHandler(this.gcBachCalc_DragOver);
     this.gcBachCalc.MouseDown += new System.Windows.Forms.MouseEventHandler(this.gcBachCalc_MouseDown);
     this.gcBachCalc.MouseMove += new System.Windows.Forms.MouseEventHandler(this.gcBachCalc_MouseMove);
     //
     // bgvBatchCalc3
     //
     this.bgvBatchCalc3.Bands.AddRange(new DevExpress.XtraGrid.Views.BandedGrid.GridBand[] {
     this.gridBand2});
     this.bgvBatchCalc3.GridControl = this.gcBachCalc;
     this.bgvBatchCalc3.Name = "bgvBatchCalc3";
     //
     // gridBand2
     //
     this.gridBand2.Caption = "gridBand2";
     this.gridBand2.Name = "gridBand2";
     //
     // bgvBatchCalc4
     //
     this.bgvBatchCalc4.GridControl = this.gcBachCalc;
     this.bgvBatchCalc4.Name = "bgvBatchCalc4";
     //
     // bgvBatchCalc2
     //
     this.bgvBatchCalc2.Appearance.BandPanel.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(236)))), ((int)(((byte)(254)))));
     this.bgvBatchCalc2.Appearance.BandPanel.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(132)))), ((int)(((byte)(171)))), ((int)(((byte)(228)))));
     this.bgvBatchCalc2.Appearance.BandPanel.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(236)))), ((int)(((byte)(254)))));
     this.bgvBatchCalc2.Appearance.BandPanel.Font = new System.Drawing.Font("Tahoma", 8F, System.Drawing.FontStyle.Bold);
     this.bgvBatchCalc2.Appearance.BandPanel.ForeColor = System.Drawing.Color.Black;
     this.bgvBatchCalc2.Appearance.BandPanel.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
     this.bgvBatchCalc2.Appearance.BandPanel.Options.UseBackColor = true;
     this.bgvBatchCalc2.Appearance.BandPanel.Options.UseBorderColor = true;
     this.bgvBatchCalc2.Appearance.BandPanel.Options.UseFont = true;
     this.bgvBatchCalc2.Appearance.BandPanel.Options.UseForeColor = true;
     this.bgvBatchCalc2.Appearance.BandPanelBackground.BackColor = System.Drawing.Color.White;
     this.bgvBatchCalc2.Appearance.BandPanelBackground.Options.UseBackColor = true;
     this.bgvBatchCalc2.Appearance.ColumnFilterButton.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(236)))), ((int)(((byte)(254)))));
     this.bgvBatchCalc2.Appearance.ColumnFilterButton.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(132)))), ((int)(((byte)(171)))), ((int)(((byte)(228)))));
     this.bgvBatchCalc2.Appearance.ColumnFilterButton.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(236)))), ((int)(((byte)(254)))));
     this.bgvBatchCalc2.Appearance.ColumnFilterButton.ForeColor = System.Drawing.Color.Black;
     this.bgvBatchCalc2.Appearance.ColumnFilterButton.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
     this.bgvBatchCalc2.Appearance.ColumnFilterButton.Options.UseBackColor = true;
     this.bgvBatchCalc2.Appearance.ColumnFilterButton.Options.UseBorderColor = true;
     this.bgvBatchCalc2.Appearance.ColumnFilterButton.Options.UseForeColor = true;
     this.bgvBatchCalc2.Appearance.ColumnFilterButtonActive.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(247)))), ((int)(((byte)(251)))), ((int)(((byte)(255)))));
     this.bgvBatchCalc2.Appearance.ColumnFilterButtonActive.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(154)))), ((int)(((byte)(190)))), ((int)(((byte)(243)))));
     this.bgvBatchCalc2.Appearance.ColumnFilterButtonActive.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(247)))), ((int)(((byte)(251)))), ((int)(((byte)(255)))));
     this.bgvBatchCalc2.Appearance.ColumnFilterButtonActive.ForeColor = System.Drawing.Color.Black;
     this.bgvBatchCalc2.Appearance.ColumnFilterButtonActive.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
     this.bgvBatchCalc2.Appearance.ColumnFilterButtonActive.Options.UseBackColor = true;
     this.bgvBatchCalc2.Appearance.ColumnFilterButtonActive.Options.UseBorderColor = true;
     this.bgvBatchCalc2.Appearance.ColumnFilterButtonActive.Options.UseForeColor = true;
     this.bgvBatchCalc2.Appearance.Empty.BackColor = System.Drawing.Color.White;
     this.bgvBatchCalc2.Appearance.Empty.Options.UseBackColor = true;
     this.bgvBatchCalc2.Appearance.EvenRow.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(231)))), ((int)(((byte)(242)))), ((int)(((byte)(254)))));
     this.bgvBatchCalc2.Appearance.EvenRow.ForeColor = System.Drawing.Color.Black;
     this.bgvBatchCalc2.Appearance.EvenRow.Options.UseBackColor = true;
     this.bgvBatchCalc2.Appearance.EvenRow.Options.UseForeColor = true;
     this.bgvBatchCalc2.Appearance.FilterCloseButton.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(236)))), ((int)(((byte)(254)))));
     this.bgvBatchCalc2.Appearance.FilterCloseButton.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(132)))), ((int)(((byte)(171)))), ((int)(((byte)(228)))));
     this.bgvBatchCalc2.Appearance.FilterCloseButton.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(236)))), ((int)(((byte)(254)))));
     this.bgvBatchCalc2.Appearance.FilterCloseButton.ForeColor = System.Drawing.Color.Black;
     this.bgvBatchCalc2.Appearance.FilterCloseButton.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
     this.bgvBatchCalc2.Appearance.FilterCloseButton.Options.UseBackColor = true;
     this.bgvBatchCalc2.Appearance.FilterCloseButton.Options.UseBorderColor = true;
     this.bgvBatchCalc2.Appearance.FilterCloseButton.Options.UseForeColor = true;
     this.bgvBatchCalc2.Appearance.FilterPanel.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(62)))), ((int)(((byte)(109)))), ((int)(((byte)(185)))));
     this.bgvBatchCalc2.Appearance.FilterPanel.ForeColor = System.Drawing.Color.White;
     this.bgvBatchCalc2.Appearance.FilterPanel.Options.UseBackColor = true;
     this.bgvBatchCalc2.Appearance.FilterPanel.Options.UseForeColor = true;
     this.bgvBatchCalc2.Appearance.FixedLine.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(59)))), ((int)(((byte)(97)))), ((int)(((byte)(156)))));
     this.bgvBatchCalc2.Appearance.FixedLine.Options.UseBackColor = true;
     this.bgvBatchCalc2.Appearance.FocusedCell.ForeColor = System.Drawing.Color.Black;
     this.bgvBatchCalc2.Appearance.FocusedCell.Options.UseForeColor = true;
     this.bgvBatchCalc2.Appearance.FocusedRow.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(60)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(240)))));
     this.bgvBatchCalc2.Appearance.FocusedRow.ForeColor = System.Drawing.Color.White;
     this.bgvBatchCalc2.Appearance.FocusedRow.Options.UseBackColor = true;
     this.bgvBatchCalc2.Appearance.FocusedRow.Options.UseForeColor = true;
     this.bgvBatchCalc2.Appearance.FooterPanel.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(236)))), ((int)(((byte)(254)))));
     this.bgvBatchCalc2.Appearance.FooterPanel.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(132)))), ((int)(((byte)(171)))), ((int)(((byte)(228)))));
     this.bgvBatchCalc2.Appearance.FooterPanel.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(236)))), ((int)(((byte)(254)))));
     this.bgvBatchCalc2.Appearance.FooterPanel.ForeColor = System.Drawing.Color.Black;
     this.bgvBatchCalc2.Appearance.FooterPanel.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
     this.bgvBatchCalc2.Appearance.FooterPanel.Options.UseBackColor = true;
     this.bgvBatchCalc2.Appearance.FooterPanel.Options.UseBorderColor = true;
     this.bgvBatchCalc2.Appearance.FooterPanel.Options.UseForeColor = true;
     this.bgvBatchCalc2.Appearance.GroupButton.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(193)))), ((int)(((byte)(216)))), ((int)(((byte)(247)))));
     this.bgvBatchCalc2.Appearance.GroupButton.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(193)))), ((int)(((byte)(216)))), ((int)(((byte)(247)))));
     this.bgvBatchCalc2.Appearance.GroupButton.ForeColor = System.Drawing.Color.Black;
     this.bgvBatchCalc2.Appearance.GroupButton.Options.UseBackColor = true;
     this.bgvBatchCalc2.Appearance.GroupButton.Options.UseBorderColor = true;
     this.bgvBatchCalc2.Appearance.GroupButton.Options.UseForeColor = true;
     this.bgvBatchCalc2.Appearance.GroupFooter.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(193)))), ((int)(((byte)(216)))), ((int)(((byte)(247)))));
     this.bgvBatchCalc2.Appearance.GroupFooter.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(193)))), ((int)(((byte)(216)))), ((int)(((byte)(247)))));
     this.bgvBatchCalc2.Appearance.GroupFooter.ForeColor = System.Drawing.Color.Black;
     this.bgvBatchCalc2.Appearance.GroupFooter.Options.UseBackColor = true;
     this.bgvBatchCalc2.Appearance.GroupFooter.Options.UseBorderColor = true;
     this.bgvBatchCalc2.Appearance.GroupFooter.Options.UseForeColor = true;
     this.bgvBatchCalc2.Appearance.GroupPanel.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(62)))), ((int)(((byte)(109)))), ((int)(((byte)(185)))));
     this.bgvBatchCalc2.Appearance.GroupPanel.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(236)))), ((int)(((byte)(254)))));
     this.bgvBatchCalc2.Appearance.GroupPanel.Options.UseBackColor = true;
     this.bgvBatchCalc2.Appearance.GroupPanel.Options.UseForeColor = true;
     this.bgvBatchCalc2.Appearance.GroupRow.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(193)))), ((int)(((byte)(216)))), ((int)(((byte)(247)))));
     this.bgvBatchCalc2.Appearance.GroupRow.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(193)))), ((int)(((byte)(216)))), ((int)(((byte)(247)))));
     this.bgvBatchCalc2.Appearance.GroupRow.Font = new System.Drawing.Font("Tahoma", 8F, System.Drawing.FontStyle.Bold);
     this.bgvBatchCalc2.Appearance.GroupRow.ForeColor = System.Drawing.Color.Black;
     this.bgvBatchCalc2.Appearance.GroupRow.Options.UseBackColor = true;
     this.bgvBatchCalc2.Appearance.GroupRow.Options.UseBorderColor = true;
     this.bgvBatchCalc2.Appearance.GroupRow.Options.UseFont = true;
     this.bgvBatchCalc2.Appearance.GroupRow.Options.UseForeColor = true;
     this.bgvBatchCalc2.Appearance.HeaderPanel.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(236)))), ((int)(((byte)(254)))));
     this.bgvBatchCalc2.Appearance.HeaderPanel.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(132)))), ((int)(((byte)(171)))), ((int)(((byte)(228)))));
     this.bgvBatchCalc2.Appearance.HeaderPanel.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(236)))), ((int)(((byte)(254)))));
     this.bgvBatchCalc2.Appearance.HeaderPanel.ForeColor = System.Drawing.Color.Black;
     this.bgvBatchCalc2.Appearance.HeaderPanel.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
     this.bgvBatchCalc2.Appearance.HeaderPanel.Options.UseBackColor = true;
     this.bgvBatchCalc2.Appearance.HeaderPanel.Options.UseBorderColor = true;
     this.bgvBatchCalc2.Appearance.HeaderPanel.Options.UseForeColor = true;
     this.bgvBatchCalc2.Appearance.HeaderPanelBackground.BackColor = System.Drawing.Color.White;
     this.bgvBatchCalc2.Appearance.HeaderPanelBackground.Options.UseBackColor = true;
     this.bgvBatchCalc2.Appearance.HideSelectionRow.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(106)))), ((int)(((byte)(153)))), ((int)(((byte)(228)))));
     this.bgvBatchCalc2.Appearance.HideSelectionRow.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(208)))), ((int)(((byte)(224)))), ((int)(((byte)(251)))));
     this.bgvBatchCalc2.Appearance.HideSelectionRow.Options.UseBackColor = true;
     this.bgvBatchCalc2.Appearance.HideSelectionRow.Options.UseForeColor = true;
     this.bgvBatchCalc2.Appearance.HorzLine.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(99)))), ((int)(((byte)(127)))), ((int)(((byte)(196)))));
     this.bgvBatchCalc2.Appearance.HorzLine.Options.UseBackColor = true;
     this.bgvBatchCalc2.Appearance.OddRow.BackColor = System.Drawing.Color.White;
     this.bgvBatchCalc2.Appearance.OddRow.ForeColor = System.Drawing.Color.Black;
     this.bgvBatchCalc2.Appearance.OddRow.Options.UseBackColor = true;
     this.bgvBatchCalc2.Appearance.OddRow.Options.UseForeColor = true;
     this.bgvBatchCalc2.Appearance.Preview.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(249)))), ((int)(((byte)(252)))), ((int)(((byte)(255)))));
     this.bgvBatchCalc2.Appearance.Preview.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(88)))), ((int)(((byte)(129)))), ((int)(((byte)(185)))));
     this.bgvBatchCalc2.Appearance.Preview.Options.UseBackColor = true;
     this.bgvBatchCalc2.Appearance.Preview.Options.UseForeColor = true;
     this.bgvBatchCalc2.Appearance.Row.BackColor = System.Drawing.Color.White;
     this.bgvBatchCalc2.Appearance.Row.ForeColor = System.Drawing.Color.Black;
     this.bgvBatchCalc2.Appearance.Row.Options.UseBackColor = true;
     this.bgvBatchCalc2.Appearance.Row.Options.UseForeColor = true;
     this.bgvBatchCalc2.Appearance.RowSeparator.BackColor = System.Drawing.Color.White;
     this.bgvBatchCalc2.Appearance.RowSeparator.Options.UseBackColor = true;
     this.bgvBatchCalc2.Appearance.SelectedRow.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(30)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(240)))));
     this.bgvBatchCalc2.Appearance.SelectedRow.ForeColor = System.Drawing.Color.White;
     this.bgvBatchCalc2.Appearance.SelectedRow.Options.UseBackColor = true;
     this.bgvBatchCalc2.Appearance.SelectedRow.Options.UseForeColor = true;
     this.bgvBatchCalc2.Appearance.VertLine.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(99)))), ((int)(((byte)(127)))), ((int)(((byte)(196)))));
     this.bgvBatchCalc2.Appearance.VertLine.Options.UseBackColor = true;
     this.bgvBatchCalc2.Bands.AddRange(new DevExpress.XtraGrid.Views.BandedGrid.GridBand[] {
     this.gridBand13,
     this.gbSample,
     this.gridBand3,
     this.gridBand10,
     this.gridBand4,
     this.gbDilution,
     this.gridBand6,
     this.gridBand5,
     this.gridBand7,
     this.gridBand12,
     this.gridBand9,
     this.gridBand14});
     this.bgvBatchCalc2.Columns.AddRange(new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn[] {
     this.gv2col_Idrecep_sample_detail,
     this.gv2col_Idrecep_sample_detail_elem,
     this.gv2col_Qaqc_par_prev_batch,
     this.gv2col_Cod_sample,
     this.gv2col_Result_analysis,
     this.gv2col_Fum,
     this.gv2col_Idtemplate_method,
     this.gv2col_Flag_mri,
     this.gv2col_Qaqc_blk,
     this.gv2col_Qaqc_par,
     this.gv2col_Qaqc_mr,
     this.gv2col_Qaqc_observation,
     this.gv2col_Qaqc_text_obs,
     this.gv2col_Qaqc_error,
     this.gv2col_Str_result_analysis,
     this.gv2col_Qaqc_approve,
     this.gv2col_Qaqc_review,
     this.gv2col_Qaqc_status_result,
     this.gv2col_Qaqc_has_retest,
     this.gv2col_Qaqc_tmp_retest_idmethod,
     this.gv2col_Qaqc_tmp_retest,
     this.gv2col_Idunit_result,
     this.gv2col_Idretest,
     this.gv2col_Weight1,
     this.gv2col_Weight2,
     this.gv2col_Reading1,
     this.gv2col_Reading2,
     this.gv2col_Factor1,
     this.gv2col_Factor2,
     this.gv2col_Rank1,
     this.gv2col_Rank2,
     this.gv2col_Law1,
     this.gv2col_Law2,
     this.gv2col_Volumen1,
     this.gv2col_Volumen2,
     this.gv2col_Flag_dila1,
     this.gv2col_Dilua1,
     this.gv2col_Flag_dilb1,
     this.gv2col_Dilub1,
     this.gv2col_Qaqc_approve_text,
     this.gv2col_Qaqc_review_text,
     this.gv2col_Cod_des_sample});
     styleFormatCondition1.Appearance.BackColor = System.Drawing.Color.Orange;
     styleFormatCondition1.Appearance.Options.UseBackColor = true;
     styleFormatCondition1.ApplyToRow = true;
     styleFormatCondition1.Column = this.gv2col_Flag_mri;
     styleFormatCondition1.Condition = DevExpress.XtraGrid.FormatConditionEnum.Equal;
     styleFormatCondition1.Value1 = "1";
     this.bgvBatchCalc2.FormatConditions.AddRange(new DevExpress.XtraGrid.StyleFormatCondition[] {
     styleFormatCondition1});
     this.bgvBatchCalc2.GridControl = this.gcBachCalc;
     this.bgvBatchCalc2.Images = this.imgChecks;
     this.bgvBatchCalc2.Name = "bgvBatchCalc2";
     this.bgvBatchCalc2.OptionsBehavior.Editable = false;
     this.bgvBatchCalc2.OptionsCustomization.AllowSort = false;
     this.bgvBatchCalc2.OptionsView.ColumnAutoWidth = false;
     this.bgvBatchCalc2.OptionsView.EnableAppearanceEvenRow = true;
     this.bgvBatchCalc2.OptionsView.EnableAppearanceOddRow = true;
     this.bgvBatchCalc2.OptionsView.ShowGroupPanel = false;
     this.bgvBatchCalc2.RowCellStyle += new DevExpress.XtraGrid.Views.Grid.RowCellStyleEventHandler(this.bgvBatchCalc2_RowCellStyle);
     this.bgvBatchCalc2.CellValueChanged += new DevExpress.XtraGrid.Views.Base.CellValueChangedEventHandler(this.bgvBatchCalc_CellValueChanged);
     this.bgvBatchCalc2.CellValueChanging += new DevExpress.XtraGrid.Views.Base.CellValueChangedEventHandler(this.bgvBatchCalc_CellValueChanging);
     this.bgvBatchCalc2.InvalidRowException += new DevExpress.XtraGrid.Views.Base.InvalidRowExceptionEventHandler(this.bgvBatchCalc2_InvalidRowException);
     this.bgvBatchCalc2.ValidateRow += new DevExpress.XtraGrid.Views.Base.ValidateRowEventHandler(this.bgvBatchCalc2_ValidateRow);
     this.bgvBatchCalc2.Click += new System.EventHandler(this.bgvBatchCalc2_Click);
     //
     // gridBand13
     //
     this.gridBand13.Caption = "A. P";
     this.gridBand13.Columns.Add(this.gv2col_Qaqc_par_prev_batch);
     this.gridBand13.Fixed = DevExpress.XtraGrid.Columns.FixedStyle.Left;
     this.gridBand13.Name = "gridBand13";
     this.gridBand13.Width = 37;
     //
     // gv2col_Qaqc_par_prev_batch
     //
     this.gv2col_Qaqc_par_prev_batch.Caption = "Par";
     this.gv2col_Qaqc_par_prev_batch.ColumnEdit = this.repQaqc_Previous_par;
     this.gv2col_Qaqc_par_prev_batch.FieldName = "Qaqc_par_prev_batch";
     this.gv2col_Qaqc_par_prev_batch.Name = "gv2col_Qaqc_par_prev_batch";
     this.gv2col_Qaqc_par_prev_batch.OptionsColumn.AllowEdit = false;
     this.gv2col_Qaqc_par_prev_batch.Visible = true;
     this.gv2col_Qaqc_par_prev_batch.Width = 37;
     //
     // repQaqc_Previous_par
     //
     this.repQaqc_Previous_par.AutoHeight = false;
     this.repQaqc_Previous_par.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repQaqc_Previous_par.GlyphAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.repQaqc_Previous_par.Items.AddRange(new DevExpress.XtraEditors.Controls.ImageComboBoxItem[] {
     new DevExpress.XtraEditors.Controls.ImageComboBoxItem("", 1, 1),
     new DevExpress.XtraEditors.Controls.ImageComboBoxItem("", 2, 5),
     new DevExpress.XtraEditors.Controls.ImageComboBoxItem("", 3, -1),
     new DevExpress.XtraEditors.Controls.ImageComboBoxItem("", 4, 4),
     new DevExpress.XtraEditors.Controls.ImageComboBoxItem("", 5, 0)});
     this.repQaqc_Previous_par.Name = "repQaqc_Previous_par";
     this.repQaqc_Previous_par.SmallImages = this.imageStatus;
     //
     // imageStatus
     //
     this.imageStatus.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageStatus.ImageStream")));
     this.imageStatus.TransparentColor = System.Drawing.Color.Transparent;
     this.imageStatus.Images.SetKeyName(0, "gray.png");
     this.imageStatus.Images.SetKeyName(1, "green.png");
     this.imageStatus.Images.SetKeyName(2, "ambar.png");
     this.imageStatus.Images.SetKeyName(3, "blue.png");
     this.imageStatus.Images.SetKeyName(4, "purple.png");
     this.imageStatus.Images.SetKeyName(5, "red.png");
     this.imageStatus.Images.SetKeyName(6, "yellow.png");
     this.imageStatus.Images.SetKeyName(7, "obs.png");
     this.imageStatus.Images.SetKeyName(8, "exclamation.png");
     this.imageStatus.Images.SetKeyName(9, "tick.png");
     this.imageStatus.Images.SetKeyName(10, "tick_lup.png");
     this.imageStatus.Images.SetKeyName(11, "espera.png");
     this.imageStatus.Images.SetKeyName(12, "incorrecto.png");
     this.imageStatus.Images.SetKeyName(13, "plausible.png");
     this.imageStatus.Images.SetKeyName(14, "aceptado.png");
     this.imageStatus.Images.SetKeyName(15, "reensayo.png");
     //
     // gbSample
     //
     this.gbSample.Caption = "Muestra";
     this.gbSample.Columns.Add(this.gv2col_Cod_sample);
     this.gbSample.Columns.Add(this.gv2col_Cod_des_sample);
     this.gbSample.Columns.Add(this.gv2col_Fum);
     this.gbSample.Columns.Add(this.gv2col_Idunit_result);
     this.gbSample.Columns.Add(this.gv2col_Idtemplate_method);
     this.gbSample.Columns.Add(this.gv2col_Idrecep_sample_detail);
     this.gbSample.Columns.Add(this.gv2col_Flag_mri);
     this.gbSample.Columns.Add(this.gv2col_Idrecep_sample_detail_elem);
     this.gbSample.Fixed = DevExpress.XtraGrid.Columns.FixedStyle.Left;
     this.gbSample.Name = "gbSample";
     this.gbSample.Width = 150;
     //
     // gv2col_Cod_sample
     //
     this.gv2col_Cod_sample.Caption = "Cod.Muestra";
     this.gv2col_Cod_sample.FieldName = "Cod_sample";
     this.gv2col_Cod_sample.MinWidth = 75;
     this.gv2col_Cod_sample.Name = "gv2col_Cod_sample";
     this.gv2col_Cod_sample.OptionsColumn.ReadOnly = true;
     this.gv2col_Cod_sample.OptionsFilter.AllowAutoFilter = false;
     this.gv2col_Cod_sample.OptionsFilter.AllowFilter = false;
     this.gv2col_Cod_sample.Visible = true;
     //
     // gv2col_Cod_des_sample
     //
     this.gv2col_Cod_des_sample.Caption = "Descripción";
     this.gv2col_Cod_des_sample.ColumnEdit = this.repDes_Sample;
     this.gv2col_Cod_des_sample.FieldName = "Cod_des_sample";
     this.gv2col_Cod_des_sample.Name = "gv2col_Cod_des_sample";
     this.gv2col_Cod_des_sample.OptionsColumn.ReadOnly = true;
     this.gv2col_Cod_des_sample.OptionsFilter.AllowAutoFilter = false;
     this.gv2col_Cod_des_sample.OptionsFilter.AllowFilter = false;
     this.gv2col_Cod_des_sample.Visible = true;
     //
     // repDes_Sample
     //
     this.repDes_Sample.AutoHeight = false;
     this.repDes_Sample.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repDes_Sample.Name = "repDes_Sample";
     this.repDes_Sample.NullText = "";
     //
     // gv2col_Fum
     //
     this.gv2col_Fum.Caption = "Fum";
     this.gv2col_Fum.FieldName = "Fum";
     this.gv2col_Fum.Name = "gv2col_Fum";
     //
     // gv2col_Idunit_result
     //
     this.gv2col_Idunit_result.Caption = "Idunit_result";
     this.gv2col_Idunit_result.FieldName = "Idunit_result";
     this.gv2col_Idunit_result.Name = "gv2col_Idunit_result";
     //
     // gv2col_Idtemplate_method
     //
     this.gv2col_Idtemplate_method.Caption = "Idtemplate_method";
     this.gv2col_Idtemplate_method.FieldName = "Idtemplate_method";
     this.gv2col_Idtemplate_method.Name = "gv2col_Idtemplate_method";
     //
     // gv2col_Idrecep_sample_detail
     //
     this.gv2col_Idrecep_sample_detail.Caption = "Idrecep_sample_detail";
     this.gv2col_Idrecep_sample_detail.FieldName = "Idrecep_sample_detail";
     this.gv2col_Idrecep_sample_detail.Name = "gv2col_Idrecep_sample_detail";
     //
     // gv2col_Flag_mri
     //
     this.gv2col_Flag_mri.Caption = "Flag_mri";
     this.gv2col_Flag_mri.FieldName = "Flag_mri";
     this.gv2col_Flag_mri.Name = "gv2col_Flag_mri";
     //
     // gv2col_Idrecep_sample_detail_elem
     //
     this.gv2col_Idrecep_sample_detail_elem.Caption = "Idrecep_sample_detail_elem";
     this.gv2col_Idrecep_sample_detail_elem.FieldName = "Idrecep_sample_detail_elem";
     this.gv2col_Idrecep_sample_detail_elem.Name = "gv2col_Idrecep_sample_detail_elem";
     //
     // gridBand3
     //
     this.gridBand3.Caption = "Pesos";
     this.gridBand3.Columns.Add(this.gv2col_Weight1);
     this.gridBand3.Columns.Add(this.gv2col_Weight2);
     this.gridBand3.Name = "gridBand3";
     this.gridBand3.Width = 112;
     //
     // gv2col_Weight1
     //
     this.gv2col_Weight1.Caption = "Peso-1";
     this.gv2col_Weight1.FieldName = "Weight1";
     this.gv2col_Weight1.Name = "gv2col_Weight1";
     this.gv2col_Weight1.OptionsColumn.ReadOnly = true;
     this.gv2col_Weight1.Visible = true;
     this.gv2col_Weight1.Width = 56;
     //
     // gv2col_Weight2
     //
     this.gv2col_Weight2.Caption = "Peso-2";
     this.gv2col_Weight2.FieldName = "Weight2";
     this.gv2col_Weight2.Name = "gv2col_Weight2";
     this.gv2col_Weight2.OptionsColumn.ReadOnly = true;
     this.gv2col_Weight2.Visible = true;
     this.gv2col_Weight2.Width = 56;
     //
     // gridBand10
     //
     this.gridBand10.Caption = "Volumen";
     this.gridBand10.Columns.Add(this.gv2col_Volumen1);
     this.gridBand10.Columns.Add(this.gv2col_Volumen2);
     this.gridBand10.Name = "gridBand10";
     this.gridBand10.Width = 116;
     //
     // gv2col_Volumen1
     //
     this.gv2col_Volumen1.Caption = "Vol-1";
     this.gv2col_Volumen1.FieldName = "Volumen1";
     this.gv2col_Volumen1.Name = "gv2col_Volumen1";
     this.gv2col_Volumen1.OptionsColumn.ReadOnly = true;
     this.gv2col_Volumen1.Visible = true;
     this.gv2col_Volumen1.Width = 58;
     //
     // gv2col_Volumen2
     //
     this.gv2col_Volumen2.Caption = "Vol-2";
     this.gv2col_Volumen2.FieldName = "Volumen2";
     this.gv2col_Volumen2.Name = "gv2col_Volumen2";
     this.gv2col_Volumen2.OptionsColumn.ReadOnly = true;
     this.gv2col_Volumen2.Visible = true;
     this.gv2col_Volumen2.Width = 58;
     //
     // gridBand4
     //
     this.gridBand4.Caption = "Lecturas";
     this.gridBand4.Columns.Add(this.gv2col_Reading1);
     this.gridBand4.Columns.Add(this.gv2col_Reading2);
     this.gridBand4.Name = "gridBand4";
     this.gridBand4.Width = 120;
     //
     // gv2col_Reading1
     //
     this.gv2col_Reading1.Caption = "Lec-1";
     this.gv2col_Reading1.FieldName = "Reading1";
     this.gv2col_Reading1.Name = "gv2col_Reading1";
     this.gv2col_Reading1.OptionsColumn.AllowEdit = false;
     this.gv2col_Reading1.Visible = true;
     this.gv2col_Reading1.Width = 60;
     //
     // gv2col_Reading2
     //
     this.gv2col_Reading2.Caption = "Lec-2";
     this.gv2col_Reading2.FieldName = "Reading2";
     this.gv2col_Reading2.Name = "gv2col_Reading2";
     this.gv2col_Reading2.OptionsColumn.AllowEdit = false;
     this.gv2col_Reading2.Visible = true;
     this.gv2col_Reading2.Width = 60;
     //
     // gbDilution
     //
     this.gbDilution.Caption = "Dilución";
     this.gbDilution.Columns.Add(this.gv2col_Flag_dila1);
     this.gbDilution.Columns.Add(this.gv2col_Dilua1);
     this.gbDilution.Columns.Add(this.gv2col_Flag_dilb1);
     this.gbDilution.Columns.Add(this.gv2col_Dilub1);
     this.gbDilution.Name = "gbDilution";
     this.gbDilution.Width = 212;
     //
     // gv2col_Flag_dila1
     //
     this.gv2col_Flag_dila1.Caption = "# Dil 2";
     this.gv2col_Flag_dila1.ColumnEdit = this.repCheckDilution;
     this.gv2col_Flag_dila1.FieldName = "Flag_dilu2";
     this.gv2col_Flag_dila1.Name = "gv2col_Flag_dila1";
     this.gv2col_Flag_dila1.UnboundType = DevExpress.Data.UnboundColumnType.Boolean;
     this.gv2col_Flag_dila1.Visible = true;
     this.gv2col_Flag_dila1.Width = 53;
     //
     // repCheckDilution
     //
     this.repCheckDilution.AutoHeight = false;
     this.repCheckDilution.Name = "repCheckDilution";
     //
     // gv2col_Dilua1
     //
     this.gv2col_Dilua1.Caption = "Dil 2";
     this.gv2col_Dilua1.FieldName = "Dilu2";
     this.gv2col_Dilua1.Name = "gv2col_Dilua1";
     this.gv2col_Dilua1.OptionsColumn.ReadOnly = true;
     this.gv2col_Dilua1.Visible = true;
     this.gv2col_Dilua1.Width = 53;
     //
     // gv2col_Flag_dilb1
     //
     this.gv2col_Flag_dilb1.Caption = "# Dil 3";
     this.gv2col_Flag_dilb1.ColumnEdit = this.repCheckDilution;
     this.gv2col_Flag_dilb1.FieldName = "Flag_dilu3";
     this.gv2col_Flag_dilb1.Name = "gv2col_Flag_dilb1";
     this.gv2col_Flag_dilb1.UnboundType = DevExpress.Data.UnboundColumnType.Boolean;
     this.gv2col_Flag_dilb1.Visible = true;
     this.gv2col_Flag_dilb1.Width = 53;
     //
     // gv2col_Dilub1
     //
     this.gv2col_Dilub1.Caption = "Dil 3";
     this.gv2col_Dilub1.FieldName = "Dilu3";
     this.gv2col_Dilub1.Name = "gv2col_Dilub1";
     this.gv2col_Dilub1.OptionsColumn.ReadOnly = true;
     this.gv2col_Dilub1.Visible = true;
     this.gv2col_Dilub1.Width = 53;
     //
     // gridBand6
     //
     this.gridBand6.Caption = "Rangos";
     this.gridBand6.Columns.Add(this.gv2col_Rank1);
     this.gridBand6.Columns.Add(this.gv2col_Rank2);
     this.gridBand6.Name = "gridBand6";
     this.gridBand6.Visible = false;
     this.gridBand6.Width = 150;
     //
     // gv2col_Rank1
     //
     this.gv2col_Rank1.Caption = "Rango1";
     this.gv2col_Rank1.FieldName = "Rank1";
     this.gv2col_Rank1.Name = "gv2col_Rank1";
     this.gv2col_Rank1.Visible = true;
     //
     // gv2col_Rank2
     //
     this.gv2col_Rank2.Caption = "Rango2";
     this.gv2col_Rank2.FieldName = "Rank2";
     this.gv2col_Rank2.Name = "gv2col_Rank2";
     this.gv2col_Rank2.Visible = true;
     //
     // gridBand5
     //
     this.gridBand5.Caption = "Factores";
     this.gridBand5.Columns.Add(this.gv2col_Factor1);
     this.gridBand5.Columns.Add(this.gv2col_Factor2);
     this.gridBand5.Name = "gridBand5";
     this.gridBand5.Width = 114;
     //
     // gv2col_Factor1
     //
     this.gv2col_Factor1.Caption = "Factor1";
     this.gv2col_Factor1.FieldName = "Factor1";
     this.gv2col_Factor1.Name = "gv2col_Factor1";
     this.gv2col_Factor1.OptionsColumn.ReadOnly = true;
     this.gv2col_Factor1.Visible = true;
     this.gv2col_Factor1.Width = 57;
     //
     // gv2col_Factor2
     //
     this.gv2col_Factor2.Caption = "Factor2";
     this.gv2col_Factor2.FieldName = "Factor2";
     this.gv2col_Factor2.Name = "gv2col_Factor2";
     this.gv2col_Factor2.OptionsColumn.ReadOnly = true;
     this.gv2col_Factor2.Visible = true;
     this.gv2col_Factor2.Width = 57;
     //
     // gridBand7
     //
     this.gridBand7.Caption = "Ley Parcial";
     this.gridBand7.Columns.Add(this.gv2col_Law1);
     this.gridBand7.Columns.Add(this.gv2col_Law2);
     this.gridBand7.Name = "gridBand7";
     this.gridBand7.Width = 119;
     //
     // gv2col_Law1
     //
     this.gv2col_Law1.Caption = "Ley-1";
     this.gv2col_Law1.FieldName = "Law1";
     this.gv2col_Law1.Name = "gv2col_Law1";
     this.gv2col_Law1.OptionsColumn.ReadOnly = true;
     this.gv2col_Law1.Visible = true;
     this.gv2col_Law1.Width = 59;
     //
     // gv2col_Law2
     //
     this.gv2col_Law2.Caption = "Ley-2";
     this.gv2col_Law2.FieldName = "Law2";
     this.gv2col_Law2.Name = "gv2col_Law2";
     this.gv2col_Law2.OptionsColumn.ReadOnly = true;
     this.gv2col_Law2.Visible = true;
     this.gv2col_Law2.Width = 60;
     //
     // gridBand12
     //
     this.gridBand12.Caption = "Ley";
     this.gridBand12.Columns.Add(this.gv2col_Str_result_analysis);
     this.gridBand12.Columns.Add(this.gv2col_Result_analysis);
     this.gridBand12.Fixed = DevExpress.XtraGrid.Columns.FixedStyle.Right;
     this.gridBand12.Name = "gridBand12";
     this.gridBand12.Width = 60;
     //
     // gv2col_Str_result_analysis
     //
     this.gv2col_Str_result_analysis.Caption = "Ley";
     this.gv2col_Str_result_analysis.FieldName = "Str_result_analysis";
     this.gv2col_Str_result_analysis.Name = "gv2col_Str_result_analysis";
     this.gv2col_Str_result_analysis.OptionsColumn.ReadOnly = true;
     this.gv2col_Str_result_analysis.Visible = true;
     this.gv2col_Str_result_analysis.Width = 60;
     //
     // gv2col_Result_analysis
     //
     this.gv2col_Result_analysis.Caption = "Result_analysis";
     this.gv2col_Result_analysis.FieldName = "Result_analysis";
     this.gv2col_Result_analysis.Name = "gv2col_Result_analysis";
     //
     // gridBand9
     //
     this.gridBand9.Caption = "Qaqc";
     this.gridBand9.Columns.Add(this.gv2col_Qaqc_text_obs);
     this.gridBand9.Columns.Add(this.gv2col_Qaqc_observation);
     this.gridBand9.Columns.Add(this.gv2col_Qaqc_mr);
     this.gridBand9.Columns.Add(this.gv2col_Qaqc_blk);
     this.gridBand9.Columns.Add(this.gv2col_Qaqc_par);
     this.gridBand9.Columns.Add(this.gv2col_Qaqc_approve);
     this.gridBand9.Columns.Add(this.gv2col_Qaqc_review);
     this.gridBand9.Columns.Add(this.gv2col_Qaqc_status_result);
     this.gridBand9.Columns.Add(this.gv2col_Qaqc_error);
     this.gridBand9.Fixed = DevExpress.XtraGrid.Columns.FixedStyle.Right;
     this.gridBand9.Name = "gridBand9";
     this.gridBand9.Width = 145;
     //
     // gv2col_Qaqc_text_obs
     //
     this.gv2col_Qaqc_text_obs.Caption = "Qaqc_text_obs";
     this.gv2col_Qaqc_text_obs.FieldName = "Qaqc_text_obs";
     this.gv2col_Qaqc_text_obs.Name = "gv2col_Qaqc_text_obs";
     //
     // gv2col_Qaqc_observation
     //
     this.gv2col_Qaqc_observation.Caption = "#";
     this.gv2col_Qaqc_observation.ColumnEdit = this.repQaqc_ShowPopup;
     this.gv2col_Qaqc_observation.FieldName = "Qaqc_observation";
     this.gv2col_Qaqc_observation.MinWidth = 25;
     this.gv2col_Qaqc_observation.Name = "gv2col_Qaqc_observation";
     this.gv2col_Qaqc_observation.Visible = true;
     this.gv2col_Qaqc_observation.Width = 25;
     //
     // repQaqc_ShowPopup
     //
     this.repQaqc_ShowPopup.AutoHeight = false;
     this.repQaqc_ShowPopup.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.repQaqc_ShowPopup.Name = "repQaqc_ShowPopup";
     this.repQaqc_ShowPopup.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.HideTextEditor;
     this.repQaqc_ShowPopup.ButtonClick += new DevExpress.XtraEditors.Controls.ButtonPressedEventHandler(this.repQaqc_ShowPopup_ButtonClick);
     //
     // gv2col_Qaqc_mr
     //
     this.gv2col_Qaqc_mr.Caption = "Mr";
     this.gv2col_Qaqc_mr.FieldName = "Qaqc_mr";
     this.gv2col_Qaqc_mr.Name = "gv2col_Qaqc_mr";
     //
     // gv2col_Qaqc_blk
     //
     this.gv2col_Qaqc_blk.Caption = "Blk";
     this.gv2col_Qaqc_blk.FieldName = "Qaqc_blk";
     this.gv2col_Qaqc_blk.Name = "gv2col_Qaqc_blk";
     //
     // gv2col_Qaqc_par
     //
     this.gv2col_Qaqc_par.Caption = "Par";
     this.gv2col_Qaqc_par.ColumnEdit = this.repQaqc_parity;
     this.gv2col_Qaqc_par.FieldName = "Qaqc_par";
     this.gv2col_Qaqc_par.MinWidth = 40;
     this.gv2col_Qaqc_par.Name = "gv2col_Qaqc_par";
     this.gv2col_Qaqc_par.OptionsColumn.AllowEdit = false;
     this.gv2col_Qaqc_par.Visible = true;
     this.gv2col_Qaqc_par.Width = 40;
     //
     // repQaqc_parity
     //
     this.repQaqc_parity.AutoHeight = false;
     this.repQaqc_parity.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repQaqc_parity.GlyphAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.repQaqc_parity.Items.AddRange(new DevExpress.XtraEditors.Controls.ImageComboBoxItem[] {
     new DevExpress.XtraEditors.Controls.ImageComboBoxItem("", 1, 1),
     new DevExpress.XtraEditors.Controls.ImageComboBoxItem("", 2, 5),
     new DevExpress.XtraEditors.Controls.ImageComboBoxItem("", 3, -1),
     new DevExpress.XtraEditors.Controls.ImageComboBoxItem("", 4, 4),
     new DevExpress.XtraEditors.Controls.ImageComboBoxItem("", 5, 0)});
     this.repQaqc_parity.LargeImages = this.imageStatus;
     this.repQaqc_parity.Name = "repQaqc_parity";
     //
     // gv2col_Qaqc_approve
     //
     this.gv2col_Qaqc_approve.Caption = "Aprobar";
     this.gv2col_Qaqc_approve.ColumnEdit = this.repQaqc_approve;
     this.gv2col_Qaqc_approve.FieldName = "Qaqc_approve";
     this.gv2col_Qaqc_approve.ImageIndex = 0;
     this.gv2col_Qaqc_approve.MinWidth = 80;
     this.gv2col_Qaqc_approve.Name = "gv2col_Qaqc_approve";
     this.gv2col_Qaqc_approve.OptionsColumn.AllowEdit = false;
     this.gv2col_Qaqc_approve.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.gv2col_Qaqc_approve.Visible = true;
     this.gv2col_Qaqc_approve.Width = 80;
     //
     // repQaqc_approve
     //
     this.repQaqc_approve.AutoHeight = false;
     this.repQaqc_approve.Name = "repQaqc_approve";
     //
     // gv2col_Qaqc_review
     //
     this.gv2col_Qaqc_review.Caption = "Revisar";
     this.gv2col_Qaqc_review.ColumnEdit = this.repQaqc_review;
     this.gv2col_Qaqc_review.FieldName = "Qaqc_review";
     this.gv2col_Qaqc_review.ImageIndex = 0;
     this.gv2col_Qaqc_review.MinWidth = 80;
     this.gv2col_Qaqc_review.Name = "gv2col_Qaqc_review";
     this.gv2col_Qaqc_review.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.gv2col_Qaqc_review.Width = 80;
     //
     // repQaqc_review
     //
     this.repQaqc_review.AutoHeight = false;
     this.repQaqc_review.Name = "repQaqc_review";
     //
     // gv2col_Qaqc_status_result
     //
     this.gv2col_Qaqc_status_result.Caption = ".";
     this.gv2col_Qaqc_status_result.ColumnEdit = this.repQaqc_StatusResult;
     this.gv2col_Qaqc_status_result.FieldName = "Qaqc_status_result";
     this.gv2col_Qaqc_status_result.MinWidth = 40;
     this.gv2col_Qaqc_status_result.Name = "gv2col_Qaqc_status_result";
     this.gv2col_Qaqc_status_result.OptionsColumn.AllowEdit = false;
     this.gv2col_Qaqc_status_result.Width = 40;
     //
     // repQaqc_StatusResult
     //
     this.repQaqc_StatusResult.AutoHeight = false;
     this.repQaqc_StatusResult.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repQaqc_StatusResult.GlyphAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.repQaqc_StatusResult.Items.AddRange(new DevExpress.XtraEditors.Controls.ImageComboBoxItem[] {
     new DevExpress.XtraEditors.Controls.ImageComboBoxItem("", 0, 11),
     new DevExpress.XtraEditors.Controls.ImageComboBoxItem("", 1, 12),
     new DevExpress.XtraEditors.Controls.ImageComboBoxItem("", 2, 13),
     new DevExpress.XtraEditors.Controls.ImageComboBoxItem("", 3, 14),
     new DevExpress.XtraEditors.Controls.ImageComboBoxItem("", 4, 12)});
     this.repQaqc_StatusResult.Name = "repQaqc_StatusResult";
     this.repQaqc_StatusResult.SmallImages = this.imageStatus;
     //
     // gv2col_Qaqc_error
     //
     this.gv2col_Qaqc_error.Caption = ".";
     this.gv2col_Qaqc_error.ColumnEdit = this.repQaqc_ShowObs;
     this.gv2col_Qaqc_error.FieldName = "Qaqc_error";
     this.gv2col_Qaqc_error.MinWidth = 25;
     this.gv2col_Qaqc_error.Name = "gv2col_Qaqc_error";
     this.gv2col_Qaqc_error.OptionsColumn.AllowEdit = false;
     this.gv2col_Qaqc_error.Width = 25;
     //
     // repQaqc_ShowObs
     //
     this.repQaqc_ShowObs.AutoHeight = false;
     this.repQaqc_ShowObs.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repQaqc_ShowObs.Items.AddRange(new DevExpress.XtraEditors.Controls.ImageComboBoxItem[] {
     new DevExpress.XtraEditors.Controls.ImageComboBoxItem("", 0, 9),
     new DevExpress.XtraEditors.Controls.ImageComboBoxItem("", 1, 8),
     new DevExpress.XtraEditors.Controls.ImageComboBoxItem("", 2, 8),
     new DevExpress.XtraEditors.Controls.ImageComboBoxItem("", 3, 8),
     new DevExpress.XtraEditors.Controls.ImageComboBoxItem("", 4, 8),
     new DevExpress.XtraEditors.Controls.ImageComboBoxItem("", 5, -1),
     new DevExpress.XtraEditors.Controls.ImageComboBoxItem("", 6, 10)});
     this.repQaqc_ShowObs.Name = "repQaqc_ShowObs";
     this.repQaqc_ShowObs.SmallImages = this.imageStatus;
     //
     // gridBand14
     //
     this.gridBand14.Caption = "Ryo";
     this.gridBand14.Columns.Add(this.gv2col_Qaqc_has_retest);
     this.gridBand14.Fixed = DevExpress.XtraGrid.Columns.FixedStyle.Right;
     this.gridBand14.Name = "gridBand14";
     this.gridBand14.Width = 40;
     //
     // gv2col_Qaqc_has_retest
     //
     this.gv2col_Qaqc_has_retest.Caption = "Ryo";
     this.gv2col_Qaqc_has_retest.ColumnEdit = this.repQaqc_HasRetest;
     this.gv2col_Qaqc_has_retest.FieldName = "Qaqc_has_retest";
     this.gv2col_Qaqc_has_retest.ImageAlignment = System.Drawing.StringAlignment.Center;
     this.gv2col_Qaqc_has_retest.Name = "gv2col_Qaqc_has_retest";
     this.gv2col_Qaqc_has_retest.OptionsColumn.AllowEdit = false;
     this.gv2col_Qaqc_has_retest.Visible = true;
     this.gv2col_Qaqc_has_retest.Width = 40;
     //
     // repQaqc_HasRetest
     //
     this.repQaqc_HasRetest.AutoHeight = false;
     this.repQaqc_HasRetest.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repQaqc_HasRetest.GlyphAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.repQaqc_HasRetest.Items.AddRange(new DevExpress.XtraEditors.Controls.ImageComboBoxItem[] {
     new DevExpress.XtraEditors.Controls.ImageComboBoxItem("", 0, -1),
     new DevExpress.XtraEditors.Controls.ImageComboBoxItem("", 1, 15)});
     this.repQaqc_HasRetest.Name = "repQaqc_HasRetest";
     this.repQaqc_HasRetest.SmallImages = this.imageStatus;
     //
     // gv2col_Qaqc_tmp_retest_idmethod
     //
     this.gv2col_Qaqc_tmp_retest_idmethod.Caption = "Qaqc_tmp_retest_idmethod";
     this.gv2col_Qaqc_tmp_retest_idmethod.FieldName = "Qaqc_tmp_retest_idmethod";
     this.gv2col_Qaqc_tmp_retest_idmethod.Name = "gv2col_Qaqc_tmp_retest_idmethod";
     //
     // gv2col_Qaqc_tmp_retest
     //
     this.gv2col_Qaqc_tmp_retest.Caption = "Qaqc_tmp_retest";
     this.gv2col_Qaqc_tmp_retest.FieldName = "Qaqc_tmp_retest";
     this.gv2col_Qaqc_tmp_retest.Name = "gv2col_Qaqc_tmp_retest";
     //
     // gv2col_Idretest
     //
     this.gv2col_Idretest.Caption = "gv2col_Qaqc_idretest";
     this.gv2col_Idretest.FieldName = "Qaqc_Qaqc_idretest";
     this.gv2col_Idretest.Name = "gv2col_Idretest";
     //
     // gv2col_Qaqc_approve_text
     //
     this.gv2col_Qaqc_approve_text.Caption = "Qaqc_approve_text";
     this.gv2col_Qaqc_approve_text.FieldName = "Qaqc_approve_text";
     this.gv2col_Qaqc_approve_text.Name = "gv2col_Qaqc_approve_text";
     this.gv2col_Qaqc_approve_text.Visible = true;
     //
     // gv2col_Qaqc_review_text
     //
     this.gv2col_Qaqc_review_text.Caption = "Qaqc_review_text";
     this.gv2col_Qaqc_review_text.FieldName = "Qaqc_review_text";
     this.gv2col_Qaqc_review_text.Name = "gv2col_Qaqc_review_text";
     this.gv2col_Qaqc_review_text.Visible = true;
     //
     // imgChecks
     //
     this.imgChecks.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imgChecks.ImageStream")));
     this.imgChecks.TransparentColor = System.Drawing.Color.Transparent;
     this.imgChecks.Images.SetKeyName(0, "uncheck16x16.png");
     this.imgChecks.Images.SetKeyName(1, "check16x16.png");
     //
     // repProcedence2
     //
     this.repProcedence2.AutoHeight = false;
     this.repProcedence2.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repProcedence2.Name = "repProcedence2";
     //
     // treeCol_Urgent_sample
     //
     this.treeCol_Urgent_sample.Caption = "treeListColumn10";
     this.treeCol_Urgent_sample.FieldName = "Urgent_sample";
     this.treeCol_Urgent_sample.Name = "treeCol_Urgent_sample";
     //
     // treeTrayWaiting
     //
     this.treeTrayWaiting.Appearance.Empty.BackColor = System.Drawing.Color.White;
     this.treeTrayWaiting.Appearance.Empty.Options.UseBackColor = true;
     this.treeTrayWaiting.Appearance.EvenRow.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(243)))), ((int)(((byte)(244)))), ((int)(((byte)(250)))));
     this.treeTrayWaiting.Appearance.EvenRow.ForeColor = System.Drawing.Color.Black;
     this.treeTrayWaiting.Appearance.EvenRow.Options.UseBackColor = true;
     this.treeTrayWaiting.Appearance.EvenRow.Options.UseForeColor = true;
     this.treeTrayWaiting.Appearance.FocusedRow.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(178)))), ((int)(((byte)(180)))), ((int)(((byte)(191)))));
     this.treeTrayWaiting.Appearance.FocusedRow.ForeColor = System.Drawing.Color.Black;
     this.treeTrayWaiting.Appearance.FocusedRow.Options.UseBackColor = true;
     this.treeTrayWaiting.Appearance.FocusedRow.Options.UseForeColor = true;
     this.treeTrayWaiting.Appearance.FooterPanel.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(243)))), ((int)(((byte)(244)))), ((int)(((byte)(250)))));
     this.treeTrayWaiting.Appearance.FooterPanel.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(154)))), ((int)(((byte)(153)))), ((int)(((byte)(182)))));
     this.treeTrayWaiting.Appearance.FooterPanel.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(243)))), ((int)(((byte)(244)))), ((int)(((byte)(250)))));
     this.treeTrayWaiting.Appearance.FooterPanel.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
     this.treeTrayWaiting.Appearance.FooterPanel.Options.UseBackColor = true;
     this.treeTrayWaiting.Appearance.FooterPanel.Options.UseBorderColor = true;
     this.treeTrayWaiting.Appearance.GroupButton.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(215)))), ((int)(((byte)(215)))), ((int)(((byte)(229)))));
     this.treeTrayWaiting.Appearance.GroupButton.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(215)))), ((int)(((byte)(215)))), ((int)(((byte)(229)))));
     this.treeTrayWaiting.Appearance.GroupButton.ForeColor = System.Drawing.Color.Black;
     this.treeTrayWaiting.Appearance.GroupButton.Options.UseBackColor = true;
     this.treeTrayWaiting.Appearance.GroupButton.Options.UseBorderColor = true;
     this.treeTrayWaiting.Appearance.GroupButton.Options.UseForeColor = true;
     this.treeTrayWaiting.Appearance.GroupFooter.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(215)))), ((int)(((byte)(215)))), ((int)(((byte)(229)))));
     this.treeTrayWaiting.Appearance.GroupFooter.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(215)))), ((int)(((byte)(215)))), ((int)(((byte)(229)))));
     this.treeTrayWaiting.Appearance.GroupFooter.ForeColor = System.Drawing.Color.Black;
     this.treeTrayWaiting.Appearance.GroupFooter.Options.UseBackColor = true;
     this.treeTrayWaiting.Appearance.GroupFooter.Options.UseBorderColor = true;
     this.treeTrayWaiting.Appearance.GroupFooter.Options.UseForeColor = true;
     this.treeTrayWaiting.Appearance.HeaderPanel.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(243)))), ((int)(((byte)(244)))), ((int)(((byte)(250)))));
     this.treeTrayWaiting.Appearance.HeaderPanel.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(154)))), ((int)(((byte)(153)))), ((int)(((byte)(182)))));
     this.treeTrayWaiting.Appearance.HeaderPanel.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(243)))), ((int)(((byte)(244)))), ((int)(((byte)(250)))));
     this.treeTrayWaiting.Appearance.HeaderPanel.ForeColor = System.Drawing.Color.Black;
     this.treeTrayWaiting.Appearance.HeaderPanel.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
     this.treeTrayWaiting.Appearance.HeaderPanel.Options.UseBackColor = true;
     this.treeTrayWaiting.Appearance.HeaderPanel.Options.UseBorderColor = true;
     this.treeTrayWaiting.Appearance.HeaderPanel.Options.UseForeColor = true;
     this.treeTrayWaiting.Appearance.HideSelectionRow.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(218)))), ((int)(((byte)(219)))), ((int)(((byte)(226)))));
     this.treeTrayWaiting.Appearance.HideSelectionRow.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(133)))), ((int)(((byte)(131)))), ((int)(((byte)(161)))));
     this.treeTrayWaiting.Appearance.HideSelectionRow.Options.UseBackColor = true;
     this.treeTrayWaiting.Appearance.HideSelectionRow.Options.UseForeColor = true;
     this.treeTrayWaiting.Appearance.HorzLine.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(164)))), ((int)(((byte)(164)))), ((int)(((byte)(188)))));
     this.treeTrayWaiting.Appearance.HorzLine.Options.UseBackColor = true;
     this.treeTrayWaiting.Appearance.OddRow.BackColor = System.Drawing.Color.White;
     this.treeTrayWaiting.Appearance.OddRow.ForeColor = System.Drawing.Color.Black;
     this.treeTrayWaiting.Appearance.OddRow.Options.UseBackColor = true;
     this.treeTrayWaiting.Appearance.OddRow.Options.UseForeColor = true;
     this.treeTrayWaiting.Appearance.Preview.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(250)))), ((int)(((byte)(250)))), ((int)(((byte)(253)))));
     this.treeTrayWaiting.Appearance.Preview.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(163)))), ((int)(((byte)(165)))), ((int)(((byte)(177)))));
     this.treeTrayWaiting.Appearance.Preview.Options.UseBackColor = true;
     this.treeTrayWaiting.Appearance.Preview.Options.UseForeColor = true;
     this.treeTrayWaiting.Appearance.Row.BackColor = System.Drawing.Color.White;
     this.treeTrayWaiting.Appearance.Row.Font = new System.Drawing.Font("Tahoma", 8F);
     this.treeTrayWaiting.Appearance.Row.ForeColor = System.Drawing.Color.Black;
     this.treeTrayWaiting.Appearance.Row.Options.UseBackColor = true;
     this.treeTrayWaiting.Appearance.Row.Options.UseFont = true;
     this.treeTrayWaiting.Appearance.Row.Options.UseForeColor = true;
     this.treeTrayWaiting.Appearance.SelectedRow.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(195)))), ((int)(((byte)(197)))), ((int)(((byte)(205)))));
     this.treeTrayWaiting.Appearance.SelectedRow.Font = new System.Drawing.Font("Tahoma", 8F);
     this.treeTrayWaiting.Appearance.SelectedRow.ForeColor = System.Drawing.Color.Black;
     this.treeTrayWaiting.Appearance.SelectedRow.Options.UseBackColor = true;
     this.treeTrayWaiting.Appearance.SelectedRow.Options.UseFont = true;
     this.treeTrayWaiting.Appearance.SelectedRow.Options.UseForeColor = true;
     this.treeTrayWaiting.Appearance.TreeLine.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(124)))), ((int)(((byte)(124)))), ((int)(((byte)(148)))));
     this.treeTrayWaiting.Appearance.TreeLine.Options.UseBackColor = true;
     this.treeTrayWaiting.Appearance.VertLine.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(164)))), ((int)(((byte)(164)))), ((int)(((byte)(188)))));
     this.treeTrayWaiting.Appearance.VertLine.Options.UseBackColor = true;
     this.treeTrayWaiting.Columns.AddRange(new DevExpress.XtraTreeList.Columns.TreeListColumn[] {
     this.treeCol_Idtemplate_method,
     this.treeCol_Idrecep_sample_detail_elem,
     this.treeCol_Abbreviation,
     this.treeCol_Cod_repetition,
     this.treeCol_Id,
     this.treeCol_Parentid,
     this.treeCol_Num_tray,
     this.treeCol_Date_result,
     this.treeCol_Hour_result,
     this.treeCol_Urgent_sample});
     this.treeTrayWaiting.Dock = System.Windows.Forms.DockStyle.Fill;
     styleFormatCondition2.Appearance.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(234)))), ((int)(((byte)(87)))), ((int)(((byte)(96)))));
     styleFormatCondition2.Appearance.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(234)))), ((int)(((byte)(87)))), ((int)(((byte)(96)))));
     styleFormatCondition2.Appearance.Options.UseBackColor = true;
     styleFormatCondition2.ApplyToRow = true;
     styleFormatCondition2.Column = this.treeCol_Urgent_sample;
     styleFormatCondition2.Condition = DevExpress.XtraGrid.FormatConditionEnum.Equal;
     styleFormatCondition2.Value1 = 1D;
     this.treeTrayWaiting.FormatConditions.AddRange(new DevExpress.XtraTreeList.StyleFormatConditions.StyleFormatCondition[] {
     styleFormatCondition2});
     this.treeTrayWaiting.ImageIndexFieldName = "Image_index";
     this.treeTrayWaiting.KeyFieldName = "Id";
     this.treeTrayWaiting.Location = new System.Drawing.Point(0, 0);
     this.treeTrayWaiting.Name = "treeTrayWaiting";
     this.treeTrayWaiting.OptionsBehavior.DragNodes = true;
     this.treeTrayWaiting.OptionsBehavior.SmartMouseHover = false;
     this.treeTrayWaiting.OptionsView.AutoWidth = false;
     this.treeTrayWaiting.OptionsView.EnableAppearanceEvenRow = true;
     this.treeTrayWaiting.OptionsView.EnableAppearanceOddRow = true;
     this.treeTrayWaiting.ParentFieldName = "Parentid";
     this.treeTrayWaiting.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.repRepetition,
     this.repDate,
     this.repHour});
     this.treeTrayWaiting.SelectImageList = this.imgPriority;
     this.treeTrayWaiting.Size = new System.Drawing.Size(217, 343);
     this.treeTrayWaiting.TabIndex = 1;
     this.treeTrayWaiting.AfterDragNode += new DevExpress.XtraTreeList.NodeEventHandler(this.treeTrayWaiting_AfterDragNode);
     this.treeTrayWaiting.FocusedNodeChanged += new DevExpress.XtraTreeList.FocusedNodeChangedEventHandler(this.treeList1_FocusedNodeChanged);
     this.treeTrayWaiting.DragOver += new System.Windows.Forms.DragEventHandler(this.treeTrayWaiting_DragOver);
     this.treeTrayWaiting.MouseMove += new System.Windows.Forms.MouseEventHandler(this.treeTrayWaiting_MouseMove);
     //
     // treeCol_Idtemplate_method
     //
     this.treeCol_Idtemplate_method.Caption = "Idtemplate_method";
     this.treeCol_Idtemplate_method.FieldName = "Idtemplate_method";
     this.treeCol_Idtemplate_method.Name = "treeCol_Idtemplate_method";
     //
     // treeCol_Idrecep_sample_detail_elem
     //
     this.treeCol_Idrecep_sample_detail_elem.Caption = "Idrecep_sample_detail_elem";
     this.treeCol_Idrecep_sample_detail_elem.FieldName = "Idrecep_sample_detail_elem";
     this.treeCol_Idrecep_sample_detail_elem.Name = "treeCol_Idrecep_sample_detail_elem";
     //
     // treeCol_Abbreviation
     //
     this.treeCol_Abbreviation.Caption = "Bandeja";
     this.treeCol_Abbreviation.FieldName = "Abbreviation";
     this.treeCol_Abbreviation.MinWidth = 27;
     this.treeCol_Abbreviation.Name = "treeCol_Abbreviation";
     this.treeCol_Abbreviation.OptionsColumn.AllowEdit = false;
     this.treeCol_Abbreviation.VisibleIndex = 0;
     this.treeCol_Abbreviation.Width = 60;
     //
     // treeCol_Cod_repetition
     //
     this.treeCol_Cod_repetition.Caption = "N°Repeticiones";
     this.treeCol_Cod_repetition.ColumnEdit = this.repRepetition;
     this.treeCol_Cod_repetition.FieldName = "Cod_repetition";
     this.treeCol_Cod_repetition.Name = "treeCol_Cod_repetition";
     this.treeCol_Cod_repetition.OptionsColumn.ReadOnly = true;
     this.treeCol_Cod_repetition.Width = 63;
     //
     // repRepetition
     //
     this.repRepetition.AutoHeight = false;
     this.repRepetition.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repRepetition.Name = "repRepetition";
     this.repRepetition.NullText = "";
     //
     // treeCol_Id
     //
     this.treeCol_Id.Caption = "Id";
     this.treeCol_Id.FieldName = "Id";
     this.treeCol_Id.Name = "treeCol_Id";
     //
     // treeCol_Parentid
     //
     this.treeCol_Parentid.Caption = "Parentid";
     this.treeCol_Parentid.FieldName = "Parentid";
     this.treeCol_Parentid.Name = "treeCol_Parentid";
     //
     // treeCol_Num_tray
     //
     this.treeCol_Num_tray.Caption = "N°Bandeja";
     this.treeCol_Num_tray.FieldName = "Num_tray";
     this.treeCol_Num_tray.Name = "treeCol_Num_tray";
     this.treeCol_Num_tray.OptionsColumn.AllowEdit = false;
     this.treeCol_Num_tray.VisibleIndex = 1;
     this.treeCol_Num_tray.Width = 65;
     //
     // treeCol_Date_result
     //
     this.treeCol_Date_result.Caption = "Fecha";
     this.treeCol_Date_result.ColumnEdit = this.repDate;
     this.treeCol_Date_result.FieldName = "Date_result";
     this.treeCol_Date_result.Name = "treeCol_Date_result";
     this.treeCol_Date_result.VisibleIndex = 2;
     this.treeCol_Date_result.Width = 54;
     //
     // repDate
     //
     this.repDate.AutoHeight = false;
     this.repDate.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repDate.Name = "repDate";
     //
     // treeCol_Hour_result
     //
     this.treeCol_Hour_result.Caption = "Hora";
     this.treeCol_Hour_result.ColumnEdit = this.repHour;
     this.treeCol_Hour_result.FieldName = "Hour_result";
     this.treeCol_Hour_result.Name = "treeCol_Hour_result";
     this.treeCol_Hour_result.VisibleIndex = 3;
     this.treeCol_Hour_result.Width = 53;
     //
     // repHour
     //
     this.repHour.AutoHeight = false;
     this.repHour.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.repHour.Name = "repHour";
     //
     // imgPriority
     //
     this.imgPriority.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imgPriority.ImageStream")));
     this.imgPriority.TransparentColor = System.Drawing.Color.Transparent;
     this.imgPriority.Images.SetKeyName(0, "high.png");
     this.imgPriority.Images.SetKeyName(1, "medium.png");
     this.imgPriority.Images.SetKeyName(2, "low.png");
     //
     // expandablePanel1
     //
     this.expandablePanel1.CollapseDirection = DevComponents.DotNetBar.eCollapseDirection.LeftToRight;
     this.expandablePanel1.Controls.Add(this.tabTreeQaqc);
     this.expandablePanel1.Controls.Add(this.paButtons);
     this.expandablePanel1.Dock = System.Windows.Forms.DockStyle.Left;
     this.expandablePanel1.Location = new System.Drawing.Point(0, 0);
     this.expandablePanel1.Name = "expandablePanel1";
     this.expandablePanel1.Size = new System.Drawing.Size(226, 493);
     this.expandablePanel1.TabIndex = 9;
     this.expandablePanel1.Text = "expandablePanel1";
     this.expandablePanel1.TitleText = "Bandejas";
     //
     // tabTreeQaqc
     //
     this.tabTreeQaqc.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tabTreeQaqc.Location = new System.Drawing.Point(0, 66);
     this.tabTreeQaqc.Name = "tabTreeQaqc";
     this.tabTreeQaqc.SelectedTabPage = this.xtraTabPage4;
     this.tabTreeQaqc.Size = new System.Drawing.Size(226, 427);
     this.tabTreeQaqc.TabIndex = 2;
     this.tabTreeQaqc.TabPages.AddRange(new DevExpress.XtraTab.XtraTabPage[] {
     this.xtraTabPage4,
     this.xtraTabPage5});
     this.tabTreeQaqc.Text = "xtraTabControl2";
     this.tabTreeQaqc.SelectedPageChanged += new DevExpress.XtraTab.TabPageChangedEventHandler(this.tabTreeQaqc_SelectedPageChanged);
     //
     // xtraTabPage4
     //
     this.xtraTabPage4.Controls.Add(this.treeTrayWaiting);
     this.xtraTabPage4.Controls.Add(this.groupControl1);
     this.xtraTabPage4.Name = "xtraTabPage4";
     this.xtraTabPage4.Size = new System.Drawing.Size(217, 397);
     this.xtraTabPage4.Text = "En Espera";
     //
     // groupControl1
     //
     this.groupControl1.Controls.Add(this.cbAuthorizationWait);
     this.groupControl1.Controls.Add(this.label23);
     this.groupControl1.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.groupControl1.Location = new System.Drawing.Point(0, 343);
     this.groupControl1.Name = "groupControl1";
     this.groupControl1.Size = new System.Drawing.Size(217, 54);
     this.groupControl1.TabIndex = 5;
     this.groupControl1.Text = "Listar";
     //
     // cbAuthorizationWait
     //
     this.cbAuthorizationWait.Location = new System.Drawing.Point(81, 23);
     this.cbAuthorizationWait.Name = "cbAuthorizationWait";
     this.cbAuthorizationWait.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.cbAuthorizationWait.Properties.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("Cod_area", "", 20, DevExpress.Utils.FormatType.None, "", false, DevExpress.Utils.HorzAlignment.Default, DevExpress.Data.ColumnSortOrder.None),
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("Nom_area")});
     this.cbAuthorizationWait.Properties.NullText = "Seleccionar";
     this.cbAuthorizationWait.Properties.PopupWidth = 100;
     this.cbAuthorizationWait.Properties.ShowFooter = false;
     this.cbAuthorizationWait.Properties.ShowHeader = false;
     this.cbAuthorizationWait.Size = new System.Drawing.Size(112, 20);
     this.cbAuthorizationWait.TabIndex = 0;
     this.cbAuthorizationWait.EditValueChanged += new System.EventHandler(this.cbAuthorizationWait_EditValueChanged);
     //
     // label23
     //
     this.label23.AutoSize = true;
     this.label23.Location = new System.Drawing.Point(27, 26);
     this.label23.Name = "label23";
     this.label23.Size = new System.Drawing.Size(53, 13);
     this.label23.TabIndex = 1;
     this.label23.Text = "Listar por:";
     //
     // xtraTabPage5
     //
     this.xtraTabPage5.Controls.Add(this.treeTrayFinished);
     this.xtraTabPage5.Controls.Add(this.paListAuthorization);
     this.xtraTabPage5.Controls.Add(this.paHistoryFilter);
     this.xtraTabPage5.Name = "xtraTabPage5";
     this.xtraTabPage5.Size = new System.Drawing.Size(217, 55);
     this.xtraTabPage5.Text = "Gerencia";
     //
     // treeTrayFinished
     //
     this.treeTrayFinished.Columns.AddRange(new DevExpress.XtraTreeList.Columns.TreeListColumn[] {
     this.treeListColumn1,
     this.treeListColumn2,
     this.treeListColumn3,
     this.treeListColumn4,
     this.treeListColumn5,
     this.treeListColumn6,
     this.treeListColumn7,
     this.treeListColumn8,
     this.treeListColumn9});
     this.treeTrayFinished.Dock = System.Windows.Forms.DockStyle.Fill;
     this.treeTrayFinished.ImageIndexFieldName = "Image_index";
     this.treeTrayFinished.KeyFieldName = "Id";
     this.treeTrayFinished.Location = new System.Drawing.Point(0, 0);
     this.treeTrayFinished.Name = "treeTrayFinished";
     this.treeTrayFinished.OptionsView.AutoWidth = false;
     this.treeTrayFinished.ParentFieldName = "Parentid";
     this.treeTrayFinished.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.repositoryItemLookUpEdit1});
     this.treeTrayFinished.SelectImageList = this.imgPriority;
     this.treeTrayFinished.Size = new System.Drawing.Size(217, 0);
     this.treeTrayFinished.TabIndex = 2;
     this.treeTrayFinished.FocusedNodeChanged += new DevExpress.XtraTreeList.FocusedNodeChangedEventHandler(this.treeTrayFinished_FocusedNodeChanged);
     //
     // treeListColumn1
     //
     this.treeListColumn1.Caption = "Idtemplate_method";
     this.treeListColumn1.FieldName = "Idtemplate_method";
     this.treeListColumn1.Name = "treeListColumn1";
     //
     // treeListColumn2
     //
     this.treeListColumn2.Caption = "Idrecep_sample_detail_elem";
     this.treeListColumn2.FieldName = "Idrecep_sample_detail_elem";
     this.treeListColumn2.Name = "treeListColumn2";
     //
     // treeListColumn3
     //
     this.treeListColumn3.Caption = "Bandeja";
     this.treeListColumn3.FieldName = "Abbreviation";
     this.treeListColumn3.MinWidth = 27;
     this.treeListColumn3.Name = "treeListColumn3";
     this.treeListColumn3.OptionsColumn.AllowEdit = false;
     this.treeListColumn3.VisibleIndex = 0;
     this.treeListColumn3.Width = 110;
     //
     // treeListColumn4
     //
     this.treeListColumn4.Caption = "N°Repeticiones";
     this.treeListColumn4.ColumnEdit = this.repositoryItemLookUpEdit1;
     this.treeListColumn4.FieldName = "Cod_repetition";
     this.treeListColumn4.Name = "treeListColumn4";
     this.treeListColumn4.OptionsColumn.ReadOnly = true;
     this.treeListColumn4.Width = 63;
     //
     // repositoryItemLookUpEdit1
     //
     this.repositoryItemLookUpEdit1.AutoHeight = false;
     this.repositoryItemLookUpEdit1.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemLookUpEdit1.Name = "repositoryItemLookUpEdit1";
     this.repositoryItemLookUpEdit1.NullText = "";
     //
     // treeListColumn5
     //
     this.treeListColumn5.Caption = "Id";
     this.treeListColumn5.FieldName = "Id";
     this.treeListColumn5.Name = "treeListColumn5";
     //
     // treeListColumn6
     //
     this.treeListColumn6.Caption = "Parentid";
     this.treeListColumn6.FieldName = "Parentid";
     this.treeListColumn6.Name = "treeListColumn6";
     //
     // treeListColumn7
     //
     this.treeListColumn7.Caption = "N°Bandeja";
     this.treeListColumn7.FieldName = "Num_tray";
     this.treeListColumn7.Name = "treeListColumn7";
     this.treeListColumn7.OptionsColumn.AllowEdit = false;
     this.treeListColumn7.VisibleIndex = 1;
     //
     // treeListColumn8
     //
     this.treeListColumn8.Caption = "Fecha";
     this.treeListColumn8.FieldName = "Date_result";
     this.treeListColumn8.Name = "treeListColumn8";
     this.treeListColumn8.VisibleIndex = 2;
     //
     // treeListColumn9
     //
     this.treeListColumn9.Caption = "Hora";
     this.treeListColumn9.FieldName = "Hour_result";
     this.treeListColumn9.Name = "treeListColumn9";
     this.treeListColumn9.VisibleIndex = 3;
     //
     // paListAuthorization
     //
     this.paListAuthorization.Controls.Add(this.cbAuthorizationApproved);
     this.paListAuthorization.Controls.Add(this.label25);
     this.paListAuthorization.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.paListAuthorization.Location = new System.Drawing.Point(0, -149);
     this.paListAuthorization.Name = "paListAuthorization";
     this.paListAuthorization.Size = new System.Drawing.Size(217, 54);
     this.paListAuthorization.TabIndex = 4;
     this.paListAuthorization.Text = "Listar";
     //
     // cbAuthorizationApproved
     //
     this.cbAuthorizationApproved.Location = new System.Drawing.Point(98, 23);
     this.cbAuthorizationApproved.Name = "cbAuthorizationApproved";
     this.cbAuthorizationApproved.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.cbAuthorizationApproved.Properties.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("Cod_area", "", 20, DevExpress.Utils.FormatType.None, "", false, DevExpress.Utils.HorzAlignment.Default, DevExpress.Data.ColumnSortOrder.None),
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("Nom_area")});
     this.cbAuthorizationApproved.Properties.NullText = "Seleccionar";
     this.cbAuthorizationApproved.Properties.PopupWidth = 100;
     this.cbAuthorizationApproved.Properties.ShowFooter = false;
     this.cbAuthorizationApproved.Properties.ShowHeader = false;
     this.cbAuthorizationApproved.Size = new System.Drawing.Size(103, 20);
     this.cbAuthorizationApproved.TabIndex = 0;
     this.cbAuthorizationApproved.EditValueChanged += new System.EventHandler(this.cbAuthorization_EditValueChanged);
     //
     // label25
     //
     this.label25.AutoSize = true;
     this.label25.Location = new System.Drawing.Point(25, 26);
     this.label25.Name = "label25";
     this.label25.Size = new System.Drawing.Size(53, 13);
     this.label25.TabIndex = 1;
     this.label25.Text = "Listar por:";
     //
     // paHistoryFilter
     //
     this.paHistoryFilter.Controls.Add(this.txYear);
     this.paHistoryFilter.Controls.Add(this.txSample);
     this.paHistoryFilter.Controls.Add(this.cbTypeSample);
     this.paHistoryFilter.Controls.Add(this.cbCompany);
     this.paHistoryFilter.Controls.Add(this.btSearchTray);
     this.paHistoryFilter.Controls.Add(this.label22);
     this.paHistoryFilter.Controls.Add(this.ckSample);
     this.paHistoryFilter.Controls.Add(this.ckCompany);
     this.paHistoryFilter.Controls.Add(this.panel9);
     this.paHistoryFilter.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.paHistoryFilter.Location = new System.Drawing.Point(0, -95);
     this.paHistoryFilter.Name = "paHistoryFilter";
     this.paHistoryFilter.Size = new System.Drawing.Size(217, 150);
     this.paHistoryFilter.TabIndex = 3;
     this.paHistoryFilter.Text = "Filtrar por";
     this.paHistoryFilter.Visible = false;
     //
     // txYear
     //
     this.txYear.EditValue = "12";
     this.txYear.Location = new System.Drawing.Point(117, 96);
     this.txYear.Name = "txYear";
     this.txYear.Size = new System.Drawing.Size(22, 20);
     this.txYear.TabIndex = 12;
     this.txYear.Visible = false;
     //
     // txSample
     //
     this.txSample.EditValue = new decimal(new int[] {
     0,
     0,
     0,
     0});
     this.txSample.Location = new System.Drawing.Point(141, 96);
     this.txSample.Name = "txSample";
     this.txSample.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.txSample.Size = new System.Drawing.Size(61, 20);
     this.txSample.TabIndex = 11;
     this.txSample.Visible = false;
     //
     // cbTypeSample
     //
     this.cbTypeSample.Location = new System.Drawing.Point(67, 96);
     this.cbTypeSample.Name = "cbTypeSample";
     this.cbTypeSample.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.cbTypeSample.Properties.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("Cod_type_sample", "", 10, DevExpress.Utils.FormatType.None, "", true, DevExpress.Utils.HorzAlignment.Default, DevExpress.Data.ColumnSortOrder.None),
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("Name_type_sample")});
     this.cbTypeSample.Properties.PopupWidth = 100;
     this.cbTypeSample.Properties.ShowFooter = false;
     this.cbTypeSample.Properties.ShowHeader = false;
     this.cbTypeSample.Size = new System.Drawing.Size(48, 20);
     this.cbTypeSample.TabIndex = 10;
     this.cbTypeSample.Visible = false;
     //
     // cbCompany
     //
     this.cbCompany.Location = new System.Drawing.Point(67, 73);
     this.cbCompany.Name = "cbCompany";
     this.cbCompany.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.cbCompany.Properties.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("Idcompany", "", 20, DevExpress.Utils.FormatType.None, "", false, DevExpress.Utils.HorzAlignment.Default, DevExpress.Data.ColumnSortOrder.None),
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("Business_name")});
     this.cbCompany.Properties.NullText = "Seleccionar";
     this.cbCompany.Properties.ShowFooter = false;
     this.cbCompany.Properties.ShowHeader = false;
     this.cbCompany.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.Standard;
     this.cbCompany.Size = new System.Drawing.Size(135, 20);
     this.cbCompany.TabIndex = 8;
     this.cbCompany.Visible = false;
     //
     // btSearchTray
     //
     this.btSearchTray.ImageAlignment = DevExpress.Utils.HorzAlignment.Default;
     this.btSearchTray.ImageIndex = 3;
     this.btSearchTray.ImageList = this.imageList1;
     this.btSearchTray.Location = new System.Drawing.Point(141, 120);
     this.btSearchTray.Name = "btSearchTray";
     this.btSearchTray.Size = new System.Drawing.Size(62, 25);
     this.btSearchTray.TabIndex = 7;
     this.btSearchTray.Text = "Buscar";
     this.btSearchTray.Click += new System.EventHandler(this.btSearchTray_Click);
     //
     // label22
     //
     this.label22.AutoSize = true;
     this.label22.Location = new System.Drawing.Point(22, 24);
     this.label22.Name = "label22";
     this.label22.Size = new System.Drawing.Size(37, 13);
     this.label22.TabIndex = 1;
     this.label22.Text = "Fecha";
     //
     // ckSample
     //
     this.ckSample.Location = new System.Drawing.Point(4, 96);
     this.ckSample.Name = "ckSample";
     this.ckSample.Properties.Caption = "Muestra";
     this.ckSample.Size = new System.Drawing.Size(71, 19);
     this.ckSample.TabIndex = 4;
     this.ckSample.CheckedChanged += new System.EventHandler(this.ckSample_CheckedChanged);
     //
     // ckCompany
     //
     this.ckCompany.Location = new System.Drawing.Point(4, 73);
     this.ckCompany.Name = "ckCompany";
     this.ckCompany.Properties.Caption = "Cliente";
     this.ckCompany.Size = new System.Drawing.Size(75, 19);
     this.ckCompany.TabIndex = 4;
     this.ckCompany.CheckedChanged += new System.EventHandler(this.ckCompany_CheckedChanged);
     //
     // panel9
     //
     this.panel9.Controls.Add(this.deFrom);
     this.panel9.Controls.Add(this.deUntil);
     this.panel9.Controls.Add(this.label21);
     this.panel9.Controls.Add(this.label26);
     this.panel9.Location = new System.Drawing.Point(65, 19);
     this.panel9.Name = "panel9";
     this.panel9.Size = new System.Drawing.Size(140, 47);
     this.panel9.TabIndex = 3;
     //
     // deFrom
     //
     this.deFrom.EditValue = null;
     this.deFrom.Location = new System.Drawing.Point(50, 3);
     this.deFrom.Name = "deFrom";
     this.deFrom.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.deFrom.Size = new System.Drawing.Size(86, 20);
     this.deFrom.TabIndex = 2;
     //
     // deUntil
     //
     this.deUntil.EditValue = null;
     this.deUntil.Location = new System.Drawing.Point(50, 25);
     this.deUntil.Name = "deUntil";
     this.deUntil.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.deUntil.Size = new System.Drawing.Size(86, 20);
     this.deUntil.TabIndex = 2;
     //
     // label21
     //
     this.label21.AutoSize = true;
     this.label21.Location = new System.Drawing.Point(5, 6);
     this.label21.Name = "label21";
     this.label21.Size = new System.Drawing.Size(41, 13);
     this.label21.TabIndex = 1;
     this.label21.Text = "Desde:";
     //
     // label26
     //
     this.label26.AutoSize = true;
     this.label26.Location = new System.Drawing.Point(5, 28);
     this.label26.Name = "label26";
     this.label26.Size = new System.Drawing.Size(38, 13);
     this.label26.TabIndex = 1;
     this.label26.Text = "Hasta:";
     //
     // paButtons
     //
     this.paButtons.Controls.Add(this.paNewTray);
     this.paButtons.Controls.Add(this.btRefresh);
     this.paButtons.Dock = System.Windows.Forms.DockStyle.Top;
     this.paButtons.Location = new System.Drawing.Point(0, 26);
     this.paButtons.Name = "paButtons";
     this.paButtons.Size = new System.Drawing.Size(226, 40);
     this.paButtons.TabIndex = 3;
     this.paButtons.Text = "paSettingsTree";
     //
     // paNewTray
     //
     this.paNewTray.AllowDrop = true;
     this.paNewTray.BackgroundImage = global::LimsProject.Properties.Resources.add_tray2;
     this.paNewTray.Location = new System.Drawing.Point(200, 11);
     this.paNewTray.Name = "paNewTray";
     this.paNewTray.Size = new System.Drawing.Size(20, 20);
     this.paNewTray.TabIndex = 1;
     this.paNewTray.DragDrop += new System.Windows.Forms.DragEventHandler(this.paNewTray_DragDrop);
     this.paNewTray.DragEnter += new System.Windows.Forms.DragEventHandler(this.paNewTray_DragEnter);
     //
     // btRefresh
     //
     this.btRefresh.Location = new System.Drawing.Point(8, 11);
     this.btRefresh.Name = "btRefresh";
     this.btRefresh.Size = new System.Drawing.Size(75, 23);
     this.btRefresh.TabIndex = 0;
     this.btRefresh.Text = "Refrescar";
     this.btRefresh.Click += new System.EventHandler(this.btRefresh_Click);
     //
     // splitter1
     //
     this.splitter1.Location = new System.Drawing.Point(226, 0);
     this.splitter1.Name = "splitter1";
     this.splitter1.Size = new System.Drawing.Size(5, 493);
     this.splitter1.TabIndex = 10;
     this.splitter1.TabStop = false;
     //
     // panel5
     //
     this.panel5.Controls.Add(this.gbApprove);
     this.panel5.Controls.Add(this.paAuthorization);
     this.panel5.Controls.Add(this.gbReview);
     this.panel5.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.panel5.Location = new System.Drawing.Point(231, 444);
     this.panel5.Name = "panel5";
     this.panel5.Size = new System.Drawing.Size(985, 49);
     this.panel5.TabIndex = 10;
     //
     // gbApprove
     //
     this.gbApprove.Controls.Add(this.laDate_approved);
     this.gbApprove.Controls.Add(this.laUser_approved);
     this.gbApprove.Controls.Add(this.label13);
     this.gbApprove.Controls.Add(this.label7);
     this.gbApprove.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.gbApprove.Location = new System.Drawing.Point(11, 6);
     this.gbApprove.Name = "gbApprove";
     this.gbApprove.Size = new System.Drawing.Size(267, 38);
     this.gbApprove.TabIndex = 4;
     this.gbApprove.TabStop = false;
     this.gbApprove.Text = "Aprobación";
     this.gbApprove.Visible = false;
     //
     // laDate_approved
     //
     this.laDate_approved.AutoSize = true;
     this.laDate_approved.ForeColor = System.Drawing.Color.DarkGoldenrod;
     this.laDate_approved.Location = new System.Drawing.Point(153, 16);
     this.laDate_approved.Name = "laDate_approved";
     this.laDate_approved.Size = new System.Drawing.Size(47, 13);
     this.laDate_approved.TabIndex = 3;
     this.laDate_approved.Text = "[fecha]";
     //
     // laUser_approved
     //
     this.laUser_approved.AutoSize = true;
     this.laUser_approved.ForeColor = System.Drawing.Color.DarkGoldenrod;
     this.laUser_approved.Location = new System.Drawing.Point(58, 16);
     this.laUser_approved.Name = "laUser_approved";
     this.laUser_approved.Size = new System.Drawing.Size(39, 13);
     this.laUser_approved.TabIndex = 3;
     this.laUser_approved.Text = "[user]";
     //
     // label13
     //
     this.label13.AutoSize = true;
     this.label13.Location = new System.Drawing.Point(103, 16);
     this.label13.Name = "label13";
     this.label13.Size = new System.Drawing.Size(46, 13);
     this.label13.TabIndex = 2;
     this.label13.Text = "Fecha:";
     //
     // label7
     //
     this.label7.AutoSize = true;
     this.label7.Location = new System.Drawing.Point(6, 16);
     this.label7.Name = "label7";
     this.label7.Size = new System.Drawing.Size(54, 13);
     this.label7.TabIndex = 2;
     this.label7.Text = "Usuario:";
     //
     // paAuthorization
     //
     this.paAuthorization.Controls.Add(this.ucSign1);
     this.paAuthorization.Dock = System.Windows.Forms.DockStyle.Right;
     this.paAuthorization.Location = new System.Drawing.Point(811, 0);
     this.paAuthorization.Name = "paAuthorization";
     this.paAuthorization.Padding = new System.Windows.Forms.Padding(0, 19, 5, 14);
     this.paAuthorization.Size = new System.Drawing.Size(174, 49);
     this.paAuthorization.TabIndex = 5;
     this.paAuthorization.Visible = false;
     //
     // ucSign1
     //
     this.ucSign1.Location = new System.Drawing.Point(8, 5);
     this.ucSign1.Margin = new System.Windows.Forms.Padding(0);
     this.ucSign1.Name = "ucSign1";
     this.ucSign1.Pwd = null;
     this.ucSign1.Size = new System.Drawing.Size(160, 39);
     this.ucSign1.TabIndex = 13;
     this.ucSign1.Title = "Firmar";
     this.ucSign1.OnSign += new LimsProject.sign(this.ucSign1_OnSign);
     //
     // gbReview
     //
     this.gbReview.Controls.Add(this.laDate_revised);
     this.gbReview.Controls.Add(this.laUser_revised);
     this.gbReview.Controls.Add(this.label28);
     this.gbReview.Controls.Add(this.label29);
     this.gbReview.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.gbReview.Location = new System.Drawing.Point(284, 6);
     this.gbReview.Name = "gbReview";
     this.gbReview.Size = new System.Drawing.Size(269, 38);
     this.gbReview.TabIndex = 4;
     this.gbReview.TabStop = false;
     this.gbReview.Text = "Revisión";
     this.gbReview.Visible = false;
     //
     // laDate_revised
     //
     this.laDate_revised.AutoSize = true;
     this.laDate_revised.ForeColor = System.Drawing.Color.DarkGoldenrod;
     this.laDate_revised.Location = new System.Drawing.Point(158, 16);
     this.laDate_revised.Name = "laDate_revised";
     this.laDate_revised.Size = new System.Drawing.Size(47, 13);
     this.laDate_revised.TabIndex = 3;
     this.laDate_revised.Text = "[fecha]";
     //
     // laUser_revised
     //
     this.laUser_revised.AutoSize = true;
     this.laUser_revised.ForeColor = System.Drawing.Color.DarkGoldenrod;
     this.laUser_revised.Location = new System.Drawing.Point(57, 16);
     this.laUser_revised.Name = "laUser_revised";
     this.laUser_revised.Size = new System.Drawing.Size(39, 13);
     this.laUser_revised.TabIndex = 3;
     this.laUser_revised.Text = "[user]";
     //
     // label28
     //
     this.label28.AutoSize = true;
     this.label28.Location = new System.Drawing.Point(112, 16);
     this.label28.Name = "label28";
     this.label28.Size = new System.Drawing.Size(46, 13);
     this.label28.TabIndex = 2;
     this.label28.Text = "Fecha:";
     //
     // label29
     //
     this.label29.AutoSize = true;
     this.label29.Location = new System.Drawing.Point(5, 16);
     this.label29.Name = "label29";
     this.label29.Size = new System.Drawing.Size(54, 13);
     this.label29.TabIndex = 2;
     this.label29.Text = "Usuario:";
     //
     // tbStd
     //
     this.tbStd.EditValue = new decimal(new int[] {
     0,
     0,
     0,
     0});
     this.tbStd.Location = new System.Drawing.Point(62, 28);
     this.tbStd.Name = "tbStd";
     this.tbStd.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Ellipsis, "", -1, true, false, false, DevExpress.Utils.HorzAlignment.Center, null)});
     this.tbStd.Size = new System.Drawing.Size(57, 20);
     this.tbStd.TabIndex = 1;
     this.tbStd.Leave += new System.EventHandler(this.tbStd_Leave);
     //
     // tbAbs
     //
     this.tbAbs.EditValue = new decimal(new int[] {
     0,
     0,
     0,
     0});
     this.tbAbs.Location = new System.Drawing.Point(62, 5);
     this.tbAbs.Name = "tbAbs";
     this.tbAbs.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Ellipsis, "", -1, true, false, false, DevExpress.Utils.HorzAlignment.Center, null)});
     this.tbAbs.Size = new System.Drawing.Size(57, 20);
     this.tbAbs.TabIndex = 0;
     this.tbAbs.Leave += new System.EventHandler(this.tbAbs_Leave);
     //
     // btRegAbsStd
     //
     this.btRegAbsStd.Location = new System.Drawing.Point(125, 26);
     this.btRegAbsStd.Name = "btRegAbsStd";
     this.btRegAbsStd.Size = new System.Drawing.Size(61, 23);
     this.btRegAbsStd.TabIndex = 2;
     this.btRegAbsStd.Text = "Registrar";
     this.btRegAbsStd.Click += new System.EventHandler(this.btRegAbsStd_Click);
     //
     // label4
     //
     this.label4.AutoSize = true;
     this.label4.Location = new System.Drawing.Point(10, 31);
     this.label4.Name = "label4";
     this.label4.Size = new System.Drawing.Size(45, 13);
     this.label4.TabIndex = 2;
     this.label4.Text = "Std Ver:";
     //
     // panel6
     //
     this.panel6.Controls.Add(this.tbTitle);
     this.panel6.Controls.Add(this.label16);
     this.panel6.Controls.Add(this.tbCodMethod);
     this.panel6.Controls.Add(this.tbAbbreviation);
     this.panel6.Controls.Add(this.label12);
     this.panel6.Dock = System.Windows.Forms.DockStyle.Right;
     this.panel6.Location = new System.Drawing.Point(375, 2);
     this.panel6.Name = "panel6";
     this.panel6.Size = new System.Drawing.Size(434, 43);
     this.panel6.TabIndex = 14;
     //
     // tbTitle
     //
     this.tbTitle.Location = new System.Drawing.Point(137, 6);
     this.tbTitle.Name = "tbTitle";
     this.tbTitle.Properties.ReadOnly = true;
     this.tbTitle.Size = new System.Drawing.Size(288, 33);
     this.tbTitle.TabIndex = 6;
     this.tbTitle.TabStop = false;
     //
     // label16
     //
     this.label16.AutoSize = true;
     this.label16.Location = new System.Drawing.Point(71, 4);
     this.label16.Name = "label16";
     this.label16.Size = new System.Drawing.Size(61, 13);
     this.label16.TabIndex = 8;
     this.label16.Text = "Abreviatura";
     //
     // tbCodMethod
     //
     this.tbCodMethod.Location = new System.Drawing.Point(4, 19);
     this.tbCodMethod.Name = "tbCodMethod";
     this.tbCodMethod.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Ellipsis, "", -1, true, true, true, DevExpress.Utils.HorzAlignment.Center, null)});
     this.tbCodMethod.Properties.ReadOnly = true;
     this.tbCodMethod.Size = new System.Drawing.Size(61, 20);
     this.tbCodMethod.TabIndex = 13;
     this.tbCodMethod.TabStop = false;
     this.tbCodMethod.ButtonClick += new DevExpress.XtraEditors.Controls.ButtonPressedEventHandler(this.tbCodMethod_ButtonClick);
     //
     // tbAbbreviation
     //
     this.tbAbbreviation.Location = new System.Drawing.Point(66, 19);
     this.tbAbbreviation.Name = "tbAbbreviation";
     this.tbAbbreviation.Properties.ReadOnly = true;
     this.tbAbbreviation.Size = new System.Drawing.Size(70, 20);
     this.tbAbbreviation.TabIndex = 7;
     this.tbAbbreviation.TabStop = false;
     //
     // label12
     //
     this.label12.AutoSize = true;
     this.label12.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label12.Location = new System.Drawing.Point(15, 4);
     this.label12.Name = "label12";
     this.label12.Size = new System.Drawing.Size(40, 13);
     this.label12.TabIndex = 1;
     this.label12.Text = "Código";
     //
     // panel4
     //
     this.panel4.Controls.Add(this.ucSignCloseTray);
     this.panel4.Dock = System.Windows.Forms.DockStyle.Right;
     this.panel4.Location = new System.Drawing.Point(809, 2);
     this.panel4.Name = "panel4";
     this.panel4.Size = new System.Drawing.Size(170, 43);
     this.panel4.TabIndex = 12;
     //
     // ucSignCloseTray
     //
     this.ucSignCloseTray.Location = new System.Drawing.Point(6, 1);
     this.ucSignCloseTray.Margin = new System.Windows.Forms.Padding(0);
     this.ucSignCloseTray.Name = "ucSignCloseTray";
     this.ucSignCloseTray.Pwd = null;
     this.ucSignCloseTray.Size = new System.Drawing.Size(158, 40);
     this.ucSignCloseTray.TabIndex = 12;
     this.ucSignCloseTray.Title = "Cerrar bandeja";
     this.ucSignCloseTray.OnSign += new LimsProject.sign(this.ucSignCloseTray_OnSign);
     //
     // laTitleModule
     //
     this.laTitleModule.AutoSize = true;
     this.laTitleModule.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.laTitleModule.Location = new System.Drawing.Point(0, 1);
     this.laTitleModule.Margin = new System.Windows.Forms.Padding(0);
     this.laTitleModule.Name = "laTitleModule";
     this.laTitleModule.Size = new System.Drawing.Size(57, 20);
     this.laTitleModule.TabIndex = 10;
     this.laTitleModule.Text = "label7";
     //
     // label5
     //
     this.label5.AutoSize = true;
     this.label5.Location = new System.Drawing.Point(10, 8);
     this.label5.Name = "label5";
     this.label5.Size = new System.Drawing.Size(53, 13);
     this.label5.TabIndex = 2;
     this.label5.Text = "Abs1 Std:";
     //
     // tbUnitMeasure
     //
     this.tbUnitMeasure.Location = new System.Drawing.Point(284, 28);
     this.tbUnitMeasure.Name = "tbUnitMeasure";
     this.tbUnitMeasure.Properties.ReadOnly = true;
     this.tbUnitMeasure.Size = new System.Drawing.Size(31, 20);
     this.tbUnitMeasure.TabIndex = 9;
     this.tbUnitMeasure.TabStop = false;
     //
     // tbLawMri
     //
     this.tbLawMri.Location = new System.Drawing.Point(225, 28);
     this.tbLawMri.Name = "tbLawMri";
     this.tbLawMri.Properties.ReadOnly = true;
     this.tbLawMri.Size = new System.Drawing.Size(56, 20);
     this.tbLawMri.TabIndex = 9;
     this.tbLawMri.TabStop = false;
     //
     // tbSdMr
     //
     this.tbSdMr.Location = new System.Drawing.Point(353, 28);
     this.tbSdMr.Name = "tbSdMr";
     this.tbSdMr.Properties.ReadOnly = true;
     this.tbSdMr.Size = new System.Drawing.Size(75, 20);
     this.tbSdMr.TabIndex = 9;
     this.tbSdMr.TabStop = false;
     //
     // tbSdBlk
     //
     this.tbSdBlk.Location = new System.Drawing.Point(353, 5);
     this.tbSdBlk.Name = "tbSdBlk";
     this.tbSdBlk.Properties.ReadOnly = true;
     this.tbSdBlk.Size = new System.Drawing.Size(75, 20);
     this.tbSdBlk.TabIndex = 9;
     this.tbSdBlk.TabStop = false;
     //
     // tbMri
     //
     this.tbMri.Location = new System.Drawing.Point(225, 5);
     this.tbMri.Name = "tbMri";
     this.tbMri.Properties.ReadOnly = true;
     this.tbMri.Size = new System.Drawing.Size(56, 20);
     this.tbMri.TabIndex = 9;
     this.tbMri.TabStop = false;
     //
     // label18
     //
     this.label18.AutoSize = true;
     this.label18.Location = new System.Drawing.Point(194, 31);
     this.label18.Name = "label18";
     this.label18.Size = new System.Drawing.Size(27, 13);
     this.label18.TabIndex = 4;
     this.label18.Text = "Ley:";
     //
     // label15
     //
     this.label15.AutoSize = true;
     this.label15.Location = new System.Drawing.Point(434, 31);
     this.label15.Name = "label15";
     this.label15.Size = new System.Drawing.Size(77, 13);
     this.label15.TabIndex = 4;
     this.label15.Text = "Error permitido:";
     //
     // tbErrorAllowed
     //
     this.tbErrorAllowed.Location = new System.Drawing.Point(514, 28);
     this.tbErrorAllowed.Name = "tbErrorAllowed";
     this.tbErrorAllowed.Properties.ReadOnly = true;
     this.tbErrorAllowed.Size = new System.Drawing.Size(52, 20);
     this.tbErrorAllowed.TabIndex = 5;
     this.tbErrorAllowed.TabStop = false;
     //
     // label20
     //
     this.label20.AutoSize = true;
     this.label20.Location = new System.Drawing.Point(320, 8);
     this.label20.Name = "label20";
     this.label20.Size = new System.Drawing.Size(31, 13);
     this.label20.TabIndex = 2;
     this.label20.Text = "LRB:";
     //
     // label19
     //
     this.label19.AutoSize = true;
     this.label19.Location = new System.Drawing.Point(320, 31);
     this.label19.Name = "label19";
     this.label19.Size = new System.Drawing.Size(30, 13);
     this.label19.TabIndex = 2;
     this.label19.Text = "MRI:";
     //
     // label17
     //
     this.label17.AutoSize = true;
     this.label17.Location = new System.Drawing.Point(194, 9);
     this.label17.Name = "label17";
     this.label17.Size = new System.Drawing.Size(24, 13);
     this.label17.TabIndex = 2;
     this.label17.Text = "Mri:";
     //
     // deDate_allowed_error
     //
     this.deDate_allowed_error.EditValue = null;
     this.deDate_allowed_error.Location = new System.Drawing.Point(477, 5);
     this.deDate_allowed_error.Name = "deDate_allowed_error";
     this.deDate_allowed_error.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.deDate_allowed_error.Properties.ReadOnly = true;
     this.deDate_allowed_error.Size = new System.Drawing.Size(89, 20);
     this.deDate_allowed_error.TabIndex = 3;
     this.deDate_allowed_error.TabStop = false;
     //
     // label14
     //
     this.label14.AutoSize = true;
     this.label14.Location = new System.Drawing.Point(434, 6);
     this.label14.Name = "label14";
     this.label14.Size = new System.Drawing.Size(40, 13);
     this.label14.TabIndex = 2;
     this.label14.Text = "Fecha:";
     //
     // panelControl1
     //
     this.panelControl1.Controls.Add(this.paQaqc2);
     this.panelControl1.Controls.Add(this.paQaqc1);
     this.panelControl1.Dock = System.Windows.Forms.DockStyle.Top;
     this.panelControl1.Location = new System.Drawing.Point(231, 0);
     this.panelControl1.Name = "panelControl1";
     this.panelControl1.Size = new System.Drawing.Size(985, 103);
     this.panelControl1.TabIndex = 11;
     this.panelControl1.Text = "panelControl1";
     //
     // paQaqc2
     //
     this.paQaqc2.Controls.Add(this.deDate_allowed_error);
     this.paQaqc2.Controls.Add(this.tbSdBlk);
     this.paQaqc2.Controls.Add(this.tbStd);
     this.paQaqc2.Controls.Add(this.tbMri);
     this.paQaqc2.Controls.Add(this.tbSdMr);
     this.paQaqc2.Controls.Add(this.tbAbs);
     this.paQaqc2.Controls.Add(this.label18);
     this.paQaqc2.Controls.Add(this.label14);
     this.paQaqc2.Controls.Add(this.tbLawMri);
     this.paQaqc2.Controls.Add(this.btRegAbsStd);
     this.paQaqc2.Controls.Add(this.label15);
     this.paQaqc2.Controls.Add(this.label17);
     this.paQaqc2.Controls.Add(this.tbUnitMeasure);
     this.paQaqc2.Controls.Add(this.label4);
     this.paQaqc2.Controls.Add(this.tbErrorAllowed);
     this.paQaqc2.Controls.Add(this.label19);
     this.paQaqc2.Controls.Add(this.label5);
     this.paQaqc2.Controls.Add(this.label20);
     this.paQaqc2.Dock = System.Windows.Forms.DockStyle.Fill;
     this.paQaqc2.Enabled = false;
     this.paQaqc2.Location = new System.Drawing.Point(2, 49);
     this.paQaqc2.Name = "paQaqc2";
     this.paQaqc2.Size = new System.Drawing.Size(981, 52);
     this.paQaqc2.TabIndex = 17;
     this.paQaqc2.Text = "paQaqc2";
     //
     // paQaqc1
     //
     this.paQaqc1.Appearance.BackColor = System.Drawing.Color.LightSteelBlue;
     this.paQaqc1.Appearance.Options.UseBackColor = true;
     this.paQaqc1.Controls.Add(this.panel6);
     this.paQaqc1.Controls.Add(this.panel4);
     this.paQaqc1.Controls.Add(this.panel7);
     this.paQaqc1.Dock = System.Windows.Forms.DockStyle.Top;
     this.paQaqc1.Location = new System.Drawing.Point(2, 2);
     this.paQaqc1.Name = "paQaqc1";
     this.paQaqc1.Size = new System.Drawing.Size(981, 47);
     this.paQaqc1.TabIndex = 16;
     this.paQaqc1.Text = "paTitle2";
     //
     // panel7
     //
     this.panel7.Controls.Add(this.laTitleModule);
     this.panel7.Dock = System.Windows.Forms.DockStyle.Fill;
     this.panel7.Location = new System.Drawing.Point(2, 2);
     this.panel7.Name = "panel7";
     this.panel7.Size = new System.Drawing.Size(977, 43);
     this.panel7.TabIndex = 15;
     //
     // img32x32
     //
     this.img32x32.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("img32x32.ImageStream")));
     this.img32x32.TransparentColor = System.Drawing.Color.Transparent;
     this.img32x32.Images.SetKeyName(0, "add_file.png");
     //
     // FormNewQaQc
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(1230, 643);
     this.Name = "FormNewQaQc";
     this.Text = "Módulo de QaQc";
     this.Load += new System.EventHandler(this.FormQaQc_Load);
     this.paTitleSearch.ResumeLayout(false);
     this.paTopBasicButtons.ResumeLayout(false);
     this.paTopSearch.ResumeLayout(false);
     this.paBottomSearch.ResumeLayout(false);
     this.panel1.ResumeLayout(false);
     this.paSearchGen.ResumeLayout(false);
     this.paSearchGen.PerformLayout();
     this.panel2.ResumeLayout(false);
     this.paInferior.ResumeLayout(false);
     this.paTitulo.ResumeLayout(false);
     this.paCentral.ResumeLayout(false);
     this.thePanelTab1.ResumeLayout(false);
     this.tpDatos.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.bgvBatchCalc1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gcBachCalc)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.bgvBatchCalc3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.bgvBatchCalc4)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.bgvBatchCalc2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repQaqc_Previous_par)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repDes_Sample)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repCheckDilution)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repQaqc_ShowPopup)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repQaqc_parity)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repQaqc_approve)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repQaqc_review)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repQaqc_StatusResult)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repQaqc_ShowObs)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repQaqc_HasRetest)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repProcedence2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.treeTrayWaiting)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repRepetition)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repDate)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repHour)).EndInit();
     this.expandablePanel1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.tabTreeQaqc)).EndInit();
     this.tabTreeQaqc.ResumeLayout(false);
     this.xtraTabPage4.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).EndInit();
     this.groupControl1.ResumeLayout(false);
     this.groupControl1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.cbAuthorizationWait.Properties)).EndInit();
     this.xtraTabPage5.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.treeTrayFinished)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemLookUpEdit1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.paListAuthorization)).EndInit();
     this.paListAuthorization.ResumeLayout(false);
     this.paListAuthorization.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.cbAuthorizationApproved.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.paHistoryFilter)).EndInit();
     this.paHistoryFilter.ResumeLayout(false);
     this.paHistoryFilter.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.txYear.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txSample.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cbTypeSample.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cbCompany.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ckSample.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ckCompany.Properties)).EndInit();
     this.panel9.ResumeLayout(false);
     this.panel9.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.deFrom.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.deUntil.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.paButtons)).EndInit();
     this.paButtons.ResumeLayout(false);
     this.panel5.ResumeLayout(false);
     this.gbApprove.ResumeLayout(false);
     this.gbApprove.PerformLayout();
     this.paAuthorization.ResumeLayout(false);
     this.gbReview.ResumeLayout(false);
     this.gbReview.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.tbStd.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.tbAbs.Properties)).EndInit();
     this.panel6.ResumeLayout(false);
     this.panel6.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.tbTitle.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.tbCodMethod.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.tbAbbreviation.Properties)).EndInit();
     this.panel4.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.tbUnitMeasure.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.tbLawMri.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.tbSdMr.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.tbSdBlk.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.tbMri.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.tbErrorAllowed.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.deDate_allowed_error.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).EndInit();
     this.panelControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.paQaqc2)).EndInit();
     this.paQaqc2.ResumeLayout(false);
     this.paQaqc2.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.paQaqc1)).EndInit();
     this.paQaqc1.ResumeLayout(false);
     this.panel7.ResumeLayout(false);
     this.panel7.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(SimpleMapViewer));
     this.simpleButton3 = new DevExpress.XtraEditors.SimpleButton();
     this.simpleButton2 = new DevExpress.XtraEditors.SimpleButton();
     this.gridControl1 = new DevExpress.XtraGrid.GridControl();
     this.contextMenuStrip1 = new System.Windows.Forms.ContextMenuStrip(this.components);
     this.copySelectedCellsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.pasteSelectedCellsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.inOrgininalPositionToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.atCurrentlySelectedLocationToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.editXaxisSymbolToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.editYaxisSymbolToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.smoothSelectionToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.exportMapToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.asPreferredSettingInT5DashboardToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.clearDataToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.gridView1 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.timer1 = new System.Windows.Forms.Timer(this.components);
     this.timer2 = new System.Windows.Forms.Timer(this.components);
     this.toolTipController1 = new DevExpress.Utils.ToolTipController(this.components);
     this.toolStrip1 = new System.Windows.Forms.ToolStrip();
     this.toolStripComboBox1 = new System.Windows.Forms.ToolStripComboBox();
     this.toolStripTextBox1 = new System.Windows.Forms.ToolStripTextBox();
     this.toolStripButton3 = new System.Windows.Forms.ToolStripButton();
     this.toolStripSeparator4 = new System.Windows.Forms.ToolStripSeparator();
     this.toolStripLabel3 = new System.Windows.Forms.ToolStripLabel();
     this.toolStripComboBox3 = new System.Windows.Forms.ToolStripComboBox();
     this.toolStripSeparator2 = new System.Windows.Forms.ToolStripSeparator();
     this.toolStripButton6 = new System.Windows.Forms.ToolStripButton();
     this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
     this.toolStripLabel1 = new System.Windows.Forms.ToolStripLabel();
     this.toolStripComboBox2 = new System.Windows.Forms.ToolStripComboBox();
     this.timer3 = new System.Windows.Forms.Timer(this.components);
     this.timer4 = new System.Windows.Forms.Timer(this.components);
     this.btnSaveToRAM = new DevExpress.XtraEditors.SimpleButton();
     this.btnReadFromRAM = new DevExpress.XtraEditors.SimpleButton();
     this.simpleButton1 = new DevExpress.XtraEditors.SimpleButton();
     this.lockCellsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.unlockCellsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     ((System.ComponentModel.ISupportInitialize)(this.gridControl1)).BeginInit();
     this.contextMenuStrip1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).BeginInit();
     this.toolStrip1.SuspendLayout();
     this.SuspendLayout();
     //
     // simpleButton3
     //
     this.simpleButton3.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.simpleButton3.Enabled = false;
     this.simpleButton3.Location = new System.Drawing.Point(5, 638);
     this.simpleButton3.Name = "simpleButton3";
     this.simpleButton3.Size = new System.Drawing.Size(92, 23);
     this.simpleButton3.TabIndex = 9;
     this.simpleButton3.Text = "Undo changes";
     this.simpleButton3.Click += new System.EventHandler(this.simpleButton3_Click);
     //
     // simpleButton2
     //
     this.simpleButton2.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.simpleButton2.Enabled = false;
     this.simpleButton2.Location = new System.Drawing.Point(791, 638);
     this.simpleButton2.Name = "simpleButton2";
     this.simpleButton2.Size = new System.Drawing.Size(75, 23);
     this.simpleButton2.TabIndex = 8;
     this.simpleButton2.Text = "Save";
     this.simpleButton2.Click += new System.EventHandler(this.simpleButton2_Click);
     //
     // gridControl1
     //
     this.gridControl1.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.gridControl1.ContextMenuStrip = this.contextMenuStrip1;
     this.gridControl1.Font = new System.Drawing.Font("Tahoma", 6.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.gridControl1.Location = new System.Drawing.Point(0, 28);
     this.gridControl1.MainView = this.gridView1;
     this.gridControl1.Name = "gridControl1";
     this.gridControl1.Size = new System.Drawing.Size(876, 604);
     this.gridControl1.TabIndex = 0;
     this.gridControl1.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridView1});
     //
     // contextMenuStrip1
     //
     this.toolTipController1.SetAllowHtmlText(this.contextMenuStrip1, DevExpress.Utils.DefaultBoolean.False);
     this.contextMenuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.copySelectedCellsToolStripMenuItem,
     this.pasteSelectedCellsToolStripMenuItem,
     this.editXaxisSymbolToolStripMenuItem,
     this.editYaxisSymbolToolStripMenuItem,
     this.smoothSelectionToolStripMenuItem,
     this.exportMapToolStripMenuItem,
     this.clearDataToolStripMenuItem,
     this.lockCellsToolStripMenuItem,
     this.unlockCellsToolStripMenuItem});
     this.contextMenuStrip1.Name = "contextMenuStrip1";
     this.contextMenuStrip1.Size = new System.Drawing.Size(179, 224);
     this.toolTipController1.SetSuperTip(this.contextMenuStrip1, null);
     this.contextMenuStrip1.Opening += new System.ComponentModel.CancelEventHandler(this.contextMenuStrip1_Opening);
     //
     // copySelectedCellsToolStripMenuItem
     //
     this.copySelectedCellsToolStripMenuItem.Name = "copySelectedCellsToolStripMenuItem";
     this.copySelectedCellsToolStripMenuItem.Size = new System.Drawing.Size(178, 22);
     this.copySelectedCellsToolStripMenuItem.Text = "Copy selected cells";
     this.copySelectedCellsToolStripMenuItem.Click += new System.EventHandler(this.copySelectedCellsToolStripMenuItem_Click);
     //
     // pasteSelectedCellsToolStripMenuItem
     //
     this.pasteSelectedCellsToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.inOrgininalPositionToolStripMenuItem,
     this.atCurrentlySelectedLocationToolStripMenuItem});
     this.pasteSelectedCellsToolStripMenuItem.Name = "pasteSelectedCellsToolStripMenuItem";
     this.pasteSelectedCellsToolStripMenuItem.Size = new System.Drawing.Size(178, 22);
     this.pasteSelectedCellsToolStripMenuItem.Text = "Paste selected cells";
     //
     // inOrgininalPositionToolStripMenuItem
     //
     this.inOrgininalPositionToolStripMenuItem.Name = "inOrgininalPositionToolStripMenuItem";
     this.inOrgininalPositionToolStripMenuItem.Size = new System.Drawing.Size(225, 22);
     this.inOrgininalPositionToolStripMenuItem.Text = "At original position";
     this.inOrgininalPositionToolStripMenuItem.Click += new System.EventHandler(this.inOrgininalPositionToolStripMenuItem_Click);
     //
     // atCurrentlySelectedLocationToolStripMenuItem
     //
     this.atCurrentlySelectedLocationToolStripMenuItem.Name = "atCurrentlySelectedLocationToolStripMenuItem";
     this.atCurrentlySelectedLocationToolStripMenuItem.Size = new System.Drawing.Size(225, 22);
     this.atCurrentlySelectedLocationToolStripMenuItem.Text = "At currently selected location";
     this.atCurrentlySelectedLocationToolStripMenuItem.Click += new System.EventHandler(this.atCurrentlySelectedLocationToolStripMenuItem_Click);
     //
     // editXaxisSymbolToolStripMenuItem
     //
     this.editXaxisSymbolToolStripMenuItem.Name = "editXaxisSymbolToolStripMenuItem";
     this.editXaxisSymbolToolStripMenuItem.Size = new System.Drawing.Size(178, 22);
     this.editXaxisSymbolToolStripMenuItem.Text = "Edit x-axis";
     this.editXaxisSymbolToolStripMenuItem.Click += new System.EventHandler(this.editXaxisSymbolToolStripMenuItem_Click);
     //
     // editYaxisSymbolToolStripMenuItem
     //
     this.editYaxisSymbolToolStripMenuItem.Name = "editYaxisSymbolToolStripMenuItem";
     this.editYaxisSymbolToolStripMenuItem.Size = new System.Drawing.Size(178, 22);
     this.editYaxisSymbolToolStripMenuItem.Text = "Edit y-axis";
     this.editYaxisSymbolToolStripMenuItem.Click += new System.EventHandler(this.editYaxisSymbolToolStripMenuItem_Click);
     //
     // smoothSelectionToolStripMenuItem
     //
     this.smoothSelectionToolStripMenuItem.Name = "smoothSelectionToolStripMenuItem";
     this.smoothSelectionToolStripMenuItem.Size = new System.Drawing.Size(178, 22);
     this.smoothSelectionToolStripMenuItem.Text = "Smooth selection";
     this.smoothSelectionToolStripMenuItem.Click += new System.EventHandler(this.smoothSelectionToolStripMenuItem_Click);
     //
     // exportMapToolStripMenuItem
     //
     this.exportMapToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.asPreferredSettingInT5DashboardToolStripMenuItem});
     this.exportMapToolStripMenuItem.Name = "exportMapToolStripMenuItem";
     this.exportMapToolStripMenuItem.Size = new System.Drawing.Size(178, 22);
     this.exportMapToolStripMenuItem.Text = "Export map";
     this.exportMapToolStripMenuItem.Visible = false;
     //
     // asPreferredSettingInT5DashboardToolStripMenuItem
     //
     this.asPreferredSettingInT5DashboardToolStripMenuItem.Name = "asPreferredSettingInT5DashboardToolStripMenuItem";
     this.asPreferredSettingInT5DashboardToolStripMenuItem.Size = new System.Drawing.Size(260, 22);
     this.asPreferredSettingInT5DashboardToolStripMenuItem.Text = "As preferred setting in T5Dashboard";
     this.asPreferredSettingInT5DashboardToolStripMenuItem.Click += new System.EventHandler(this.asPreferredSettingInT5DashboardToolStripMenuItem_Click);
     //
     // clearDataToolStripMenuItem
     //
     this.clearDataToolStripMenuItem.Name = "clearDataToolStripMenuItem";
     this.clearDataToolStripMenuItem.Size = new System.Drawing.Size(178, 22);
     this.clearDataToolStripMenuItem.Text = "Clear data";
     this.clearDataToolStripMenuItem.Click += new System.EventHandler(this.clearDataToolStripMenuItem_Click);
     //
     // gridView1
     //
     this.gridView1.GridControl = this.gridControl1;
     this.gridView1.Name = "gridView1";
     this.gridView1.OptionsCustomization.AllowColumnMoving = false;
     this.gridView1.OptionsCustomization.AllowFilter = false;
     this.gridView1.OptionsCustomization.AllowGroup = false;
     this.gridView1.OptionsCustomization.AllowSort = false;
     this.gridView1.OptionsNavigation.EnterMoveNextColumn = true;
     this.gridView1.OptionsSelection.EnableAppearanceFocusedRow = false;
     this.gridView1.OptionsSelection.MultiSelect = true;
     this.gridView1.OptionsSelection.MultiSelectMode = DevExpress.XtraGrid.Views.Grid.GridMultiSelectMode.CellSelect;
     this.gridView1.OptionsView.ShowGroupPanel = false;
     this.gridView1.SelectionChanged += new DevExpress.Data.SelectionChangedEventHandler(this.gridView1_SelectionChanged_1);
     this.gridView1.ValidatingEditor += new DevExpress.XtraEditors.Controls.BaseContainerValidateEditorEventHandler(this.gridView1_ValidatingEditor);
     this.gridView1.CustomDrawRowIndicator += new DevExpress.XtraGrid.Views.Grid.RowIndicatorCustomDrawEventHandler(this.gridView1_CustomDrawRowIndicator);
     this.gridView1.CellValueChanged += new DevExpress.XtraGrid.Views.Base.CellValueChangedEventHandler(this.gridView1_CellValueChanged);
     this.gridView1.KeyDown += new System.Windows.Forms.KeyEventHandler(this.gridView1_KeyDown);
     this.gridView1.CellValueChanging += new DevExpress.XtraGrid.Views.Base.CellValueChangedEventHandler(this.gridView1_CellValueChanging);
     this.gridView1.CustomDrawCell += new DevExpress.XtraGrid.Views.Base.RowCellCustomDrawEventHandler(this.gridView1_CustomDrawCell);
     this.gridView1.MouseMove += new System.Windows.Forms.MouseEventHandler(this.gridView1_MouseMove);
     this.gridView1.ShownEditor += new System.EventHandler(this.gridView1_ShownEditor);
     this.gridView1.RowUpdated += new DevExpress.XtraGrid.Views.Base.RowObjectEventHandler(this.gridView1_RowUpdated);
     this.gridView1.ShowingEditor += new System.ComponentModel.CancelEventHandler(this.gridView1_ShowingEditor);
     this.gridView1.HiddenEditor += new System.EventHandler(this.gridView1_HiddenEditor);
     this.gridView1.CustomDrawColumnHeader += new DevExpress.XtraGrid.Views.Grid.ColumnHeaderCustomDrawEventHandler(this.gridView1_CustomDrawColumnHeader);
     //
     // timer1
     //
     this.timer1.Tick += new System.EventHandler(this.timer1_Tick);
     //
     // timer2
     //
     this.timer2.Tick += new System.EventHandler(this.timer2_Tick);
     //
     // toolTipController1
     //
     this.toolTipController1.Rounded = true;
     //
     // toolStrip1
     //
     this.toolTipController1.SetAllowHtmlText(this.toolStrip1, DevExpress.Utils.DefaultBoolean.False);
     this.toolStrip1.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.toolStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.toolStripComboBox1,
     this.toolStripTextBox1,
     this.toolStripButton3,
     this.toolStripSeparator4,
     this.toolStripLabel3,
     this.toolStripComboBox3,
     this.toolStripSeparator2,
     this.toolStripButton6,
     this.toolStripSeparator1,
     this.toolStripLabel1,
     this.toolStripComboBox2});
     this.toolStrip1.Location = new System.Drawing.Point(0, 0);
     this.toolStrip1.Name = "toolStrip1";
     this.toolStrip1.Size = new System.Drawing.Size(876, 25);
     this.toolTipController1.SetSuperTip(this.toolStrip1, null);
     this.toolStrip1.TabIndex = 10;
     this.toolStrip1.Text = "toolStrip1";
     //
     // toolStripComboBox1
     //
     this.toolStripComboBox1.AutoCompleteMode = System.Windows.Forms.AutoCompleteMode.Suggest;
     this.toolStripComboBox1.AutoCompleteSource = System.Windows.Forms.AutoCompleteSource.ListItems;
     this.toolStripComboBox1.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.toolStripComboBox1.Items.AddRange(new object[] {
     "Addition",
     "Multiply",
     "Divide",
     "Fill"});
     this.toolStripComboBox1.Name = "toolStripComboBox1";
     this.toolStripComboBox1.Size = new System.Drawing.Size(121, 25);
     //
     // toolStripTextBox1
     //
     this.toolStripTextBox1.Name = "toolStripTextBox1";
     this.toolStripTextBox1.Size = new System.Drawing.Size(60, 25);
     this.toolStripTextBox1.Text = "2";
     this.toolStripTextBox1.TextBoxTextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     //
     // toolStripButton3
     //
     this.toolStripButton3.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.toolStripButton3.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButton3.Image")));
     this.toolStripButton3.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.toolStripButton3.Name = "toolStripButton3";
     this.toolStripButton3.Size = new System.Drawing.Size(23, 22);
     this.toolStripButton3.Text = "Execute";
     this.toolStripButton3.Click += new System.EventHandler(this.toolStripButton3_Click);
     //
     // toolStripSeparator4
     //
     this.toolStripSeparator4.Name = "toolStripSeparator4";
     this.toolStripSeparator4.Size = new System.Drawing.Size(6, 25);
     //
     // toolStripLabel3
     //
     this.toolStripLabel3.Name = "toolStripLabel3";
     this.toolStripLabel3.Size = new System.Drawing.Size(51, 22);
     this.toolStripLabel3.Text = "Viewtype";
     //
     // toolStripComboBox3
     //
     this.toolStripComboBox3.AutoCompleteMode = System.Windows.Forms.AutoCompleteMode.Suggest;
     this.toolStripComboBox3.AutoCompleteSource = System.Windows.Forms.AutoCompleteSource.ListItems;
     this.toolStripComboBox3.Items.AddRange(new object[] {
     "Hex view ",
     "Decimal view ",
     "Easy view",
     "ASCII",
     "Decimal view (3 bar sensor)",
     "Easy view (3 bar sensor)",
     "Decimal view (3.5 bar sensor)",
     "Easy view (3.5 bar sensor)",
     "Decimal view (4 bar sensor)",
     "Easy view (4 bar sensor)",
     "Decimal view (5 bar sensor)",
     "Easy view (5 bar sensor)"});
     this.toolStripComboBox3.Name = "toolStripComboBox3";
     this.toolStripComboBox3.Size = new System.Drawing.Size(160, 25);
     this.toolStripComboBox3.SelectedIndexChanged += new System.EventHandler(this.toolStripComboBox3_SelectedIndexChanged);
     this.toolStripComboBox3.KeyDown += new System.Windows.Forms.KeyEventHandler(this.toolStripComboBox3_KeyDown);
     //
     // toolStripSeparator2
     //
     this.toolStripSeparator2.Name = "toolStripSeparator2";
     this.toolStripSeparator2.Size = new System.Drawing.Size(6, 25);
     //
     // toolStripButton6
     //
     this.toolStripButton6.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.toolStripButton6.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButton6.Image")));
     this.toolStripButton6.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.toolStripButton6.Name = "toolStripButton6";
     this.toolStripButton6.Size = new System.Drawing.Size(23, 22);
     this.toolStripButton6.Text = "Maximize window";
     this.toolStripButton6.Click += new System.EventHandler(this.toolStripButton6_Click);
     //
     // toolStripSeparator1
     //
     this.toolStripSeparator1.Name = "toolStripSeparator1";
     this.toolStripSeparator1.Size = new System.Drawing.Size(6, 25);
     //
     // toolStripLabel1
     //
     this.toolStripLabel1.Name = "toolStripLabel1";
     this.toolStripLabel1.Size = new System.Drawing.Size(77, 22);
     this.toolStripLabel1.Text = "Axis lock mode";
     //
     // toolStripComboBox2
     //
     this.toolStripComboBox2.AutoCompleteMode = System.Windows.Forms.AutoCompleteMode.Suggest;
     this.toolStripComboBox2.AutoCompleteSource = System.Windows.Forms.AutoCompleteSource.ListItems;
     this.toolStripComboBox2.Items.AddRange(new object[] {
     "Autoscale",
     "Lock to peak in maps",
     "Lock to map limit"});
     this.toolStripComboBox2.Name = "toolStripComboBox2";
     this.toolStripComboBox2.Size = new System.Drawing.Size(121, 25);
     this.toolStripComboBox2.SelectedIndexChanged += new System.EventHandler(this.toolStripComboBox2_SelectedIndexChanged);
     //
     // timer3
     //
     this.timer3.Tick += new System.EventHandler(this.timer3_Tick);
     //
     // timer4
     //
     this.timer4.Enabled = true;
     this.timer4.Interval = 500;
     this.timer4.Tick += new System.EventHandler(this.timer4_Tick);
     //
     // btnSaveToRAM
     //
     this.btnSaveToRAM.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.btnSaveToRAM.Location = new System.Drawing.Point(631, 638);
     this.btnSaveToRAM.Name = "btnSaveToRAM";
     this.btnSaveToRAM.Size = new System.Drawing.Size(75, 23);
     this.btnSaveToRAM.TabIndex = 12;
     this.btnSaveToRAM.Text = "Save to RAM";
     this.btnSaveToRAM.Visible = false;
     this.btnSaveToRAM.Click += new System.EventHandler(this.btnSaveToRAM_Click);
     //
     // btnReadFromRAM
     //
     this.btnReadFromRAM.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.btnReadFromRAM.Location = new System.Drawing.Point(712, 638);
     this.btnReadFromRAM.Name = "btnReadFromRAM";
     this.btnReadFromRAM.Size = new System.Drawing.Size(73, 23);
     this.btnReadFromRAM.TabIndex = 13;
     this.btnReadFromRAM.Text = "Refresh";
     this.btnReadFromRAM.Click += new System.EventHandler(this.btnReadFromRAM_Click);
     //
     // simpleButton1
     //
     this.simpleButton1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.simpleButton1.Location = new System.Drawing.Point(103, 638);
     this.simpleButton1.Name = "simpleButton1";
     this.simpleButton1.Size = new System.Drawing.Size(522, 23);
     this.simpleButton1.TabIndex = 14;
     this.simpleButton1.Text = "Close";
     this.simpleButton1.Click += new System.EventHandler(this.simpleButton1_Click_1);
     //
     // lockCellsToolStripMenuItem
     //
     this.lockCellsToolStripMenuItem.Name = "lockCellsToolStripMenuItem";
     this.lockCellsToolStripMenuItem.Size = new System.Drawing.Size(178, 22);
     this.lockCellsToolStripMenuItem.Text = "Lock cells";
     this.lockCellsToolStripMenuItem.Click += new System.EventHandler(this.lockCellsToolStripMenuItem_Click);
     //
     // unlockCellsToolStripMenuItem
     //
     this.unlockCellsToolStripMenuItem.Name = "unlockCellsToolStripMenuItem";
     this.unlockCellsToolStripMenuItem.Size = new System.Drawing.Size(178, 22);
     this.unlockCellsToolStripMenuItem.Text = "Unlock cells";
     this.unlockCellsToolStripMenuItem.Click += new System.EventHandler(this.unlockCellsToolStripMenuItem_Click);
     //
     // SimpleMapViewer
     //
     this.toolTipController1.SetAllowHtmlText(this, DevExpress.Utils.DefaultBoolean.False);
     this.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.Appearance.Options.UseFont = true;
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.Controls.Add(this.gridControl1);
     this.Controls.Add(this.simpleButton1);
     this.Controls.Add(this.toolStrip1);
     this.Controls.Add(this.simpleButton2);
     this.Controls.Add(this.btnReadFromRAM);
     this.Controls.Add(this.simpleButton3);
     this.Controls.Add(this.btnSaveToRAM);
     this.Name = "SimpleMapViewer";
     this.Size = new System.Drawing.Size(876, 664);
     this.toolTipController1.SetSuperTip(this, null);
     this.VisibleChanged += new System.EventHandler(this.MapViewer_VisibleChanged);
     ((System.ComponentModel.ISupportInitialize)(this.gridControl1)).EndInit();
     this.contextMenuStrip1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).EndInit();
     this.toolStrip1.ResumeLayout(false);
     this.toolStrip1.PerformLayout();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Пример #18
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(MapViewer));
     DevExpress.XtraCharts.XYDiagram xyDiagram1 = new DevExpress.XtraCharts.XYDiagram();
     DevExpress.XtraCharts.Series series1 = new DevExpress.XtraCharts.Series();
     DevExpress.XtraCharts.SeriesPoint seriesPoint1 = new DevExpress.XtraCharts.SeriesPoint(0);
     DevExpress.XtraCharts.LineSeriesView lineSeriesView1 = new DevExpress.XtraCharts.LineSeriesView();
     DevExpress.XtraCharts.PolygonGradientFillOptions polygonGradientFillOptions1 = new DevExpress.XtraCharts.PolygonGradientFillOptions();
     DevExpress.XtraCharts.PointSeriesLabel pointSeriesLabel1 = new DevExpress.XtraCharts.PointSeriesLabel();
     DevExpress.XtraCharts.PointOptions pointOptions1 = new DevExpress.XtraCharts.PointOptions();
     DevExpress.XtraCharts.LineSeriesView lineSeriesView2 = new DevExpress.XtraCharts.LineSeriesView();
     DevExpress.XtraCharts.PointSeriesLabel pointSeriesLabel2 = new DevExpress.XtraCharts.PointSeriesLabel();
     DevExpress.Utils.SuperToolTip superToolTip1 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem1 = new DevExpress.Utils.ToolTipTitleItem();
     this.simpleButton3 = new DevExpress.XtraEditors.SimpleButton();
     this.simpleButton2 = new DevExpress.XtraEditors.SimpleButton();
     this.simpleButton1 = new DevExpress.XtraEditors.SimpleButton();
     this.groupControl2 = new DevExpress.XtraEditors.GroupControl();
     this.lblZaxis = new DevExpress.XtraEditors.LabelControl();
     this.labelControl13 = new DevExpress.XtraEditors.LabelControl();
     this.lblYaxis = new DevExpress.XtraEditors.LabelControl();
     this.lblXaxis = new DevExpress.XtraEditors.LabelControl();
     this.labelControl10 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl11 = new DevExpress.XtraEditors.LabelControl();
     this.lblCategory = new DevExpress.XtraEditors.LabelControl();
     this.lblDescription = new DevExpress.XtraEditors.LabelControl();
     this.lblName = new DevExpress.XtraEditors.LabelControl();
     this.lblLengthValues = new DevExpress.XtraEditors.LabelControl();
     this.lblLengthBytes = new DevExpress.XtraEditors.LabelControl();
     this.lblSRAMAddress = new DevExpress.XtraEditors.LabelControl();
     this.lblFlashAddress = new DevExpress.XtraEditors.LabelControl();
     this.labelControl7 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl6 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl5 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl4 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl3 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl2 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl1 = new DevExpress.XtraEditors.LabelControl();
     this.groupControl1 = new DevExpress.XtraEditors.GroupControl();
     this.splitContainer1 = new System.Windows.Forms.SplitContainer();
     this.panel1 = new System.Windows.Forms.Panel();
     this.popupContainerControl1 = new DevExpress.XtraEditors.PopupContainerControl();
     this.gridControl1 = new DevExpress.XtraGrid.GridControl();
     this.contextMenuStrip1 = new System.Windows.Forms.ContextMenuStrip(this.components);
     this.copySelectedCellsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.pasteSelectedCellsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.inOrgininalPositionToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.atCurrentlySelectedLocationToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.editXaxisSymbolToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.editYaxisSymbolToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.smoothSelectionToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.gridView1 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.xtraTabControl1 = new DevExpress.XtraTab.XtraTabControl();
     this.xtraTabPage1 = new DevExpress.XtraTab.XtraTabPage();
     this.simpleButton4 = new DevExpress.XtraEditors.SimpleButton();
     this.simpleButton5 = new DevExpress.XtraEditors.SimpleButton();
     this.simpleButton6 = new DevExpress.XtraEditors.SimpleButton();
     this.simpleButton7 = new DevExpress.XtraEditors.SimpleButton();
     this.surfaceGraphViewer1 = new SurfaceGraphViewer();
     this.xtraTabPage2 = new DevExpress.XtraTab.XtraTabPage();
     this.labelControl9 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl8 = new DevExpress.XtraEditors.LabelControl();
     this.trackBarControl1 = new DevExpress.XtraEditors.TrackBarControl();
     this.chartControl1 = new DevExpress.XtraCharts.ChartControl();
     this.timer1 = new System.Windows.Forms.Timer(this.components);
     this.timer2 = new System.Windows.Forms.Timer(this.components);
     this.toolTipController1 = new DevExpress.Utils.ToolTipController(this.components);
     this.toolStrip1 = new System.Windows.Forms.ToolStrip();
     this.toolStripButton1 = new System.Windows.Forms.ToolStripButton();
     this.toolStripButton2 = new System.Windows.Forms.ToolStripButton();
     this.toolStripSeparator3 = new System.Windows.Forms.ToolStripSeparator();
     this.toolStripButton4 = new System.Windows.Forms.ToolStripButton();
     this.toolStripButton5 = new System.Windows.Forms.ToolStripButton();
     this.toolStripButton6 = new System.Windows.Forms.ToolStripButton();
     this.toolStripButton7 = new System.Windows.Forms.ToolStripButton();
     this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
     this.toolStripLabel3 = new System.Windows.Forms.ToolStripLabel();
     this.toolStripComboBox3 = new System.Windows.Forms.ToolStripComboBox();
     this.toolStripSeparator2 = new System.Windows.Forms.ToolStripSeparator();
     this.toolStripLabel1 = new System.Windows.Forms.ToolStripLabel();
     this.toolStripComboBox2 = new System.Windows.Forms.ToolStripComboBox();
     this.toolStripLabel2 = new System.Windows.Forms.ToolStripLabel();
     this.toolStripComboBox1 = new System.Windows.Forms.ToolStripComboBox();
     this.toolStripTextBox1 = new System.Windows.Forms.ToolStripTextBox();
     this.toolStripButton3 = new System.Windows.Forms.ToolStripButton();
     this.timer3 = new System.Windows.Forms.Timer(this.components);
     this.timer4 = new System.Windows.Forms.Timer(this.components);
     this.popupContainerEdit1 = new DevExpress.XtraEditors.PopupContainerEdit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl2)).BeginInit();
     this.groupControl2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).BeginInit();
     this.groupControl1.SuspendLayout();
     this.splitContainer1.Panel1.SuspendLayout();
     this.splitContainer1.Panel2.SuspendLayout();
     this.splitContainer1.SuspendLayout();
     this.panel1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.popupContainerControl1)).BeginInit();
     this.popupContainerControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridControl1)).BeginInit();
     this.contextMenuStrip1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.xtraTabControl1)).BeginInit();
     this.xtraTabControl1.SuspendLayout();
     this.xtraTabPage1.SuspendLayout();
     this.xtraTabPage2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.trackBarControl1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.trackBarControl1.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.chartControl1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(xyDiagram1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(series1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(lineSeriesView1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(pointSeriesLabel1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(lineSeriesView2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(pointSeriesLabel2)).BeginInit();
     this.toolStrip1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.popupContainerEdit1.Properties)).BeginInit();
     this.SuspendLayout();
     //
     // simpleButton3
     //
     this.simpleButton3.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.simpleButton3.Enabled = false;
     this.simpleButton3.Location = new System.Drawing.Point(14, 628);
     this.simpleButton3.Name = "simpleButton3";
     this.simpleButton3.Size = new System.Drawing.Size(92, 23);
     this.simpleButton3.TabIndex = 9;
     this.simpleButton3.Text = "Undo changes";
     this.simpleButton3.Click += new System.EventHandler(this.simpleButton3_Click);
     //
     // simpleButton2
     //
     this.simpleButton2.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.simpleButton2.Enabled = false;
     this.simpleButton2.Location = new System.Drawing.Point(715, 628);
     this.simpleButton2.Name = "simpleButton2";
     this.simpleButton2.Size = new System.Drawing.Size(75, 23);
     this.simpleButton2.TabIndex = 8;
     this.simpleButton2.Text = "Save";
     this.simpleButton2.Click += new System.EventHandler(this.simpleButton2_Click);
     //
     // simpleButton1
     //
     this.simpleButton1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.simpleButton1.Location = new System.Drawing.Point(796, 628);
     this.simpleButton1.Name = "simpleButton1";
     this.simpleButton1.Size = new System.Drawing.Size(75, 23);
     this.simpleButton1.TabIndex = 7;
     this.simpleButton1.Text = "Close";
     this.simpleButton1.Click += new System.EventHandler(this.simpleButton1_Click);
     //
     // groupControl2
     //
     this.toolTipController1.SetAllowHtmlText(this.groupControl2, DevExpress.Utils.DefaultBoolean.False);
     this.groupControl2.Controls.Add(this.lblZaxis);
     this.groupControl2.Controls.Add(this.labelControl13);
     this.groupControl2.Controls.Add(this.lblYaxis);
     this.groupControl2.Controls.Add(this.lblXaxis);
     this.groupControl2.Controls.Add(this.labelControl10);
     this.groupControl2.Controls.Add(this.labelControl11);
     this.groupControl2.Controls.Add(this.lblCategory);
     this.groupControl2.Controls.Add(this.lblDescription);
     this.groupControl2.Controls.Add(this.lblName);
     this.groupControl2.Controls.Add(this.lblLengthValues);
     this.groupControl2.Controls.Add(this.lblLengthBytes);
     this.groupControl2.Controls.Add(this.lblSRAMAddress);
     this.groupControl2.Controls.Add(this.lblFlashAddress);
     this.groupControl2.Controls.Add(this.labelControl7);
     this.groupControl2.Controls.Add(this.labelControl6);
     this.groupControl2.Controls.Add(this.labelControl5);
     this.groupControl2.Controls.Add(this.labelControl4);
     this.groupControl2.Controls.Add(this.labelControl3);
     this.groupControl2.Controls.Add(this.labelControl2);
     this.groupControl2.Controls.Add(this.labelControl1);
     this.groupControl2.Location = new System.Drawing.Point(3, 3);
     this.groupControl2.Name = "groupControl2";
     this.groupControl2.Size = new System.Drawing.Size(870, 90);
     this.toolTipController1.SetSuperTip(this.groupControl2, null);
     this.groupControl2.TabIndex = 6;
     this.groupControl2.Text = "Symbol details";
     this.groupControl2.Paint += new System.Windows.Forms.PaintEventHandler(this.groupControl2_Paint);
     //
     // lblZaxis
     //
     this.lblZaxis.Appearance.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
     this.lblZaxis.Appearance.Options.UseForeColor = true;
     this.lblZaxis.Location = new System.Drawing.Point(488, 30);
     this.lblZaxis.Name = "lblZaxis";
     this.lblZaxis.Size = new System.Drawing.Size(12, 13);
     this.lblZaxis.TabIndex = 19;
     this.lblZaxis.Text = "...";
     //
     // labelControl13
     //
     this.labelControl13.Location = new System.Drawing.Point(430, 30);
     this.labelControl13.Name = "labelControl13";
     this.labelControl13.Size = new System.Drawing.Size(29, 13);
     this.labelControl13.TabIndex = 18;
     this.labelControl13.Text = "Z-axis";
     //
     // lblYaxis
     //
     this.lblYaxis.Appearance.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
     this.lblYaxis.Appearance.Options.UseForeColor = true;
     this.lblYaxis.Location = new System.Drawing.Point(350, 62);
     this.lblYaxis.Name = "lblYaxis";
     this.lblYaxis.Size = new System.Drawing.Size(12, 13);
     this.lblYaxis.TabIndex = 17;
     this.lblYaxis.Text = "...";
     //
     // lblXaxis
     //
     this.lblXaxis.Appearance.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
     this.lblXaxis.Appearance.Options.UseForeColor = true;
     this.lblXaxis.Location = new System.Drawing.Point(350, 30);
     this.lblXaxis.Name = "lblXaxis";
     this.lblXaxis.Size = new System.Drawing.Size(12, 13);
     this.lblXaxis.TabIndex = 16;
     this.lblXaxis.Text = "...";
     //
     // labelControl10
     //
     this.labelControl10.Location = new System.Drawing.Point(305, 62);
     this.labelControl10.Name = "labelControl10";
     this.labelControl10.Size = new System.Drawing.Size(29, 13);
     this.labelControl10.TabIndex = 15;
     this.labelControl10.Text = "Y-axis";
     //
     // labelControl11
     //
     this.labelControl11.Location = new System.Drawing.Point(305, 30);
     this.labelControl11.Name = "labelControl11";
     this.labelControl11.Size = new System.Drawing.Size(29, 13);
     this.labelControl11.TabIndex = 14;
     this.labelControl11.Text = "X-axis";
     //
     // lblCategory
     //
     this.lblCategory.Appearance.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
     this.lblCategory.Appearance.Options.UseForeColor = true;
     this.lblCategory.Location = new System.Drawing.Point(488, 62);
     this.lblCategory.Name = "lblCategory";
     this.lblCategory.Size = new System.Drawing.Size(12, 13);
     this.lblCategory.TabIndex = 13;
     this.lblCategory.Text = "...";
     //
     // lblDescription
     //
     this.lblDescription.Appearance.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
     this.lblDescription.Appearance.Options.UseForeColor = true;
     this.lblDescription.Location = new System.Drawing.Point(671, 62);
     this.lblDescription.Name = "lblDescription";
     this.lblDescription.Size = new System.Drawing.Size(12, 13);
     this.lblDescription.TabIndex = 12;
     this.lblDescription.Text = "...";
     //
     // lblName
     //
     this.lblName.Appearance.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
     this.lblName.Appearance.Options.UseForeColor = true;
     this.lblName.Location = new System.Drawing.Point(671, 30);
     this.lblName.Name = "lblName";
     this.lblName.Size = new System.Drawing.Size(12, 13);
     this.lblName.TabIndex = 11;
     this.lblName.Text = "...";
     //
     // lblLengthValues
     //
     this.lblLengthValues.Appearance.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
     this.lblLengthValues.Appearance.Options.UseForeColor = true;
     this.lblLengthValues.Location = new System.Drawing.Point(251, 62);
     this.lblLengthValues.Name = "lblLengthValues";
     this.lblLengthValues.Size = new System.Drawing.Size(36, 13);
     this.lblLengthValues.TabIndex = 10;
     this.lblLengthValues.Text = "0x0000";
     //
     // lblLengthBytes
     //
     this.lblLengthBytes.Appearance.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
     this.lblLengthBytes.Appearance.Options.UseForeColor = true;
     this.lblLengthBytes.Location = new System.Drawing.Point(251, 30);
     this.lblLengthBytes.Name = "lblLengthBytes";
     this.lblLengthBytes.Size = new System.Drawing.Size(36, 13);
     this.lblLengthBytes.TabIndex = 9;
     this.lblLengthBytes.Text = "0x0000";
     //
     // lblSRAMAddress
     //
     this.lblSRAMAddress.Appearance.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
     this.lblSRAMAddress.Appearance.Options.UseForeColor = true;
     this.lblSRAMAddress.Location = new System.Drawing.Point(100, 62);
     this.lblSRAMAddress.Name = "lblSRAMAddress";
     this.lblSRAMAddress.Size = new System.Drawing.Size(36, 13);
     this.lblSRAMAddress.TabIndex = 8;
     this.lblSRAMAddress.Text = "0x0000";
     //
     // lblFlashAddress
     //
     this.lblFlashAddress.Appearance.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
     this.lblFlashAddress.Appearance.Options.UseForeColor = true;
     this.lblFlashAddress.Location = new System.Drawing.Point(100, 30);
     this.lblFlashAddress.Name = "lblFlashAddress";
     this.lblFlashAddress.Size = new System.Drawing.Size(48, 13);
     this.lblFlashAddress.TabIndex = 7;
     this.lblFlashAddress.Text = "0x000000";
     //
     // labelControl7
     //
     this.labelControl7.Location = new System.Drawing.Point(430, 62);
     this.labelControl7.Name = "labelControl7";
     this.labelControl7.Size = new System.Drawing.Size(45, 13);
     this.labelControl7.TabIndex = 6;
     this.labelControl7.Text = "Category";
     //
     // labelControl6
     //
     this.labelControl6.Location = new System.Drawing.Point(598, 62);
     this.labelControl6.Name = "labelControl6";
     this.labelControl6.Size = new System.Drawing.Size(53, 13);
     this.labelControl6.TabIndex = 5;
     this.labelControl6.Text = "Description";
     //
     // labelControl5
     //
     this.labelControl5.Location = new System.Drawing.Point(598, 30);
     this.labelControl5.Name = "labelControl5";
     this.labelControl5.Size = new System.Drawing.Size(27, 13);
     this.labelControl5.TabIndex = 4;
     this.labelControl5.Text = "Name";
     //
     // labelControl4
     //
     this.labelControl4.Location = new System.Drawing.Point(164, 62);
     this.labelControl4.Name = "labelControl4";
     this.labelControl4.Size = new System.Drawing.Size(75, 13);
     this.labelControl4.TabIndex = 3;
     this.labelControl4.Text = "Length (values)";
     //
     // labelControl3
     //
     this.labelControl3.Location = new System.Drawing.Point(164, 30);
     this.labelControl3.Name = "labelControl3";
     this.labelControl3.Size = new System.Drawing.Size(71, 13);
     this.labelControl3.TabIndex = 2;
     this.labelControl3.Text = "Length (bytes)";
     //
     // labelControl2
     //
     this.labelControl2.Location = new System.Drawing.Point(18, 62);
     this.labelControl2.Name = "labelControl2";
     this.labelControl2.Size = new System.Drawing.Size(69, 13);
     this.labelControl2.TabIndex = 1;
     this.labelControl2.Text = "SRAM address";
     //
     // labelControl1
     //
     this.labelControl1.Location = new System.Drawing.Point(18, 30);
     this.labelControl1.Name = "labelControl1";
     this.labelControl1.Size = new System.Drawing.Size(66, 13);
     this.labelControl1.TabIndex = 0;
     this.labelControl1.Text = "Flash address";
     //
     // groupControl1
     //
     this.toolTipController1.SetAllowHtmlText(this.groupControl1, DevExpress.Utils.DefaultBoolean.False);
     this.groupControl1.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.groupControl1.Controls.Add(this.splitContainer1);
     this.groupControl1.Location = new System.Drawing.Point(3, 28);
     this.groupControl1.LookAndFeel.SkinName = "Black";
     this.groupControl1.LookAndFeel.UseDefaultLookAndFeel = false;
     this.groupControl1.Name = "groupControl1";
     this.groupControl1.Size = new System.Drawing.Size(870, 594);
     this.toolTipController1.SetSuperTip(this.groupControl1, null);
     this.groupControl1.TabIndex = 5;
     this.groupControl1.Text = "Symbol data";
     this.groupControl1.DoubleClick += new System.EventHandler(this.groupControl1_DoubleClick);
     this.groupControl1.Paint += new System.Windows.Forms.PaintEventHandler(this.groupControl1_Paint);
     //
     // splitContainer1
     //
     this.toolTipController1.SetAllowHtmlText(this.splitContainer1, DevExpress.Utils.DefaultBoolean.False);
     this.splitContainer1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.splitContainer1.Location = new System.Drawing.Point(2, 20);
     this.splitContainer1.Name = "splitContainer1";
     this.splitContainer1.Orientation = System.Windows.Forms.Orientation.Horizontal;
     //
     // splitContainer1.Panel1
     //
     this.toolTipController1.SetAllowHtmlText(this.splitContainer1.Panel1, DevExpress.Utils.DefaultBoolean.False);
     this.splitContainer1.Panel1.Controls.Add(this.panel1);
     this.toolTipController1.SetSuperTip(this.splitContainer1.Panel1, null);
     //
     // splitContainer1.Panel2
     //
     this.toolTipController1.SetAllowHtmlText(this.splitContainer1.Panel2, DevExpress.Utils.DefaultBoolean.False);
     this.splitContainer1.Panel2.Controls.Add(this.xtraTabControl1);
     this.toolTipController1.SetSuperTip(this.splitContainer1.Panel2, null);
     this.splitContainer1.Size = new System.Drawing.Size(866, 572);
     this.splitContainer1.SplitterDistance = 284;
     this.toolTipController1.SetSuperTip(this.splitContainer1, null);
     this.splitContainer1.TabIndex = 1;
     this.splitContainer1.MouseLeave += new System.EventHandler(this.splitContainer1_MouseLeave);
     this.splitContainer1.SplitterMoved += new System.Windows.Forms.SplitterEventHandler(this.splitContainer1_SplitterMoved);
     this.splitContainer1.MouseDown += new System.Windows.Forms.MouseEventHandler(this.splitContainer1_MouseDown);
     this.splitContainer1.MouseUp += new System.Windows.Forms.MouseEventHandler(this.splitContainer1_MouseUp);
     //
     // panel1
     //
     this.toolTipController1.SetAllowHtmlText(this.panel1, DevExpress.Utils.DefaultBoolean.False);
     this.panel1.Controls.Add(this.popupContainerControl1);
     this.panel1.Controls.Add(this.gridControl1);
     this.panel1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.panel1.Location = new System.Drawing.Point(0, 0);
     this.panel1.Name = "panel1";
     this.panel1.Size = new System.Drawing.Size(866, 284);
     this.toolTipController1.SetSuperTip(this.panel1, null);
     this.panel1.TabIndex = 2;
     //
     // popupContainerControl1
     //
     this.toolTipController1.SetAllowHtmlText(this.popupContainerControl1, DevExpress.Utils.DefaultBoolean.False);
     this.popupContainerControl1.Controls.Add(this.groupControl2);
     this.popupContainerControl1.Location = new System.Drawing.Point(3, 72);
     this.popupContainerControl1.Name = "popupContainerControl1";
     this.popupContainerControl1.Size = new System.Drawing.Size(878, 97);
     this.toolTipController1.SetSuperTip(this.popupContainerControl1, null);
     this.popupContainerControl1.TabIndex = 1;
     //
     // gridControl1
     //
     this.gridControl1.ContextMenuStrip = this.contextMenuStrip1;
     this.gridControl1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.gridControl1.Font = new System.Drawing.Font("Tahoma", 6.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.gridControl1.Location = new System.Drawing.Point(0, 0);
     this.gridControl1.LookAndFeel.SkinName = "Black";
     this.gridControl1.MainView = this.gridView1;
     this.gridControl1.Name = "gridControl1";
     this.gridControl1.Size = new System.Drawing.Size(866, 284);
     this.gridControl1.TabIndex = 0;
     this.gridControl1.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridView1});
     //
     // contextMenuStrip1
     //
     this.toolTipController1.SetAllowHtmlText(this.contextMenuStrip1, DevExpress.Utils.DefaultBoolean.False);
     this.contextMenuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.copySelectedCellsToolStripMenuItem,
     this.pasteSelectedCellsToolStripMenuItem,
     this.editXaxisSymbolToolStripMenuItem,
     this.editYaxisSymbolToolStripMenuItem,
     this.smoothSelectionToolStripMenuItem});
     this.contextMenuStrip1.Name = "contextMenuStrip1";
     this.contextMenuStrip1.Size = new System.Drawing.Size(179, 114);
     this.toolTipController1.SetSuperTip(this.contextMenuStrip1, null);
     this.contextMenuStrip1.Opening += new System.ComponentModel.CancelEventHandler(this.contextMenuStrip1_Opening);
     //
     // copySelectedCellsToolStripMenuItem
     //
     this.copySelectedCellsToolStripMenuItem.Name = "copySelectedCellsToolStripMenuItem";
     this.copySelectedCellsToolStripMenuItem.Size = new System.Drawing.Size(178, 22);
     this.copySelectedCellsToolStripMenuItem.Text = "Copy selected cells";
     this.copySelectedCellsToolStripMenuItem.Click += new System.EventHandler(this.copySelectedCellsToolStripMenuItem_Click);
     //
     // pasteSelectedCellsToolStripMenuItem
     //
     this.pasteSelectedCellsToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.inOrgininalPositionToolStripMenuItem,
     this.atCurrentlySelectedLocationToolStripMenuItem});
     this.pasteSelectedCellsToolStripMenuItem.Name = "pasteSelectedCellsToolStripMenuItem";
     this.pasteSelectedCellsToolStripMenuItem.Size = new System.Drawing.Size(178, 22);
     this.pasteSelectedCellsToolStripMenuItem.Text = "Paste selected cells";
     //
     // inOrgininalPositionToolStripMenuItem
     //
     this.inOrgininalPositionToolStripMenuItem.Name = "inOrgininalPositionToolStripMenuItem";
     this.inOrgininalPositionToolStripMenuItem.Size = new System.Drawing.Size(225, 22);
     this.inOrgininalPositionToolStripMenuItem.Text = "At original position";
     this.inOrgininalPositionToolStripMenuItem.Click += new System.EventHandler(this.inOrgininalPositionToolStripMenuItem_Click);
     //
     // atCurrentlySelectedLocationToolStripMenuItem
     //
     this.atCurrentlySelectedLocationToolStripMenuItem.Name = "atCurrentlySelectedLocationToolStripMenuItem";
     this.atCurrentlySelectedLocationToolStripMenuItem.Size = new System.Drawing.Size(225, 22);
     this.atCurrentlySelectedLocationToolStripMenuItem.Text = "At currently selected location";
     this.atCurrentlySelectedLocationToolStripMenuItem.Click += new System.EventHandler(this.atCurrentlySelectedLocationToolStripMenuItem_Click);
     //
     // editXaxisSymbolToolStripMenuItem
     //
     this.editXaxisSymbolToolStripMenuItem.Name = "editXaxisSymbolToolStripMenuItem";
     this.editXaxisSymbolToolStripMenuItem.Size = new System.Drawing.Size(178, 22);
     this.editXaxisSymbolToolStripMenuItem.Text = "Edit x-axis";
     this.editXaxisSymbolToolStripMenuItem.Click += new System.EventHandler(this.editXaxisSymbolToolStripMenuItem_Click);
     //
     // editYaxisSymbolToolStripMenuItem
     //
     this.editYaxisSymbolToolStripMenuItem.Name = "editYaxisSymbolToolStripMenuItem";
     this.editYaxisSymbolToolStripMenuItem.Size = new System.Drawing.Size(178, 22);
     this.editYaxisSymbolToolStripMenuItem.Text = "Edit y-axis";
     this.editYaxisSymbolToolStripMenuItem.Click += new System.EventHandler(this.editYaxisSymbolToolStripMenuItem_Click);
     //
     // smoothSelectionToolStripMenuItem
     //
     this.smoothSelectionToolStripMenuItem.Name = "smoothSelectionToolStripMenuItem";
     this.smoothSelectionToolStripMenuItem.Size = new System.Drawing.Size(178, 22);
     this.smoothSelectionToolStripMenuItem.Text = "Smooth selection";
     this.smoothSelectionToolStripMenuItem.Click += new System.EventHandler(this.smoothSelectionToolStripMenuItem_Click);
     //
     // gridView1
     //
     this.gridView1.GridControl = this.gridControl1;
     this.gridView1.Name = "gridView1";
     this.gridView1.OptionsCustomization.AllowColumnMoving = false;
     this.gridView1.OptionsCustomization.AllowFilter = false;
     this.gridView1.OptionsCustomization.AllowGroup = false;
     this.gridView1.OptionsCustomization.AllowSort = false;
     this.gridView1.OptionsNavigation.EnterMoveNextColumn = true;
     this.gridView1.OptionsSelection.EnableAppearanceFocusedRow = false;
     this.gridView1.OptionsSelection.MultiSelect = true;
     this.gridView1.OptionsSelection.MultiSelectMode = DevExpress.XtraGrid.Views.Grid.GridMultiSelectMode.CellSelect;
     this.gridView1.OptionsView.ShowGroupPanel = false;
     this.gridView1.SelectionChanged += new DevExpress.Data.SelectionChangedEventHandler(this.gridView1_SelectionChanged_1);
     this.gridView1.ValidatingEditor += new DevExpress.XtraEditors.Controls.BaseContainerValidateEditorEventHandler(this.gridView1_ValidatingEditor);
     this.gridView1.CustomDrawRowIndicator += new DevExpress.XtraGrid.Views.Grid.RowIndicatorCustomDrawEventHandler(this.gridView1_CustomDrawRowIndicator);
     this.gridView1.CellValueChanged += new DevExpress.XtraGrid.Views.Base.CellValueChangedEventHandler(this.gridView1_CellValueChanged);
     this.gridView1.KeyDown += new System.Windows.Forms.KeyEventHandler(this.gridView1_KeyDown);
     this.gridView1.CellValueChanging += new DevExpress.XtraGrid.Views.Base.CellValueChangedEventHandler(this.gridView1_CellValueChanging);
     this.gridView1.CustomDrawCell += new DevExpress.XtraGrid.Views.Base.RowCellCustomDrawEventHandler(this.gridView1_CustomDrawCell);
     this.gridView1.ShownEditor += new System.EventHandler(this.gridView1_ShownEditor);
     this.gridView1.RowUpdated += new DevExpress.XtraGrid.Views.Base.RowObjectEventHandler(this.gridView1_RowUpdated);
     this.gridView1.ShowingEditor += new System.ComponentModel.CancelEventHandler(this.gridView1_ShowingEditor);
     this.gridView1.HiddenEditor += new System.EventHandler(this.gridView1_HiddenEditor);
     this.gridView1.CustomDrawColumnHeader += new DevExpress.XtraGrid.Views.Grid.ColumnHeaderCustomDrawEventHandler(this.gridView1_CustomDrawColumnHeader);
     //
     // xtraTabControl1
     //
     this.xtraTabControl1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.xtraTabControl1.HeaderLocation = DevExpress.XtraTab.TabHeaderLocation.Left;
     this.xtraTabControl1.HeaderOrientation = DevExpress.XtraTab.TabOrientation.Vertical;
     this.xtraTabControl1.Location = new System.Drawing.Point(0, 0);
     this.xtraTabControl1.Name = "xtraTabControl1";
     this.xtraTabControl1.SelectedTabPage = this.xtraTabPage1;
     this.xtraTabControl1.Size = new System.Drawing.Size(866, 284);
     this.xtraTabControl1.TabIndex = 2;
     this.xtraTabControl1.TabPages.AddRange(new DevExpress.XtraTab.XtraTabPage[] {
     this.xtraTabPage1,
     this.xtraTabPage2});
     this.xtraTabControl1.SelectedPageChanged += new DevExpress.XtraTab.TabPageChangedEventHandler(this.xtraTabControl1_SelectedPageChanged);
     //
     // xtraTabPage1
     //
     this.xtraTabPage1.Controls.Add(this.simpleButton4);
     this.xtraTabPage1.Controls.Add(this.simpleButton5);
     this.xtraTabPage1.Controls.Add(this.simpleButton6);
     this.xtraTabPage1.Controls.Add(this.simpleButton7);
     this.xtraTabPage1.Controls.Add(this.surfaceGraphViewer1);
     this.xtraTabPage1.Name = "xtraTabPage1";
     this.xtraTabPage1.Size = new System.Drawing.Size(836, 275);
     this.xtraTabPage1.Text = "3D Graph";
     //
     // simpleButton4
     //
     this.simpleButton4.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.simpleButton4.Image = ((System.Drawing.Image)(resources.GetObject("simpleButton4.Image")));
     this.simpleButton4.Location = new System.Drawing.Point(814, 60);
     this.simpleButton4.Name = "simpleButton4";
     this.simpleButton4.Size = new System.Drawing.Size(23, 23);
     this.simpleButton4.TabIndex = 12;
     this.simpleButton4.ToolTip = "Turn graph counter clockwise";
     this.simpleButton4.Click += new System.EventHandler(this.simpleButton4_Click);
     //
     // simpleButton5
     //
     this.simpleButton5.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.simpleButton5.Image = ((System.Drawing.Image)(resources.GetObject("simpleButton5.Image")));
     this.simpleButton5.Location = new System.Drawing.Point(814, 89);
     this.simpleButton5.Name = "simpleButton5";
     this.simpleButton5.Size = new System.Drawing.Size(23, 23);
     this.simpleButton5.TabIndex = 11;
     this.simpleButton5.ToolTip = "Turn graph clockwise";
     this.simpleButton5.Click += new System.EventHandler(this.simpleButton5_Click);
     //
     // simpleButton6
     //
     this.simpleButton6.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.simpleButton6.Image = ((System.Drawing.Image)(resources.GetObject("simpleButton6.Image")));
     this.simpleButton6.Location = new System.Drawing.Point(814, 32);
     this.simpleButton6.Name = "simpleButton6";
     this.simpleButton6.Size = new System.Drawing.Size(23, 23);
     this.simpleButton6.TabIndex = 10;
     this.simpleButton6.ToolTip = "Zoom out";
     this.simpleButton6.Click += new System.EventHandler(this.simpleButton6_Click);
     //
     // simpleButton7
     //
     this.simpleButton7.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.simpleButton7.Image = ((System.Drawing.Image)(resources.GetObject("simpleButton7.Image")));
     this.simpleButton7.Location = new System.Drawing.Point(814, 3);
     this.simpleButton7.Name = "simpleButton7";
     this.simpleButton7.Size = new System.Drawing.Size(23, 23);
     this.simpleButton7.TabIndex = 9;
     this.simpleButton7.ToolTip = "Zoom in";
     this.simpleButton7.Click += new System.EventHandler(this.simpleButton7_Click);
     //
     // surfaceGraphViewer1
     //
     this.toolTipController1.SetAllowHtmlText(this.surfaceGraphViewer1, DevExpress.Utils.DefaultBoolean.False);
     this.surfaceGraphViewer1.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.surfaceGraphViewer1.IsRedWhite = false;
     this.surfaceGraphViewer1.IsSixteenbit = false;
     this.surfaceGraphViewer1.IsUpsideDown = false;
     this.surfaceGraphViewer1.Location = new System.Drawing.Point(0, 0);
     this.surfaceGraphViewer1.Map_compare_content = null;
     this.surfaceGraphViewer1.Map_content = null;
     this.surfaceGraphViewer1.Map_length = 0;
     this.surfaceGraphViewer1.Map_name = "";
     this.surfaceGraphViewer1.Map_original_content = null;
     this.surfaceGraphViewer1.Name = "surfaceGraphViewer1";
     this.surfaceGraphViewer1.NumberOfColumns = 8;
     this.surfaceGraphViewer1.Pan_x = 45;
     this.surfaceGraphViewer1.Pan_y = 77;
     this.surfaceGraphViewer1.Pov_d = 0.6;
     this.surfaceGraphViewer1.Pov_x = 30;
     this.surfaceGraphViewer1.Pov_y = 56;
     this.surfaceGraphViewer1.Pov_z = 21;
     this.surfaceGraphViewer1.Size = new System.Drawing.Size(808, 275);
     this.toolTipController1.SetSuperTip(this.surfaceGraphViewer1, null);
     this.surfaceGraphViewer1.TabIndex = 0;
     this.surfaceGraphViewer1.X_axis = null;
     this.surfaceGraphViewer1.X_axis_descr = "";
     this.surfaceGraphViewer1.Y_axis = null;
     this.surfaceGraphViewer1.Y_axis_descr = "";
     this.surfaceGraphViewer1.Z_axis = null;
     this.surfaceGraphViewer1.Z_axis_descr = "";
     //
     // xtraTabPage2
     //
     this.xtraTabPage2.Controls.Add(this.labelControl9);
     this.xtraTabPage2.Controls.Add(this.labelControl8);
     this.xtraTabPage2.Controls.Add(this.trackBarControl1);
     this.xtraTabPage2.Controls.Add(this.chartControl1);
     this.xtraTabPage2.Name = "xtraTabPage2";
     this.xtraTabPage2.Size = new System.Drawing.Size(836, 275);
     this.xtraTabPage2.Text = "2D Graph";
     //
     // labelControl9
     //
     this.labelControl9.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.labelControl9.AutoEllipsis = true;
     this.labelControl9.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl9.Location = new System.Drawing.Point(645, 201);
     this.labelControl9.Name = "labelControl9";
     this.labelControl9.Size = new System.Drawing.Size(188, 34);
     this.labelControl9.TabIndex = 4;
     this.labelControl9.Text = "MAP";
     //
     // labelControl8
     //
     this.labelControl8.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.labelControl8.AutoEllipsis = true;
     this.labelControl8.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl8.Location = new System.Drawing.Point(6, 201);
     this.labelControl8.Name = "labelControl8";
     this.labelControl8.Size = new System.Drawing.Size(104, 34);
     this.labelControl8.TabIndex = 3;
     this.labelControl8.Text = "MAP values";
     //
     // trackBarControl1
     //
     this.trackBarControl1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.trackBarControl1.EditValue = null;
     this.trackBarControl1.Location = new System.Drawing.Point(125, 201);
     this.trackBarControl1.Name = "trackBarControl1";
     this.trackBarControl1.Size = new System.Drawing.Size(500, 45);
     this.trackBarControl1.TabIndex = 2;
     this.trackBarControl1.ValueChanged += new System.EventHandler(this.trackBarControl1_ValueChanged);
     //
     // chartControl1
     //
     this.toolTipController1.SetAllowHtmlText(this.chartControl1, DevExpress.Utils.DefaultBoolean.False);
     this.chartControl1.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.chartControl1.CacheToMemory = true;
     xyDiagram1.AxisX.VisibleInPanesSerializable = "-1";
     xyDiagram1.AxisX.Range.SideMarginsEnabled = false;
     xyDiagram1.AxisX.Range.ScrollingRange.SideMarginsEnabled = true;
     xyDiagram1.AxisY.VisibleInPanesSerializable = "-1";
     xyDiagram1.AxisY.Range.SideMarginsEnabled = false;
     xyDiagram1.AxisY.Range.ScrollingRange.SideMarginsEnabled = true;
     this.chartControl1.Diagram = xyDiagram1;
     this.chartControl1.Legend.Border.Visible = false;
     this.chartControl1.Location = new System.Drawing.Point(3, 3);
     this.chartControl1.Name = "chartControl1";
     this.chartControl1.RefreshDataOnRepaint = false;
     this.chartControl1.RuntimeHitTesting = false;
     this.chartControl1.RuntimeSeriesSelectionMode = DevExpress.XtraCharts.SeriesSelectionMode.Point;
     series1.Name = "Values";
     series1.Points.AddRange(new DevExpress.XtraCharts.SeriesPoint[] {
     seriesPoint1});
     lineSeriesView1.LineMarkerOptions.Size = 8;
     lineSeriesView1.LineMarkerOptions.FillStyle.FillMode = DevExpress.XtraCharts.FillMode.Gradient;
     polygonGradientFillOptions1.Color2 = System.Drawing.Color.Gold;
     lineSeriesView1.LineMarkerOptions.FillStyle.Options = polygonGradientFillOptions1;
     lineSeriesView1.Color = System.Drawing.Color.DarkGoldenrod;
     series1.View = lineSeriesView1;
     series1.ArgumentDataMember = "X";
     series1.ArgumentScaleType = DevExpress.XtraCharts.ScaleType.Numerical;
     pointSeriesLabel1.Angle = 90;
     pointSeriesLabel1.TextColor = System.Drawing.Color.MidnightBlue;
     pointSeriesLabel1.Font = new System.Drawing.Font("Tahoma", 6F, System.Drawing.FontStyle.Bold);
     pointSeriesLabel1.Border.Visible = false;
     pointSeriesLabel1.Antialiasing = true;
     pointSeriesLabel1.LineVisible = true;
     series1.Label = pointSeriesLabel1;
     pointOptions1.PointView = DevExpress.XtraCharts.PointView.ArgumentAndValues;
     series1.PointOptions = pointOptions1;
     this.chartControl1.SeriesSerializable = new DevExpress.XtraCharts.Series[] {
     series1};
     this.chartControl1.SeriesTemplate.View = lineSeriesView2;
     pointSeriesLabel2.LineVisible = true;
     this.chartControl1.SeriesTemplate.Label = pointSeriesLabel2;
     this.chartControl1.Size = new System.Drawing.Size(830, 185);
     this.toolTipController1.SetSuperTip(this.chartControl1, null);
     this.chartControl1.TabIndex = 1;
     this.chartControl1.Visible = false;
     this.chartControl1.CustomDrawSeriesPoint += new DevExpress.XtraCharts.CustomDrawSeriesPointEventHandler(this.chartControl1_CustomDrawSeriesPoint);
     this.chartControl1.MouseUp += new System.Windows.Forms.MouseEventHandler(this.chartControl1_MouseUp);
     this.chartControl1.MouseDoubleClick += new System.Windows.Forms.MouseEventHandler(this.chartControl1_MouseDoubleClick);
     this.chartControl1.MouseMove += new System.Windows.Forms.MouseEventHandler(this.chartControl1_MouseMove);
     this.chartControl1.MouseDown += new System.Windows.Forms.MouseEventHandler(this.chartControl1_MouseDown);
     this.chartControl1.ObjectHotTracked += new DevExpress.XtraCharts.HotTrackEventHandler(this.chartControl1_ObjectHotTracked);
     this.chartControl1.CustomDrawSeries += new DevExpress.XtraCharts.CustomDrawSeriesEventHandler(this.chartControl1_CustomDrawSeries);
     this.chartControl1.Click += new System.EventHandler(this.chartControl1_Click);
     //
     // timer1
     //
     this.timer1.Tick += new System.EventHandler(this.timer1_Tick);
     //
     // timer2
     //
     this.timer2.Tick += new System.EventHandler(this.timer2_Tick);
     //
     // toolTipController1
     //
     this.toolTipController1.Rounded = true;
     //
     // toolStrip1
     //
     this.toolTipController1.SetAllowHtmlText(this.toolStrip1, DevExpress.Utils.DefaultBoolean.False);
     this.toolStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.toolStripButton1,
     this.toolStripButton2,
     this.toolStripSeparator3,
     this.toolStripButton4,
     this.toolStripButton5,
     this.toolStripButton6,
     this.toolStripButton7,
     this.toolStripSeparator1,
     this.toolStripLabel3,
     this.toolStripComboBox3,
     this.toolStripSeparator2,
     this.toolStripLabel1,
     this.toolStripComboBox2,
     this.toolStripLabel2,
     this.toolStripComboBox1,
     this.toolStripTextBox1,
     this.toolStripButton3});
     this.toolStrip1.Location = new System.Drawing.Point(0, 0);
     this.toolStrip1.Name = "toolStrip1";
     this.toolStrip1.Size = new System.Drawing.Size(876, 25);
     this.toolTipController1.SetSuperTip(this.toolStrip1, null);
     this.toolStrip1.TabIndex = 10;
     this.toolStrip1.Text = "toolStrip1";
     //
     // toolStripButton1
     //
     this.toolStripButton1.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.toolStripButton1.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButton1.Image")));
     this.toolStripButton1.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.toolStripButton1.Name = "toolStripButton1";
     this.toolStripButton1.Size = new System.Drawing.Size(23, 22);
     this.toolStripButton1.Text = "Toggle graph section";
     this.toolStripButton1.Click += new System.EventHandler(this.toolStripButton1_Click);
     //
     // toolStripButton2
     //
     this.toolStripButton2.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.toolStripButton2.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButton2.Image")));
     this.toolStripButton2.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.toolStripButton2.Name = "toolStripButton2";
     this.toolStripButton2.Size = new System.Drawing.Size(23, 22);
     this.toolStripButton2.Text = "Toggle hexview";
     this.toolStripButton2.Click += new System.EventHandler(this.toolStripButton2_Click);
     //
     // toolStripSeparator3
     //
     this.toolStripSeparator3.Name = "toolStripSeparator3";
     this.toolStripSeparator3.Size = new System.Drawing.Size(6, 25);
     //
     // toolStripButton4
     //
     this.toolStripButton4.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.toolStripButton4.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButton4.Image")));
     this.toolStripButton4.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.toolStripButton4.Name = "toolStripButton4";
     this.toolStripButton4.Size = new System.Drawing.Size(23, 22);
     this.toolStripButton4.Text = "Maximize graph";
     this.toolStripButton4.Click += new System.EventHandler(this.toolStripButton4_Click);
     //
     // toolStripButton5
     //
     this.toolStripButton5.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.toolStripButton5.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButton5.Image")));
     this.toolStripButton5.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.toolStripButton5.Name = "toolStripButton5";
     this.toolStripButton5.Size = new System.Drawing.Size(23, 22);
     this.toolStripButton5.Text = "Maximize table";
     this.toolStripButton5.Click += new System.EventHandler(this.toolStripButton5_Click);
     //
     // toolStripButton6
     //
     this.toolStripButton6.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.toolStripButton6.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButton6.Image")));
     this.toolStripButton6.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.toolStripButton6.Name = "toolStripButton6";
     this.toolStripButton6.Size = new System.Drawing.Size(23, 22);
     this.toolStripButton6.Text = "Maximize window";
     this.toolStripButton6.Click += new System.EventHandler(this.toolStripButton6_Click);
     //
     // toolStripButton7
     //
     this.toolStripButton7.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.toolStripButton7.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButton7.Image")));
     this.toolStripButton7.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.toolStripButton7.Name = "toolStripButton7";
     this.toolStripButton7.Size = new System.Drawing.Size(23, 22);
     this.toolStripButton7.Text = "Toggle graph/map";
     this.toolStripButton7.Click += new System.EventHandler(this.toolStripButton7_Click);
     //
     // toolStripSeparator1
     //
     this.toolStripSeparator1.Name = "toolStripSeparator1";
     this.toolStripSeparator1.Size = new System.Drawing.Size(6, 25);
     //
     // toolStripLabel3
     //
     this.toolStripLabel3.Name = "toolStripLabel3";
     this.toolStripLabel3.Size = new System.Drawing.Size(51, 22);
     this.toolStripLabel3.Text = "Viewtype";
     //
     // toolStripComboBox3
     //
     this.toolStripComboBox3.AutoCompleteMode = System.Windows.Forms.AutoCompleteMode.Suggest;
     this.toolStripComboBox3.AutoCompleteSource = System.Windows.Forms.AutoCompleteSource.ListItems;
     this.toolStripComboBox3.Items.AddRange(new object[] {
     "Hex view ",
     "Decimal view ",
     "Easy view"});
     this.toolStripComboBox3.Name = "toolStripComboBox3";
     this.toolStripComboBox3.Size = new System.Drawing.Size(160, 25);
     this.toolStripComboBox3.SelectedIndexChanged += new System.EventHandler(this.toolStripComboBox3_SelectedIndexChanged);
     this.toolStripComboBox3.KeyDown += new System.Windows.Forms.KeyEventHandler(this.toolStripComboBox3_KeyDown);
     //
     // toolStripSeparator2
     //
     this.toolStripSeparator2.Name = "toolStripSeparator2";
     this.toolStripSeparator2.Size = new System.Drawing.Size(6, 25);
     //
     // toolStripLabel1
     //
     this.toolStripLabel1.Name = "toolStripLabel1";
     this.toolStripLabel1.Size = new System.Drawing.Size(77, 22);
     this.toolStripLabel1.Text = "Axis lock mode";
     //
     // toolStripComboBox2
     //
     this.toolStripComboBox2.AutoCompleteMode = System.Windows.Forms.AutoCompleteMode.Suggest;
     this.toolStripComboBox2.AutoCompleteSource = System.Windows.Forms.AutoCompleteSource.ListItems;
     this.toolStripComboBox2.Items.AddRange(new object[] {
     "Autoscale",
     "Lock to peak in maps",
     "Lock to map limit"});
     this.toolStripComboBox2.Name = "toolStripComboBox2";
     this.toolStripComboBox2.Size = new System.Drawing.Size(121, 25);
     this.toolStripComboBox2.SelectedIndexChanged += new System.EventHandler(this.toolStripComboBox2_SelectedIndexChanged);
     //
     // toolStripLabel2
     //
     this.toolStripLabel2.Name = "toolStripLabel2";
     this.toolStripLabel2.Size = new System.Drawing.Size(67, 22);
     this.toolStripLabel2.Text = "Mathematics";
     //
     // toolStripComboBox1
     //
     this.toolStripComboBox1.AutoCompleteMode = System.Windows.Forms.AutoCompleteMode.Suggest;
     this.toolStripComboBox1.AutoCompleteSource = System.Windows.Forms.AutoCompleteSource.ListItems;
     this.toolStripComboBox1.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.toolStripComboBox1.Items.AddRange(new object[] {
     "Addition",
     "Multiply",
     "Divide",
     "Fill"});
     this.toolStripComboBox1.Name = "toolStripComboBox1";
     this.toolStripComboBox1.Size = new System.Drawing.Size(121, 25);
     //
     // toolStripTextBox1
     //
     this.toolStripTextBox1.Name = "toolStripTextBox1";
     this.toolStripTextBox1.Size = new System.Drawing.Size(60, 25);
     this.toolStripTextBox1.Text = "2";
     this.toolStripTextBox1.TextBoxTextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     //
     // toolStripButton3
     //
     this.toolStripButton3.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.toolStripButton3.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButton3.Image")));
     this.toolStripButton3.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.toolStripButton3.Name = "toolStripButton3";
     this.toolStripButton3.Size = new System.Drawing.Size(23, 22);
     this.toolStripButton3.Text = "Execute";
     this.toolStripButton3.Click += new System.EventHandler(this.toolStripButton3_Click);
     //
     // timer3
     //
     this.timer3.Tick += new System.EventHandler(this.timer3_Tick);
     //
     // timer4
     //
     this.timer4.Enabled = true;
     this.timer4.Interval = 500;
     this.timer4.Tick += new System.EventHandler(this.timer4_Tick);
     //
     // popupContainerEdit1
     //
     this.popupContainerEdit1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.popupContainerEdit1.Location = new System.Drawing.Point(125, 631);
     this.popupContainerEdit1.Name = "popupContainerEdit1";
     this.popupContainerEdit1.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.popupContainerEdit1.Properties.PopupControl = this.popupContainerControl1;
     this.popupContainerEdit1.Size = new System.Drawing.Size(161, 20);
     toolTipTitleItem1.Text = "Click here for table details";
     superToolTip1.Items.Add(toolTipTitleItem1);
     superToolTip1.AllowHtmlText = DevExpress.Utils.DefaultBoolean.False;
     this.popupContainerEdit1.SuperTip = superToolTip1;
     this.popupContainerEdit1.TabIndex = 11;
     this.popupContainerEdit1.CustomDisplayText += new DevExpress.XtraEditors.Controls.CustomDisplayTextEventHandler(this.popupContainerEdit1_CustomDisplayText);
     //
     // MapViewer
     //
     this.toolTipController1.SetAllowHtmlText(this, DevExpress.Utils.DefaultBoolean.False);
     this.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.Appearance.Options.UseFont = true;
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.Controls.Add(this.simpleButton1);
     this.Controls.Add(this.simpleButton2);
     this.Controls.Add(this.toolStrip1);
     this.Controls.Add(this.simpleButton3);
     this.Controls.Add(this.groupControl1);
     this.Controls.Add(this.popupContainerEdit1);
     this.LookAndFeel.SkinName = "Black";
     this.Name = "MapViewer";
     this.Size = new System.Drawing.Size(876, 664);
     this.toolTipController1.SetSuperTip(this, null);
     this.VisibleChanged += new System.EventHandler(this.MapViewer_VisibleChanged);
     ((System.ComponentModel.ISupportInitialize)(this.groupControl2)).EndInit();
     this.groupControl2.ResumeLayout(false);
     this.groupControl2.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).EndInit();
     this.groupControl1.ResumeLayout(false);
     this.splitContainer1.Panel1.ResumeLayout(false);
     this.splitContainer1.Panel2.ResumeLayout(false);
     this.splitContainer1.ResumeLayout(false);
     this.panel1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.popupContainerControl1)).EndInit();
     this.popupContainerControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gridControl1)).EndInit();
     this.contextMenuStrip1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.xtraTabControl1)).EndInit();
     this.xtraTabControl1.ResumeLayout(false);
     this.xtraTabPage1.ResumeLayout(false);
     this.xtraTabPage2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.trackBarControl1.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.trackBarControl1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(xyDiagram1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(lineSeriesView1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(pointSeriesLabel1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(series1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(lineSeriesView2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(pointSeriesLabel2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chartControl1)).EndInit();
     this.toolStrip1.ResumeLayout(false);
     this.toolStrip1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.popupContainerEdit1.Properties)).EndInit();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Пример #19
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     DevExpress.Utils.SerializableAppearanceObject serializableAppearanceObject1 = new DevExpress.Utils.SerializableAppearanceObject();
     DevExpress.Utils.SerializableAppearanceObject serializableAppearanceObject2 = new DevExpress.Utils.SerializableAppearanceObject();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Form_Main));
     this.barManager = new DevExpress.XtraBars.BarManager(this.components);
     this.bar2 = new DevExpress.XtraBars.Bar();
     this.barSubItem1 = new DevExpress.XtraBars.BarSubItem();
     this.iFullScreen = new DevExpress.XtraBars.BarCheckItem();
     this.iProgSettings = new DevExpress.XtraBars.BarButtonItem();
     this.iExit = new DevExpress.XtraBars.BarButtonItem();
     this.mHelp = new DevExpress.XtraBars.BarSubItem();
     this.iAbout = new DevExpress.XtraBars.BarButtonItem();
     this.iHomePage = new DevExpress.XtraBars.BarButtonItem();
     this.iSupportPage = new DevExpress.XtraBars.BarButtonItem();
     this.iCheckUpdates = new DevExpress.XtraBars.BarButtonItem();
     this.iPlayBack2 = new DevExpress.XtraBars.BarButtonItem();
     this.iEQ_Open2 = new DevExpress.XtraBars.BarButtonItem();
     this.iPause_Logo = new DevExpress.XtraBars.BarButtonItem();
     this.iOpen_PlayList = new DevExpress.XtraBars.BarButtonItem();
     this.iEdit_Text_Data = new DevExpress.XtraBars.BarButtonItem();
     this.iTagsEditor = new DevExpress.XtraBars.BarButtonItem();
     this.iToggle_PL_Show = new DevExpress.XtraBars.BarButtonItem();
     this.iPList_Width = new DevExpress.XtraBars.BarCheckItem();
     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.dockManager1 = new DevExpress.XtraBars.Docking.DockManager(this.components);
     this.imageCollection_16 = new DevExpress.Utils.ImageCollection(this.components);
     this.mFile = new DevExpress.XtraBars.BarSubItem();
     this.barButtonItem2 = new DevExpress.XtraBars.BarButtonItem();
     this.iOpen = new DevExpress.XtraBars.BarButtonItem();
     this.iClose = new DevExpress.XtraBars.BarButtonItem();
     this.iNew = new DevExpress.XtraBars.BarButtonItem();
     this.iSave = new DevExpress.XtraBars.BarButtonItem();
     this.iSaveAs = new DevExpress.XtraBars.BarButtonItem();
     this.barToolbarsListItem1 = new DevExpress.XtraBars.BarToolbarsListItem();
     this.barSubItem2 = new DevExpress.XtraBars.BarSubItem();
     this.barToolbarsListItem2 = new DevExpress.XtraBars.BarToolbarsListItem();
     this.barCheckItem1 = new DevExpress.XtraBars.BarCheckItem();
     this.im_Open_PM_List = new DevExpress.XtraBars.BarButtonItem();
     this.im_Open_PP_List = new DevExpress.XtraBars.BarButtonItem();
     this.iPlay = new DevExpress.XtraBars.BarButtonItem();
     this.iPause = new DevExpress.XtraBars.BarButtonItem();
     this.iStop = new DevExpress.XtraBars.BarButtonItem();
     this.iOpen_PlayList2 = new DevExpress.XtraBars.BarButtonItem();
     this.barSubItem3 = new DevExpress.XtraBars.BarSubItem();
     this.iSave_PlayList_AS = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem7 = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem8 = new DevExpress.XtraBars.BarButtonItem();
     this.iClear_PlayList = new DevExpress.XtraBars.BarButtonItem();
     this.iEdit_AddMuzFolder = new DevExpress.XtraBars.BarButtonItem();
     this.iEdit_AddMuzFile = new DevExpress.XtraBars.BarButtonItem();
     this.iEdit_AddTextFile = new DevExpress.XtraBars.BarButtonItem();
     this.iSave_PlayList = new DevExpress.XtraBars.BarButtonItem();
     this.iAbout2 = new DevExpress.XtraBars.BarButtonItem();
     this.barSubItem4 = new DevExpress.XtraBars.BarSubItem();
     this.iTime_Inverse_Check = new DevExpress.XtraBars.BarCheckItem();
     this.iCheck_AutoScrollText = new DevExpress.XtraBars.BarCheckItem();
     this.iCheck_Exists_Files = new DevExpress.XtraBars.BarCheckItem();
     this.iCheck_Tags_Files = new DevExpress.XtraBars.BarCheckItem();
     this.iRepeat_Check = new DevExpress.XtraBars.BarCheckItem();
     this.barButtonItem18 = new DevExpress.XtraBars.BarButtonItem();
     this.si_Shortcut_Commands = new DevExpress.XtraBars.BarSubItem();
     this.iNext_Track = new DevExpress.XtraBars.BarButtonItem();
     this.iPrev_Track = new DevExpress.XtraBars.BarButtonItem();
     this.iNext_PlayList = new DevExpress.XtraBars.BarButtonItem();
     this.iPrev_PlayList = new DevExpress.XtraBars.BarButtonItem();
     this.iNext_Text = new DevExpress.XtraBars.BarButtonItem();
     this.iPrev_Text = new DevExpress.XtraBars.BarButtonItem();
     this.iHotFader = new DevExpress.XtraBars.BarButtonItem();
     this.iFindFilter = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem19 = new DevExpress.XtraBars.BarButtonItem();
     this.iFaider_Check = new DevExpress.XtraBars.BarCheckItem();
     this.barSubItem5 = new DevExpress.XtraBars.BarSubItem();
     this.iEdit_DelMuzFile = new DevExpress.XtraBars.BarButtonItem();
     this.iEdit_Tags = new DevExpress.XtraBars.BarButtonItem();
     this.iEdit_DelTextFile = new DevExpress.XtraBars.BarButtonItem();
     this.iEdit_EditTextFile = new DevExpress.XtraBars.BarButtonItem();
     this.barSubItem6 = new DevExpress.XtraBars.BarSubItem();
     this.iPlayBack_Check = new DevExpress.XtraBars.BarCheckItem();
     this.iEQ_Open_Check = new DevExpress.XtraBars.BarCheckItem();
     this.iFind2 = new DevExpress.XtraBars.BarButtonItem();
     this.iShowExplorer_Mp3File = new DevExpress.XtraBars.BarButtonItem();
     this.iShowExplorer_TextFile = new DevExpress.XtraBars.BarButtonItem();
     this.iClose_PlayList = new DevExpress.XtraBars.BarButtonItem();
     this.repositoryItemTextEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemTextEdit();
     this.panelControl_Right = new DevExpress.XtraEditors.PanelControl();
     this.panelControl_PlayList = new DevExpress.XtraEditors.PanelControl();
     this.splitterControl1 = new DevExpress.XtraEditors.SplitterControl();
     this.panelControl_lists = new DevExpress.XtraEditors.PanelControl();
     this.xTabCtrl_PlayLists = new DevExpress.XtraTab.XtraTabControl();
     this.xtraTabPage1 = new DevExpress.XtraTab.XtraTabPage();
     this.xtraTabPage2 = new DevExpress.XtraTab.XtraTabPage();
     this.panelControl_Hot_PL = new DevExpress.XtraEditors.PanelControl();
     this.panelControl_PlayBack = new DevExpress.XtraEditors.PanelControl();
     this.textEdit_FadeTime = new DevExpress.XtraEditors.TextEdit();
     this.toolTipController = new DevExpress.Utils.ToolTipController(this.components);
     this.sbt_FadeTime_Up = new DevExpress.XtraEditors.SimpleButton();
     this.imageList_32 = new System.Windows.Forms.ImageList(this.components);
     this.sbt_FadeTime_Down = new DevExpress.XtraEditors.SimpleButton();
     this.sbtn_Repeat = new DevExpress.XtraEditors.SimpleButton();
     this.imageCollection_30 = new DevExpress.Utils.ImageCollection(this.components);
     this.sbtn_FadeNow = new DevExpress.XtraEditors.SimpleButton();
     this.sbtn_Pause = new DevExpress.XtraEditors.SimpleButton();
     this.sbtn_Stop = new DevExpress.XtraEditors.SimpleButton();
     this.progressBarControl_PlayPosition = new DevExpress.XtraEditors.ProgressBarControl();
     this.panelControl_PlayInfo = new DevExpress.XtraEditors.PanelControl();
     this.pbc_analizer_L = new DevExpress.XtraEditors.ProgressBarControl();
     this.pbc_analizer_R = new DevExpress.XtraEditors.ProgressBarControl();
     this.sbt_status_plist = new DevExpress.XtraEditors.SimpleButton();
     this.imageCollection_20 = new DevExpress.Utils.ImageCollection(this.components);
     this.sbt_status_play = new DevExpress.XtraEditors.SimpleButton();
     this.lbc_time_minus = new DevExpress.XtraEditors.LabelControl();
     this.Label_InfoLine = new DevExpress.XtraEditors.LabelControl();
     this.toolTipController1 = new DevExpress.Utils.ToolTipController(this.components);
     this.lbc_time_back = new DevExpress.XtraEditors.LabelControl();
     this.lbc_time = new DevExpress.XtraEditors.LabelControl();
     this.popup_MainMenu = new DevExpress.XtraBars.PopupMenu(this.components);
     this.splitterControl = new DevExpress.XtraEditors.SplitterControl();
     this.panelControl_Left = new DevExpress.XtraEditors.PanelControl();
     this.RTBox_TextFile = new System.Windows.Forms.RichTextBox();
     this.panelControl_EQ = new DevExpress.XtraEditors.GroupControl();
     this.Pic_Logo = new DevExpress.XtraEditors.PictureEdit();
     this.panelControl_TextEditor = new DevExpress.XtraEditors.PanelControl();
     this.panelControl_All = new DevExpress.XtraEditors.PanelControl();
     this.folderBrowserDialog = new System.Windows.Forms.FolderBrowserDialog();
     this.timer_playng = new System.Windows.Forms.Timer(this.components);
     this.openFileDialog = new System.Windows.Forms.OpenFileDialog();
     this.saveFileDialog = new System.Windows.Forms.SaveFileDialog();
     this.timer_peaklevel = new System.Windows.Forms.Timer(this.components);
     ((System.ComponentModel.ISupportInitialize)(this.barManager)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dockManager1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.imageCollection_16)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEdit1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl_Right)).BeginInit();
     this.panelControl_Right.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl_PlayList)).BeginInit();
     this.panelControl_PlayList.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl_lists)).BeginInit();
     this.panelControl_lists.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.xTabCtrl_PlayLists)).BeginInit();
     this.xTabCtrl_PlayLists.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl_Hot_PL)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl_PlayBack)).BeginInit();
     this.panelControl_PlayBack.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.textEdit_FadeTime.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.imageCollection_30)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.progressBarControl_PlayPosition.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl_PlayInfo)).BeginInit();
     this.panelControl_PlayInfo.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.pbc_analizer_L.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.pbc_analizer_R.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.imageCollection_20)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.popup_MainMenu)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl_Left)).BeginInit();
     this.panelControl_Left.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl_EQ)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.Pic_Logo.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl_TextEditor)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl_All)).BeginInit();
     this.panelControl_All.SuspendLayout();
     this.SuspendLayout();
     //
     // barManager
     //
     this.barManager.Bars.AddRange(new DevExpress.XtraBars.Bar[] {
     this.bar2});
     this.barManager.DockControls.Add(this.barDockControlTop);
     this.barManager.DockControls.Add(this.barDockControlBottom);
     this.barManager.DockControls.Add(this.barDockControlLeft);
     this.barManager.DockControls.Add(this.barDockControlRight);
     this.barManager.DockManager = this.dockManager1;
     this.barManager.Form = this;
     this.barManager.Images = this.imageCollection_16;
     this.barManager.Items.AddRange(new DevExpress.XtraBars.BarItem[] {
     this.mFile,
     this.barButtonItem2,
     this.iOpen,
     this.iClose,
     this.iNew,
     this.iSave,
     this.iSaveAs,
     this.iExit,
     this.mHelp,
     this.iAbout,
     this.iFullScreen,
     this.barSubItem1,
     this.barToolbarsListItem1,
     this.barSubItem2,
     this.barToolbarsListItem2,
     this.barCheckItem1,
     this.im_Open_PM_List,
     this.im_Open_PP_List,
     this.iPlayBack2,
     this.iEQ_Open2,
     this.iOpen_PlayList,
     this.iPlay,
     this.iPause,
     this.iStop,
     this.iOpen_PlayList2,
     this.barSubItem3,
     this.iSave_PlayList_AS,
     this.barButtonItem7,
     this.barButtonItem8,
     this.iClear_PlayList,
     this.iEdit_AddMuzFolder,
     this.iEdit_AddMuzFile,
     this.iEdit_AddTextFile,
     this.iSave_PlayList,
     this.iAbout2,
     this.barSubItem4,
     this.iCheck_Exists_Files,
     this.iTime_Inverse_Check,
     this.barButtonItem18,
     this.si_Shortcut_Commands,
     this.iNext_Track,
     this.iPrev_Track,
     this.iNext_PlayList,
     this.iPrev_PlayList,
     this.iNext_Text,
     this.iPrev_Text,
     this.barButtonItem19,
     this.iRepeat_Check,
     this.iFaider_Check,
     this.barSubItem5,
     this.barSubItem6,
     this.iEQ_Open_Check,
     this.iPlayBack_Check,
     this.iFind2,
     this.iClose_PlayList,
     this.iEdit_DelMuzFile,
     this.iEdit_DelTextFile,
     this.iCheck_AutoScrollText,
     this.iHotFader,
     this.iProgSettings,
     this.iTagsEditor,
     this.iPause_Logo,
     this.iEdit_Tags,
     this.iCheck_Tags_Files,
     this.iEdit_Text_Data,
     this.iEdit_EditTextFile,
     this.iToggle_PL_Show,
     this.iCheckUpdates,
     this.iFindFilter,
     this.iPList_Width,
     this.iHomePage,
     this.iSupportPage,
     this.iShowExplorer_Mp3File,
     this.iShowExplorer_TextFile});
     this.barManager.MainMenu = this.bar2;
     this.barManager.MaxItemId = 89;
     this.barManager.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.repositoryItemTextEdit1});
     //
     // bar2
     //
     this.bar2.BarName = "Главное меню";
     this.bar2.DockCol = 0;
     this.bar2.DockRow = 0;
     this.bar2.DockStyle = DevExpress.XtraBars.BarDockStyle.Right;
     this.bar2.FloatLocation = new System.Drawing.Point(1172, 199);
     this.bar2.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
     new DevExpress.XtraBars.LinkPersistInfo(this.barSubItem1),
     new DevExpress.XtraBars.LinkPersistInfo(this.mHelp),
     new DevExpress.XtraBars.LinkPersistInfo(this.iPlayBack2, true),
     new DevExpress.XtraBars.LinkPersistInfo(this.iEQ_Open2),
     new DevExpress.XtraBars.LinkPersistInfo(this.iPause_Logo),
     new DevExpress.XtraBars.LinkPersistInfo(this.iOpen_PlayList, true),
     new DevExpress.XtraBars.LinkPersistInfo(this.iEdit_Text_Data),
     new DevExpress.XtraBars.LinkPersistInfo(this.iTagsEditor),
     new DevExpress.XtraBars.LinkPersistInfo(this.iToggle_PL_Show, true),
     new DevExpress.XtraBars.LinkPersistInfo(this.iPList_Width)});
     this.bar2.OptionsBar.AllowQuickCustomization = false;
     this.bar2.OptionsBar.DisableClose = true;
     this.bar2.OptionsBar.DrawBorder = false;
     this.bar2.Text = "Главное меню";
     //
     // barSubItem1
     //
     this.barSubItem1.Border = DevExpress.XtraEditors.Controls.BorderStyles.Default;
     this.barSubItem1.Caption = "Вид";
     this.barSubItem1.Id = 13;
     this.barSubItem1.ImageIndex = 16;
     this.barSubItem1.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
     new DevExpress.XtraBars.LinkPersistInfo(this.iFullScreen),
     new DevExpress.XtraBars.LinkPersistInfo(this.iProgSettings),
     new DevExpress.XtraBars.LinkPersistInfo(this.iExit, true)});
     this.barSubItem1.Name = "barSubItem1";
     this.barSubItem1.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionInMenu;
     //
     // iFullScreen
     //
     this.iFullScreen.Caption = "Развернуть на весь экран";
     this.iFullScreen.Id = 18;
     this.iFullScreen.ImageIndex = 14;
     this.iFullScreen.ItemShortcut = new DevExpress.XtraBars.BarShortcut((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.Space));
     this.iFullScreen.Name = "iFullScreen";
     this.iFullScreen.CheckedChanged += new DevExpress.XtraBars.ItemClickEventHandler(this.iFullScreen_CheckedChanged);
     //
     // iProgSettings
     //
     this.iProgSettings.Caption = "Настройки плеера";
     this.iProgSettings.Id = 72;
     this.iProgSettings.ImageIndex = 13;
     this.iProgSettings.Name = "iProgSettings";
     this.iProgSettings.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.iProgSettings_ItemClick);
     //
     // iExit
     //
     this.iExit.Caption = "Выход";
     this.iExit.Id = 9;
     this.iExit.ImageIndex = 25;
     this.iExit.ItemShortcut = new DevExpress.XtraBars.BarShortcut((System.Windows.Forms.Keys.Alt | System.Windows.Forms.Keys.F4));
     this.iExit.Name = "iExit";
     this.iExit.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.iExit_ItemClick);
     //
     // mHelp
     //
     this.mHelp.Border = DevExpress.XtraEditors.Controls.BorderStyles.Default;
     this.mHelp.Caption = "Инфо";
     this.mHelp.Id = 10;
     this.mHelp.ImageIndex = 12;
     this.mHelp.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
     new DevExpress.XtraBars.LinkPersistInfo(this.iAbout),
     new DevExpress.XtraBars.LinkPersistInfo(this.iHomePage, true),
     new DevExpress.XtraBars.LinkPersistInfo(this.iSupportPage),
     new DevExpress.XtraBars.LinkPersistInfo(this.iCheckUpdates, true)});
     this.mHelp.Name = "mHelp";
     this.mHelp.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionInMenu;
     //
     // iAbout
     //
     this.iAbout.Caption = "О программе";
     this.iAbout.Id = 11;
     this.iAbout.ImageIndex = 3;
     this.iAbout.Name = "iAbout";
     this.iAbout.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.iAbout_ItemClick);
     //
     // iHomePage
     //
     this.iHomePage.Caption = "Домашняя страница";
     this.iHomePage.Description = "Перейти на сайт программы";
     this.iHomePage.Id = 85;
     this.iHomePage.ImageIndex = 27;
     this.iHomePage.Name = "iHomePage";
     this.iHomePage.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.iHomePage_ItemClick);
     //
     // iSupportPage
     //
     this.iSupportPage.Caption = "Поддержка";
     this.iSupportPage.Description = "Сообщить об ошибке";
     this.iSupportPage.Id = 86;
     this.iSupportPage.ImageIndex = 28;
     this.iSupportPage.Name = "iSupportPage";
     this.iSupportPage.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.iSupportPage_ItemClick);
     //
     // iCheckUpdates
     //
     this.iCheckUpdates.Caption = "Проверка обновления";
     this.iCheckUpdates.Id = 81;
     this.iCheckUpdates.ImageIndex = 26;
     this.iCheckUpdates.Name = "iCheckUpdates";
     this.iCheckUpdates.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.iCheckUpdates_ItemClick);
     //
     // iPlayBack2
     //
     this.iPlayBack2.Caption = "Управление треком";
     this.iPlayBack2.Id = 24;
     this.iPlayBack2.ImageIndex = 17;
     this.iPlayBack2.ItemShortcut = new DevExpress.XtraBars.BarShortcut((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.P));
     this.iPlayBack2.Name = "iPlayBack2";
     this.iPlayBack2.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.iPlayBack_ItemClick);
     //
     // iEQ_Open2
     //
     this.iEQ_Open2.Caption = "Эквалайзер";
     this.iEQ_Open2.Id = 26;
     this.iEQ_Open2.ImageIndex = 18;
     this.iEQ_Open2.ItemShortcut = new DevExpress.XtraBars.BarShortcut((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.Q));
     this.iEQ_Open2.Name = "iEQ_Open2";
     this.iEQ_Open2.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.iEQ_Open_ItemClick);
     //
     // iPause_Logo
     //
     this.iPause_Logo.Caption = "Заставка (вкл/выкл)";
     this.iPause_Logo.Id = 74;
     this.iPause_Logo.ImageIndex = 20;
     this.iPause_Logo.Name = "iPause_Logo";
     this.iPause_Logo.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.iPause_Logo_ItemClick);
     //
     // iOpen_PlayList
     //
     this.iOpen_PlayList.Caption = "Загрузить Плейлист";
     this.iOpen_PlayList.Id = 28;
     this.iOpen_PlayList.ImageIndex = 31;
     this.iOpen_PlayList.ItemShortcut = new DevExpress.XtraBars.BarShortcut((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.O));
     this.iOpen_PlayList.Name = "iOpen_PlayList";
     this.iOpen_PlayList.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.iOpen_PlayList_ItemClick);
     //
     // iEdit_Text_Data
     //
     this.iEdit_Text_Data.Caption = "Редактор Текста";
     this.iEdit_Text_Data.Id = 78;
     this.iEdit_Text_Data.ImageIndex = 21;
     this.iEdit_Text_Data.Name = "iEdit_Text_Data";
     this.iEdit_Text_Data.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.iEdit_Text_Data_ItemClick);
     //
     // iTagsEditor
     //
     this.iTagsEditor.Caption = "Редактор Тэгов";
     this.iTagsEditor.Hint = "Редактор тэгов трека (F2)";
     this.iTagsEditor.Id = 73;
     this.iTagsEditor.ImageIndex = 4;
     this.iTagsEditor.Name = "iTagsEditor";
     this.iTagsEditor.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.iTagsEditor_ItemClick);
     //
     // iToggle_PL_Show
     //
     this.iToggle_PL_Show.Caption = "Горячий список";
     this.iToggle_PL_Show.Id = 80;
     this.iToggle_PL_Show.ImageIndex = 23;
     this.iToggle_PL_Show.Name = "iToggle_PL_Show";
     this.iToggle_PL_Show.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.iToggle_PL_Show_ItemClick);
     //
     // iPList_Width
     //
     this.iPList_Width.Caption = "Расширение списка";
     this.iPList_Width.Id = 84;
     this.iPList_Width.ImageIndex = 32;
     this.iPList_Width.Name = "iPList_Width";
     this.iPList_Width.CheckedChanged += new DevExpress.XtraBars.ItemClickEventHandler(this.iPList_Width_CheckedChanged);
     //
     // barDockControlTop
     //
     this.barDockControlTop.CausesValidation = false;
     this.barDockControlTop.Dock = System.Windows.Forms.DockStyle.Top;
     this.barDockControlTop.Location = new System.Drawing.Point(0, 0);
     this.barDockControlTop.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.barDockControlTop.Size = new System.Drawing.Size(1025, 0);
     //
     // barDockControlBottom
     //
     this.barDockControlBottom.CausesValidation = false;
     this.barDockControlBottom.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.barDockControlBottom.Location = new System.Drawing.Point(0, 535);
     this.barDockControlBottom.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.barDockControlBottom.Size = new System.Drawing.Size(1025, 0);
     //
     // barDockControlLeft
     //
     this.barDockControlLeft.CausesValidation = false;
     this.barDockControlLeft.Dock = System.Windows.Forms.DockStyle.Left;
     this.barDockControlLeft.Location = new System.Drawing.Point(0, 0);
     this.barDockControlLeft.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.barDockControlLeft.Size = new System.Drawing.Size(0, 535);
     //
     // barDockControlRight
     //
     this.barDockControlRight.CausesValidation = false;
     this.barDockControlRight.Dock = System.Windows.Forms.DockStyle.Right;
     this.barDockControlRight.Location = new System.Drawing.Point(989, 0);
     this.barDockControlRight.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.barDockControlRight.Size = new System.Drawing.Size(36, 535);
     //
     // dockManager1
     //
     this.dockManager1.Form = this;
     this.dockManager1.MenuManager = this.barManager;
     this.dockManager1.TopZIndexControls.AddRange(new string[] {
     "DevExpress.XtraBars.BarDockControl",
     "DevExpress.XtraBars.StandaloneBarDockControl",
     "System.Windows.Forms.StatusBar",
     "DevExpress.XtraBars.Ribbon.RibbonStatusBar",
     "DevExpress.XtraBars.Ribbon.RibbonControl"});
     //
     // imageCollection_16
     //
     this.imageCollection_16.ImageStream = ((DevExpress.Utils.ImageCollectionStreamer)(resources.GetObject("imageCollection_16.ImageStream")));
     this.imageCollection_16.Images.SetKeyName(0, "Copy_ClipAll.png");
     this.imageCollection_16.Images.SetKeyName(1, "Keyboard Shortcuts.gif");
     this.imageCollection_16.Images.SetKeyName(2, "pc_one.bmp");
     this.imageCollection_16.Images.SetKeyName(3, "info.png");
     this.imageCollection_16.Images.SetKeyName(4, "Edit_Catch.png");
     this.imageCollection_16.Images.SetKeyName(5, "App_Close.bmp");
     this.imageCollection_16.Images.SetKeyName(6, "See3.bmp");
     this.imageCollection_16.Images.SetKeyName(7, "Folder.bmp");
     this.imageCollection_16.Images.SetKeyName(8, "Ord_Editing4.png");
     this.imageCollection_16.Images.SetKeyName(9, "See_Hide.png");
     this.imageCollection_16.Images.SetKeyName(10, "See_Hide2.png");
     this.imageCollection_16.Images.SetKeyName(11, "See_Show.png");
     this.imageCollection_16.Images.SetKeyName(12, "info.png");
     this.imageCollection_16.Images.SetKeyName(13, "settings.png");
     this.imageCollection_16.Images.SetKeyName(14, "FullScreen.png");
     this.imageCollection_16.Images.SetKeyName(15, "Tools.png");
     this.imageCollection_16.Images.SetKeyName(16, "Tools2.png");
     this.imageCollection_16.Images.SetKeyName(17, "Tools_Play3.png");
     this.imageCollection_16.Images.SetKeyName(18, "Tools_eq.png");
     this.imageCollection_16.Images.SetKeyName(19, "Main_menu.png");
     this.imageCollection_16.Images.SetKeyName(20, "logo2.png");
     this.imageCollection_16.Images.SetKeyName(21, "Edit_Edit.png");
     this.imageCollection_16.Images.SetKeyName(22, "Edit_Edit3.png");
     this.imageCollection_16.Images.SetKeyName(23, "rotate.png");
     this.imageCollection_16.Images.SetKeyName(24, "Tab_Docs.png");
     this.imageCollection_16.Images.SetKeyName(25, "close.png");
     this.imageCollection_16.Images.SetKeyName(26, "update.png");
     this.imageCollection_16.Images.SetKeyName(27, "Home.png");
     this.imageCollection_16.Images.SetKeyName(28, "support3.png");
     this.imageCollection_16.Images.SetKeyName(29, "support2.png");
     this.imageCollection_16.Images.SetKeyName(30, "support4.png");
     this.imageCollection_16.Images.SetKeyName(31, "open.png");
     this.imageCollection_16.Images.SetKeyName(32, "double.png");
     //
     // mFile
     //
     this.mFile.Border = DevExpress.XtraEditors.Controls.BorderStyles.Default;
     this.mFile.Caption = "Файл";
     this.mFile.Id = 0;
     this.mFile.ImageIndex = 19;
     this.mFile.Name = "mFile";
     this.mFile.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionInMenu;
     //
     // barButtonItem2
     //
     this.barButtonItem2.Caption = "Open";
     this.barButtonItem2.Id = 2;
     this.barButtonItem2.Name = "barButtonItem2";
     //
     // iOpen
     //
     this.iOpen.Caption = "&Open";
     this.iOpen.Id = 4;
     this.iOpen.Name = "iOpen";
     //
     // iClose
     //
     this.iClose.Caption = "&Close";
     this.iClose.Id = 5;
     this.iClose.Name = "iClose";
     //
     // iNew
     //
     this.iNew.Caption = "&New";
     this.iNew.Id = 6;
     this.iNew.Name = "iNew";
     //
     // iSave
     //
     this.iSave.Caption = "&Save";
     this.iSave.Id = 7;
     this.iSave.Name = "iSave";
     //
     // iSaveAs
     //
     this.iSaveAs.Caption = "Save &As";
     this.iSaveAs.Id = 8;
     this.iSaveAs.Name = "iSaveAs";
     //
     // barToolbarsListItem1
     //
     this.barToolbarsListItem1.Caption = "Ntcn";
     this.barToolbarsListItem1.Id = 14;
     this.barToolbarsListItem1.Name = "barToolbarsListItem1";
     //
     // barSubItem2
     //
     this.barSubItem2.Caption = "Размер";
     this.barSubItem2.Id = 15;
     this.barSubItem2.Name = "barSubItem2";
     //
     // barToolbarsListItem2
     //
     this.barToolbarsListItem2.Caption = "Полный экран (с треем)";
     this.barToolbarsListItem2.Id = 16;
     this.barToolbarsListItem2.Name = "barToolbarsListItem2";
     //
     // barCheckItem1
     //
     this.barCheckItem1.Caption = "Полный экран";
     this.barCheckItem1.Id = 17;
     this.barCheckItem1.Name = "barCheckItem1";
     //
     // im_Open_PM_List
     //
     this.im_Open_PM_List.Caption = "Плейлист (Parnas Machine)";
     this.im_Open_PM_List.Id = 20;
     this.im_Open_PM_List.Name = "im_Open_PM_List";
     //
     // im_Open_PP_List
     //
     this.im_Open_PP_List.Caption = "Плейлист";
     this.im_Open_PP_List.Id = 21;
     this.im_Open_PP_List.Name = "im_Open_PP_List";
     //
     // iPlay
     //
     this.iPlay.Caption = "Играть";
     this.iPlay.Id = 29;
     this.iPlay.Name = "iPlay";
     this.iPlay.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.iPlay_ItemClick);
     //
     // iPause
     //
     this.iPause.Caption = "Пауза";
     this.iPause.Id = 30;
     this.iPause.Name = "iPause";
     this.iPause.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.iPause_ItemClick);
     //
     // iStop
     //
     this.iStop.Caption = "Стоп";
     this.iStop.Id = 31;
     this.iStop.Name = "iStop";
     this.iStop.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.iStop_ItemClick);
     //
     // iOpen_PlayList2
     //
     this.iOpen_PlayList2.Caption = "Открыть плейлист";
     this.iOpen_PlayList2.Id = 32;
     this.iOpen_PlayList2.Name = "iOpen_PlayList2";
     this.iOpen_PlayList2.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.iOpen_PlayList_ItemClick);
     //
     // barSubItem3
     //
     this.barSubItem3.Caption = "Сохранить как ...";
     this.barSubItem3.Id = 33;
     this.barSubItem3.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
     new DevExpress.XtraBars.LinkPersistInfo(this.iSave_PlayList_AS),
     new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItem7),
     new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItem8)});
     this.barSubItem3.Name = "barSubItem3";
     //
     // iSave_PlayList_AS
     //
     this.iSave_PlayList_AS.Caption = "Сохранить как PM-плейлист";
     this.iSave_PlayList_AS.Id = 34;
     this.iSave_PlayList_AS.Name = "iSave_PlayList_AS";
     this.iSave_PlayList_AS.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.iSave_PlayList_AS_ItemClick);
     //
     // barButtonItem7
     //
     this.barButtonItem7.Caption = "* Сохранить как PP-плейлист";
     this.barButtonItem7.Enabled = false;
     this.barButtonItem7.Id = 35;
     this.barButtonItem7.Name = "barButtonItem7";
     //
     // barButtonItem8
     //
     this.barButtonItem8.Caption = "* Сохранить в Excel";
     this.barButtonItem8.Enabled = false;
     this.barButtonItem8.Id = 36;
     this.barButtonItem8.Name = "barButtonItem8";
     //
     // iClear_PlayList
     //
     this.iClear_PlayList.Caption = "Очистить плейлист";
     this.iClear_PlayList.Id = 37;
     this.iClear_PlayList.ItemShortcut = new DevExpress.XtraBars.BarShortcut((System.Windows.Forms.Keys.Shift | System.Windows.Forms.Keys.Delete));
     this.iClear_PlayList.Name = "iClear_PlayList";
     this.iClear_PlayList.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.iClear_PlayList_ItemClick);
     //
     // iEdit_AddMuzFolder
     //
     this.iEdit_AddMuzFolder.Caption = "Добавить папку с Муз файлами";
     this.iEdit_AddMuzFolder.Id = 38;
     this.iEdit_AddMuzFolder.Name = "iEdit_AddMuzFolder";
     this.iEdit_AddMuzFolder.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.iEdit_AddMuzFolder_ItemClick);
     //
     // iEdit_AddMuzFile
     //
     this.iEdit_AddMuzFile.Caption = "Добавить муз файл";
     this.iEdit_AddMuzFile.Id = 39;
     this.iEdit_AddMuzFile.Name = "iEdit_AddMuzFile";
     this.iEdit_AddMuzFile.ShortcutKeyDisplayString = "Insert";
     this.iEdit_AddMuzFile.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.iEdit_AddMuzFile_ItemClick);
     //
     // iEdit_AddTextFile
     //
     this.iEdit_AddTextFile.Caption = "Прикрепить текст файл";
     this.iEdit_AddTextFile.Id = 40;
     this.iEdit_AddTextFile.ItemShortcut = new DevExpress.XtraBars.BarShortcut((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.Insert));
     this.iEdit_AddTextFile.Name = "iEdit_AddTextFile";
     this.iEdit_AddTextFile.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.iEdit_AddTextFile_ItemClick);
     //
     // iSave_PlayList
     //
     this.iSave_PlayList.Caption = "Сохранить изменения";
     this.iSave_PlayList.Id = 45;
     this.iSave_PlayList.Name = "iSave_PlayList";
     this.iSave_PlayList.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.iSave_PlayList_ItemClick);
     //
     // iAbout2
     //
     this.iAbout2.Caption = "О программе";
     this.iAbout2.Id = 46;
     this.iAbout2.Name = "iAbout2";
     this.iAbout2.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.iAbout_ItemClick);
     //
     // barSubItem4
     //
     this.barSubItem4.Caption = "Опции";
     this.barSubItem4.Id = 47;
     this.barSubItem4.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
     new DevExpress.XtraBars.LinkPersistInfo(this.iTime_Inverse_Check),
     new DevExpress.XtraBars.LinkPersistInfo(this.iCheck_AutoScrollText),
     new DevExpress.XtraBars.LinkPersistInfo(this.iCheck_Exists_Files),
     new DevExpress.XtraBars.LinkPersistInfo(this.iCheck_Tags_Files),
     new DevExpress.XtraBars.LinkPersistInfo(this.iRepeat_Check),
     new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItem18, true)});
     this.barSubItem4.Name = "barSubItem4";
     //
     // iTime_Inverse_Check
     //
     this.iTime_Inverse_Check.Caption = "Инверсия отсчета времени";
     this.iTime_Inverse_Check.Id = 49;
     this.iTime_Inverse_Check.Name = "iTime_Inverse_Check";
     this.iTime_Inverse_Check.Tag = "Инверсия времени";
     this.iTime_Inverse_Check.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.iCheck_ItemClick);
     //
     // iCheck_AutoScrollText
     //
     this.iCheck_AutoScrollText.Caption = "Вкл. Автоскрол текста";
     this.iCheck_AutoScrollText.Checked = true;
     this.iCheck_AutoScrollText.Id = 70;
     this.iCheck_AutoScrollText.ItemShortcut = new DevExpress.XtraBars.BarShortcut((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.PageDown));
     this.iCheck_AutoScrollText.Name = "iCheck_AutoScrollText";
     this.iCheck_AutoScrollText.Tag = "Автоскрол";
     this.iCheck_AutoScrollText.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.iCheck_ItemClick);
     //
     // iCheck_Exists_Files
     //
     this.iCheck_Exists_Files.Caption = "Вкл. Подсветка плейлиста";
     this.iCheck_Exists_Files.Checked = true;
     this.iCheck_Exists_Files.Id = 48;
     this.iCheck_Exists_Files.Name = "iCheck_Exists_Files";
     this.iCheck_Exists_Files.Tag = "Подсветка плейлиста";
     this.iCheck_Exists_Files.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.iCheck_ItemClick);
     //
     // iCheck_Tags_Files
     //
     this.iCheck_Tags_Files.Caption = "Вкл. Чтение Тэгов при загрузке";
     this.iCheck_Tags_Files.Id = 77;
     this.iCheck_Tags_Files.Name = "iCheck_Tags_Files";
     this.iCheck_Tags_Files.CheckedChanged += new DevExpress.XtraBars.ItemClickEventHandler(this.iCheck_Tags_Files_CheckedChanged);
     //
     // iRepeat_Check
     //
     this.iRepeat_Check.Caption = "Вкл. Нонстоп треков";
     this.iRepeat_Check.Id = 59;
     this.iRepeat_Check.ItemShortcut = new DevExpress.XtraBars.BarShortcut((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.N));
     this.iRepeat_Check.Name = "iRepeat_Check";
     this.iRepeat_Check.Tag = "Нонстоп";
     this.iRepeat_Check.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.iRepeat_Click);
     //
     // barButtonItem18
     //
     this.barButtonItem18.Caption = "Настройки плеера";
     this.barButtonItem18.Id = 50;
     this.barButtonItem18.Name = "barButtonItem18";
     this.barButtonItem18.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.iProgSettings_ItemClick);
     //
     // si_Shortcut_Commands
     //
     this.si_Shortcut_Commands.Caption = "Горячие клавиши";
     this.si_Shortcut_Commands.Id = 51;
     this.si_Shortcut_Commands.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
     new DevExpress.XtraBars.LinkPersistInfo(DevExpress.XtraBars.BarLinkUserDefines.KeyTip, this.iNext_Track, "", false, true, true, 0, null, DevExpress.XtraBars.BarItemPaintStyle.Standard, "", ""),
     new DevExpress.XtraBars.LinkPersistInfo(this.iPrev_Track),
     new DevExpress.XtraBars.LinkPersistInfo(this.iNext_PlayList, true),
     new DevExpress.XtraBars.LinkPersistInfo(this.iPrev_PlayList),
     new DevExpress.XtraBars.LinkPersistInfo(this.iNext_Text, true),
     new DevExpress.XtraBars.LinkPersistInfo(this.iPrev_Text),
     new DevExpress.XtraBars.LinkPersistInfo(this.iHotFader),
     new DevExpress.XtraBars.LinkPersistInfo(this.iFindFilter)});
     this.si_Shortcut_Commands.Name = "si_Shortcut_Commands";
     //
     // iNext_Track
     //
     this.iNext_Track.Caption = "Следующий трек";
     this.iNext_Track.Id = 52;
     this.iNext_Track.ItemShortcut = new DevExpress.XtraBars.BarShortcut(System.Windows.Forms.Keys.Down);
     this.iNext_Track.Name = "iNext_Track";
     this.iNext_Track.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.iNext_Track_ItemClick);
     //
     // iPrev_Track
     //
     this.iPrev_Track.Caption = "Предыдущий трек";
     this.iPrev_Track.Id = 53;
     this.iPrev_Track.ItemShortcut = new DevExpress.XtraBars.BarShortcut(System.Windows.Forms.Keys.Up);
     this.iPrev_Track.Name = "iPrev_Track";
     this.iPrev_Track.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.iPrev_Track_ItemClick);
     //
     // iNext_PlayList
     //
     this.iNext_PlayList.Caption = "Следующий плейлист";
     this.iNext_PlayList.Id = 54;
     this.iNext_PlayList.ItemShortcut = new DevExpress.XtraBars.BarShortcut(System.Windows.Forms.Keys.Right);
     this.iNext_PlayList.Name = "iNext_PlayList";
     this.iNext_PlayList.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.iNext_PlayList_ItemClick);
     //
     // iPrev_PlayList
     //
     this.iPrev_PlayList.Caption = "Предыдущий плейлист";
     this.iPrev_PlayList.Id = 55;
     this.iPrev_PlayList.ItemShortcut = new DevExpress.XtraBars.BarShortcut(System.Windows.Forms.Keys.Left);
     this.iPrev_PlayList.Name = "iPrev_PlayList";
     this.iPrev_PlayList.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.iPrev_PlayList_ItemClick);
     //
     // iNext_Text
     //
     this.iNext_Text.Caption = "Текст вниз";
     this.iNext_Text.Id = 56;
     this.iNext_Text.ItemShortcut = new DevExpress.XtraBars.BarShortcut(System.Windows.Forms.Keys.PageDown);
     this.iNext_Text.Name = "iNext_Text";
     this.iNext_Text.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.iNext_Text_ItemClick);
     //
     // iPrev_Text
     //
     this.iPrev_Text.Caption = "Текст вверх";
     this.iPrev_Text.Id = 57;
     this.iPrev_Text.ItemShortcut = new DevExpress.XtraBars.BarShortcut(System.Windows.Forms.Keys.PageUp);
     this.iPrev_Text.Name = "iPrev_Text";
     this.iPrev_Text.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.iPrev_Text_ItemClick);
     //
     // iHotFader
     //
     this.iHotFader.Caption = "Фейдер";
     this.iHotFader.Id = 71;
     this.iHotFader.ItemShortcut = new DevExpress.XtraBars.BarShortcut((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.X));
     this.iHotFader.Name = "iHotFader";
     this.iHotFader.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.iHotFader_ItemClick);
     //
     // iFindFilter
     //
     this.iFindFilter.Caption = "Поиск с фильтром";
     this.iFindFilter.Id = 82;
     this.iFindFilter.ItemShortcut = new DevExpress.XtraBars.BarShortcut(System.Windows.Forms.Keys.F1);
     this.iFindFilter.Name = "iFindFilter";
     this.iFindFilter.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.iFindFilter_ItemClick);
     //
     // barButtonItem19
     //
     this.barButtonItem19.Caption = "barButtonItem19";
     this.barButtonItem19.Id = 58;
     this.barButtonItem19.Name = "barButtonItem19";
     //
     // iFaider_Check
     //
     this.iFaider_Check.Id = 75;
     this.iFaider_Check.Name = "iFaider_Check";
     //
     // barSubItem5
     //
     this.barSubItem5.Caption = "Изменить плейлист";
     this.barSubItem5.Id = 62;
     this.barSubItem5.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
     new DevExpress.XtraBars.LinkPersistInfo(this.iEdit_AddMuzFolder),
     new DevExpress.XtraBars.LinkPersistInfo(this.iEdit_AddMuzFile),
     new DevExpress.XtraBars.LinkPersistInfo(DevExpress.XtraBars.BarLinkUserDefines.KeyTip, this.iEdit_DelMuzFile, "", false, true, true, 0, null, DevExpress.XtraBars.BarItemPaintStyle.Standard, "", ""),
     new DevExpress.XtraBars.LinkPersistInfo(this.iEdit_Tags),
     new DevExpress.XtraBars.LinkPersistInfo(this.iEdit_AddTextFile, true),
     new DevExpress.XtraBars.LinkPersistInfo(this.iEdit_DelTextFile),
     new DevExpress.XtraBars.LinkPersistInfo(this.iEdit_EditTextFile),
     new DevExpress.XtraBars.LinkPersistInfo(this.iClear_PlayList, true)});
     this.barSubItem5.Name = "barSubItem5";
     //
     // iEdit_DelMuzFile
     //
     this.iEdit_DelMuzFile.Caption = "Удалить муз файл";
     this.iEdit_DelMuzFile.Hint = "Удаляет трек из списка плейлиста";
     this.iEdit_DelMuzFile.Id = 68;
     this.iEdit_DelMuzFile.Name = "iEdit_DelMuzFile";
     this.iEdit_DelMuzFile.ShortcutKeyDisplayString = "Delete";
     this.iEdit_DelMuzFile.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.iEdit_DelMuzFile_ItemClick);
     //
     // iEdit_Tags
     //
     this.iEdit_Tags.Caption = "Изменить Тэги (Tag\'s)";
     this.iEdit_Tags.Id = 76;
     this.iEdit_Tags.ItemShortcut = new DevExpress.XtraBars.BarShortcut(System.Windows.Forms.Keys.F2);
     this.iEdit_Tags.Name = "iEdit_Tags";
     this.iEdit_Tags.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.iTagsEditor_ItemClick);
     //
     // iEdit_DelTextFile
     //
     this.iEdit_DelTextFile.Caption = "Удалить текст файл";
     this.iEdit_DelTextFile.Id = 69;
     this.iEdit_DelTextFile.ItemShortcut = new DevExpress.XtraBars.BarShortcut((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.Delete));
     this.iEdit_DelTextFile.Name = "iEdit_DelTextFile";
     this.iEdit_DelTextFile.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.iEdit_DelTextFile_ItemClick);
     //
     // iEdit_EditTextFile
     //
     this.iEdit_EditTextFile.Caption = "Редактор текстового файла";
     this.iEdit_EditTextFile.Id = 79;
     this.iEdit_EditTextFile.Name = "iEdit_EditTextFile";
     this.iEdit_EditTextFile.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.iEdit_Text_Data_ItemClick);
     //
     // barSubItem6
     //
     this.barSubItem6.Caption = "Инструменты";
     this.barSubItem6.Id = 63;
     this.barSubItem6.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
     new DevExpress.XtraBars.LinkPersistInfo(this.iPlayBack_Check),
     new DevExpress.XtraBars.LinkPersistInfo(this.iEQ_Open_Check),
     new DevExpress.XtraBars.LinkPersistInfo(this.iFind2),
     new DevExpress.XtraBars.LinkPersistInfo(this.iShowExplorer_Mp3File, true),
     new DevExpress.XtraBars.LinkPersistInfo(this.iShowExplorer_TextFile)});
     this.barSubItem6.Name = "barSubItem6";
     //
     // iPlayBack_Check
     //
     this.iPlayBack_Check.Caption = "Панель управления";
     this.iPlayBack_Check.Id = 65;
     this.iPlayBack_Check.ItemShortcut = new DevExpress.XtraBars.BarShortcut((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.P));
     this.iPlayBack_Check.Name = "iPlayBack_Check";
     this.iPlayBack_Check.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.iPlayBack_ItemClick);
     //
     // iEQ_Open_Check
     //
     this.iEQ_Open_Check.Caption = "Панель эквалайзера";
     this.iEQ_Open_Check.Id = 64;
     this.iEQ_Open_Check.ItemShortcut = new DevExpress.XtraBars.BarShortcut((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.Q));
     this.iEQ_Open_Check.Name = "iEQ_Open_Check";
     this.iEQ_Open_Check.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.iEQ_Open_ItemClick);
     //
     // iFind2
     //
     this.iFind2.Caption = "Панель поиска";
     this.iFind2.Id = 66;
     this.iFind2.ItemShortcut = new DevExpress.XtraBars.BarShortcut((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.F));
     this.iFind2.Name = "iFind2";
     //
     // iShowExplorer_Mp3File
     //
     this.iShowExplorer_Mp3File.Caption = "Показать Муз Файл";
     this.iShowExplorer_Mp3File.Id = 87;
     this.iShowExplorer_Mp3File.Name = "iShowExplorer_Mp3File";
     this.iShowExplorer_Mp3File.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.iShowExplorer_Mp3File_ItemClick);
     //
     // iShowExplorer_TextFile
     //
     this.iShowExplorer_TextFile.Caption = "Показать Текст файл";
     this.iShowExplorer_TextFile.Id = 88;
     this.iShowExplorer_TextFile.Name = "iShowExplorer_TextFile";
     this.iShowExplorer_TextFile.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.iShowExplorer_TextFile_ItemClick);
     //
     // iClose_PlayList
     //
     this.iClose_PlayList.Caption = "Закрыть плейлист";
     this.iClose_PlayList.Id = 67;
     this.iClose_PlayList.Name = "iClose_PlayList";
     this.iClose_PlayList.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.iClose_PlayList_ItemClick);
     //
     // repositoryItemTextEdit1
     //
     this.repositoryItemTextEdit1.AutoHeight = false;
     this.repositoryItemTextEdit1.Name = "repositoryItemTextEdit1";
     //
     // panelControl_Right
     //
     this.panelControl_Right.Controls.Add(this.panelControl_PlayList);
     this.panelControl_Right.Controls.Add(this.panelControl_PlayBack);
     this.panelControl_Right.Controls.Add(this.panelControl_PlayInfo);
     this.panelControl_Right.Dock = System.Windows.Forms.DockStyle.Right;
     this.panelControl_Right.Location = new System.Drawing.Point(741, 2);
     this.panelControl_Right.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.panelControl_Right.Name = "panelControl_Right";
     this.barManager.SetPopupContextMenu(this.panelControl_Right, this.popup_MainMenu);
     this.panelControl_Right.Size = new System.Drawing.Size(246, 531);
     this.panelControl_Right.TabIndex = 5;
     this.panelControl_Right.SizeChanged += new System.EventHandler(this.panelControl_Right_SizeChanged);
     //
     // panelControl_PlayList
     //
     this.panelControl_PlayList.Controls.Add(this.splitterControl1);
     this.panelControl_PlayList.Controls.Add(this.panelControl_lists);
     this.panelControl_PlayList.Controls.Add(this.panelControl_Hot_PL);
     this.panelControl_PlayList.Dock = System.Windows.Forms.DockStyle.Fill;
     this.panelControl_PlayList.Location = new System.Drawing.Point(2, 161);
     this.panelControl_PlayList.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.panelControl_PlayList.Name = "panelControl_PlayList";
     this.panelControl_PlayList.Size = new System.Drawing.Size(242, 368);
     this.panelControl_PlayList.TabIndex = 0;
     //
     // splitterControl1
     //
     this.splitterControl1.Cursor = System.Windows.Forms.Cursors.NoMoveVert;
     this.splitterControl1.Dock = System.Windows.Forms.DockStyle.Top;
     this.splitterControl1.Location = new System.Drawing.Point(2, 123);
     this.splitterControl1.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.splitterControl1.Name = "splitterControl1";
     this.splitterControl1.Size = new System.Drawing.Size(238, 6);
     this.splitterControl1.TabIndex = 0;
     this.splitterControl1.TabStop = false;
     //
     // panelControl_lists
     //
     this.panelControl_lists.Controls.Add(this.xTabCtrl_PlayLists);
     this.panelControl_lists.Dock = System.Windows.Forms.DockStyle.Fill;
     this.panelControl_lists.Location = new System.Drawing.Point(2, 123);
     this.panelControl_lists.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.panelControl_lists.Name = "panelControl_lists";
     this.panelControl_lists.Size = new System.Drawing.Size(238, 243);
     this.panelControl_lists.TabIndex = 1;
     //
     // xTabCtrl_PlayLists
     //
     this.xTabCtrl_PlayLists.AppearancePage.Header.Font = new System.Drawing.Font("Tahoma", 9F);
     this.xTabCtrl_PlayLists.AppearancePage.Header.Options.UseFont = true;
     this.xTabCtrl_PlayLists.AppearancePage.HeaderActive.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold);
     this.xTabCtrl_PlayLists.AppearancePage.HeaderActive.Options.UseFont = true;
     this.xTabCtrl_PlayLists.CustomHeaderButtons.AddRange(new DevExpress.XtraTab.Buttons.CustomHeaderButton[] {
     new DevExpress.XtraTab.Buttons.CustomHeaderButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Plus, "Добавить", -1, true, true, DevExpress.XtraEditors.ImageLocation.MiddleCenter, null, serializableAppearanceObject1, "Добавить", null, null, true),
     new DevExpress.XtraTab.Buttons.CustomHeaderButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Minus, "Закрыть", -1, true, true, DevExpress.XtraEditors.ImageLocation.MiddleCenter, null, serializableAppearanceObject2, "Закрыть", null, null, true)});
     this.xTabCtrl_PlayLists.Dock = System.Windows.Forms.DockStyle.Fill;
     this.xTabCtrl_PlayLists.HeaderAutoFill = DevExpress.Utils.DefaultBoolean.False;
     this.xTabCtrl_PlayLists.Images = this.imageCollection_16;
     this.xTabCtrl_PlayLists.Location = new System.Drawing.Point(2, 2);
     this.xTabCtrl_PlayLists.MultiLine = DevExpress.Utils.DefaultBoolean.True;
     this.xTabCtrl_PlayLists.Name = "xTabCtrl_PlayLists";
     this.xTabCtrl_PlayLists.SelectedTabPage = this.xtraTabPage1;
     this.xTabCtrl_PlayLists.Size = new System.Drawing.Size(234, 239);
     this.xTabCtrl_PlayLists.TabIndex = 3;
     this.xTabCtrl_PlayLists.TabPages.AddRange(new DevExpress.XtraTab.XtraTabPage[] {
     this.xtraTabPage1,
     this.xtraTabPage2});
     this.xTabCtrl_PlayLists.SelectedPageChanged += new DevExpress.XtraTab.TabPageChangedEventHandler(this.xTabCtrl_PlayLists_SelectedPageChanged);
     this.xTabCtrl_PlayLists.CustomHeaderButtonClick += new DevExpress.XtraTab.ViewInfo.CustomHeaderButtonEventHandler(this.xTabCtrl_PlayLists_CustomHeaderButtonClick);
     this.xTabCtrl_PlayLists.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.Global_KeyPress);
     //
     // xtraTabPage1
     //
     this.xtraTabPage1.Appearance.PageClient.BackColor = System.Drawing.Color.DarkGray;
     this.xtraTabPage1.Appearance.PageClient.Options.UseBackColor = true;
     this.xtraTabPage1.Name = "xtraTabPage1";
     this.xtraTabPage1.PageVisible = false;
     this.xtraTabPage1.Size = new System.Drawing.Size(228, 210);
     this.xtraTabPage1.Text = "[!]";
     this.xtraTabPage1.Tooltip = "Горячий список";
     //
     // xtraTabPage2
     //
     this.xtraTabPage2.Appearance.PageClient.BackColor = System.Drawing.SystemColors.ActiveCaption;
     this.xtraTabPage2.Appearance.PageClient.Options.UseBackColor = true;
     this.xtraTabPage2.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.xtraTabPage2.Name = "xtraTabPage2";
     this.xtraTabPage2.Size = new System.Drawing.Size(228, 210);
     this.xtraTabPage2.Text = "[1]";
     //
     // panelControl_Hot_PL
     //
     this.panelControl_Hot_PL.Cursor = System.Windows.Forms.Cursors.Default;
     this.panelControl_Hot_PL.Dock = System.Windows.Forms.DockStyle.Top;
     this.panelControl_Hot_PL.Location = new System.Drawing.Point(2, 2);
     this.panelControl_Hot_PL.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.panelControl_Hot_PL.Name = "panelControl_Hot_PL";
     this.panelControl_Hot_PL.Size = new System.Drawing.Size(238, 121);
     this.panelControl_Hot_PL.TabIndex = 0;
     this.panelControl_Hot_PL.Tag = "hot";
     //
     // panelControl_PlayBack
     //
     this.panelControl_PlayBack.Controls.Add(this.textEdit_FadeTime);
     this.panelControl_PlayBack.Controls.Add(this.sbt_FadeTime_Up);
     this.panelControl_PlayBack.Controls.Add(this.sbt_FadeTime_Down);
     this.panelControl_PlayBack.Controls.Add(this.sbtn_Repeat);
     this.panelControl_PlayBack.Controls.Add(this.sbtn_FadeNow);
     this.panelControl_PlayBack.Controls.Add(this.sbtn_Pause);
     this.panelControl_PlayBack.Controls.Add(this.sbtn_Stop);
     this.panelControl_PlayBack.Controls.Add(this.progressBarControl_PlayPosition);
     this.panelControl_PlayBack.Dock = System.Windows.Forms.DockStyle.Top;
     this.panelControl_PlayBack.Location = new System.Drawing.Point(2, 91);
     this.panelControl_PlayBack.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.panelControl_PlayBack.Name = "panelControl_PlayBack";
     this.panelControl_PlayBack.Size = new System.Drawing.Size(242, 70);
     this.panelControl_PlayBack.TabIndex = 53;
     //
     // textEdit_FadeTime
     //
     this.textEdit_FadeTime.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.textEdit_FadeTime.Cursor = System.Windows.Forms.Cursors.NoMoveVert;
     this.textEdit_FadeTime.EditValue = "3";
     this.textEdit_FadeTime.Location = new System.Drawing.Point(25, 32);
     this.textEdit_FadeTime.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.textEdit_FadeTime.Name = "textEdit_FadeTime";
     this.textEdit_FadeTime.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 16.8F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
     this.textEdit_FadeTime.Properties.Appearance.Options.UseFont = true;
     this.textEdit_FadeTime.Properties.Appearance.Options.UseTextOptions = true;
     this.textEdit_FadeTime.Properties.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.textEdit_FadeTime.Properties.ReadOnly = true;
     this.textEdit_FadeTime.Size = new System.Drawing.Size(36, 34);
     this.textEdit_FadeTime.TabIndex = 101;
     this.textEdit_FadeTime.Tag = "Fader";
     this.textEdit_FadeTime.ToolTip = "Изменение интервала фейдера";
     this.textEdit_FadeTime.ToolTipController = this.toolTipController;
     this.textEdit_FadeTime.MouseEnter += new System.EventHandler(this.obj_MouseEnter_Focus);
     this.textEdit_FadeTime.MouseLeave += new System.EventHandler(this.obj_MouseLeave);
     //
     // toolTipController
     //
     this.toolTipController.Appearance.Font = new System.Drawing.Font("Tahoma", 13.8F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
     this.toolTipController.Appearance.Options.UseFont = true;
     this.toolTipController.AutoPopDelay = 2000;
     this.toolTipController.ToolTipLocation = DevExpress.Utils.ToolTipLocation.RightBottom;
     //
     // sbt_FadeTime_Up
     //
     this.sbt_FadeTime_Up.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.sbt_FadeTime_Up.ImageIndex = 5;
     this.sbt_FadeTime_Up.ImageList = this.imageList_32;
     this.sbt_FadeTime_Up.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleCenter;
     this.sbt_FadeTime_Up.Location = new System.Drawing.Point(67, 32);
     this.sbt_FadeTime_Up.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.sbt_FadeTime_Up.Name = "sbt_FadeTime_Up";
     this.sbt_FadeTime_Up.Size = new System.Drawing.Size(20, 18);
     this.sbt_FadeTime_Up.TabIndex = 100;
     this.sbt_FadeTime_Up.Tag = "1";
     this.sbt_FadeTime_Up.ToolTip = "Фейдер (+)";
     this.sbt_FadeTime_Up.ToolTipController = this.toolTipController;
     this.sbt_FadeTime_Up.Click += new System.EventHandler(this.sbt_FadeTime_Change);
     //
     // imageList_32
     //
     this.imageList_32.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageList_32.ImageStream")));
     this.imageList_32.TransparentColor = System.Drawing.Color.Transparent;
     this.imageList_32.Images.SetKeyName(0, "up.png");
     this.imageList_32.Images.SetKeyName(1, "down.png");
     this.imageList_32.Images.SetKeyName(2, "left.png");
     this.imageList_32.Images.SetKeyName(3, "right.png");
     this.imageList_32.Images.SetKeyName(4, "down2.png");
     this.imageList_32.Images.SetKeyName(5, "up2.png");
     //
     // sbt_FadeTime_Down
     //
     this.sbt_FadeTime_Down.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.sbt_FadeTime_Down.ImageIndex = 4;
     this.sbt_FadeTime_Down.ImageList = this.imageList_32;
     this.sbt_FadeTime_Down.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleCenter;
     this.sbt_FadeTime_Down.Location = new System.Drawing.Point(67, 49);
     this.sbt_FadeTime_Down.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.sbt_FadeTime_Down.Name = "sbt_FadeTime_Down";
     this.sbt_FadeTime_Down.Size = new System.Drawing.Size(20, 17);
     this.sbt_FadeTime_Down.TabIndex = 99;
     this.sbt_FadeTime_Down.Tag = "-1";
     this.sbt_FadeTime_Down.ToolTip = "Фейдер (-)";
     this.sbt_FadeTime_Down.ToolTipController = this.toolTipController;
     this.sbt_FadeTime_Down.Click += new System.EventHandler(this.sbt_FadeTime_Change);
     //
     // sbtn_Repeat
     //
     this.sbtn_Repeat.AllowFocus = false;
     this.sbtn_Repeat.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.sbtn_Repeat.Cursor = System.Windows.Forms.Cursors.Hand;
     this.sbtn_Repeat.ImageIndex = 5;
     this.sbtn_Repeat.ImageList = this.imageCollection_30;
     this.sbtn_Repeat.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleCenter;
     this.sbtn_Repeat.Location = new System.Drawing.Point(93, 32);
     this.sbtn_Repeat.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.sbtn_Repeat.Name = "sbtn_Repeat";
     this.sbtn_Repeat.Size = new System.Drawing.Size(32, 32);
     this.sbtn_Repeat.TabIndex = 7;
     this.sbtn_Repeat.Tag = "0";
     this.sbtn_Repeat.ToolTip = "Нонстоп (отключен)";
     this.sbtn_Repeat.ToolTipController = this.toolTipController;
     this.sbtn_Repeat.Click += new System.EventHandler(this.sbtn_Repeat_Click);
     //
     // imageCollection_30
     //
     this.imageCollection_30.ImageSize = new System.Drawing.Size(30, 30);
     this.imageCollection_30.ImageStream = ((DevExpress.Utils.ImageCollectionStreamer)(resources.GetObject("imageCollection_30.ImageStream")));
     this.imageCollection_30.Images.SetKeyName(0, "Play_17.png");
     this.imageCollection_30.Images.SetKeyName(1, "Play_8.png");
     this.imageCollection_30.Images.SetKeyName(2, "Play_13.png");
     this.imageCollection_30.Images.SetKeyName(3, "Play_10.png");
     this.imageCollection_30.Images.SetKeyName(4, "Play_14.png");
     this.imageCollection_30.Images.SetKeyName(5, "Play_15.png");
     this.imageCollection_30.Images.SetKeyName(6, "Play_10_2.png");
     this.imageCollection_30.Images.SetKeyName(7, "Play_1.png");
     this.imageCollection_30.Images.SetKeyName(8, "Play_6.png");
     this.imageCollection_30.Images.SetKeyName(9, "Play_11.png");
     this.imageCollection_30.Images.SetKeyName(10, "Play_12.png");
     //
     // sbtn_FadeNow
     //
     this.sbtn_FadeNow.AllowFocus = false;
     this.sbtn_FadeNow.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.sbtn_FadeNow.Cursor = System.Windows.Forms.Cursors.Hand;
     this.sbtn_FadeNow.ImageIndex = 6;
     this.sbtn_FadeNow.ImageList = this.imageCollection_30;
     this.sbtn_FadeNow.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleCenter;
     this.sbtn_FadeNow.Location = new System.Drawing.Point(129, 32);
     this.sbtn_FadeNow.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.sbtn_FadeNow.Name = "sbtn_FadeNow";
     this.sbtn_FadeNow.Size = new System.Drawing.Size(32, 32);
     this.sbtn_FadeNow.TabIndex = 0;
     this.sbtn_FadeNow.ToolTip = "Фейдер (Ctrl + X)";
     this.sbtn_FadeNow.ToolTipController = this.toolTipController;
     this.sbtn_FadeNow.Click += new System.EventHandler(this.sbtn_FadeNow_Click);
     //
     // sbtn_Pause
     //
     this.sbtn_Pause.AllowFocus = false;
     this.sbtn_Pause.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.sbtn_Pause.Cursor = System.Windows.Forms.Cursors.Hand;
     this.sbtn_Pause.ImageIndex = 0;
     this.sbtn_Pause.ImageList = this.imageCollection_30;
     this.sbtn_Pause.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleCenter;
     this.sbtn_Pause.Location = new System.Drawing.Point(165, 32);
     this.sbtn_Pause.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.sbtn_Pause.Name = "sbtn_Pause";
     this.sbtn_Pause.Size = new System.Drawing.Size(32, 32);
     this.sbtn_Pause.TabIndex = 1;
     this.sbtn_Pause.ToolTip = "Play/Pause";
     this.sbtn_Pause.ToolTipController = this.toolTipController;
     this.sbtn_Pause.Click += new System.EventHandler(this.btn_PausePlay_Click);
     //
     // sbtn_Stop
     //
     this.sbtn_Stop.AllowFocus = false;
     this.sbtn_Stop.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.sbtn_Stop.Cursor = System.Windows.Forms.Cursors.Hand;
     this.sbtn_Stop.ImageIndex = 2;
     this.sbtn_Stop.ImageList = this.imageCollection_30;
     this.sbtn_Stop.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleCenter;
     this.sbtn_Stop.Location = new System.Drawing.Point(201, 32);
     this.sbtn_Stop.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.sbtn_Stop.Name = "sbtn_Stop";
     this.sbtn_Stop.Size = new System.Drawing.Size(32, 32);
     this.sbtn_Stop.TabIndex = 2;
     this.sbtn_Stop.ToolTip = "Стоп";
     this.sbtn_Stop.ToolTipController = this.toolTipController;
     this.sbtn_Stop.Click += new System.EventHandler(this.buttonStop_Click);
     //
     // progressBarControl_PlayPosition
     //
     this.progressBarControl_PlayPosition.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.progressBarControl_PlayPosition.Cursor = System.Windows.Forms.Cursors.IBeam;
     this.progressBarControl_PlayPosition.Location = new System.Drawing.Point(6, 5);
     this.progressBarControl_PlayPosition.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.progressBarControl_PlayPosition.MenuManager = this.barManager;
     this.progressBarControl_PlayPosition.Name = "progressBarControl_PlayPosition";
     this.progressBarControl_PlayPosition.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.progressBarControl_PlayPosition.Properties.DisplayFormat.FormatString = "файл не выбран";
     this.progressBarControl_PlayPosition.Properties.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Custom;
     this.progressBarControl_PlayPosition.Properties.PercentView = false;
     this.progressBarControl_PlayPosition.Properties.ShowTitle = true;
     this.progressBarControl_PlayPosition.Size = new System.Drawing.Size(230, 22);
     this.progressBarControl_PlayPosition.TabIndex = 5;
     this.progressBarControl_PlayPosition.MouseMove += new System.Windows.Forms.MouseEventHandler(this.progressBarControl_PlayPosition_MouseMove);
     this.progressBarControl_PlayPosition.MouseUp += new System.Windows.Forms.MouseEventHandler(this.progressBarControl_PlayPosition_MouseUp);
     //
     // panelControl_PlayInfo
     //
     this.panelControl_PlayInfo.Controls.Add(this.pbc_analizer_L);
     this.panelControl_PlayInfo.Controls.Add(this.pbc_analizer_R);
     this.panelControl_PlayInfo.Controls.Add(this.sbt_status_plist);
     this.panelControl_PlayInfo.Controls.Add(this.sbt_status_play);
     this.panelControl_PlayInfo.Controls.Add(this.lbc_time_minus);
     this.panelControl_PlayInfo.Controls.Add(this.Label_InfoLine);
     this.panelControl_PlayInfo.Controls.Add(this.lbc_time_back);
     this.panelControl_PlayInfo.Controls.Add(this.lbc_time);
     this.panelControl_PlayInfo.Dock = System.Windows.Forms.DockStyle.Top;
     this.panelControl_PlayInfo.Location = new System.Drawing.Point(2, 2);
     this.panelControl_PlayInfo.Name = "panelControl_PlayInfo";
     this.panelControl_PlayInfo.Size = new System.Drawing.Size(242, 89);
     this.panelControl_PlayInfo.TabIndex = 6;
     //
     // pbc_analizer_L
     //
     this.pbc_analizer_L.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.pbc_analizer_L.Cursor = System.Windows.Forms.Cursors.Default;
     this.pbc_analizer_L.EditValue = 1000;
     this.pbc_analizer_L.Location = new System.Drawing.Point(8, 20);
     this.pbc_analizer_L.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.pbc_analizer_L.Name = "pbc_analizer_L";
     this.pbc_analizer_L.Properties.Appearance.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(207)))), ((int)(((byte)(221)))), ((int)(((byte)(238)))));
     this.pbc_analizer_L.Properties.EndColor = System.Drawing.Color.Red;
     this.pbc_analizer_L.Properties.LookAndFeel.SkinName = "VS2010";
     this.pbc_analizer_L.Properties.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Style3D;
     this.pbc_analizer_L.Properties.LookAndFeel.UseDefaultLookAndFeel = false;
     this.pbc_analizer_L.Properties.Maximum = 1000;
     this.pbc_analizer_L.Properties.PercentView = false;
     this.pbc_analizer_L.Properties.ProgressKind = DevExpress.XtraEditors.Controls.ProgressKind.Vertical;
     this.pbc_analizer_L.Properties.StartColor = System.Drawing.Color.Chartreuse;
     this.pbc_analizer_L.Properties.Step = 100;
     this.pbc_analizer_L.Size = new System.Drawing.Size(30, 65);
     this.pbc_analizer_L.TabIndex = 1000;
     this.pbc_analizer_L.Tag = "11";
     this.pbc_analizer_L.ToolTipController = this.toolTipController;
     //
     // pbc_analizer_R
     //
     this.pbc_analizer_R.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.pbc_analizer_R.Cursor = System.Windows.Forms.Cursors.Default;
     this.pbc_analizer_R.EditValue = 1000;
     this.pbc_analizer_R.Location = new System.Drawing.Point(43, 20);
     this.pbc_analizer_R.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.pbc_analizer_R.Name = "pbc_analizer_R";
     this.pbc_analizer_R.Properties.Appearance.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(207)))), ((int)(((byte)(221)))), ((int)(((byte)(238)))));
     this.pbc_analizer_R.Properties.EndColor = System.Drawing.Color.Red;
     this.pbc_analizer_R.Properties.LookAndFeel.SkinName = "Office 2010 Black";
     this.pbc_analizer_R.Properties.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Style3D;
     this.pbc_analizer_R.Properties.LookAndFeel.UseDefaultLookAndFeel = false;
     this.pbc_analizer_R.Properties.Maximum = 1000;
     this.pbc_analizer_R.Properties.PercentView = false;
     this.pbc_analizer_R.Properties.ProgressKind = DevExpress.XtraEditors.Controls.ProgressKind.Vertical;
     this.pbc_analizer_R.Properties.StartColor = System.Drawing.Color.Chartreuse;
     this.pbc_analizer_R.Properties.Step = 100;
     this.pbc_analizer_R.Size = new System.Drawing.Size(30, 65);
     this.pbc_analizer_R.TabIndex = 67;
     this.pbc_analizer_R.Tag = "11";
     this.pbc_analizer_R.ToolTipController = this.toolTipController;
     //
     // sbt_status_plist
     //
     this.sbt_status_plist.AllowFocus = false;
     this.sbt_status_plist.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.sbt_status_plist.Appearance.Font = new System.Drawing.Font("Consolas", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.sbt_status_plist.Appearance.Options.UseFont = true;
     this.sbt_status_plist.Appearance.Options.UseTextOptions = true;
     this.sbt_status_plist.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.sbt_status_plist.Appearance.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Top;
     this.sbt_status_plist.Cursor = System.Windows.Forms.Cursors.Hand;
     this.sbt_status_plist.ImageIndex = 5;
     this.sbt_status_plist.ImageList = this.imageCollection_20;
     this.sbt_status_plist.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleCenter;
     this.sbt_status_plist.Location = new System.Drawing.Point(87, 66);
     this.sbt_status_plist.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.sbt_status_plist.Name = "sbt_status_plist";
     this.sbt_status_plist.Size = new System.Drawing.Size(21, 20);
     this.sbt_status_plist.TabIndex = 14;
     this.sbt_status_plist.Text = "1";
     this.sbt_status_plist.ToolTip = "Плейлист с играющим треком";
     this.sbt_status_plist.Click += new System.EventHandler(this.sbt_show_cur_play);
     //
     // imageCollection_20
     //
     this.imageCollection_20.ImageSize = new System.Drawing.Size(20, 20);
     this.imageCollection_20.ImageStream = ((DevExpress.Utils.ImageCollectionStreamer)(resources.GetObject("imageCollection_20.ImageStream")));
     this.imageCollection_20.Images.SetKeyName(0, "Play_17.png");
     this.imageCollection_20.Images.SetKeyName(1, "Play_sm_8.png");
     this.imageCollection_20.Images.SetKeyName(2, "Play_13.png");
     this.imageCollection_20.Images.SetKeyName(3, "Play_sm_9.png");
     this.imageCollection_20.Images.SetKeyName(4, "Play_sm_6.png");
     this.imageCollection_20.Images.SetKeyName(5, "Play_18.png");
     this.imageCollection_20.Images.SetKeyName(6, "Play_sm_2.png");
     this.imageCollection_20.Images.SetKeyName(7, "Play_sm_7.png");
     this.imageCollection_20.Images.SetKeyName(8, "Play_sm_10.png");
     //
     // sbt_status_play
     //
     this.sbt_status_play.AllowFocus = false;
     this.sbt_status_play.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.sbt_status_play.ImageIndex = 2;
     this.sbt_status_play.ImageList = this.imageCollection_20;
     this.sbt_status_play.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleCenter;
     this.sbt_status_play.Location = new System.Drawing.Point(113, 67);
     this.sbt_status_play.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.sbt_status_play.Name = "sbt_status_play";
     this.sbt_status_play.Size = new System.Drawing.Size(21, 20);
     this.sbt_status_play.TabIndex = 13;
     this.sbt_status_play.ToolTip = "Состояние трека";
     //
     // lbc_time_minus
     //
     this.lbc_time_minus.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.lbc_time_minus.Appearance.Font = new System.Drawing.Font("Verdana", 36F, System.Drawing.FontStyle.Bold);
     this.lbc_time_minus.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Far;
     this.lbc_time_minus.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.lbc_time_minus.Location = new System.Drawing.Point(51, 21);
     this.lbc_time_minus.Name = "lbc_time_minus";
     this.lbc_time_minus.Size = new System.Drawing.Size(16, 43);
     this.lbc_time_minus.TabIndex = 12;
     //
     // Label_InfoLine
     //
     this.Label_InfoLine.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.Label_InfoLine.Appearance.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold);
     this.Label_InfoLine.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Far;
     this.Label_InfoLine.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.NoWrap;
     this.Label_InfoLine.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.Label_InfoLine.Location = new System.Drawing.Point(2, 5);
     this.Label_InfoLine.Name = "Label_InfoLine";
     this.Label_InfoLine.Size = new System.Drawing.Size(233, 15);
     this.Label_InfoLine.TabIndex = 7;
     this.Label_InfoLine.Text = "загрузите треки";
     this.Label_InfoLine.ToolTipController = this.toolTipController1;
     //
     // toolTipController1
     //
     this.toolTipController1.Appearance.Font = new System.Drawing.Font("Tahoma", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
     this.toolTipController1.Appearance.Options.UseFont = true;
     this.toolTipController1.AutoPopDelay = 8000;
     this.toolTipController1.ToolTipLocation = DevExpress.Utils.ToolTipLocation.RightBottom;
     //
     // lbc_time_back
     //
     this.lbc_time_back.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.lbc_time_back.Appearance.Font = new System.Drawing.Font("Verdana", 16.2F, System.Drawing.FontStyle.Bold);
     this.lbc_time_back.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Far;
     this.lbc_time_back.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.lbc_time_back.Location = new System.Drawing.Point(146, 65);
     this.lbc_time_back.Name = "lbc_time_back";
     this.lbc_time_back.Size = new System.Drawing.Size(92, 24);
     this.lbc_time_back.TabIndex = 11;
     this.lbc_time_back.Text = "-00:00";
     //
     // lbc_time
     //
     this.lbc_time.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.lbc_time.Appearance.Font = new System.Drawing.Font("Verdana", 36F, System.Drawing.FontStyle.Bold);
     this.lbc_time.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Far;
     this.lbc_time.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.lbc_time.Location = new System.Drawing.Point(71, 21);
     this.lbc_time.Name = "lbc_time";
     this.lbc_time.Size = new System.Drawing.Size(166, 43);
     this.lbc_time.TabIndex = 8;
     this.lbc_time.Text = "00:00";
     //
     // popup_MainMenu
     //
     this.popup_MainMenu.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
     new DevExpress.XtraBars.LinkPersistInfo(this.iPlay),
     new DevExpress.XtraBars.LinkPersistInfo(this.iPause),
     new DevExpress.XtraBars.LinkPersistInfo(this.iStop),
     new DevExpress.XtraBars.LinkPersistInfo(this.barSubItem4, true),
     new DevExpress.XtraBars.LinkPersistInfo(this.iOpen_PlayList2, true),
     new DevExpress.XtraBars.LinkPersistInfo(this.iClose_PlayList),
     new DevExpress.XtraBars.LinkPersistInfo(this.barSubItem5),
     new DevExpress.XtraBars.LinkPersistInfo(this.iSave_PlayList),
     new DevExpress.XtraBars.LinkPersistInfo(this.barSubItem3),
     new DevExpress.XtraBars.LinkPersistInfo(this.barSubItem6, true),
     new DevExpress.XtraBars.LinkPersistInfo(this.si_Shortcut_Commands, true),
     new DevExpress.XtraBars.LinkPersistInfo(this.iAbout2, true)});
     this.popup_MainMenu.Manager = this.barManager;
     this.popup_MainMenu.Name = "popup_MainMenu";
     //
     // splitterControl
     //
     this.splitterControl.Cursor = System.Windows.Forms.Cursors.NoMoveHoriz;
     this.splitterControl.Dock = System.Windows.Forms.DockStyle.Right;
     this.splitterControl.Location = new System.Drawing.Point(735, 2);
     this.splitterControl.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.splitterControl.Name = "splitterControl";
     this.splitterControl.Size = new System.Drawing.Size(6, 531);
     this.splitterControl.TabIndex = 3;
     this.splitterControl.TabStop = false;
     //
     // panelControl_Left
     //
     this.panelControl_Left.Controls.Add(this.RTBox_TextFile);
     this.panelControl_Left.Controls.Add(this.panelControl_EQ);
     this.panelControl_Left.Controls.Add(this.Pic_Logo);
     this.panelControl_Left.Controls.Add(this.panelControl_TextEditor);
     this.panelControl_Left.Dock = System.Windows.Forms.DockStyle.Fill;
     this.panelControl_Left.Location = new System.Drawing.Point(2, 2);
     this.panelControl_Left.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.panelControl_Left.Name = "panelControl_Left";
     this.panelControl_Left.Size = new System.Drawing.Size(733, 531);
     this.panelControl_Left.TabIndex = 10;
     //
     // RTBox_TextFile
     //
     this.RTBox_TextFile.BackColor = System.Drawing.SystemColors.Info;
     this.RTBox_TextFile.Cursor = System.Windows.Forms.Cursors.NoMoveVert;
     this.RTBox_TextFile.Dock = System.Windows.Forms.DockStyle.Fill;
     this.RTBox_TextFile.HideSelection = false;
     this.RTBox_TextFile.Location = new System.Drawing.Point(2, 224);
     this.RTBox_TextFile.Margin = new System.Windows.Forms.Padding(43, 41, 43, 41);
     this.RTBox_TextFile.Name = "RTBox_TextFile";
     this.RTBox_TextFile.ReadOnly = true;
     this.RTBox_TextFile.ScrollBars = System.Windows.Forms.RichTextBoxScrollBars.ForcedBoth;
     this.RTBox_TextFile.Size = new System.Drawing.Size(729, 152);
     this.RTBox_TextFile.TabIndex = 52;
     this.RTBox_TextFile.Tag = "0";
     this.RTBox_TextFile.Text = "";
     this.RTBox_TextFile.Visible = false;
     this.RTBox_TextFile.WordWrap = false;
     this.RTBox_TextFile.SizeChanged += new System.EventHandler(this.RTBox_TextFile_SizeChanged);
     this.RTBox_TextFile.TextChanged += new System.EventHandler(this.RTBox_TextFile_TextChanged);
     this.RTBox_TextFile.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.RTBox_TextFile_KeyPress);
     this.RTBox_TextFile.Leave += new System.EventHandler(this.RTBox_TextFile_LostFocus);
     this.RTBox_TextFile.MouseEnter += new System.EventHandler(this.RTBox_TextFile_MouseEnter);
     //
     // panelControl_EQ
     //
     this.panelControl_EQ.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.panelControl_EQ.Location = new System.Drawing.Point(2, 376);
     this.panelControl_EQ.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.panelControl_EQ.Name = "panelControl_EQ";
     this.panelControl_EQ.Size = new System.Drawing.Size(729, 153);
     this.panelControl_EQ.TabIndex = 53;
     this.panelControl_EQ.Text = "Эквалайзер";
     //
     // Pic_Logo
     //
     this.Pic_Logo.Dock = System.Windows.Forms.DockStyle.Top;
     this.Pic_Logo.EditValue = ((object)(resources.GetObject("Pic_Logo.EditValue")));
     this.Pic_Logo.Location = new System.Drawing.Point(2, 22);
     this.Pic_Logo.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.Pic_Logo.MenuManager = this.barManager;
     this.Pic_Logo.Name = "Pic_Logo";
     this.Pic_Logo.Properties.Appearance.BackColor = System.Drawing.Color.Black;
     this.Pic_Logo.Properties.Appearance.Options.UseBackColor = true;
     this.Pic_Logo.Properties.SizeMode = DevExpress.XtraEditors.Controls.PictureSizeMode.Squeeze;
     this.Pic_Logo.Size = new System.Drawing.Size(729, 202);
     this.Pic_Logo.TabIndex = 0;
     this.Pic_Logo.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.Global_KeyPress);
     //
     // panelControl_TextEditor
     //
     this.panelControl_TextEditor.Dock = System.Windows.Forms.DockStyle.Top;
     this.panelControl_TextEditor.Location = new System.Drawing.Point(2, 2);
     this.panelControl_TextEditor.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.panelControl_TextEditor.Name = "panelControl_TextEditor";
     this.panelControl_TextEditor.Size = new System.Drawing.Size(729, 20);
     this.panelControl_TextEditor.TabIndex = 54;
     this.panelControl_TextEditor.Visible = false;
     //
     // panelControl_All
     //
     this.panelControl_All.Controls.Add(this.panelControl_Left);
     this.panelControl_All.Controls.Add(this.splitterControl);
     this.panelControl_All.Controls.Add(this.panelControl_Right);
     this.panelControl_All.Dock = System.Windows.Forms.DockStyle.Fill;
     this.panelControl_All.Location = new System.Drawing.Point(0, 0);
     this.panelControl_All.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.panelControl_All.Name = "panelControl_All";
     this.panelControl_All.Size = new System.Drawing.Size(989, 535);
     this.panelControl_All.TabIndex = 54;
     //
     // timer_playng
     //
     this.timer_playng.Enabled = true;
     this.timer_playng.Interval = 450;
     this.timer_playng.Tick += new System.EventHandler(this.timerForCurrentPosition_Tick);
     //
     // openFileDialog
     //
     this.openFileDialog.Multiselect = true;
     //
     // timer_peaklevel
     //
     this.timer_peaklevel.Enabled = true;
     this.timer_peaklevel.Tick += new System.EventHandler(this.timer_peaklevel_Tick);
     //
     // Form_Main
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(1025, 535);
     this.Controls.Add(this.panelControl_All);
     this.Controls.Add(this.barDockControlLeft);
     this.Controls.Add(this.barDockControlRight);
     this.Controls.Add(this.barDockControlBottom);
     this.Controls.Add(this.barDockControlTop);
     this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.IsMdiContainer = true;
     this.LookAndFeel.SkinName = "Office 2010 Blue";
     this.LookAndFeel.UseDefaultLookAndFeel = false;
     this.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.Name = "Form_Main";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "Парнс Плеер";
     this.WindowState = System.Windows.Forms.FormWindowState.Maximized;
     this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.FormMain_Closing);
     this.Load += new System.EventHandler(this.Form_Main_Load);
     ((System.ComponentModel.ISupportInitialize)(this.barManager)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dockManager1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.imageCollection_16)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEdit1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl_Right)).EndInit();
     this.panelControl_Right.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.panelControl_PlayList)).EndInit();
     this.panelControl_PlayList.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.panelControl_lists)).EndInit();
     this.panelControl_lists.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.xTabCtrl_PlayLists)).EndInit();
     this.xTabCtrl_PlayLists.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.panelControl_Hot_PL)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl_PlayBack)).EndInit();
     this.panelControl_PlayBack.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.textEdit_FadeTime.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.imageCollection_30)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.progressBarControl_PlayPosition.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl_PlayInfo)).EndInit();
     this.panelControl_PlayInfo.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.pbc_analizer_L.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.pbc_analizer_R.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.imageCollection_20)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.popup_MainMenu)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl_Left)).EndInit();
     this.panelControl_Left.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.panelControl_EQ)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.Pic_Logo.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl_TextEditor)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl_All)).EndInit();
     this.panelControl_All.ResumeLayout(false);
     this.ResumeLayout(false);
 }