コード例 #1
0
        private void FormatGrid()
        {
            try
            {
                Telerik.WinControls.UI.Localization.RadGridLocalizationProvider.CurrentProvider = new Infrastructure.WinForms.Controls.MySpanishRadGridLocalizationProvider();
                this.grdGRR_Paquetes.Columns.Clear();
                this.grdGRR_Paquetes.AllowAddNewRow = false;


                Telerik.WinControls.UI.GridViewCheckBoxColumn _seleccionar = new Telerik.WinControls.UI.GridViewCheckBoxColumn();
                _seleccionar.Name       = "PACK_Seleccionar";
                _seleccionar.HeaderText = "Seleccionar";
                _seleccionar.FieldName  = "PACK_Seleccionar";
                this.grdGRR_Paquetes.Columns.Add(_seleccionar);

                Telerik.WinControls.UI.GridViewComboBoxColumn _paquete = new Telerik.WinControls.UI.GridViewComboBoxColumn();
                _paquete.Name          = "PACK_Codigo";
                _paquete.HeaderText    = "Paquete";
                _paquete.FieldName     = "PACK_Codigo";
                _paquete.ValueMember   = "PACK_Codigo";
                _paquete.DisplayMember = "PACK_Desc";
                _paquete.DataSource    = Presenter.ListPaquetes;
                this.grdGRR_Paquetes.Columns.Add(_paquete);



                Telerik.WinControls.UI.Localization.RadGridLocalizationProvider.CurrentProvider = new Infrastructure.WinForms.Controls.MySpanishRadGridLocalizationProvider();
                this.grdGRR_Contrato.Columns.Clear();
                this.grdGRR_Contrato.AllowAddNewRow = false;


                Telerik.WinControls.UI.GridViewCheckBoxColumn _seleccionarContrato = new Telerik.WinControls.UI.GridViewCheckBoxColumn();
                _seleccionarContrato.Name       = "CONT_Seleccionar";
                _seleccionarContrato.HeaderText = "Seleccionar";
                _seleccionarContrato.FieldName  = "CONT_Seleccionar";
                this.grdGRR_Contrato.Columns.Add(_seleccionarContrato);

                Telerik.WinControls.UI.GridViewComboBoxColumn _contrato = new Telerik.WinControls.UI.GridViewComboBoxColumn();
                _contrato.Name          = "CONT_Numero";
                _contrato.HeaderText    = "Contrato";
                _contrato.FieldName     = "CONT_Numero";
                _contrato.ValueMember   = "CONT_Numero";
                _contrato.DisplayMember = "CONT_Numero";
                _contrato.DataSource    = null;
                this.grdGRR_Contrato.Columns.Add(_contrato);

                Telerik.WinControls.UI.GridViewTextBoxColumn _contratoequivalencia = new Telerik.WinControls.UI.GridViewTextBoxColumn();
                _contratoequivalencia.Name       = "CONT_NumeroEquivalente";
                _contratoequivalencia.HeaderText = "Contrato Equivalente";
                _contratoequivalencia.FieldName  = "CONT_NumeroEquivalente";
                this.grdGRR_Contrato.Columns.Add(_contratoequivalencia);

                ConfigureGrid();
            }
            catch (Exception ex)
            { Infrastructure.WinForms.Controls.Dialogos.MostrarMensajeError(Presenter.Title, Infrastructure.Aspect.Constants.Mensajes.FormatDataGridView, ex); }
        }
コード例 #2
0
ファイル: COM002LView.cs プロジェクト: ferarell/DelfinGroup
        private void FormatDataGrid()
        {
            try
            {
                Telerik.WinControls.UI.Localization.RadGridLocalizationProvider.CurrentProvider = new Infrastructure.WinForms.Controls.MySpanishRadGridLocalizationProvider();
                this.grdItems.Columns.Clear();
                this.grdItems.AllowAddNewRow = false;
                this.grdItems.AllowEditRow   = true;

                Telerik.WinControls.UI.GridViewCheckBoxColumn _checkColumn = new Telerik.WinControls.UI.GridViewCheckBoxColumn();
                _checkColumn.Name       = "PROS_Asignar";
                _checkColumn.FieldName  = "PROS_Asignar";
                _checkColumn.HeaderText = "ASIGNAR";
                _checkColumn.ReadOnly   = false;
                _checkColumn.DataType   = typeof(Boolean);
                this.grdItems.Columns.Add(_checkColumn);

                //this.grdItems.Columns.Add("ENTC_NomCompletoEjecutivo", "EJECUTIVO", "ENTC_NomCompletoEjecutivo");
                this.grdItems.Columns.Add("ENTC_RazonSocialAgenteCarga", "AGENTE CARGA", "ENTC_RazonSocialAgenteCarga");
                this.grdItems.Columns.Add("TIPO_DescCDT", "COMODITY", "TIPO_DescCDT");
                Telerik.WinControls.UI.GridViewCheckBoxColumn _check = new Telerik.WinControls.UI.GridViewCheckBoxColumn();
                _check.Name       = "ENTC_Prospecto";
                _check.HeaderText = "PROSPECTO";
                _check.FieldName  = "ENTC_Prospecto";
                this.grdItems.Columns.Add(_check);
                this.grdItems.Columns.Add("ENTC_RazonSocialCliente", "CONSIGNATARIO/EMBARCADOR", "ENTC_RazonSocialCliente");
                this.grdItems.Columns.Add("PROS_DiasAsignacion", "DÍAS ASIGNACIÓN", "PROS_DiasAsignacion");
                this.grdItems.Columns.Add("PROS_TEUS", "TEUS", "PROS_TEUS");
                this.grdItems.Columns.Add("PROS_Porcentaje", "PORCENTAJE", "PROS_Porcentaje");
                this.grdItems.Columns.Add("PROS_CNTR40", "CONTENEDOR 40", "PROS_CNTR40");
                this.grdItems.Columns.Add("PROS_CNTR20", "CONTENEDOR 20", "PROS_CNTR20");
                grdItems.BestFitColumns();

                Infrastructure.WinForms.Controls.GridAutoFit.Fit(grdItems);

                grdItems.SelectionMode = Telerik.WinControls.UI.GridViewSelectionMode.FullRowSelect;
                grdItems.MultiSelect   = true;

                grdItems.EnableFiltering  = true;
                grdItems.ShowFilteringRow = false;
                grdItems.MasterTemplate.EnableFiltering       = true;
                grdItems.MasterTemplate.ShowHeaderCellButtons = true;
                grdItems.MasterTemplate.ShowFilteringRow      = false;

                grdItems.EnableGrouping = false;
                grdItems.MasterTemplate.EnableGrouping = false;
                grdItems.EnableSorting = true;
                grdItems.MasterTemplate.EnableCustomSorting = true;
            }
            catch (Exception ex)
            { Infrastructure.WinForms.Controls.Dialogos.MostrarMensajeError(Presenter.Title, Infrastructure.Aspect.Constants.Mensajes.FormatDataGridView, ex); }
        }
コード例 #3
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(tb_MasterUser));
     Telerik.WinControls.UI.GridViewTextBoxColumn   gridViewTextBoxColumn1  = new Telerik.WinControls.UI.GridViewTextBoxColumn();
     Telerik.WinControls.UI.GridViewCommandColumn   gridViewCommandColumn1  = new Telerik.WinControls.UI.GridViewCommandColumn();
     Telerik.WinControls.UI.GridViewTextBoxColumn   gridViewTextBoxColumn2  = new Telerik.WinControls.UI.GridViewTextBoxColumn();
     Telerik.WinControls.UI.GridViewTextBoxColumn   gridViewTextBoxColumn3  = new Telerik.WinControls.UI.GridViewTextBoxColumn();
     Telerik.WinControls.UI.GridViewTextBoxColumn   gridViewTextBoxColumn4  = new Telerik.WinControls.UI.GridViewTextBoxColumn();
     Telerik.WinControls.UI.GridViewComboBoxColumn  gridViewComboBoxColumn1 = new Telerik.WinControls.UI.GridViewComboBoxColumn();
     Telerik.WinControls.UI.GridViewCheckBoxColumn  gridViewCheckBoxColumn1 = new Telerik.WinControls.UI.GridViewCheckBoxColumn();
     Telerik.WinControls.UI.GridViewTextBoxColumn   gridViewTextBoxColumn5  = new Telerik.WinControls.UI.GridViewTextBoxColumn();
     Telerik.WinControls.UI.GridViewDateTimeColumn  gridViewDateTimeColumn1 = new Telerik.WinControls.UI.GridViewDateTimeColumn();
     Telerik.WinControls.UI.GridViewCheckBoxColumn  gridViewCheckBoxColumn2 = new Telerik.WinControls.UI.GridViewCheckBoxColumn();
     Telerik.WinControls.UI.GridViewTextBoxColumn   gridViewTextBoxColumn6  = new Telerik.WinControls.UI.GridViewTextBoxColumn();
     Telerik.WinControls.UI.TableViewDefinition     tableViewDefinition1    = new Telerik.WinControls.UI.TableViewDefinition();
     this.radRibbonBar1            = new Telerik.WinControls.UI.RadRibbonBar();
     this.ribbonTab1               = new Telerik.WinControls.UI.RibbonTab();
     this.radRibbonBarGroup1       = new Telerik.WinControls.UI.RadRibbonBarGroup();
     this.btnNew                   = new Telerik.WinControls.UI.RadButtonElement();
     this.btnSave                  = new Telerik.WinControls.UI.RadButtonElement();
     this.radRibbonBarGroup2       = new Telerik.WinControls.UI.RadRibbonBarGroup();
     this.btnView                  = new Telerik.WinControls.UI.RadButtonElement();
     this.btnEdit                  = new Telerik.WinControls.UI.RadButtonElement();
     this.btnDelete                = new Telerik.WinControls.UI.RadButtonElement();
     this.radRibbonBarGroup4       = new Telerik.WinControls.UI.RadRibbonBarGroup();
     this.btnImport                = new Telerik.WinControls.UI.RadButtonElement();
     this.btnExport                = new Telerik.WinControls.UI.RadButtonElement();
     this.radRibbonBarButtonGroup1 = new Telerik.WinControls.UI.RadRibbonBarButtonGroup();
     this.radRibbonBarGroup3       = new Telerik.WinControls.UI.RadRibbonBarGroup();
     this.btnRefresh               = new Telerik.WinControls.UI.RadButtonElement();
     this.radRibbonBarGroup5       = new Telerik.WinControls.UI.RadRibbonBarGroup();
     this.radRibbonBarButtonGroup3 = new Telerik.WinControls.UI.RadRibbonBarButtonGroup();
     this.btnFilter1               = new Telerik.WinControls.UI.RadButtonElement();
     this.btnUnfilter1             = new Telerik.WinControls.UI.RadButtonElement();
     this.ribbonBarGroupSeparator1 = new Telerik.WinControls.UI.RibbonBarGroupSeparator();
     this.radRibbonBarGroup6       = new Telerik.WinControls.UI.RadRibbonBarGroup();
     this.radButtonElement1        = new Telerik.WinControls.UI.RadButtonElement();
     this.radMenuItem1             = new Telerik.WinControls.UI.RadMenuItem();
     this.radMenuSeparatorItem1    = new Telerik.WinControls.UI.RadMenuSeparatorItem();
     this.radMenuItem2             = new Telerik.WinControls.UI.RadMenuItem();
     this.radStatusStrip1          = new Telerik.WinControls.UI.RadStatusStrip();
     this.radLabelElement1         = new Telerik.WinControls.UI.RadLabelElement();
     this.panel1                   = new System.Windows.Forms.Panel();
     this.dgvData                  = new Telerik.WinControls.UI.RadGridView();
     this.office2010BlueTheme1     = new Telerik.WinControls.Themes.Office2010BlueTheme();
     this.radRibbonBarButtonGroup2 = new Telerik.WinControls.UI.RadRibbonBarButtonGroup();
     this.btnFilter                = new Telerik.WinControls.UI.RadButtonElement();
     this.Unfilter                 = new Telerik.WinControls.UI.RadButtonElement();
     this.radRibbonBarButtonGroup5 = new Telerik.WinControls.UI.RadRibbonBarButtonGroup();
     this.radContextMenu1          = new Telerik.WinControls.UI.RadContextMenu(this.components);
     this.RMenu3                   = new Telerik.WinControls.UI.RadMenuItem();
     this.radMenuSeparatorItem2    = new Telerik.WinControls.UI.RadMenuSeparatorItem();
     this.RMenu4                   = new Telerik.WinControls.UI.RadMenuItem();
     this.RMenu5                   = new Telerik.WinControls.UI.RadMenuItem();
     this.RMenu6                   = new Telerik.WinControls.UI.RadMenuItem();
     this.radContextMenuManager1   = new Telerik.WinControls.UI.RadContextMenuManager();
     ((System.ComponentModel.ISupportInitialize)(this.radRibbonBar1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radStatusStrip1)).BeginInit();
     this.panel1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dgvData)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dgvData.MasterTemplate)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
     this.SuspendLayout();
     //
     // radRibbonBar1
     //
     this.radRibbonBar1.CommandTabs.AddRange(new Telerik.WinControls.RadItem[] {
         this.ribbonTab1
     });
     //
     //
     //
     this.radRibbonBar1.ExitButton.Text = "Exit";
     this.radRibbonBar1.ExitButton.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageBeforeText;
     this.radRibbonBar1.Font     = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.radRibbonBar1.Location = new System.Drawing.Point(0, 0);
     this.radRibbonBar1.Name     = "radRibbonBar1";
     //
     //
     //
     this.radRibbonBar1.OptionsButton.Text = "Options";
     this.radRibbonBar1.OptionsButton.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageBeforeText;
     this.radRibbonBar1.OptionsButton.Visibility        = Telerik.WinControls.ElementVisibility.Hidden;
     //
     //
     //
     this.radRibbonBar1.RootElement.AutoSizeMode = Telerik.WinControls.RadAutoSizeMode.WrapAroundChildren;
     this.radRibbonBar1.Size             = new System.Drawing.Size(805, 161);
     this.radRibbonBar1.StartButtonImage = ((System.Drawing.Image)(resources.GetObject("radRibbonBar1.StartButtonImage")));
     this.radRibbonBar1.StartMenuItems.AddRange(new Telerik.WinControls.RadItem[] {
         this.radMenuItem1,
         this.radMenuSeparatorItem1,
         this.radMenuItem2
     });
     this.radRibbonBar1.TabIndex  = 0;
     this.radRibbonBar1.Text      = "Department (สังกัด/แผนก)";
     this.radRibbonBar1.ThemeName = "Office2010Blue";
     this.radRibbonBar1.Click    += new System.EventHandler(this.radRibbonBar1_Click);
     //
     // ribbonTab1
     //
     this.ribbonTab1.IsSelected = true;
     this.ribbonTab1.Items.AddRange(new Telerik.WinControls.RadItem[] {
         this.radRibbonBarGroup1,
         this.radRibbonBarGroup2,
         this.radRibbonBarGroup4,
         this.radRibbonBarGroup3,
         this.radRibbonBarGroup5,
         this.radRibbonBarGroup6
     });
     this.ribbonTab1.Name = "ribbonTab1";
     this.ribbonTab1.Text = "Action";
     //
     // radRibbonBarGroup1
     //
     this.radRibbonBarGroup1.Items.AddRange(new Telerik.WinControls.RadItem[] {
         this.btnNew,
         this.btnSave
     });
     this.radRibbonBarGroup1.Name = "radRibbonBarGroup1";
     this.radRibbonBarGroup1.Text = "New List";
     //
     // btnNew
     //
     this.btnNew.Image             = ((System.Drawing.Image)(resources.GetObject("btnNew.Image")));
     this.btnNew.ImageAlignment    = System.Drawing.ContentAlignment.MiddleCenter;
     this.btnNew.Name              = "btnNew";
     this.btnNew.Text              = "เพิ่มใหม่";
     this.btnNew.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
     this.btnNew.Visibility        = Telerik.WinControls.ElementVisibility.Collapsed;
     this.btnNew.Click            += new System.EventHandler(this.btnNew_Click);
     //
     // btnSave
     //
     this.btnSave.Image             = ((System.Drawing.Image)(resources.GetObject("btnSave.Image")));
     this.btnSave.ImageAlignment    = System.Drawing.ContentAlignment.MiddleCenter;
     this.btnSave.Name              = "btnSave";
     this.btnSave.Text              = "บันทึกรายการ";
     this.btnSave.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
     this.btnSave.Click            += new System.EventHandler(this.btnSave_Click);
     //
     // radRibbonBarGroup2
     //
     this.radRibbonBarGroup2.Items.AddRange(new Telerik.WinControls.RadItem[] {
         this.btnView,
         this.btnEdit,
         this.btnDelete
     });
     this.radRibbonBarGroup2.Name = "radRibbonBarGroup2";
     this.radRibbonBarGroup2.Text = "Manage";
     //
     // btnView
     //
     this.btnView.Enabled           = false;
     this.btnView.Image             = ((System.Drawing.Image)(resources.GetObject("btnView.Image")));
     this.btnView.ImageAlignment    = System.Drawing.ContentAlignment.MiddleCenter;
     this.btnView.Name              = "btnView";
     this.btnView.Text              = "แสดงรายการ";
     this.btnView.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
     this.btnView.Click            += new System.EventHandler(this.btnView_Click);
     //
     // btnEdit
     //
     this.btnEdit.Image             = ((System.Drawing.Image)(resources.GetObject("btnEdit.Image")));
     this.btnEdit.ImageAlignment    = System.Drawing.ContentAlignment.MiddleCenter;
     this.btnEdit.Name              = "btnEdit";
     this.btnEdit.Text              = "แก้ไขรายการ";
     this.btnEdit.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
     this.btnEdit.Click            += new System.EventHandler(this.btnEdit_Click);
     //
     // btnDelete
     //
     this.btnDelete.Image             = ((System.Drawing.Image)(resources.GetObject("btnDelete.Image")));
     this.btnDelete.ImageAlignment    = System.Drawing.ContentAlignment.MiddleCenter;
     this.btnDelete.Name              = "btnDelete";
     this.btnDelete.Text              = "ลบรายการ";
     this.btnDelete.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
     this.btnDelete.Visibility        = Telerik.WinControls.ElementVisibility.Collapsed;
     this.btnDelete.Click            += new System.EventHandler(this.btnDelete_Click);
     //
     // radRibbonBarGroup4
     //
     this.radRibbonBarGroup4.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(86)))), ((int)(((byte)(86)))), ((int)(((byte)(86)))));
     this.radRibbonBarGroup4.Items.AddRange(new Telerik.WinControls.RadItem[] {
         this.btnImport,
         this.btnExport,
         this.radRibbonBarButtonGroup1
     });
     this.radRibbonBarGroup4.Name = "radRibbonBarGroup4";
     this.radRibbonBarGroup4.Text = "Import / Export";
     //
     // btnImport
     //
     this.btnImport.Image             = ((System.Drawing.Image)(resources.GetObject("btnImport.Image")));
     this.btnImport.ImageAlignment    = System.Drawing.ContentAlignment.MiddleCenter;
     this.btnImport.Name              = "btnImport";
     this.btnImport.SmallImage        = null;
     this.btnImport.Text              = "นำข้อมูลเข้า";
     this.btnImport.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
     this.btnImport.Visibility        = Telerik.WinControls.ElementVisibility.Collapsed;
     this.btnImport.Click            += new System.EventHandler(this.btnImport_Click);
     //
     // btnExport
     //
     this.btnExport.Image             = ((System.Drawing.Image)(resources.GetObject("btnExport.Image")));
     this.btnExport.ImageAlignment    = System.Drawing.ContentAlignment.MiddleCenter;
     this.btnExport.Name              = "btnExport";
     this.btnExport.Text              = "ส่งข้อมูลออก";
     this.btnExport.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
     this.btnExport.Click            += new System.EventHandler(this.btnExport_Click);
     //
     // radRibbonBarButtonGroup1
     //
     this.radRibbonBarButtonGroup1.Name          = "radRibbonBarButtonGroup1";
     this.radRibbonBarButtonGroup1.Padding       = new System.Windows.Forms.Padding(1);
     this.radRibbonBarButtonGroup1.ShowBackColor = false;
     this.radRibbonBarButtonGroup1.ShowBorder    = false;
     this.radRibbonBarButtonGroup1.Text          = "radRibbonBarButtonGroup1";
     //
     // radRibbonBarGroup3
     //
     this.radRibbonBarGroup3.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(135)))), ((int)(((byte)(135)))), ((int)(((byte)(135)))));
     this.radRibbonBarGroup3.Items.AddRange(new Telerik.WinControls.RadItem[] {
         this.btnRefresh
     });
     this.radRibbonBarGroup3.Name = "radRibbonBarGroup3";
     this.radRibbonBarGroup3.Text = "Page";
     //
     // btnRefresh
     //
     this.btnRefresh.ForeColor         = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(6)))), ((int)(((byte)(197)))));
     this.btnRefresh.Image             = ((System.Drawing.Image)(resources.GetObject("btnRefresh.Image")));
     this.btnRefresh.ImageAlignment    = System.Drawing.ContentAlignment.MiddleCenter;
     this.btnRefresh.Name              = "btnRefresh";
     this.btnRefresh.Text              = "รีเฟรช";
     this.btnRefresh.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
     this.btnRefresh.Click            += new System.EventHandler(this.btnCancel_Click);
     //
     // radRibbonBarGroup5
     //
     this.radRibbonBarGroup5.AutoSizeMode  = Telerik.WinControls.RadAutoSizeMode.WrapAroundChildren;
     this.radRibbonBarGroup5.FitToSizeMode = Telerik.WinControls.RadFitToSizeMode.FitToParentContent;
     this.radRibbonBarGroup5.Items.AddRange(new Telerik.WinControls.RadItem[] {
         this.radRibbonBarButtonGroup3
     });
     this.radRibbonBarGroup5.Name = "radRibbonBarGroup5";
     this.radRibbonBarGroup5.Text = "Filter";
     //
     // radRibbonBarButtonGroup3
     //
     this.radRibbonBarButtonGroup3.Items.AddRange(new Telerik.WinControls.RadItem[] {
         this.btnFilter1,
         this.btnUnfilter1,
         this.ribbonBarGroupSeparator1
     });
     this.radRibbonBarButtonGroup3.Name          = "radRibbonBarButtonGroup3";
     this.radRibbonBarButtonGroup3.Orientation   = System.Windows.Forms.Orientation.Vertical;
     this.radRibbonBarButtonGroup3.Padding       = new System.Windows.Forms.Padding(1);
     this.radRibbonBarButtonGroup3.ShowBackColor = false;
     this.radRibbonBarButtonGroup3.ShowBorder    = false;
     this.radRibbonBarButtonGroup3.Text          = "radRibbonBarButtonGroup3";
     //
     // btnFilter1
     //
     this.btnFilter1.Image             = ((System.Drawing.Image)(resources.GetObject("btnFilter1.Image")));
     this.btnFilter1.Name              = "btnFilter1";
     this.btnFilter1.ShowBorder        = false;
     this.btnFilter1.Text              = "กรอง";
     this.btnFilter1.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageBeforeText;
     this.btnFilter1.Click            += new System.EventHandler(this.btnFilter1_Click);
     //
     // btnUnfilter1
     //
     this.btnUnfilter1.Image             = ((System.Drawing.Image)(resources.GetObject("btnUnfilter1.Image")));
     this.btnUnfilter1.Name              = "btnUnfilter1";
     this.btnUnfilter1.ShowBorder        = false;
     this.btnUnfilter1.Text              = "ยกเลิก";
     this.btnUnfilter1.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageBeforeText;
     this.btnUnfilter1.Click            += new System.EventHandler(this.btnUnfilter1_Click);
     //
     // ribbonBarGroupSeparator1
     //
     this.ribbonBarGroupSeparator1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
     this.ribbonBarGroupSeparator1.Name      = "ribbonBarGroupSeparator1";
     this.ribbonBarGroupSeparator1.Text      = "ribbonBarGroupSeparator1";
     //
     // radRibbonBarGroup6
     //
     this.radRibbonBarGroup6.Items.AddRange(new Telerik.WinControls.RadItem[] {
         this.radButtonElement1
     });
     this.radRibbonBarGroup6.Name       = "radRibbonBarGroup6";
     this.radRibbonBarGroup6.Text       = "Contact";
     this.radRibbonBarGroup6.Visibility = Telerik.WinControls.ElementVisibility.Collapsed;
     //
     // radButtonElement1
     //
     this.radButtonElement1.Image             = ((System.Drawing.Image)(resources.GetObject("radButtonElement1.Image")));
     this.radButtonElement1.ImageAlignment    = System.Drawing.ContentAlignment.MiddleCenter;
     this.radButtonElement1.Name              = "radButtonElement1";
     this.radButtonElement1.Text              = "ผู้ติดต่อ";
     this.radButtonElement1.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
     this.radButtonElement1.Click            += new System.EventHandler(this.radButtonElement1_Click);
     //
     // radMenuItem1
     //
     this.radMenuItem1.Image  = ((System.Drawing.Image)(resources.GetObject("radMenuItem1.Image")));
     this.radMenuItem1.Name   = "radMenuItem1";
     this.radMenuItem1.Text   = "Exit";
     this.radMenuItem1.Click += new System.EventHandler(this.radMenuItem1_Click);
     //
     // radMenuSeparatorItem1
     //
     this.radMenuSeparatorItem1.Name          = "radMenuSeparatorItem1";
     this.radMenuSeparatorItem1.Text          = "radMenuSeparatorItem1";
     this.radMenuSeparatorItem1.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // radMenuItem2
     //
     this.radMenuItem2.Image  = ((System.Drawing.Image)(resources.GetObject("radMenuItem2.Image")));
     this.radMenuItem2.Name   = "radMenuItem2";
     this.radMenuItem2.Text   = "History View";
     this.radMenuItem2.Click += new System.EventHandler(this.radMenuItem2_Click);
     //
     // radStatusStrip1
     //
     this.radStatusStrip1.Items.AddRange(new Telerik.WinControls.RadItem[] {
         this.radLabelElement1
     });
     this.radStatusStrip1.Location   = new System.Drawing.Point(0, 608);
     this.radStatusStrip1.Name       = "radStatusStrip1";
     this.radStatusStrip1.Size       = new System.Drawing.Size(805, 26);
     this.radStatusStrip1.SizingGrip = false;
     this.radStatusStrip1.TabIndex   = 1;
     this.radStatusStrip1.Text       = "radStatusStrip1";
     //
     // radLabelElement1
     //
     this.radLabelElement1.Name = "radLabelElement1";
     this.radStatusStrip1.SetSpring(this.radLabelElement1, false);
     this.radLabelElement1.Text     = "Status : สังกัด/แผนก";
     this.radLabelElement1.TextWrap = true;
     //
     // panel1
     //
     this.panel1.BackColor = System.Drawing.Color.White;
     this.panel1.Controls.Add(this.dgvData);
     this.panel1.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.panel1.Location = new System.Drawing.Point(0, 161);
     this.panel1.Name     = "panel1";
     this.panel1.Size     = new System.Drawing.Size(805, 447);
     this.panel1.TabIndex = 2;
     //
     // dgvData
     //
     this.dgvData.BackColor = System.Drawing.Color.White;
     this.dgvData.ColumnChooserSortOrder = Telerik.WinControls.UI.RadSortOrder.Ascending;
     this.dgvData.Cursor       = System.Windows.Forms.Cursors.Default;
     this.dgvData.Dock         = System.Windows.Forms.DockStyle.Fill;
     this.dgvData.EnterKeyMode = Telerik.WinControls.UI.RadGridViewEnterKeyMode.EnterMovesToNextCell;
     this.dgvData.Font         = new System.Drawing.Font("Tahoma", 8.25F);
     this.dgvData.ForeColor    = System.Drawing.Color.Black;
     this.dgvData.ImeMode      = System.Windows.Forms.ImeMode.NoControl;
     this.dgvData.Location     = new System.Drawing.Point(0, 0);
     //
     //
     //
     this.dgvData.MasterTemplate.AddNewRowPosition            = Telerik.WinControls.UI.SystemRowPosition.Bottom;
     this.dgvData.MasterTemplate.AllowCellContextMenu         = false;
     this.dgvData.MasterTemplate.AllowColumnHeaderContextMenu = false;
     this.dgvData.MasterTemplate.AllowDeleteRow      = false;
     this.dgvData.MasterTemplate.AllowDragToGroup    = false;
     this.dgvData.MasterTemplate.AllowRowResize      = false;
     this.dgvData.MasterTemplate.AutoGenerateColumns = false;
     gridViewTextBoxColumn1.EnableExpressionEditor   = false;
     gridViewTextBoxColumn1.FieldName               = "No";
     gridViewTextBoxColumn1.HeaderText              = "ลำดับ";
     gridViewTextBoxColumn1.Name                    = "dgvNo";
     gridViewTextBoxColumn1.ReadOnly                = true;
     gridViewCommandColumn1.DefaultText             = "Delete";
     gridViewCommandColumn1.EnableExpressionEditor  = false;
     gridViewCommandColumn1.FieldName               = "Del";
     gridViewCommandColumn1.HeaderText              = "Del";
     gridViewCommandColumn1.Name                    = "dgvDel";
     gridViewCommandColumn1.TextAlignment           = System.Drawing.ContentAlignment.MiddleCenter;
     gridViewCommandColumn1.UseDefaultText          = true;
     gridViewCommandColumn1.Width                   = 48;
     gridViewTextBoxColumn2.EnableExpressionEditor  = false;
     gridViewTextBoxColumn2.FieldName               = "UserID";
     gridViewTextBoxColumn2.HeaderText              = "ชื่อล็อกอินเข้าระบบ";
     gridViewTextBoxColumn2.Name                    = "UserID";
     gridViewTextBoxColumn2.Width                   = 105;
     gridViewTextBoxColumn3.EnableExpressionEditor  = false;
     gridViewTextBoxColumn3.FieldName               = "UserName";
     gridViewTextBoxColumn3.HeaderText              = "ชื่อ-นามสกุล";
     gridViewTextBoxColumn3.Name                    = "UserName";
     gridViewTextBoxColumn3.Width                   = 146;
     gridViewTextBoxColumn4.EnableExpressionEditor  = false;
     gridViewTextBoxColumn4.FieldName               = "Password";
     gridViewTextBoxColumn4.HeaderText              = "รหัสผ่าน";
     gridViewTextBoxColumn4.MaxLength               = 20;
     gridViewTextBoxColumn4.Name                    = "Password";
     gridViewTextBoxColumn4.Width                   = 84;
     gridViewComboBoxColumn1.AutoCompleteMode       = System.Windows.Forms.AutoCompleteMode.Append;
     gridViewComboBoxColumn1.DropDownStyle          = Telerik.WinControls.RadDropDownStyle.DropDown;
     gridViewComboBoxColumn1.EnableExpressionEditor = false;
     gridViewComboBoxColumn1.FieldName              = "Department";
     gridViewComboBoxColumn1.FilteringMode          = Telerik.WinControls.UI.GridViewFilteringMode.DisplayMember;
     gridViewComboBoxColumn1.HeaderText             = "สังกัด/แผนก";
     gridViewComboBoxColumn1.Name                   = "Department";
     gridViewComboBoxColumn1.ValueMember            = "Department";
     gridViewComboBoxColumn1.Width                  = 104;
     gridViewCheckBoxColumn1.EnableExpressionEditor = false;
     gridViewCheckBoxColumn1.FieldName              = "Status";
     gridViewCheckBoxColumn1.HeaderText             = "สถานะ";
     gridViewCheckBoxColumn1.MinWidth               = 20;
     gridViewCheckBoxColumn1.Name                   = "Status";
     gridViewCheckBoxColumn1.Width                  = 65;
     gridViewTextBoxColumn5.EnableExpressionEditor  = false;
     gridViewTextBoxColumn5.FieldName               = "ModifyBy";
     gridViewTextBoxColumn5.HeaderText              = "สร้างโดย";
     gridViewTextBoxColumn5.Name                    = "CreateBy";
     gridViewTextBoxColumn5.ReadOnly                = true;
     gridViewTextBoxColumn5.Width                   = 80;
     gridViewDateTimeColumn1.EnableExpressionEditor = false;
     gridViewDateTimeColumn1.FieldName              = "ModifyDate";
     gridViewDateTimeColumn1.Format                 = System.Windows.Forms.DateTimePickerFormat.Long;
     gridViewDateTimeColumn1.FormatString           = "{0:dd/MMM/yyyy}";
     gridViewDateTimeColumn1.HeaderText             = "วันที่สร้าง";
     gridViewDateTimeColumn1.Name                   = "CreateDate";
     gridViewDateTimeColumn1.ReadOnly               = true;
     gridViewDateTimeColumn1.Width                  = 95;
     gridViewCheckBoxColumn2.EnableExpressionEditor = false;
     gridViewCheckBoxColumn2.FieldName              = "C";
     gridViewCheckBoxColumn2.HeaderText             = "C";
     gridViewCheckBoxColumn2.IsVisible              = false;
     gridViewCheckBoxColumn2.MinWidth               = 20;
     gridViewCheckBoxColumn2.Name                   = "dgvC";
     gridViewCheckBoxColumn2.ReadOnly               = true;
     gridViewTextBoxColumn6.EnableExpressionEditor  = false;
     gridViewTextBoxColumn6.FieldName               = "id";
     gridViewTextBoxColumn6.HeaderText              = "id";
     gridViewTextBoxColumn6.IsVisible               = false;
     gridViewTextBoxColumn6.Name                    = "id";
     gridViewTextBoxColumn6.ReadOnly                = true;
     this.dgvData.MasterTemplate.Columns.AddRange(new Telerik.WinControls.UI.GridViewDataColumn[] {
         gridViewTextBoxColumn1,
         gridViewCommandColumn1,
         gridViewTextBoxColumn2,
         gridViewTextBoxColumn3,
         gridViewTextBoxColumn4,
         gridViewComboBoxColumn1,
         gridViewCheckBoxColumn1,
         gridViewTextBoxColumn5,
         gridViewDateTimeColumn1,
         gridViewCheckBoxColumn2,
         gridViewTextBoxColumn6
     });
     this.dgvData.MasterTemplate.SelectionMode  = Telerik.WinControls.UI.GridViewSelectionMode.CellSelect;
     this.dgvData.MasterTemplate.ViewDefinition = tableViewDefinition1;
     this.dgvData.Name                   = "dgvData";
     this.dgvData.RightToLeft            = System.Windows.Forms.RightToLeft.No;
     this.dgvData.ShowGroupPanel         = false;
     this.dgvData.Size                   = new System.Drawing.Size(805, 447);
     this.dgvData.TabIndex               = 0;
     this.dgvData.Text                   = "Grid";
     this.dgvData.ThemeName              = "Office2010Blue";
     this.dgvData.RowFormatting         += new Telerik.WinControls.UI.RowFormattingEventHandler(this.MasterTemplate_RowFormatting);
     this.dgvData.CellFormatting        += new Telerik.WinControls.UI.CellFormattingEventHandler(this.MasterTemplate_CellFormatting);
     this.dgvData.EditorRequired        += new Telerik.WinControls.UI.EditorRequiredEventHandler(this.dgvData_EditorRequired);
     this.dgvData.CellEditorInitialized += new Telerik.WinControls.UI.GridViewCellEventHandler(this.dgvData_CellEditorInitialized);
     this.dgvData.CellEndEdit           += new Telerik.WinControls.UI.GridViewCellEventHandler(this.radGridView1_CellEndEdit);
     this.dgvData.CellClick             += new Telerik.WinControls.UI.GridViewCellEventHandler(this.radGridView1_CellClick);
     this.dgvData.CellDoubleClick       += new Telerik.WinControls.UI.GridViewCellEventHandler(this.MasterTemplate_CellDoubleClick);
     this.dgvData.CellValueChanged      += new Telerik.WinControls.UI.GridViewCellEventHandler(this.MasterTemplate_CellValueChanged);
     this.dgvData.PreviewKeyDown        += new System.Windows.Forms.PreviewKeyDownEventHandler(this.radGridView1_PreviewKeyDown);
     //
     // radRibbonBarButtonGroup2
     //
     this.radRibbonBarButtonGroup2.Items.AddRange(new Telerik.WinControls.RadItem[] {
         this.btnFilter,
         this.Unfilter
     });
     this.radRibbonBarButtonGroup2.Name          = "radRibbonBarButtonGroup2";
     this.radRibbonBarButtonGroup2.Orientation   = System.Windows.Forms.Orientation.Vertical;
     this.radRibbonBarButtonGroup2.Padding       = new System.Windows.Forms.Padding(1);
     this.radRibbonBarButtonGroup2.ShowBackColor = false;
     this.radRibbonBarButtonGroup2.Text          = "radRibbonBarButtonGroup2";
     //
     // btnFilter
     //
     this.btnFilter.Image             = ((System.Drawing.Image)(resources.GetObject("btnFilter.Image")));
     this.btnFilter.Name              = "btnFilter";
     this.btnFilter.Text              = "Filter";
     this.btnFilter.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageBeforeText;
     //
     // Unfilter
     //
     this.Unfilter.Image             = ((System.Drawing.Image)(resources.GetObject("Unfilter.Image")));
     this.Unfilter.Name              = "Unfilter";
     this.Unfilter.Text              = "Un Filter";
     this.Unfilter.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageBeforeText;
     //
     // radRibbonBarButtonGroup5
     //
     this.radRibbonBarButtonGroup5.Name          = "radRibbonBarButtonGroup5";
     this.radRibbonBarButtonGroup5.Orientation   = System.Windows.Forms.Orientation.Vertical;
     this.radRibbonBarButtonGroup5.Padding       = new System.Windows.Forms.Padding(1);
     this.radRibbonBarButtonGroup5.ShowBackColor = false;
     this.radRibbonBarButtonGroup5.ShowBorder    = false;
     this.radRibbonBarButtonGroup5.Text          = "radRibbonBarButtonGroup4";
     //
     // radContextMenu1
     //
     this.radContextMenu1.Items.AddRange(new Telerik.WinControls.RadItem[] {
         this.RMenu3,
         this.radMenuSeparatorItem2,
         this.RMenu4,
         this.RMenu5,
         this.RMenu6
     });
     this.radContextMenu1.ThemeName = "Office2010Blue";
     //
     // RMenu3
     //
     this.RMenu3.Font  = new System.Drawing.Font("Tahoma", 8.25F);
     this.RMenu3.Image = ((System.Drawing.Image)(resources.GetObject("RMenu3.Image")));
     this.RMenu3.Name  = "RMenu3";
     this.RMenu3.Text  = "แก้ไขผู้ติดต่อ";
     //
     // radMenuSeparatorItem2
     //
     this.radMenuSeparatorItem2.Name          = "radMenuSeparatorItem2";
     this.radMenuSeparatorItem2.Text          = "radMenuSeparatorItem2";
     this.radMenuSeparatorItem2.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // RMenu4
     //
     this.RMenu4.Font  = new System.Drawing.Font("Tahoma", 8.25F);
     this.RMenu4.Image = ((System.Drawing.Image)(resources.GetObject("RMenu4.Image")));
     this.RMenu4.Name  = "RMenu4";
     this.RMenu4.Text  = "เพิ่มผู้ขาย";
     //
     // RMenu5
     //
     this.RMenu5.Font  = new System.Drawing.Font("Tahoma", 8.25F);
     this.RMenu5.Image = ((System.Drawing.Image)(resources.GetObject("RMenu5.Image")));
     this.RMenu5.Name  = "RMenu5";
     this.RMenu5.Text  = "แก้ไข";
     //
     // RMenu6
     //
     this.RMenu6.Font  = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(222)));
     this.RMenu6.Image = ((System.Drawing.Image)(resources.GetObject("RMenu6.Image")));
     this.RMenu6.Name  = "RMenu6";
     this.RMenu6.Text  = "ลบรายการ";
     //
     // tb_MasterUser
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize          = new System.Drawing.Size(805, 634);
     this.Controls.Add(this.panel1);
     this.Controls.Add(this.radStatusStrip1);
     this.Controls.Add(this.radRibbonBar1);
     this.Icon       = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.KeyPreview = true;
     this.Name       = "tb_MasterUser";
     //
     //
     //
     this.RootElement.ApplyShapeToControl = true;
     this.StartPosition   = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text            = "Department (สังกัด/แผนก)";
     this.Load           += new System.EventHandler(this.Unit_Load);
     this.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.Unit_PreviewKeyDown);
     ((System.ComponentModel.ISupportInitialize)(this.radRibbonBar1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radStatusStrip1)).EndInit();
     this.panel1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.dgvData.MasterTemplate)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dgvData)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this)).EndInit();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
コード例 #4
0
        /// <summary>
        /// Required method for Designer support - do not modify
        /// the contents of this method with the code editor.
        /// </summary>
        private void InitializeComponent()
        {
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn1 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn2 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewCheckBoxColumn gridViewCheckBoxColumn1 = new Telerik.WinControls.UI.GridViewCheckBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn3 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn4 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn5 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn6 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn7 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewCheckBoxColumn gridViewCheckBoxColumn2 = new Telerik.WinControls.UI.GridViewCheckBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn8 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn9 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn10 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn11 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn12 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            this.radPanel1 = new Telerik.WinControls.UI.RadPanel();
            this.btnRemove = new Telerik.WinControls.UI.RadButton();
            this.btnAdd = new Telerik.WinControls.UI.RadButton();
            this.radGroupBox1 = new Telerik.WinControls.UI.RadGroupBox();
            this.gvFail = new Telerik.WinControls.UI.RadGridView();
            this.radGroupBox3 = new Telerik.WinControls.UI.RadGroupBox();
            this.gvAllSchedules = new Telerik.WinControls.UI.RadGridView();
            this.txtSection = new Telerik.WinControls.UI.RadTextBox();
            this.radLabel8 = new Telerik.WinControls.UI.RadLabel();
            this.txtStudentId = new Telerik.WinControls.UI.RadTextBox();
            this.radLabel6 = new Telerik.WinControls.UI.RadLabel();
            this.radGroupBox2 = new Telerik.WinControls.UI.RadGroupBox();
            this.gvSchedule = new Telerik.WinControls.UI.RadGridView();
            this.txtStudentName = new Telerik.WinControls.UI.RadTextBox();
            this.radLabel5 = new Telerik.WinControls.UI.RadLabel();
            this.txtPrevGPA = new Telerik.WinControls.UI.RadTextBox();
            this.radLabel4 = new Telerik.WinControls.UI.RadLabel();
            this.txtUnitsFailed = new Telerik.WinControls.UI.RadTextBox();
            this.radLabel3 = new Telerik.WinControls.UI.RadLabel();
            this.txtGradeLevel = new Telerik.WinControls.UI.RadTextBox();
            this.radLabel2 = new Telerik.WinControls.UI.RadLabel();
            this.txtSY = new Telerik.WinControls.UI.RadTextBox();
            this.radLabel1 = new Telerik.WinControls.UI.RadLabel();
            this.radPanel2 = new Telerik.WinControls.UI.RadPanel();
            this.btnCancel = new Telerik.WinControls.UI.RadButton();
            this.btnSave = new Telerik.WinControls.UI.RadButton();
            ((System.ComponentModel.ISupportInitialize)(this.radPanel1)).BeginInit();
            this.radPanel1.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.btnRemove)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.btnAdd)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radGroupBox1)).BeginInit();
            this.radGroupBox1.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.gvFail)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.gvFail.MasterTemplate)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radGroupBox3)).BeginInit();
            this.radGroupBox3.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.gvAllSchedules)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.gvAllSchedules.MasterTemplate)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.txtSection)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel8)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.txtStudentId)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel6)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radGroupBox2)).BeginInit();
            this.radGroupBox2.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.gvSchedule)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.gvSchedule.MasterTemplate)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.txtStudentName)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel5)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.txtPrevGPA)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel4)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.txtUnitsFailed)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel3)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.txtGradeLevel)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel2)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.txtSY)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radPanel2)).BeginInit();
            this.radPanel2.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.btnCancel)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.btnSave)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
            this.SuspendLayout();
            // 
            // radPanel1
            // 
            this.radPanel1.Controls.Add(this.btnRemove);
            this.radPanel1.Controls.Add(this.btnAdd);
            this.radPanel1.Controls.Add(this.radGroupBox1);
            this.radPanel1.Controls.Add(this.radGroupBox3);
            this.radPanel1.Controls.Add(this.txtSection);
            this.radPanel1.Controls.Add(this.radLabel8);
            this.radPanel1.Controls.Add(this.txtStudentId);
            this.radPanel1.Controls.Add(this.radLabel6);
            this.radPanel1.Controls.Add(this.radGroupBox2);
            this.radPanel1.Controls.Add(this.txtStudentName);
            this.radPanel1.Controls.Add(this.radLabel5);
            this.radPanel1.Controls.Add(this.txtPrevGPA);
            this.radPanel1.Controls.Add(this.radLabel4);
            this.radPanel1.Controls.Add(this.txtUnitsFailed);
            this.radPanel1.Controls.Add(this.radLabel3);
            this.radPanel1.Controls.Add(this.txtGradeLevel);
            this.radPanel1.Controls.Add(this.radLabel2);
            this.radPanel1.Controls.Add(this.txtSY);
            this.radPanel1.Controls.Add(this.radLabel1);
            this.radPanel1.Dock = System.Windows.Forms.DockStyle.Top;
            this.radPanel1.Location = new System.Drawing.Point(0, 0);
            this.radPanel1.Name = "radPanel1";
            this.radPanel1.Size = new System.Drawing.Size(997, 548);
            this.radPanel1.TabIndex = 1;
            // 
            // btnRemove
            // 
            this.btnRemove.Font = new System.Drawing.Font("Segoe UI Black", 9.75F, System.Drawing.FontStyle.Bold);
            this.btnRemove.Location = new System.Drawing.Point(465, 261);
            this.btnRemove.Name = "btnRemove";
            this.btnRemove.Size = new System.Drawing.Size(52, 24);
            this.btnRemove.TabIndex = 22;
            this.btnRemove.Text = "<=";
            this.btnRemove.Click += new System.EventHandler(this.btnRemove_Click);
            // 
            // btnAdd
            // 
            this.btnAdd.Font = new System.Drawing.Font("Segoe UI Black", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.btnAdd.Location = new System.Drawing.Point(465, 193);
            this.btnAdd.Name = "btnAdd";
            this.btnAdd.Size = new System.Drawing.Size(52, 24);
            this.btnAdd.TabIndex = 21;
            this.btnAdd.Text = "=>";
            this.btnAdd.Click += new System.EventHandler(this.btnAdd_Click);
            // 
            // radGroupBox1
            // 
            this.radGroupBox1.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
            this.radGroupBox1.Controls.Add(this.gvFail);
            this.radGroupBox1.Font = new System.Drawing.Font("Segoe UI Semibold", 8.25F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Italic))), System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.radGroupBox1.HeaderText = "Failed Subjects";
            this.radGroupBox1.Location = new System.Drawing.Point(518, 419);
            this.radGroupBox1.Name = "radGroupBox1";
            this.radGroupBox1.Size = new System.Drawing.Size(468, 122);
            this.radGroupBox1.TabIndex = 20;
            this.radGroupBox1.Text = "Failed Subjects";
            // 
            // gvFail
            // 
            this.gvFail.Location = new System.Drawing.Point(6, 22);
            // 
            // 
            // 
            this.gvFail.MasterTemplate.AllowAddNewRow = false;
            gridViewTextBoxColumn1.FieldName = "SubjectCode";
            gridViewTextBoxColumn1.HeaderText = "Subj Code";
            gridViewTextBoxColumn1.Name = "SubjectCode";
            gridViewTextBoxColumn1.Width = 75;
            gridViewTextBoxColumn2.FieldName = "Description";
            gridViewTextBoxColumn2.HeaderText = "Description";
            gridViewTextBoxColumn2.Name = "Description";
            gridViewTextBoxColumn2.Width = 150;
            this.gvFail.MasterTemplate.Columns.AddRange(new Telerik.WinControls.UI.GridViewDataColumn[] {
            gridViewTextBoxColumn1,
            gridViewTextBoxColumn2});
            this.gvFail.MasterTemplate.EnableGrouping = false;
            this.gvFail.Name = "gvFail";
            this.gvFail.ReadOnly = true;
            this.gvFail.Size = new System.Drawing.Size(430, 95);
            this.gvFail.TabIndex = 0;
            this.gvFail.Text = "radGridView2";
            // 
            // radGroupBox3
            // 
            this.radGroupBox3.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
            this.radGroupBox3.Controls.Add(this.gvAllSchedules);
            this.radGroupBox3.Font = new System.Drawing.Font("Segoe UI Semibold", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.radGroupBox3.HeaderText = "All Subjects Offered this School Year";
            this.radGroupBox3.Location = new System.Drawing.Point(3, 67);
            this.radGroupBox3.Name = "radGroupBox3";
            this.radGroupBox3.Size = new System.Drawing.Size(456, 469);
            this.radGroupBox3.TabIndex = 19;
            this.radGroupBox3.Text = "All Subjects Offered this School Year";
            // 
            // gvAllSchedules
            // 
            this.gvAllSchedules.Location = new System.Drawing.Point(5, 22);
            // 
            // 
            // 
            this.gvAllSchedules.MasterTemplate.AllowAddNewRow = false;
            gridViewCheckBoxColumn1.FieldName = "Selected";
            gridViewCheckBoxColumn1.HeaderText = "";
            gridViewCheckBoxColumn1.Name = "Select";
            gridViewCheckBoxColumn1.Width = 20;
            gridViewTextBoxColumn3.FieldName = "SubjectCode";
            gridViewTextBoxColumn3.HeaderText = "Subject";
            gridViewTextBoxColumn3.Name = "SubjectCode";
            gridViewTextBoxColumn4.FieldName = "TimeslotInfo";
            gridViewTextBoxColumn4.HeaderText = "Timeslot";
            gridViewTextBoxColumn4.Name = "TimeslotInfo";
            gridViewTextBoxColumn4.Width = 300;
            gridViewTextBoxColumn5.FieldName = "RoomCode";
            gridViewTextBoxColumn5.HeaderText = "Room";
            gridViewTextBoxColumn5.Name = "RoomCode";
            gridViewTextBoxColumn5.Width = 75;
            gridViewTextBoxColumn6.FieldName = "TeacherName";
            gridViewTextBoxColumn6.HeaderText = "Teacher";
            gridViewTextBoxColumn6.Name = "TeacherName";
            gridViewTextBoxColumn6.Width = 150;
            gridViewTextBoxColumn7.FieldName = "SubjectAssignments";
            gridViewTextBoxColumn7.HeaderText = "column1";
            gridViewTextBoxColumn7.IsVisible = false;
            gridViewTextBoxColumn7.Name = "SubjectAssignments";
            this.gvAllSchedules.MasterTemplate.Columns.AddRange(new Telerik.WinControls.UI.GridViewDataColumn[] {
            gridViewCheckBoxColumn1,
            gridViewTextBoxColumn3,
            gridViewTextBoxColumn4,
            gridViewTextBoxColumn5,
            gridViewTextBoxColumn6,
            gridViewTextBoxColumn7});
            this.gvAllSchedules.MasterTemplate.EnableGrouping = false;
            this.gvAllSchedules.MasterTemplate.MultiSelect = true;
            this.gvAllSchedules.Name = "gvAllSchedules";
            this.gvAllSchedules.Size = new System.Drawing.Size(446, 442);
            this.gvAllSchedules.TabIndex = 0;
            this.gvAllSchedules.Text = "radGridView1";
            this.gvAllSchedules.CellEditorInitialized += new Telerik.WinControls.UI.GridViewCellEventHandler(this.gvAllSchedules_CellEditorInitialized);
            // 
            // txtSection
            // 
            this.txtSection.Location = new System.Drawing.Point(489, 12);
            this.txtSection.Name = "txtSection";
            this.txtSection.Size = new System.Drawing.Size(97, 20);
            this.txtSection.TabIndex = 18;
            // 
            // radLabel8
            // 
            this.radLabel8.Location = new System.Drawing.Point(434, 13);
            this.radLabel8.Name = "radLabel8";
            this.radLabel8.Size = new System.Drawing.Size(49, 18);
            this.radLabel8.TabIndex = 17;
            this.radLabel8.Text = "Section :";
            // 
            // txtStudentId
            // 
            this.txtStudentId.Location = new System.Drawing.Point(110, 36);
            this.txtStudentId.Name = "txtStudentId";
            this.txtStudentId.Size = new System.Drawing.Size(100, 20);
            this.txtStudentId.TabIndex = 13;
            // 
            // radLabel6
            // 
            this.radLabel6.Location = new System.Drawing.Point(13, 39);
            this.radLabel6.Name = "radLabel6";
            this.radLabel6.Size = new System.Drawing.Size(91, 18);
            this.radLabel6.TabIndex = 12;
            this.radLabel6.Text = "Student Id Num.:";
            // 
            // radGroupBox2
            // 
            this.radGroupBox2.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
            this.radGroupBox2.Controls.Add(this.gvSchedule);
            this.radGroupBox2.Font = new System.Drawing.Font("Segoe UI Semibold", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.radGroupBox2.HeaderText = "Subjects Schedule To Enroll";
            this.radGroupBox2.Location = new System.Drawing.Point(518, 67);
            this.radGroupBox2.Name = "radGroupBox2";
            this.radGroupBox2.Size = new System.Drawing.Size(473, 347);
            this.radGroupBox2.TabIndex = 11;
            this.radGroupBox2.Text = "Subjects Schedule To Enroll";
            // 
            // gvSchedule
            // 
            this.gvSchedule.Location = new System.Drawing.Point(5, 22);
            // 
            // 
            // 
            this.gvSchedule.MasterTemplate.AllowAddNewRow = false;
            gridViewCheckBoxColumn2.FieldName = "Selected";
            gridViewCheckBoxColumn2.HeaderText = "";
            gridViewCheckBoxColumn2.Name = "Select";
            gridViewCheckBoxColumn2.Width = 20;
            gridViewTextBoxColumn8.FieldName = "SubjectCode";
            gridViewTextBoxColumn8.HeaderText = "Subject";
            gridViewTextBoxColumn8.Name = "SubjectCode";
            gridViewTextBoxColumn9.FieldName = "TimeslotInfo";
            gridViewTextBoxColumn9.HeaderText = "Timeslot";
            gridViewTextBoxColumn9.Name = "TimeslotInfo";
            gridViewTextBoxColumn9.Width = 300;
            gridViewTextBoxColumn10.FieldName = "RoomCode";
            gridViewTextBoxColumn10.HeaderText = "Room";
            gridViewTextBoxColumn10.Name = "RoomCode";
            gridViewTextBoxColumn10.Width = 75;
            gridViewTextBoxColumn11.FieldName = "TeacherName";
            gridViewTextBoxColumn11.HeaderText = "Teacher";
            gridViewTextBoxColumn11.Name = "TeacherName";
            gridViewTextBoxColumn11.Width = 150;
            gridViewTextBoxColumn12.FieldName = "SubjectAssignments";
            gridViewTextBoxColumn12.HeaderText = "column1";
            gridViewTextBoxColumn12.Name = "SubjectAssignments";
            this.gvSchedule.MasterTemplate.Columns.AddRange(new Telerik.WinControls.UI.GridViewDataColumn[] {
            gridViewCheckBoxColumn2,
            gridViewTextBoxColumn8,
            gridViewTextBoxColumn9,
            gridViewTextBoxColumn10,
            gridViewTextBoxColumn11,
            gridViewTextBoxColumn12});
            this.gvSchedule.MasterTemplate.EnableGrouping = false;
            this.gvSchedule.Name = "gvSchedule";
            this.gvSchedule.Size = new System.Drawing.Size(463, 311);
            this.gvSchedule.TabIndex = 0;
            this.gvSchedule.Text = "radGridView1";
            this.gvSchedule.CellEditorInitialized += new Telerik.WinControls.UI.GridViewCellEventHandler(this.gvSchedule_CellEditorInitialized);
            // 
            // txtStudentName
            // 
            this.txtStudentName.Location = new System.Drawing.Point(308, 37);
            this.txtStudentName.Name = "txtStudentName";
            this.txtStudentName.Size = new System.Drawing.Size(278, 20);
            this.txtStudentName.TabIndex = 9;
            // 
            // radLabel5
            // 
            this.radLabel5.Location = new System.Drawing.Point(260, 37);
            this.radLabel5.Name = "radLabel5";
            this.radLabel5.Size = new System.Drawing.Size(42, 18);
            this.radLabel5.TabIndex = 8;
            this.radLabel5.Text = "Name :";
            // 
            // txtPrevGPA
            // 
            this.txtPrevGPA.Location = new System.Drawing.Point(665, 39);
            this.txtPrevGPA.Name = "txtPrevGPA";
            this.txtPrevGPA.Size = new System.Drawing.Size(100, 20);
            this.txtPrevGPA.TabIndex = 7;
            // 
            // radLabel4
            // 
            this.radLabel4.Location = new System.Drawing.Point(599, 39);
            this.radLabel4.Name = "radLabel4";
            this.radLabel4.Size = new System.Drawing.Size(60, 18);
            this.radLabel4.TabIndex = 6;
            this.radLabel4.Text = "Prev. GPA :";
            // 
            // txtUnitsFailed
            // 
            this.txtUnitsFailed.Location = new System.Drawing.Point(689, 13);
            this.txtUnitsFailed.Name = "txtUnitsFailed";
            this.txtUnitsFailed.Size = new System.Drawing.Size(76, 20);
            this.txtUnitsFailed.TabIndex = 5;
            // 
            // radLabel3
            // 
            this.radLabel3.Location = new System.Drawing.Point(593, 14);
            this.radLabel3.Name = "radLabel3";
            this.radLabel3.Size = new System.Drawing.Size(90, 18);
            this.radLabel3.TabIndex = 4;
            this.radLabel3.Text = "# of Units Failed:";
            // 
            // txtGradeLevel
            // 
            this.txtGradeLevel.Location = new System.Drawing.Point(308, 13);
            this.txtGradeLevel.Name = "txtGradeLevel";
            this.txtGradeLevel.Size = new System.Drawing.Size(69, 20);
            this.txtGradeLevel.TabIndex = 3;
            // 
            // radLabel2
            // 
            this.radLabel2.Location = new System.Drawing.Point(235, 15);
            this.radLabel2.Name = "radLabel2";
            this.radLabel2.Size = new System.Drawing.Size(67, 18);
            this.radLabel2.TabIndex = 2;
            this.radLabel2.Text = "Grade Level:";
            // 
            // txtSY
            // 
            this.txtSY.Location = new System.Drawing.Point(110, 12);
            this.txtSY.Name = "txtSY";
            this.txtSY.Size = new System.Drawing.Size(100, 20);
            this.txtSY.TabIndex = 1;
            // 
            // radLabel1
            // 
            this.radLabel1.Location = new System.Drawing.Point(13, 13);
            this.radLabel1.Name = "radLabel1";
            this.radLabel1.Size = new System.Drawing.Size(67, 18);
            this.radLabel1.TabIndex = 0;
            this.radLabel1.Text = "School Year:";
            // 
            // radPanel2
            // 
            this.radPanel2.Controls.Add(this.btnCancel);
            this.radPanel2.Controls.Add(this.btnSave);
            this.radPanel2.Dock = System.Windows.Forms.DockStyle.Bottom;
            this.radPanel2.Location = new System.Drawing.Point(0, 547);
            this.radPanel2.Name = "radPanel2";
            this.radPanel2.Size = new System.Drawing.Size(997, 35);
            this.radPanel2.TabIndex = 2;
            // 
            // btnCancel
            // 
            this.btnCancel.Location = new System.Drawing.Point(846, 7);
            this.btnCancel.Name = "btnCancel";
            this.btnCancel.Size = new System.Drawing.Size(89, 24);
            this.btnCancel.TabIndex = 1;
            this.btnCancel.Text = "Cancel";
            this.btnCancel.Click += new System.EventHandler(this.btnCancel_Click);
            // 
            // btnSave
            // 
            this.btnSave.Location = new System.Drawing.Point(759, 7);
            this.btnSave.Name = "btnSave";
            this.btnSave.Size = new System.Drawing.Size(81, 24);
            this.btnSave.TabIndex = 0;
            this.btnSave.Text = "Save";
            this.btnSave.Click += new System.EventHandler(this.btnSave_Click);
            // 
            // frmControlSubjects
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.ClientSize = new System.Drawing.Size(997, 582);
            this.Controls.Add(this.radPanel2);
            this.Controls.Add(this.radPanel1);
            this.Name = "frmControlSubjects";
            // 
            // 
            // 
            this.RootElement.ApplyShapeToControl = true;
            this.Text = "Assign Subjects to Students";
            this.ThemeName = "ControlDefault";
            this.Load += new System.EventHandler(this.frmControlSubjects_Load);
            ((System.ComponentModel.ISupportInitialize)(this.radPanel1)).EndInit();
            this.radPanel1.ResumeLayout(false);
            this.radPanel1.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.btnRemove)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.btnAdd)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radGroupBox1)).EndInit();
            this.radGroupBox1.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.gvFail.MasterTemplate)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.gvFail)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radGroupBox3)).EndInit();
            this.radGroupBox3.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.gvAllSchedules.MasterTemplate)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.gvAllSchedules)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.txtSection)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel8)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.txtStudentId)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel6)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radGroupBox2)).EndInit();
            this.radGroupBox2.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.gvSchedule.MasterTemplate)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.gvSchedule)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.txtStudentName)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel5)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.txtPrevGPA)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel4)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.txtUnitsFailed)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel3)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.txtGradeLevel)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel2)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.txtSY)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radPanel2)).EndInit();
            this.radPanel2.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.btnCancel)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.btnSave)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this)).EndInit();
            this.ResumeLayout(false);

        }
コード例 #5
0
 /// <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(frmParametrosCalidad));
     Telerik.WinControls.UI.GridViewTextBoxColumn   gridViewTextBoxColumn1  = new Telerik.WinControls.UI.GridViewTextBoxColumn();
     Telerik.WinControls.UI.GridViewTextBoxColumn   gridViewTextBoxColumn2  = new Telerik.WinControls.UI.GridViewTextBoxColumn();
     Telerik.WinControls.UI.GridViewTextBoxColumn   gridViewTextBoxColumn3  = new Telerik.WinControls.UI.GridViewTextBoxColumn();
     Telerik.WinControls.UI.GridViewTextBoxColumn   gridViewTextBoxColumn4  = new Telerik.WinControls.UI.GridViewTextBoxColumn();
     Telerik.WinControls.UI.GridViewDecimalColumn   gridViewDecimalColumn1  = new Telerik.WinControls.UI.GridViewDecimalColumn();
     Telerik.WinControls.UI.GridViewDecimalColumn   gridViewDecimalColumn2  = new Telerik.WinControls.UI.GridViewDecimalColumn();
     Telerik.WinControls.UI.GridViewDecimalColumn   gridViewDecimalColumn3  = new Telerik.WinControls.UI.GridViewDecimalColumn();
     Telerik.WinControls.UI.GridViewDecimalColumn   gridViewDecimalColumn4  = new Telerik.WinControls.UI.GridViewDecimalColumn();
     Telerik.WinControls.UI.GridViewDecimalColumn   gridViewDecimalColumn5  = new Telerik.WinControls.UI.GridViewDecimalColumn();
     Telerik.WinControls.UI.GridViewDecimalColumn   gridViewDecimalColumn6  = new Telerik.WinControls.UI.GridViewDecimalColumn();
     Telerik.WinControls.UI.GridViewDecimalColumn   gridViewDecimalColumn7  = new Telerik.WinControls.UI.GridViewDecimalColumn();
     Telerik.WinControls.UI.GridViewDecimalColumn   gridViewDecimalColumn8  = new Telerik.WinControls.UI.GridViewDecimalColumn();
     Telerik.WinControls.UI.GridViewCheckBoxColumn  gridViewCheckBoxColumn1 = new Telerik.WinControls.UI.GridViewCheckBoxColumn();
     Telerik.WinControls.UI.TableViewDefinition     tableViewDefinition1    = new Telerik.WinControls.UI.TableViewDefinition();
     this.radCommandBar1          = new Telerik.WinControls.UI.RadCommandBar();
     this.commandBarRowElement1   = new Telerik.WinControls.UI.CommandBarRowElement();
     this.commandBarStripElement1 = new Telerik.WinControls.UI.CommandBarStripElement();
     this.btnNuevo             = new Telerik.WinControls.UI.CommandBarButton();
     this.commandBarSeparator3 = new Telerik.WinControls.UI.CommandBarSeparator();
     this.btnGuardar           = new Telerik.WinControls.UI.CommandBarButton();
     this.commandBarSeparator1 = new Telerik.WinControls.UI.CommandBarSeparator();
     this.btnEliminar          = new Telerik.WinControls.UI.CommandBarButton();
     this.commandBarSeparator4 = new Telerik.WinControls.UI.CommandBarSeparator();
     this.btnSalir             = new Telerik.WinControls.UI.CommandBarButton();
     this.commandBarSeparator2 = new Telerik.WinControls.UI.CommandBarSeparator();
     this.commandBarLabel1     = new Telerik.WinControls.UI.CommandBarLabel();
     this.radPanel1            = new Telerik.WinControls.UI.RadPanel();
     this.btnAdd     = new Telerik.WinControls.UI.RadButton();
     this.txtId      = new Telerik.WinControls.UI.RadTextBox();
     this.chkEstatus = new System.Windows.Forms.CheckBox();
     this.txtNorma   = new Telerik.WinControls.UI.RadTextBox();
     this.label1     = new System.Windows.Forms.Label();
     this.cboColores = new Telerik.WinControls.UI.RadDropDownList();
     this.label2     = new System.Windows.Forms.Label();
     this.commandBarStripElement2 = new Telerik.WinControls.UI.CommandBarStripElement();
     this.gvDatos = new Telerik.WinControls.UI.RadGridView();
     this.commandBarStripElement3 = new Telerik.WinControls.UI.CommandBarStripElement();
     this.commandBarStripElement4 = new Telerik.WinControls.UI.CommandBarStripElement();
     ((System.ComponentModel.ISupportInitialize)(this.radCommandBar1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radPanel1)).BeginInit();
     this.radPanel1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.btnAdd)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtId)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtNorma)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cboColores)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvDatos)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvDatos.MasterTemplate)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
     this.SuspendLayout();
     //
     // radCommandBar1
     //
     this.radCommandBar1.Dock     = System.Windows.Forms.DockStyle.Top;
     this.radCommandBar1.Location = new System.Drawing.Point(0, 0);
     this.radCommandBar1.Name     = "radCommandBar1";
     this.radCommandBar1.Rows.AddRange(new Telerik.WinControls.UI.CommandBarRowElement[] {
         this.commandBarRowElement1
     });
     this.radCommandBar1.Size     = new System.Drawing.Size(747, 53);
     this.radCommandBar1.TabIndex = 0;
     //
     // commandBarRowElement1
     //
     this.commandBarRowElement1.DisabledTextRenderingHint = System.Drawing.Text.TextRenderingHint.SystemDefault;
     this.commandBarRowElement1.MinSize = new System.Drawing.Size(25, 25);
     this.commandBarRowElement1.Name    = "commandBarRowElement1";
     this.commandBarRowElement1.Strips.AddRange(new Telerik.WinControls.UI.CommandBarStripElement[] {
         this.commandBarStripElement1
     });
     this.commandBarRowElement1.Text = "";
     this.commandBarRowElement1.TextRenderingHint          = System.Drawing.Text.TextRenderingHint.SystemDefault;
     this.commandBarRowElement1.UseCompatibleTextRendering = false;
     //
     // commandBarStripElement1
     //
     this.commandBarStripElement1.DisplayName = "commandBarStripElement1";
     this.commandBarStripElement1.Items.AddRange(new Telerik.WinControls.UI.RadCommandBarBaseItem[] {
         this.btnNuevo,
         this.commandBarSeparator3,
         this.btnGuardar,
         this.commandBarSeparator1,
         this.btnEliminar,
         this.commandBarSeparator4,
         this.btnSalir,
         this.commandBarSeparator2,
         this.commandBarLabel1
     });
     this.commandBarStripElement1.Name = "commandBarStripElement1";
     //
     //
     //
     this.commandBarStripElement1.OverflowButton.Visibility = Telerik.WinControls.ElementVisibility.Hidden;
     this.commandBarStripElement1.StretchHorizontally       = true;
     ((Telerik.WinControls.UI.RadCommandBarOverflowButton)(this.commandBarStripElement1.GetChildAt(2))).Visibility = Telerik.WinControls.ElementVisibility.Hidden;
     //
     // btnNuevo
     //
     this.btnNuevo.DisplayName       = "commandBarButton1";
     this.btnNuevo.DrawText          = true;
     this.btnNuevo.Image             = ((System.Drawing.Image)(resources.GetObject("btnNuevo.Image")));
     this.btnNuevo.Name              = "btnNuevo";
     this.btnNuevo.Text              = "Nuevo";
     this.btnNuevo.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
     this.btnNuevo.Click            += new System.EventHandler(this.btnNuevo_Click);
     //
     // commandBarSeparator3
     //
     this.commandBarSeparator3.DisplayName           = "commandBarSeparator3";
     this.commandBarSeparator3.Name                  = "commandBarSeparator3";
     this.commandBarSeparator3.VisibleInOverflowMenu = false;
     //
     // btnGuardar
     //
     this.btnGuardar.DisplayName       = "commandBarButton1";
     this.btnGuardar.DrawText          = true;
     this.btnGuardar.Image             = ((System.Drawing.Image)(resources.GetObject("btnGuardar.Image")));
     this.btnGuardar.Name              = "btnGuardar";
     this.btnGuardar.Text              = "Guardar";
     this.btnGuardar.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
     this.btnGuardar.Click            += new System.EventHandler(this.btnGuardar_Click);
     //
     // commandBarSeparator1
     //
     this.commandBarSeparator1.DisplayName           = "commandBarSeparator1";
     this.commandBarSeparator1.Name                  = "commandBarSeparator1";
     this.commandBarSeparator1.VisibleInOverflowMenu = false;
     //
     // btnEliminar
     //
     this.btnEliminar.DisplayName       = "commandBarButton1";
     this.btnEliminar.DrawText          = true;
     this.btnEliminar.Image             = ((System.Drawing.Image)(resources.GetObject("btnEliminar.Image")));
     this.btnEliminar.Name              = "btnEliminar";
     this.btnEliminar.Text              = "Eliminar";
     this.btnEliminar.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
     this.btnEliminar.Click            += new System.EventHandler(this.btnEliminar_Click);
     //
     // commandBarSeparator4
     //
     this.commandBarSeparator4.DisplayName           = "commandBarSeparator4";
     this.commandBarSeparator4.Name                  = "commandBarSeparator4";
     this.commandBarSeparator4.VisibleInOverflowMenu = false;
     //
     // btnSalir
     //
     this.btnSalir.DisplayName       = "commandBarButton2";
     this.btnSalir.DrawText          = true;
     this.btnSalir.Image             = ((System.Drawing.Image)(resources.GetObject("btnSalir.Image")));
     this.btnSalir.Name              = "btnSalir";
     this.btnSalir.Text              = "Salir";
     this.btnSalir.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
     this.btnSalir.Click            += new System.EventHandler(this.btnSalir_Click);
     //
     // commandBarSeparator2
     //
     this.commandBarSeparator2.DisplayName           = "commandBarSeparator2";
     this.commandBarSeparator2.Name                  = "commandBarSeparator2";
     this.commandBarSeparator2.VisibleInOverflowMenu = false;
     //
     // commandBarLabel1
     //
     this.commandBarLabel1.DisplayName         = "commandBarLabel1";
     this.commandBarLabel1.Font                = new System.Drawing.Font("Segoe UI", 10.25F, System.Drawing.FontStyle.Bold);
     this.commandBarLabel1.ForeColor           = System.Drawing.Color.Navy;
     this.commandBarLabel1.Name                = "commandBarLabel1";
     this.commandBarLabel1.StretchHorizontally = true;
     this.commandBarLabel1.Text                = "VALORES NORMA";
     //
     // radPanel1
     //
     this.radPanel1.Controls.Add(this.btnAdd);
     this.radPanel1.Controls.Add(this.txtId);
     this.radPanel1.Controls.Add(this.chkEstatus);
     this.radPanel1.Controls.Add(this.txtNorma);
     this.radPanel1.Controls.Add(this.label1);
     this.radPanel1.Controls.Add(this.cboColores);
     this.radPanel1.Controls.Add(this.label2);
     this.radPanel1.Dock     = System.Windows.Forms.DockStyle.Top;
     this.radPanel1.Location = new System.Drawing.Point(0, 53);
     this.radPanel1.Name     = "radPanel1";
     this.radPanel1.Size     = new System.Drawing.Size(747, 97);
     this.radPanel1.TabIndex = 1;
     //
     // btnAdd
     //
     this.btnAdd.Image             = ((System.Drawing.Image)(resources.GetObject("btnAdd.Image")));
     this.btnAdd.Location          = new System.Drawing.Point(207, 45);
     this.btnAdd.Name              = "btnAdd";
     this.btnAdd.Size              = new System.Drawing.Size(89, 33);
     this.btnAdd.TabIndex          = 9;
     this.btnAdd.Text              = "Agregar";
     this.btnAdd.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageBeforeText;
     this.btnAdd.Click            += new System.EventHandler(this.btnAdd_Click);
     //
     // txtId
     //
     this.txtId.Location  = new System.Drawing.Point(338, 20);
     this.txtId.Name      = "txtId";
     this.txtId.Size      = new System.Drawing.Size(52, 20);
     this.txtId.TabIndex  = 8;
     this.txtId.Text      = "-1";
     this.txtId.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     this.txtId.Visible   = false;
     //
     // chkEstatus
     //
     this.chkEstatus.CheckAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.chkEstatus.Checked    = true;
     this.chkEstatus.CheckState = System.Windows.Forms.CheckState.Checked;
     this.chkEstatus.Location   = new System.Drawing.Point(71, 61);
     this.chkEstatus.Name       = "chkEstatus";
     this.chkEstatus.Size       = new System.Drawing.Size(63, 24);
     this.chkEstatus.TabIndex   = 3;
     this.chkEstatus.Text       = "Activo:";
     this.chkEstatus.TextAlign  = System.Drawing.ContentAlignment.MiddleRight;
     this.chkEstatus.UseVisualStyleBackColor = true;
     this.chkEstatus.Visible = false;
     //
     // txtNorma
     //
     this.txtNorma.Location  = new System.Drawing.Point(121, 41);
     this.txtNorma.Name      = "txtNorma";
     this.txtNorma.Size      = new System.Drawing.Size(52, 20);
     this.txtNorma.TabIndex  = 2;
     this.txtNorma.Text      = "0";
     this.txtNorma.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     this.txtNorma.KeyDown  += new System.Windows.Forms.KeyEventHandler(this.txtNorma_KeyDown);
     this.txtNorma.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.txtNorma_KeyPress);
     //
     // label1
     //
     this.label1.AutoSize = true;
     this.label1.Location = new System.Drawing.Point(43, 45);
     this.label1.Name     = "label1";
     this.label1.Size     = new System.Drawing.Size(73, 13);
     this.label1.TabIndex = 5;
     this.label1.Text     = "Valor Norma:";
     //
     // cboColores
     //
     this.cboColores.AutoCompleteMode = System.Windows.Forms.AutoCompleteMode.SuggestAppend;
     this.cboColores.Location         = new System.Drawing.Point(121, 19);
     this.cboColores.Name             = "cboColores";
     this.cboColores.Size             = new System.Drawing.Size(175, 20);
     this.cboColores.TabIndex         = 1;
     //
     // label2
     //
     this.label2.AutoSize = true;
     this.label2.Location = new System.Drawing.Point(23, 20);
     this.label2.Name     = "label2";
     this.label2.Size     = new System.Drawing.Size(93, 13);
     this.label2.TabIndex = 3;
     this.label2.Text     = "Color Reflejante:";
     //
     // commandBarStripElement2
     //
     this.commandBarStripElement2.DisplayName = "commandBarStripElement2";
     this.commandBarStripElement2.Name        = "commandBarStripElement2";
     //
     // gvDatos
     //
     this.gvDatos.Dock         = System.Windows.Forms.DockStyle.Fill;
     this.gvDatos.EnterKeyMode = Telerik.WinControls.UI.RadGridViewEnterKeyMode.EnterMovesToNextCell;
     this.gvDatos.Location     = new System.Drawing.Point(0, 150);
     //
     //
     //
     this.gvDatos.MasterTemplate.AllowAddNewRow     = false;
     this.gvDatos.MasterTemplate.AllowColumnReorder = false;
     this.gvDatos.MasterTemplate.AllowDeleteRow     = false;
     this.gvDatos.MasterTemplate.AllowDragToGroup   = false;
     gridViewTextBoxColumn1.FieldName     = "Id";
     gridViewTextBoxColumn1.HeaderText    = "Id";
     gridViewTextBoxColumn1.IsVisible     = false;
     gridViewTextBoxColumn1.Name          = "Id";
     gridViewTextBoxColumn2.FieldName     = "Color.Id";
     gridViewTextBoxColumn2.HeaderText    = "IdColor";
     gridViewTextBoxColumn2.IsVisible     = false;
     gridViewTextBoxColumn2.Name          = "IdColor";
     gridViewTextBoxColumn3.FieldName     = "Color.Nombre";
     gridViewTextBoxColumn3.HeaderText    = "Reflejante";
     gridViewTextBoxColumn3.MaxWidth      = 150;
     gridViewTextBoxColumn3.MinWidth      = 100;
     gridViewTextBoxColumn3.Name          = "Color";
     gridViewTextBoxColumn3.ReadOnly      = true;
     gridViewTextBoxColumn3.Width         = 100;
     gridViewTextBoxColumn4.FieldName     = "Norma";
     gridViewTextBoxColumn4.FormatString  = "{0:N0}";
     gridViewTextBoxColumn4.HeaderText    = "Valor Norma";
     gridViewTextBoxColumn4.MaxWidth      = 80;
     gridViewTextBoxColumn4.MinWidth      = 80;
     gridViewTextBoxColumn4.Name          = "Norma";
     gridViewTextBoxColumn4.ReadOnly      = true;
     gridViewTextBoxColumn4.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
     gridViewTextBoxColumn4.Width         = 80;
     gridViewDecimalColumn1.FieldName     = "Cav1";
     gridViewDecimalColumn1.FormatString  = "{0:N0}";
     gridViewDecimalColumn1.HeaderText    = "% Límite Cav. 1";
     gridViewDecimalColumn1.MaxWidth      = 60;
     gridViewDecimalColumn1.Minimum       = new decimal(new int[] {
         0,
         0,
         0,
         0
     });
     gridViewDecimalColumn1.MinWidth      = 60;
     gridViewDecimalColumn1.Name          = "Cav1";
     gridViewDecimalColumn1.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
     gridViewDecimalColumn1.Width         = 60;
     gridViewDecimalColumn1.WrapText      = true;
     gridViewDecimalColumn2.FieldName     = "Cav2";
     gridViewDecimalColumn2.FormatString  = "{0:N0}";
     gridViewDecimalColumn2.HeaderText    = "% Límite Cav. 2";
     gridViewDecimalColumn2.MaxWidth      = 55;
     gridViewDecimalColumn2.Minimum       = new decimal(new int[] {
         0,
         0,
         0,
         0
     });
     gridViewDecimalColumn2.MinWidth      = 55;
     gridViewDecimalColumn2.Name          = "Cav2";
     gridViewDecimalColumn2.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
     gridViewDecimalColumn2.Width         = 55;
     gridViewDecimalColumn2.WrapText      = true;
     gridViewDecimalColumn3.FieldName     = "Cav3";
     gridViewDecimalColumn3.FormatString  = "{0:N0}";
     gridViewDecimalColumn3.HeaderText    = "% Límite Cav. 3";
     gridViewDecimalColumn3.MaxWidth      = 55;
     gridViewDecimalColumn3.Minimum       = new decimal(new int[] {
         0,
         0,
         0,
         0
     });
     gridViewDecimalColumn3.MinWidth     = 55;
     gridViewDecimalColumn3.Name         = "Cav3";
     gridViewDecimalColumn3.Width        = 55;
     gridViewDecimalColumn3.WrapText     = true;
     gridViewDecimalColumn4.FieldName    = "Cav4";
     gridViewDecimalColumn4.FormatString = "{0:N0}";
     gridViewDecimalColumn4.HeaderText   = "% Límite Cav. 4";
     gridViewDecimalColumn4.MaxWidth     = 55;
     gridViewDecimalColumn4.Minimum      = new decimal(new int[] {
         0,
         0,
         0,
         0
     });
     gridViewDecimalColumn4.MinWidth     = 55;
     gridViewDecimalColumn4.Name         = "Cav4";
     gridViewDecimalColumn4.Width        = 55;
     gridViewDecimalColumn4.WrapText     = true;
     gridViewDecimalColumn5.FieldName    = "Cav5";
     gridViewDecimalColumn5.FormatString = "{0:N0}";
     gridViewDecimalColumn5.HeaderText   = "% Límite Cav. 5";
     gridViewDecimalColumn5.MaxWidth     = 55;
     gridViewDecimalColumn5.Minimum      = new decimal(new int[] {
         0,
         0,
         0,
         0
     });
     gridViewDecimalColumn5.MinWidth     = 55;
     gridViewDecimalColumn5.Name         = "Cav5";
     gridViewDecimalColumn5.Width        = 55;
     gridViewDecimalColumn5.WrapText     = true;
     gridViewDecimalColumn6.FieldName    = "Cav6";
     gridViewDecimalColumn6.FormatString = "{0:N0}";
     gridViewDecimalColumn6.HeaderText   = "% Límite Cav. 6";
     gridViewDecimalColumn6.MaxWidth     = 55;
     gridViewDecimalColumn6.Minimum      = new decimal(new int[] {
         0,
         0,
         0,
         0
     });
     gridViewDecimalColumn6.MinWidth     = 55;
     gridViewDecimalColumn6.Name         = "Cav6";
     gridViewDecimalColumn6.Width        = 55;
     gridViewDecimalColumn6.WrapText     = true;
     gridViewDecimalColumn7.FieldName    = "Cav7";
     gridViewDecimalColumn7.FormatString = "{0:N0}";
     gridViewDecimalColumn7.HeaderText   = "% Límite Cav. 7";
     gridViewDecimalColumn7.MaxWidth     = 55;
     gridViewDecimalColumn7.Minimum      = new decimal(new int[] {
         0,
         0,
         0,
         0
     });
     gridViewDecimalColumn7.MinWidth     = 55;
     gridViewDecimalColumn7.Name         = "Cav7";
     gridViewDecimalColumn7.Width        = 55;
     gridViewDecimalColumn7.WrapText     = true;
     gridViewDecimalColumn8.FieldName    = "Cav8";
     gridViewDecimalColumn8.FormatString = "{0:N0}";
     gridViewDecimalColumn8.HeaderText   = "% Límite Cav. 8";
     gridViewDecimalColumn8.MaxWidth     = 55;
     gridViewDecimalColumn8.Minimum      = new decimal(new int[] {
         0,
         0,
         0,
         0
     });
     gridViewDecimalColumn8.MinWidth    = 55;
     gridViewDecimalColumn8.Name        = "Cav8";
     gridViewDecimalColumn8.Width       = 55;
     gridViewDecimalColumn8.WrapText    = true;
     gridViewCheckBoxColumn1.FieldName  = "DatosUsuario.Estatus";
     gridViewCheckBoxColumn1.HeaderText = "Activo";
     gridViewCheckBoxColumn1.MaxWidth   = 60;
     gridViewCheckBoxColumn1.MinWidth   = 50;
     gridViewCheckBoxColumn1.Name       = "Estatus";
     this.gvDatos.MasterTemplate.Columns.AddRange(new Telerik.WinControls.UI.GridViewDataColumn[] {
         gridViewTextBoxColumn1,
         gridViewTextBoxColumn2,
         gridViewTextBoxColumn3,
         gridViewTextBoxColumn4,
         gridViewDecimalColumn1,
         gridViewDecimalColumn2,
         gridViewDecimalColumn3,
         gridViewDecimalColumn4,
         gridViewDecimalColumn5,
         gridViewDecimalColumn6,
         gridViewDecimalColumn7,
         gridViewDecimalColumn8,
         gridViewCheckBoxColumn1
     });
     this.gvDatos.MasterTemplate.EnableAlternatingRowColor = true;
     this.gvDatos.MasterTemplate.ShowRowHeaderColumn       = false;
     this.gvDatos.MasterTemplate.ViewDefinition            = tableViewDefinition1;
     this.gvDatos.Name = "gvDatos";
     this.gvDatos.NewRowEnterKeyMode       = Telerik.WinControls.UI.RadGridViewNewRowEnterKeyMode.EnterMovesToNextCell;
     this.gvDatos.ShowGroupPanel           = false;
     this.gvDatos.ShowGroupPanelScrollbars = false;
     this.gvDatos.ShowNoDataText           = false;
     this.gvDatos.Size               = new System.Drawing.Size(747, 241);
     this.gvDatos.TabIndex           = 2;
     this.gvDatos.CurrentRowChanged += new Telerik.WinControls.UI.CurrentRowChangedEventHandler(this.gvDatos_CurrentRowChanged);
     //
     // commandBarStripElement3
     //
     this.commandBarStripElement3.DisplayName = "commandBarStripElement3";
     this.commandBarStripElement3.Name        = "commandBarStripElement3";
     //
     // commandBarStripElement4
     //
     this.commandBarStripElement4.DisplayName = "commandBarStripElement4";
     this.commandBarStripElement4.Name        = "commandBarStripElement4";
     //
     // frmParametrosCalidad
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize          = new System.Drawing.Size(747, 391);
     this.Controls.Add(this.gvDatos);
     this.Controls.Add(this.radPanel1);
     this.Controls.Add(this.radCommandBar1);
     this.Name = "frmParametrosCalidad";
     //
     //
     //
     this.RootElement.ApplyShapeToControl = true;
     this.ShowIcon  = false;
     this.Text      = "VALORES NORMA";
     this.ThemeName = "MaterialTeal";
     this.Load     += new System.EventHandler(this.frmParametrosCalidad_Load);
     ((System.ComponentModel.ISupportInitialize)(this.radCommandBar1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radPanel1)).EndInit();
     this.radPanel1.ResumeLayout(false);
     this.radPanel1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.btnAdd)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtId)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtNorma)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cboColores)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvDatos.MasterTemplate)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvDatos)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this)).EndInit();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     Telerik.WinControls.UI.GridViewComboBoxColumn gridViewComboBoxColumn1 = new Telerik.WinControls.UI.GridViewComboBoxColumn();
     Telerik.WinControls.UI.GridViewTextBoxColumn  gridViewTextBoxColumn1  = new Telerik.WinControls.UI.GridViewTextBoxColumn();
     Telerik.WinControls.UI.GridViewComboBoxColumn gridViewComboBoxColumn2 = new Telerik.WinControls.UI.GridViewComboBoxColumn();
     Telerik.WinControls.UI.GridViewComboBoxColumn gridViewComboBoxColumn3 = new Telerik.WinControls.UI.GridViewComboBoxColumn();
     Telerik.WinControls.UI.GridViewDateTimeColumn gridViewDateTimeColumn1 = new Telerik.WinControls.UI.GridViewDateTimeColumn();
     Telerik.WinControls.UI.GridViewDateTimeColumn gridViewDateTimeColumn2 = new Telerik.WinControls.UI.GridViewDateTimeColumn();
     Telerik.WinControls.UI.GridViewDecimalColumn  gridViewDecimalColumn1  = new Telerik.WinControls.UI.GridViewDecimalColumn();
     Telerik.WinControls.UI.GridViewCheckBoxColumn gridViewCheckBoxColumn1 = new Telerik.WinControls.UI.GridViewCheckBoxColumn();
     Telerik.WinControls.UI.GridViewDecimalColumn  gridViewDecimalColumn2  = new Telerik.WinControls.UI.GridViewDecimalColumn();
     this.radPanel1        = new Telerik.WinControls.UI.RadPanel();
     this.grdPeak          = new Telerik.WinControls.UI.RadGridView();
     this.radLabel2        = new Telerik.WinControls.UI.RadLabel();
     this.radLabel17       = new Telerik.WinControls.UI.RadLabel();
     this.numIncrementRate = new Telerik.WinControls.UI.RadSpinEditor();
     this.btnExitForm      = new Telerik.WinControls.UI.RadButton();
     this.btnSave          = new Telerik.WinControls.UI.RadButton();
     this.radLabel6        = new Telerik.WinControls.UI.RadLabel();
     ((System.ComponentModel.ISupportInitialize)(this.btnSaveOn)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.btnOnNew)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.btnExit)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.btnSaveAndClose)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.btnSaveAndNew)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radPanel1)).BeginInit();
     this.radPanel1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.grdPeak)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.grdPeak.MasterTemplate)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel17)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.numIncrementRate)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.btnExitForm)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.btnSave)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel6)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
     this.SuspendLayout();
     //
     // radPanel1
     //
     this.radPanel1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(233)))), ((int)(((byte)(240)))), ((int)(((byte)(249)))));
     this.radPanel1.Controls.Add(this.grdPeak);
     this.radPanel1.Controls.Add(this.radLabel2);
     this.radPanel1.Controls.Add(this.radLabel17);
     this.radPanel1.Controls.Add(this.numIncrementRate);
     this.radPanel1.Controls.Add(this.btnExitForm);
     this.radPanel1.Controls.Add(this.btnSave);
     this.radPanel1.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.radPanel1.Location = new System.Drawing.Point(0, 75);
     this.radPanel1.Name     = "radPanel1";
     this.radPanel1.Size     = new System.Drawing.Size(967, 497);
     this.radPanel1.TabIndex = 104;
     //
     // grdPeak
     //
     this.grdPeak.Location = new System.Drawing.Point(19, 46);
     //
     // grdPeak
     //
     this.grdPeak.MasterTemplate.AddNewRowPosition = Telerik.WinControls.UI.SystemRowPosition.Bottom;
     gridViewComboBoxColumn1.DisplayMember         = null;
     gridViewComboBoxColumn1.FormatString          = "";
     gridViewComboBoxColumn1.HeaderText            = "Plot";
     gridViewComboBoxColumn1.Name          = "Plot";
     gridViewComboBoxColumn1.ValueMember   = null;
     gridViewComboBoxColumn1.Width         = 150;
     gridViewTextBoxColumn1.FormatString   = "";
     gridViewTextBoxColumn1.HeaderText     = "Id";
     gridViewTextBoxColumn1.IsVisible      = false;
     gridViewTextBoxColumn1.Name           = "Id";
     gridViewComboBoxColumn2.DisplayMember = null;
     gridViewComboBoxColumn2.FormatString  = "";
     gridViewComboBoxColumn2.HeaderText    = "From Day";
     gridViewComboBoxColumn2.Name          = "FromDay";
     gridViewComboBoxColumn2.ValueMember   = null;
     gridViewComboBoxColumn2.Width         = 120;
     gridViewComboBoxColumn3.DisplayMember = null;
     gridViewComboBoxColumn3.FormatString  = "";
     gridViewComboBoxColumn3.HeaderText    = "Till Day";
     gridViewComboBoxColumn3.Name          = "TillDay";
     gridViewComboBoxColumn3.ValueMember   = null;
     gridViewComboBoxColumn3.Width         = 120;
     gridViewDateTimeColumn1.FormatString  = "";
     gridViewDateTimeColumn1.HeaderText    = "From Time";
     gridViewDateTimeColumn1.Name          = "FromTime";
     gridViewDateTimeColumn1.Width         = 100;
     gridViewDateTimeColumn2.FormatString  = "";
     gridViewDateTimeColumn2.HeaderText    = "Till TIme";
     gridViewDateTimeColumn2.Name          = "TillTime";
     gridViewDateTimeColumn2.Width         = 100;
     gridViewDecimalColumn1.HeaderText     = "Increment Percentage";
     gridViewDecimalColumn1.Name           = "IncrementPercentage";
     gridViewDecimalColumn1.TextAlignment  = System.Drawing.ContentAlignment.MiddleRight;
     gridViewDecimalColumn1.Width          = 160;
     gridViewCheckBoxColumn1.HeaderText    = "Amount Wise";
     gridViewCheckBoxColumn1.Name          = "AmountWise";
     gridViewCheckBoxColumn1.Width         = 80;
     gridViewDecimalColumn2.HeaderText     = "Amount";
     gridViewDecimalColumn2.Name           = "Amount";
     gridViewDecimalColumn2.TextAlignment  = System.Drawing.ContentAlignment.MiddleRight;
     gridViewDecimalColumn2.Width          = 70;
     this.grdPeak.MasterTemplate.Columns.AddRange(new Telerik.WinControls.UI.GridViewDataColumn[] {
         gridViewComboBoxColumn1,
         gridViewTextBoxColumn1,
         gridViewComboBoxColumn2,
         gridViewComboBoxColumn3,
         gridViewDateTimeColumn1,
         gridViewDateTimeColumn2,
         gridViewDecimalColumn1,
         gridViewCheckBoxColumn1,
         gridViewDecimalColumn2
     });
     this.grdPeak.Name           = "grdPeak";
     this.grdPeak.ShowGroupPanel = false;
     this.grdPeak.Size           = new System.Drawing.Size(935, 300);
     this.grdPeak.TabIndex       = 207;
     this.grdPeak.Text           = "radGridView1";
     this.grdPeak.Click         += new System.EventHandler(this.grdPeak_Click);
     //
     // radLabel2
     //
     this.radLabel2.BackColor = System.Drawing.Color.Transparent;
     this.radLabel2.Font      = new System.Drawing.Font("Tahoma", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.radLabel2.ForeColor = System.Drawing.Color.Black;
     this.radLabel2.Location  = new System.Drawing.Point(310, 9);
     this.radLabel2.Name      = "radLabel2";
     //
     //
     //
     this.radLabel2.RootElement.ForeColor = System.Drawing.Color.Black;
     this.radLabel2.Size     = new System.Drawing.Size(59, 22);
     this.radLabel2.TabIndex = 206;
     this.radLabel2.Text     = "Percent";
     this.radLabel2.Visible  = false;
     //
     // radLabel17
     //
     this.radLabel17.BackColor = System.Drawing.Color.Transparent;
     this.radLabel17.Font      = new System.Drawing.Font("Tahoma", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.radLabel17.ForeColor = System.Drawing.Color.Black;
     this.radLabel17.Location  = new System.Drawing.Point(19, 9);
     this.radLabel17.Name      = "radLabel17";
     //
     //
     //
     this.radLabel17.RootElement.ForeColor = System.Drawing.Color.Black;
     this.radLabel17.Size     = new System.Drawing.Size(189, 22);
     this.radLabel17.TabIndex = 205;
     this.radLabel17.Text     = "Peak Time Increment Rate";
     this.radLabel17.Visible  = false;
     //
     // numIncrementRate
     //
     this.numIncrementRate.EnableKeyMap       = true;
     this.numIncrementRate.Font               = new System.Drawing.Font("Tahoma", 9.75F);
     this.numIncrementRate.ForeColor          = System.Drawing.Color.Red;
     this.numIncrementRate.InterceptArrowKeys = false;
     this.numIncrementRate.Location           = new System.Drawing.Point(224, 8);
     this.numIncrementRate.Name               = "numIncrementRate";
     //
     //
     //
     this.numIncrementRate.RootElement.AutoSizeMode = Telerik.WinControls.RadAutoSizeMode.WrapAroundChildren;
     this.numIncrementRate.RootElement.ForeColor    = System.Drawing.Color.Red;
     this.numIncrementRate.ShowBorder        = true;
     this.numIncrementRate.ShowUpDownButtons = false;
     this.numIncrementRate.Size     = new System.Drawing.Size(72, 24);
     this.numIncrementRate.TabIndex = 204;
     this.numIncrementRate.TabStop  = false;
     this.numIncrementRate.Visible  = false;
     ((Telerik.WinControls.UI.RadSpinElement)(this.numIncrementRate.GetChildAt(0))).Font    = new System.Drawing.Font("Tahoma", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     ((Telerik.WinControls.UI.RadSpinElement)(this.numIncrementRate.GetChildAt(0))).Padding = new System.Windows.Forms.Padding(0, 2, 0, 1);
     ((Telerik.WinControls.Primitives.FillPrimitive)(this.numIncrementRate.GetChildAt(0).GetChildAt(0))).Font        = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     ((Telerik.WinControls.UI.RadTextBoxItem)(this.numIncrementRate.GetChildAt(0).GetChildAt(2).GetChildAt(1))).Text = "0";
     ((Telerik.WinControls.UI.RadTextBoxItem)(this.numIncrementRate.GetChildAt(0).GetChildAt(2).GetChildAt(1))).Font = new System.Drawing.Font("Tahoma", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     //
     // btnExitForm
     //
     this.btnExitForm.Font           = new System.Drawing.Font("Tahoma", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btnExitForm.Image          = global::Taxi_AppMain.Properties.Resources.exit;
     this.btnExitForm.ImageAlignment = System.Drawing.ContentAlignment.TopCenter;
     this.btnExitForm.Location       = new System.Drawing.Point(486, 420);
     this.btnExitForm.Name           = "btnExitForm";
     this.btnExitForm.Size           = new System.Drawing.Size(112, 56);
     this.btnExitForm.TabIndex       = 202;
     this.btnExitForm.Text           = "Exit";
     this.btnExitForm.TextAlignment  = System.Drawing.ContentAlignment.BottomCenter;
     this.btnExitForm.Click         += new System.EventHandler(this.btnExitForm_Click);
     ((Telerik.WinControls.UI.RadButtonElement)(this.btnExitForm.GetChildAt(0))).Image          = global::Taxi_AppMain.Properties.Resources.exit;
     ((Telerik.WinControls.UI.RadButtonElement)(this.btnExitForm.GetChildAt(0))).ImageAlignment = System.Drawing.ContentAlignment.TopCenter;
     ((Telerik.WinControls.UI.RadButtonElement)(this.btnExitForm.GetChildAt(0))).TextAlignment  = System.Drawing.ContentAlignment.BottomCenter;
     ((Telerik.WinControls.UI.RadButtonElement)(this.btnExitForm.GetChildAt(0))).Text           = "Exit";
     ((Telerik.WinControls.Primitives.TextPrimitive)(this.btnExitForm.GetChildAt(0).GetChildAt(1).GetChildAt(1))).TextAlignment = System.Drawing.ContentAlignment.BottomCenter;
     ((Telerik.WinControls.Primitives.TextPrimitive)(this.btnExitForm.GetChildAt(0).GetChildAt(1).GetChildAt(1))).Font          = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     //
     // btnSave
     //
     this.btnSave.Font           = new System.Drawing.Font("Tahoma", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btnSave.Image          = global::Taxi_AppMain.Properties.Resources.Tick31;
     this.btnSave.ImageAlignment = System.Drawing.ContentAlignment.TopCenter;
     this.btnSave.Location       = new System.Drawing.Point(338, 420);
     this.btnSave.Name           = "btnSave";
     this.btnSave.Size           = new System.Drawing.Size(112, 56);
     this.btnSave.TabIndex       = 201;
     this.btnSave.Text           = "Save Settings";
     this.btnSave.TextAlignment  = System.Drawing.ContentAlignment.BottomCenter;
     this.btnSave.Click         += new System.EventHandler(this.btnSave_Click);
     ((Telerik.WinControls.UI.RadButtonElement)(this.btnSave.GetChildAt(0))).Image          = global::Taxi_AppMain.Properties.Resources.Tick31;
     ((Telerik.WinControls.UI.RadButtonElement)(this.btnSave.GetChildAt(0))).ImageAlignment = System.Drawing.ContentAlignment.TopCenter;
     ((Telerik.WinControls.UI.RadButtonElement)(this.btnSave.GetChildAt(0))).TextAlignment  = System.Drawing.ContentAlignment.BottomCenter;
     ((Telerik.WinControls.UI.RadButtonElement)(this.btnSave.GetChildAt(0))).Text           = "Save Settings";
     ((Telerik.WinControls.Primitives.TextPrimitive)(this.btnSave.GetChildAt(0).GetChildAt(1).GetChildAt(1))).TextAlignment = System.Drawing.ContentAlignment.BottomCenter;
     ((Telerik.WinControls.Primitives.TextPrimitive)(this.btnSave.GetChildAt(0).GetChildAt(1).GetChildAt(1))).Font          = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     //
     // radLabel6
     //
     this.radLabel6.AutoSize  = false;
     this.radLabel6.BackColor = System.Drawing.Color.SteelBlue;
     this.radLabel6.Dock      = System.Windows.Forms.DockStyle.Top;
     this.radLabel6.Font      = new System.Drawing.Font("Tahoma", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.radLabel6.ForeColor = System.Drawing.Color.White;
     this.radLabel6.Location  = new System.Drawing.Point(0, 38);
     this.radLabel6.Name      = "radLabel6";
     //
     //
     //
     this.radLabel6.RootElement.ForeColor = System.Drawing.Color.White;
     this.radLabel6.Size          = new System.Drawing.Size(967, 37);
     this.radLabel6.TabIndex      = 105;
     this.radLabel6.Text          = "Peak Time Settings";
     this.radLabel6.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // frmPeakOffPeakTimeSettings
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize          = new System.Drawing.Size(967, 572);
     this.Controls.Add(this.radPanel1);
     this.Controls.Add(this.radLabel6);
     this.KeyPreview = true;
     this.Name       = "frmPeakOffPeakTimeSettings";
     //
     //
     //
     this.RootElement.ApplyShapeToControl = true;
     this.RootElement.MinSize             = new System.Drawing.Size(150, 36);
     this.Text = "Fare Increment";
     this.Controls.SetChildIndex(this.btnOnNew, 0);
     this.Controls.SetChildIndex(this.btnSaveOn, 0);
     this.Controls.SetChildIndex(this.btnExit, 0);
     this.Controls.SetChildIndex(this.radLabel6, 0);
     this.Controls.SetChildIndex(this.btnSaveAndNew, 0);
     this.Controls.SetChildIndex(this.btnSaveAndClose, 0);
     this.Controls.SetChildIndex(this.radPanel1, 0);
     ((System.ComponentModel.ISupportInitialize)(this.btnSaveOn)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.btnOnNew)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.btnExit)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.btnSaveAndClose)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.btnSaveAndNew)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radPanel1)).EndInit();
     this.radPanel1.ResumeLayout(false);
     this.radPanel1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.grdPeak.MasterTemplate)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.grdPeak)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel17)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.numIncrementRate)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.btnExitForm)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.btnSave)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel6)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this)).EndInit();
     this.ResumeLayout(false);
 }
コード例 #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();
     Telerik.WinControls.UI.GridViewTextBoxColumn  gridViewTextBoxColumn1  = new Telerik.WinControls.UI.GridViewTextBoxColumn();
     Telerik.WinControls.UI.GridViewTextBoxColumn  gridViewTextBoxColumn2  = new Telerik.WinControls.UI.GridViewTextBoxColumn();
     Telerik.WinControls.UI.GridViewTextBoxColumn  gridViewTextBoxColumn3  = new Telerik.WinControls.UI.GridViewTextBoxColumn();
     Telerik.WinControls.UI.GridViewTextBoxColumn  gridViewTextBoxColumn4  = new Telerik.WinControls.UI.GridViewTextBoxColumn();
     Telerik.WinControls.UI.GridViewTextBoxColumn  gridViewTextBoxColumn5  = new Telerik.WinControls.UI.GridViewTextBoxColumn();
     Telerik.WinControls.UI.GridViewCheckBoxColumn gridViewCheckBoxColumn1 = new Telerik.WinControls.UI.GridViewCheckBoxColumn();
     Telerik.WinControls.UI.GridViewTextBoxColumn  gridViewTextBoxColumn6  = new Telerik.WinControls.UI.GridViewTextBoxColumn();
     Telerik.WinControls.UI.GridViewCommandColumn  gridViewCommandColumn1  = new Telerik.WinControls.UI.GridViewCommandColumn();
     Telerik.WinControls.Data.SortDescriptor       sortDescriptor1         = new Telerik.WinControls.Data.SortDescriptor();
     Telerik.WinControls.UI.TableViewDefinition    tableViewDefinition1    = new Telerik.WinControls.UI.TableViewDefinition();
     this.BulkPrintQueueRadView           = new Telerik.WinControls.UI.RadGridView();
     this.bulkPrintQueueListBindingSource = new System.Windows.Forms.BindingSource(this.components);
     this.AddToAll_Button = new System.Windows.Forms.Button();
     ((System.ComponentModel.ISupportInitialize)(this.BulkPrintQueueRadView)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.BulkPrintQueueRadView.MasterTemplate)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.bulkPrintQueueListBindingSource)).BeginInit();
     this.SuspendLayout();
     //
     // BulkPrintQueueRadView
     //
     this.BulkPrintQueueRadView.BackColor = System.Drawing.SystemColors.Control;
     this.BulkPrintQueueRadView.Cursor    = System.Windows.Forms.Cursors.Default;
     this.BulkPrintQueueRadView.Dock      = System.Windows.Forms.DockStyle.Fill;
     this.BulkPrintQueueRadView.Font      = new System.Drawing.Font("Segoe UI", 8.25F);
     this.BulkPrintQueueRadView.ForeColor = System.Drawing.SystemColors.ControlText;
     this.BulkPrintQueueRadView.ImeMode   = System.Windows.Forms.ImeMode.NoControl;
     this.BulkPrintQueueRadView.Location  = new System.Drawing.Point(0, 0);
     //
     //
     //
     this.BulkPrintQueueRadView.MasterTemplate.AllowAddNewRow      = false;
     this.BulkPrintQueueRadView.MasterTemplate.AutoGenerateColumns = false;
     gridViewTextBoxColumn1.DataType = typeof(System.Guid);
     gridViewTextBoxColumn1.EnableExpressionEditor = false;
     gridViewTextBoxColumn1.FieldName               = "VirtualResourceMetadataId";
     gridViewTextBoxColumn1.HeaderText              = "VirtualResourceMetadataId";
     gridViewTextBoxColumn1.IsAutoGenerated         = true;
     gridViewTextBoxColumn1.IsVisible               = false;
     gridViewTextBoxColumn1.Name                    = "VirtualResourceMetadataId";
     gridViewTextBoxColumn1.Width                   = 144;
     gridViewTextBoxColumn2.DataType                = typeof(bool);
     gridViewTextBoxColumn2.EnableExpressionEditor  = false;
     gridViewTextBoxColumn2.FieldName               = "Active";
     gridViewTextBoxColumn2.HeaderText              = "Active";
     gridViewTextBoxColumn2.Name                    = "Active";
     gridViewTextBoxColumn2.Width                   = 100;
     gridViewTextBoxColumn3.EnableExpressionEditor  = false;
     gridViewTextBoxColumn3.FieldName               = "OldHostName";
     gridViewTextBoxColumn3.HeaderText              = "Server";
     gridViewTextBoxColumn3.Name                    = "OldHostName";
     gridViewTextBoxColumn3.Width                   = 100;
     gridViewTextBoxColumn4.EnableExpressionEditor  = false;
     gridViewTextBoxColumn4.FieldName               = "CurrentQueue";
     gridViewTextBoxColumn4.HeaderText              = "CurrentQueue";
     gridViewTextBoxColumn4.IsAutoGenerated         = true;
     gridViewTextBoxColumn4.Name                    = "CurrentQueue";
     gridViewTextBoxColumn4.Width                   = 100;
     gridViewTextBoxColumn5.EnableExpressionEditor  = false;
     gridViewTextBoxColumn5.FieldName               = "NewQueue";
     gridViewTextBoxColumn5.HeaderText              = "NewQueue";
     gridViewTextBoxColumn5.IsAutoGenerated         = true;
     gridViewTextBoxColumn5.Name                    = "NewQueue";
     gridViewTextBoxColumn5.Width                   = 100;
     gridViewCheckBoxColumn1.EnableExpressionEditor = false;
     gridViewCheckBoxColumn1.FieldName              = "QueueChanged";
     gridViewCheckBoxColumn1.HeaderText             = "QueueChanged";
     gridViewCheckBoxColumn1.IsAutoGenerated        = true;
     gridViewCheckBoxColumn1.IsVisible              = false;
     gridViewCheckBoxColumn1.MinWidth               = 20;
     gridViewCheckBoxColumn1.Name                   = "QueueChanged";
     gridViewCheckBoxColumn1.Width                  = 101;
     gridViewTextBoxColumn6.EnableExpressionEditor  = false;
     gridViewTextBoxColumn6.FieldName               = "NewHostName";
     gridViewTextBoxColumn6.HeaderText              = "New Server";
     gridViewTextBoxColumn6.Name                    = "NewHostName";
     gridViewTextBoxColumn6.Width                   = 100;
     gridViewCommandColumn1.DefaultText             = "?";
     gridViewCommandColumn1.EnableExpressionEditor  = false;
     gridViewCommandColumn1.FieldName               = "ChangeQueue";
     gridViewCommandColumn1.HeaderText              = "Change Queue";
     gridViewCommandColumn1.Name                    = "Change Queue";
     gridViewCommandColumn1.SortOrder               = Telerik.WinControls.UI.RadSortOrder.Ascending;
     gridViewCommandColumn1.Width                   = 100;
     this.BulkPrintQueueRadView.MasterTemplate.Columns.AddRange(new Telerik.WinControls.UI.GridViewDataColumn[] {
         gridViewTextBoxColumn1,
         gridViewTextBoxColumn2,
         gridViewTextBoxColumn3,
         gridViewTextBoxColumn4,
         gridViewTextBoxColumn5,
         gridViewCheckBoxColumn1,
         gridViewTextBoxColumn6,
         gridViewCommandColumn1
     });
     this.BulkPrintQueueRadView.MasterTemplate.DataSource = this.bulkPrintQueueListBindingSource;
     this.BulkPrintQueueRadView.MasterTemplate.EnableAlternatingRowColor = true;
     sortDescriptor1.PropertyName = "Change Queue";
     this.BulkPrintQueueRadView.MasterTemplate.SortDescriptors.AddRange(new Telerik.WinControls.Data.SortDescriptor[] {
         sortDescriptor1
     });
     this.BulkPrintQueueRadView.MasterTemplate.ViewDefinition = tableViewDefinition1;
     this.BulkPrintQueueRadView.Name              = "BulkPrintQueueRadView";
     this.BulkPrintQueueRadView.ReadOnly          = true;
     this.BulkPrintQueueRadView.RightToLeft       = System.Windows.Forms.RightToLeft.No;
     this.BulkPrintQueueRadView.Size              = new System.Drawing.Size(643, 541);
     this.BulkPrintQueueRadView.TabIndex          = 0;
     this.BulkPrintQueueRadView.Text              = "radGridView1";
     this.BulkPrintQueueRadView.CommandCellClick += new Telerik.WinControls.UI.CommandCellClickEventHandler(this.MasterTemplate_CommandCellClick);
     //
     // bulkPrintQueueListBindingSource
     //
     this.bulkPrintQueueListBindingSource.DataSource = typeof(HP.ScalableTest.UI.ScenarioConfiguration.BulkPrintQueueList);
     //
     // AddToAll_Button
     //
     this.AddToAll_Button.Location = new System.Drawing.Point(478, 495);
     this.AddToAll_Button.Name     = "AddToAll_Button";
     this.AddToAll_Button.Size     = new System.Drawing.Size(129, 30);
     this.AddToAll_Button.TabIndex = 1;
     this.AddToAll_Button.Text     = "Add to All";
     this.AddToAll_Button.UseVisualStyleBackColor = true;
     this.AddToAll_Button.Click += new System.EventHandler(this.EditBlank_Button_Click);
     //
     // BulkPrintQueueControl
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.Controls.Add(this.BulkPrintQueueRadView);
     this.Name = "BulkPrintQueueControl";
     this.Size = new System.Drawing.Size(643, 541);
     ((System.ComponentModel.ISupportInitialize)(this.BulkPrintQueueRadView.MasterTemplate)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.BulkPrintQueueRadView)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.bulkPrintQueueListBindingSource)).EndInit();
     this.ResumeLayout(false);
 }
コード例 #8
0
ファイル: Caja.Designer.cs プロジェクト: freilinjb/Despacho
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     Telerik.WinControls.UI.GridViewDecimalColumn  gridViewDecimalColumn1  = new Telerik.WinControls.UI.GridViewDecimalColumn();
     Telerik.WinControls.UI.GridViewTextBoxColumn  gridViewTextBoxColumn1  = new Telerik.WinControls.UI.GridViewTextBoxColumn();
     Telerik.WinControls.UI.GridViewTextBoxColumn  gridViewTextBoxColumn2  = new Telerik.WinControls.UI.GridViewTextBoxColumn();
     Telerik.WinControls.UI.GridViewTextBoxColumn  gridViewTextBoxColumn3  = new Telerik.WinControls.UI.GridViewTextBoxColumn();
     Telerik.WinControls.UI.GridViewTextBoxColumn  gridViewTextBoxColumn4  = new Telerik.WinControls.UI.GridViewTextBoxColumn();
     Telerik.WinControls.UI.GridViewDecimalColumn  gridViewDecimalColumn2  = new Telerik.WinControls.UI.GridViewDecimalColumn();
     Telerik.WinControls.UI.GridViewTextBoxColumn  gridViewTextBoxColumn5  = new Telerik.WinControls.UI.GridViewTextBoxColumn();
     Telerik.WinControls.UI.GridViewTextBoxColumn  gridViewTextBoxColumn6  = new Telerik.WinControls.UI.GridViewTextBoxColumn();
     Telerik.WinControls.UI.GridViewTextBoxColumn  gridViewTextBoxColumn7  = new Telerik.WinControls.UI.GridViewTextBoxColumn();
     Telerik.WinControls.UI.GridViewDateTimeColumn gridViewDateTimeColumn1 = new Telerik.WinControls.UI.GridViewDateTimeColumn();
     Telerik.WinControls.UI.GridViewTextBoxColumn  gridViewTextBoxColumn8  = new Telerik.WinControls.UI.GridViewTextBoxColumn();
     Telerik.WinControls.UI.GridViewCheckBoxColumn gridViewCheckBoxColumn1 = new Telerik.WinControls.UI.GridViewCheckBoxColumn();
     Telerik.WinControls.UI.TableViewDefinition    tableViewDefinition1    = new Telerik.WinControls.UI.TableViewDefinition();
     Telerik.WinControls.UI.TableViewDefinition    tableViewDefinition2    = new Telerik.WinControls.UI.TableViewDefinition();
     Telerik.WinControls.UI.TableViewDefinition    tableViewDefinition3    = new Telerik.WinControls.UI.TableViewDefinition();
     Telerik.WinControls.UI.TableViewDefinition    tableViewDefinition4    = new Telerik.WinControls.UI.TableViewDefinition();
     this.visualStudio2012LightTheme1 = new Telerik.WinControls.Themes.VisualStudio2012LightTheme();
     this.tableLayoutPanel1           = new System.Windows.Forms.TableLayoutPanel();
     this.btCancelar         = new Telerik.WinControls.UI.RadButton();
     this.btImprimir         = new Telerik.WinControls.UI.RadButton();
     this.btGuardar          = new Telerik.WinControls.UI.RadButton();
     this.radGroupBox1       = new Telerik.WinControls.UI.RadGroupBox();
     this.dataPropietario    = new Telerik.WinControls.UI.RadGridView();
     this.radPanel1          = new Telerik.WinControls.UI.RadPanel();
     this.cbbChofer          = new Negocios.Componentes.MultiCbbPersonal();
     this.multiCbbPersonal1  = new Negocios.Componentes.MultiCbbPersonal();
     this.txtObservacion     = new Negocios.Componentes.TextPersonal();
     this.txtApodo           = new Negocios.Componentes.TextPersonal();
     this.txtApellido        = new Negocios.Componentes.TextPersonal();
     this.txtCodigo          = new Negocios.Componentes.TextPersonal();
     this.chEstado           = new Telerik.WinControls.UI.RadToggleSwitch();
     this.radLabel4          = new Telerik.WinControls.UI.RadLabel();
     this.radLabel5          = new Telerik.WinControls.UI.RadLabel();
     this.radLabel3          = new Telerik.WinControls.UI.RadLabel();
     this.radLabel2          = new Telerik.WinControls.UI.RadLabel();
     this.radSeparator1      = new Telerik.WinControls.UI.RadSeparator();
     this.radLabel1          = new Telerik.WinControls.UI.RadLabel();
     this.multiCbbPersonal2  = new Negocios.Componentes.MultiCbbPersonal();
     this.radLabel6          = new Telerik.WinControls.UI.RadLabel();
     this.textPersonal1      = new Negocios.Componentes.TextPersonal();
     this.radDateTimePicker1 = new Telerik.WinControls.UI.RadDateTimePicker();
     this.tableLayoutPanel1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.btCancelar)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.btImprimir)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.btGuardar)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radGroupBox1)).BeginInit();
     this.radGroupBox1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dataPropietario)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dataPropietario.MasterTemplate)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radPanel1)).BeginInit();
     this.radPanel1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.cbbChofer)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cbbChofer.EditorControl)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cbbChofer.EditorControl.MasterTemplate)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.multiCbbPersonal1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.multiCbbPersonal1.EditorControl)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.multiCbbPersonal1.EditorControl.MasterTemplate)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtObservacion)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtApodo)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtApellido)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtCodigo)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.chEstado)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel4)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel5)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radSeparator1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.multiCbbPersonal2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.multiCbbPersonal2.EditorControl)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.multiCbbPersonal2.EditorControl.MasterTemplate)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel6)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.textPersonal1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radDateTimePicker1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
     this.SuspendLayout();
     //
     // tableLayoutPanel1
     //
     this.tableLayoutPanel1.ColumnCount = 1;
     this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F));
     this.tableLayoutPanel1.Controls.Add(this.btCancelar, 0, 2);
     this.tableLayoutPanel1.Controls.Add(this.btImprimir, 0, 1);
     this.tableLayoutPanel1.Controls.Add(this.btGuardar, 0, 0);
     this.tableLayoutPanel1.Location = new System.Drawing.Point(648, 12);
     this.tableLayoutPanel1.Name     = "tableLayoutPanel1";
     this.tableLayoutPanel1.RowCount = 3;
     this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 33.33333F));
     this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 33.33333F));
     this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 33.33333F));
     this.tableLayoutPanel1.Size     = new System.Drawing.Size(146, 186);
     this.tableLayoutPanel1.TabIndex = 14;
     //
     // btCancelar
     //
     this.btCancelar.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     this.btCancelar.Dock         = System.Windows.Forms.DockStyle.Fill;
     this.btCancelar.Location     = new System.Drawing.Point(3, 127);
     this.btCancelar.Name         = "btCancelar";
     this.btCancelar.Size         = new System.Drawing.Size(140, 56);
     this.btCancelar.TabIndex     = 2;
     this.btCancelar.Text         = "Cancelar";
     this.btCancelar.ThemeName    = "VisualStudio2012Light";
     //
     // btImprimir
     //
     this.btImprimir.Dock      = System.Windows.Forms.DockStyle.Fill;
     this.btImprimir.Location  = new System.Drawing.Point(3, 65);
     this.btImprimir.Name      = "btImprimir";
     this.btImprimir.Size      = new System.Drawing.Size(140, 56);
     this.btImprimir.TabIndex  = 1;
     this.btImprimir.Text      = "Imprimir";
     this.btImprimir.ThemeName = "VisualStudio2012Light";
     //
     // btGuardar
     //
     this.btGuardar.Dock      = System.Windows.Forms.DockStyle.Fill;
     this.btGuardar.Location  = new System.Drawing.Point(3, 3);
     this.btGuardar.Name      = "btGuardar";
     this.btGuardar.Size      = new System.Drawing.Size(140, 56);
     this.btGuardar.TabIndex  = 0;
     this.btGuardar.Text      = "Guardar";
     this.btGuardar.ThemeName = "VisualStudio2012Light";
     //
     // radGroupBox1
     //
     this.radGroupBox1.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
     this.radGroupBox1.Controls.Add(this.dataPropietario);
     this.radGroupBox1.Font       = new System.Drawing.Font("Segoe UI", 10F);
     this.radGroupBox1.HeaderText = "Lista de material a despachar";
     this.radGroupBox1.Location   = new System.Drawing.Point(15, 237);
     this.radGroupBox1.Name       = "radGroupBox1";
     this.radGroupBox1.Size       = new System.Drawing.Size(782, 361);
     this.radGroupBox1.TabIndex   = 13;
     this.radGroupBox1.Text       = "Lista de material a despachar";
     this.radGroupBox1.ThemeName  = "VisualStudio2012Light";
     //
     // dataPropietario
     //
     this.dataPropietario.BackColor         = System.Drawing.Color.FromArgb(((int)(((byte)(239)))), ((int)(((byte)(239)))), ((int)(((byte)(242)))));
     this.dataPropietario.Cursor            = System.Windows.Forms.Cursors.Default;
     this.dataPropietario.Dock              = System.Windows.Forms.DockStyle.Fill;
     this.dataPropietario.EnableHotTracking = false;
     this.dataPropietario.Font              = new System.Drawing.Font("Segoe UI", 10F);
     this.dataPropietario.ForeColor         = System.Drawing.SystemColors.ControlText;
     this.dataPropietario.ImeMode           = System.Windows.Forms.ImeMode.NoControl;
     this.dataPropietario.Location          = new System.Drawing.Point(2, 18);
     //
     //
     //
     this.dataPropietario.MasterTemplate.AllowAddNewRow      = false;
     this.dataPropietario.MasterTemplate.AllowColumnChooser  = false;
     this.dataPropietario.MasterTemplate.AllowColumnReorder  = false;
     this.dataPropietario.MasterTemplate.AllowColumnResize   = false;
     this.dataPropietario.MasterTemplate.AllowDragToGroup    = false;
     this.dataPropietario.MasterTemplate.AllowRowResize      = false;
     this.dataPropietario.MasterTemplate.AutoSizeColumnsMode = Telerik.WinControls.UI.GridViewAutoSizeColumnsMode.Fill;
     gridViewDecimalColumn1.DataType = typeof(int);
     gridViewDecimalColumn1.EnableExpressionEditor = false;
     gridViewDecimalColumn1.FieldName               = "Codigo";
     gridViewDecimalColumn1.HeaderText              = "Codigo";
     gridViewDecimalColumn1.IsAutoGenerated         = true;
     gridViewDecimalColumn1.Name                    = "IdPropietario";
     gridViewDecimalColumn1.ReadOnly                = true;
     gridViewTextBoxColumn1.EnableExpressionEditor  = false;
     gridViewTextBoxColumn1.FieldName               = "Apodo";
     gridViewTextBoxColumn1.HeaderText              = "Chofer";
     gridViewTextBoxColumn1.IsAutoGenerated         = true;
     gridViewTextBoxColumn1.Name                    = "Chofer";
     gridViewTextBoxColumn1.Width                   = 89;
     gridViewTextBoxColumn2.EnableExpressionEditor  = false;
     gridViewTextBoxColumn2.FieldName               = "Placa";
     gridViewTextBoxColumn2.HeaderText              = "Placa";
     gridViewTextBoxColumn2.IsAutoGenerated         = true;
     gridViewTextBoxColumn2.Name                    = "Nombre";
     gridViewTextBoxColumn2.ReadOnly                = true;
     gridViewTextBoxColumn2.Width                   = 64;
     gridViewTextBoxColumn3.DataType                = typeof(float);
     gridViewTextBoxColumn3.EnableExpressionEditor  = false;
     gridViewTextBoxColumn3.HeaderText              = "Capacidad";
     gridViewTextBoxColumn3.Name                    = "Capacidad";
     gridViewTextBoxColumn3.Width                   = 94;
     gridViewTextBoxColumn4.AllowGroup              = false;
     gridViewTextBoxColumn4.AllowResize             = false;
     gridViewTextBoxColumn4.AllowSort               = false;
     gridViewTextBoxColumn4.DataType                = typeof(int);
     gridViewTextBoxColumn4.EnableExpressionEditor  = false;
     gridViewTextBoxColumn4.HeaderText              = "IdProducto";
     gridViewTextBoxColumn4.IsVisible               = false;
     gridViewTextBoxColumn4.Name                    = "IdProducto";
     gridViewTextBoxColumn4.VisibleInColumnChooser  = false;
     gridViewTextBoxColumn4.Width                   = 33;
     gridViewDecimalColumn2.DataType                = typeof(string);
     gridViewDecimalColumn2.EnableExpressionEditor  = false;
     gridViewDecimalColumn2.FieldName               = "Producto";
     gridViewDecimalColumn2.HeaderText              = "Producto";
     gridViewDecimalColumn2.IsAutoGenerated         = true;
     gridViewDecimalColumn2.IsVisible               = false;
     gridViewDecimalColumn2.Name                    = "Producto";
     gridViewDecimalColumn2.Width                   = 68;
     gridViewTextBoxColumn5.DataType                = typeof(int);
     gridViewTextBoxColumn5.EnableExpressionEditor  = false;
     gridViewTextBoxColumn5.FieldName               = "Telefono";
     gridViewTextBoxColumn5.HeaderText              = "Viaje";
     gridViewTextBoxColumn5.IsAutoGenerated         = true;
     gridViewTextBoxColumn5.Name                    = "Viaje";
     gridViewTextBoxColumn5.Width                   = 62;
     gridViewTextBoxColumn6.DataType                = typeof(float);
     gridViewTextBoxColumn6.EnableExpressionEditor  = false;
     gridViewTextBoxColumn6.HeaderText              = "Recibe";
     gridViewTextBoxColumn6.Name                    = "Recibe";
     gridViewTextBoxColumn6.Width                   = 90;
     gridViewTextBoxColumn7.DataType                = typeof(float);
     gridViewTextBoxColumn7.EnableExpressionEditor  = false;
     gridViewTextBoxColumn7.HeaderText              = "Devuelto";
     gridViewTextBoxColumn7.Name                    = "Devuelto";
     gridViewTextBoxColumn7.Width                   = 81;
     gridViewDateTimeColumn1.EnableExpressionEditor = false;
     gridViewDateTimeColumn1.FieldName              = "FechaIngreso";
     gridViewDateTimeColumn1.HeaderText             = "Hora";
     gridViewDateTimeColumn1.IsAutoGenerated        = true;
     gridViewDateTimeColumn1.Name                   = "Hora";
     gridViewDateTimeColumn1.Width                  = 98;
     gridViewTextBoxColumn8.DataType                = typeof(float);
     gridViewTextBoxColumn8.EnableExpressionEditor  = false;
     gridViewTextBoxColumn8.HeaderText              = "Importe";
     gridViewTextBoxColumn8.Name                    = "Importe";
     gridViewTextBoxColumn8.Width                   = 88;
     gridViewCheckBoxColumn1.EnableExpressionEditor = false;
     gridViewCheckBoxColumn1.FieldName              = "Estado";
     gridViewCheckBoxColumn1.HeaderText             = "Estado";
     gridViewCheckBoxColumn1.IsAutoGenerated        = true;
     gridViewCheckBoxColumn1.MinWidth               = 20;
     gridViewCheckBoxColumn1.Name                   = "Estado";
     gridViewCheckBoxColumn1.Width                  = 72;
     this.dataPropietario.MasterTemplate.Columns.AddRange(new Telerik.WinControls.UI.GridViewDataColumn[] {
         gridViewDecimalColumn1,
         gridViewTextBoxColumn1,
         gridViewTextBoxColumn2,
         gridViewTextBoxColumn3,
         gridViewTextBoxColumn4,
         gridViewDecimalColumn2,
         gridViewTextBoxColumn5,
         gridViewTextBoxColumn6,
         gridViewTextBoxColumn7,
         gridViewDateTimeColumn1,
         gridViewTextBoxColumn8,
         gridViewCheckBoxColumn1
     });
     this.dataPropietario.MasterTemplate.EnableAlternatingRowColor = true;
     this.dataPropietario.MasterTemplate.EnableGrouping            = false;
     this.dataPropietario.MasterTemplate.EnableSorting             = false;
     this.dataPropietario.MasterTemplate.ShowRowHeaderColumn       = false;
     this.dataPropietario.MasterTemplate.ViewDefinition            = tableViewDefinition1;
     this.dataPropietario.Name        = "dataPropietario";
     this.dataPropietario.ReadOnly    = true;
     this.dataPropietario.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.dataPropietario.Size        = new System.Drawing.Size(778, 341);
     this.dataPropietario.TabIndex    = 0;
     this.dataPropietario.ThemeName   = "VisualStudio2012Light";
     this.dataPropietario.Click      += new System.EventHandler(this.dataPropietario_Click);
     //
     // radPanel1
     //
     this.radPanel1.Controls.Add(this.radDateTimePicker1);
     this.radPanel1.Controls.Add(this.cbbChofer);
     this.radPanel1.Controls.Add(this.multiCbbPersonal1);
     this.radPanel1.Controls.Add(this.txtObservacion);
     this.radPanel1.Controls.Add(this.txtApodo);
     this.radPanel1.Controls.Add(this.txtApellido);
     this.radPanel1.Controls.Add(this.txtCodigo);
     this.radPanel1.Controls.Add(this.chEstado);
     this.radPanel1.Controls.Add(this.radLabel4);
     this.radPanel1.Controls.Add(this.radLabel5);
     this.radPanel1.Controls.Add(this.radLabel3);
     this.radPanel1.Controls.Add(this.radLabel2);
     this.radPanel1.Controls.Add(this.radSeparator1);
     this.radPanel1.Controls.Add(this.radLabel1);
     this.radPanel1.Location  = new System.Drawing.Point(12, 12);
     this.radPanel1.Name      = "radPanel1";
     this.radPanel1.Size      = new System.Drawing.Size(633, 186);
     this.radPanel1.TabIndex  = 12;
     this.radPanel1.ThemeName = "VisualStudio2012Light";
     //
     // cbbChofer
     //
     this.cbbChofer.Correo = false;
     //
     // cbbChofer.NestedRadGridView
     //
     this.cbbChofer.EditorControl.BackColor = System.Drawing.SystemColors.Window;
     this.cbbChofer.EditorControl.Font      = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.cbbChofer.EditorControl.ForeColor = System.Drawing.SystemColors.ControlText;
     this.cbbChofer.EditorControl.Location  = new System.Drawing.Point(0, 0);
     //
     //
     //
     this.cbbChofer.EditorControl.MasterTemplate.AllowAddNewRow       = false;
     this.cbbChofer.EditorControl.MasterTemplate.AllowCellContextMenu = false;
     this.cbbChofer.EditorControl.MasterTemplate.AllowColumnChooser   = false;
     this.cbbChofer.EditorControl.MasterTemplate.EnableGrouping       = false;
     this.cbbChofer.EditorControl.MasterTemplate.ShowFilteringRow     = false;
     this.cbbChofer.EditorControl.MasterTemplate.ViewDefinition       = tableViewDefinition2;
     this.cbbChofer.EditorControl.Name           = "NestedRadGridView";
     this.cbbChofer.EditorControl.ReadOnly       = true;
     this.cbbChofer.EditorControl.ShowGroupPanel = false;
     this.cbbChofer.EditorControl.Size           = new System.Drawing.Size(240, 150);
     this.cbbChofer.EditorControl.TabIndex       = 0;
     this.cbbChofer.Limpiar   = false;
     this.cbbChofer.Location  = new System.Drawing.Point(505, 55);
     this.cbbChofer.Name      = "cbbChofer";
     this.cbbChofer.Size      = new System.Drawing.Size(125, 24);
     this.cbbChofer.TabIndex  = 7;
     this.cbbChofer.TabStop   = false;
     this.cbbChofer.ThemeName = "VisualStudio2012Light";
     this.cbbChofer.Validar   = false;
     //
     // multiCbbPersonal1
     //
     this.multiCbbPersonal1.Correo = false;
     //
     // multiCbbPersonal1.NestedRadGridView
     //
     this.multiCbbPersonal1.EditorControl.BackColor = System.Drawing.SystemColors.Window;
     this.multiCbbPersonal1.EditorControl.Font      = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.multiCbbPersonal1.EditorControl.ForeColor = System.Drawing.SystemColors.ControlText;
     this.multiCbbPersonal1.EditorControl.Location  = new System.Drawing.Point(0, 0);
     //
     //
     //
     this.multiCbbPersonal1.EditorControl.MasterTemplate.AllowAddNewRow       = false;
     this.multiCbbPersonal1.EditorControl.MasterTemplate.AllowCellContextMenu = false;
     this.multiCbbPersonal1.EditorControl.MasterTemplate.AllowColumnChooser   = false;
     this.multiCbbPersonal1.EditorControl.MasterTemplate.EnableGrouping       = false;
     this.multiCbbPersonal1.EditorControl.MasterTemplate.ShowFilteringRow     = false;
     this.multiCbbPersonal1.EditorControl.MasterTemplate.ViewDefinition       = tableViewDefinition3;
     this.multiCbbPersonal1.EditorControl.Name           = "NestedRadGridView";
     this.multiCbbPersonal1.EditorControl.ReadOnly       = true;
     this.multiCbbPersonal1.EditorControl.ShowGroupPanel = false;
     this.multiCbbPersonal1.EditorControl.Size           = new System.Drawing.Size(240, 150);
     this.multiCbbPersonal1.EditorControl.TabIndex       = 0;
     this.multiCbbPersonal1.Limpiar   = false;
     this.multiCbbPersonal1.Location  = new System.Drawing.Point(66, 55);
     this.multiCbbPersonal1.Name      = "multiCbbPersonal1";
     this.multiCbbPersonal1.Size      = new System.Drawing.Size(125, 24);
     this.multiCbbPersonal1.TabIndex  = 7;
     this.multiCbbPersonal1.TabStop   = false;
     this.multiCbbPersonal1.ThemeName = "VisualStudio2012Light";
     this.multiCbbPersonal1.Validar   = false;
     //
     // txtObservacion
     //
     this.txtObservacion.Correo    = false;
     this.txtObservacion.Font      = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtObservacion.Limpiar   = false;
     this.txtObservacion.Location  = new System.Drawing.Point(66, 149);
     this.txtObservacion.Name      = "txtObservacion";
     this.txtObservacion.NullText  = "Observación";
     this.txtObservacion.Size      = new System.Drawing.Size(272, 24);
     this.txtObservacion.TabIndex  = 5;
     this.txtObservacion.ThemeName = "VisualStudio2012Light";
     this.txtObservacion.Validar   = false;
     //
     // txtApodo
     //
     this.txtApodo.Correo    = false;
     this.txtApodo.Font      = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtApodo.Limpiar   = true;
     this.txtApodo.Location  = new System.Drawing.Point(66, 115);
     this.txtApodo.Name      = "txtApodo";
     this.txtApodo.Size      = new System.Drawing.Size(125, 24);
     this.txtApodo.TabIndex  = 5;
     this.txtApodo.ThemeName = "VisualStudio2012Light";
     this.txtApodo.Validar   = false;
     //
     // txtApellido
     //
     this.txtApellido.Correo    = false;
     this.txtApellido.Font      = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtApellido.Limpiar   = true;
     this.txtApellido.Location  = new System.Drawing.Point(66, 85);
     this.txtApellido.Name      = "txtApellido";
     this.txtApellido.Size      = new System.Drawing.Size(125, 24);
     this.txtApellido.TabIndex  = 5;
     this.txtApellido.ThemeName = "VisualStudio2012Light";
     this.txtApellido.Validar   = true;
     //
     // txtCodigo
     //
     this.txtCodigo.Correo    = false;
     this.txtCodigo.Font      = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtCodigo.Limpiar   = true;
     this.txtCodigo.Location  = new System.Drawing.Point(66, 12);
     this.txtCodigo.Name      = "txtCodigo";
     this.txtCodigo.Size      = new System.Drawing.Size(82, 24);
     this.txtCodigo.TabIndex  = 5;
     this.txtCodigo.ThemeName = "VisualStudio2012Light";
     this.txtCodigo.Validar   = true;
     //
     // chEstado
     //
     this.chEstado.Location      = new System.Drawing.Point(518, 153);
     this.chEstado.Name          = "chEstado";
     this.chEstado.OffText       = "Inactivo";
     this.chEstado.OnText        = "Activo";
     this.chEstado.Size          = new System.Drawing.Size(112, 20);
     this.chEstado.TabIndex      = 4;
     this.chEstado.ThemeName     = "VisualStudio2012Light";
     this.chEstado.ThumbTickness = 15;
     //
     // radLabel4
     //
     this.radLabel4.Font     = new System.Drawing.Font("Segoe UI", 10F);
     this.radLabel4.Location = new System.Drawing.Point(3, 118);
     this.radLabel4.Name     = "radLabel4";
     this.radLabel4.Size     = new System.Drawing.Size(48, 21);
     this.radLabel4.TabIndex = 1;
     this.radLabel4.Text     = "Apodo";
     //
     // radLabel5
     //
     this.radLabel5.Font     = new System.Drawing.Font("Segoe UI", 10F);
     this.radLabel5.Location = new System.Drawing.Point(451, 58);
     this.radLabel5.Name     = "radLabel5";
     this.radLabel5.Size     = new System.Drawing.Size(48, 21);
     this.radLabel5.TabIndex = 1;
     this.radLabel5.Text     = "Chofer";
     //
     // radLabel3
     //
     this.radLabel3.Font     = new System.Drawing.Font("Segoe UI", 10F);
     this.radLabel3.Location = new System.Drawing.Point(3, 88);
     this.radLabel3.Name     = "radLabel3";
     this.radLabel3.Size     = new System.Drawing.Size(44, 21);
     this.radLabel3.TabIndex = 1;
     this.radLabel3.Text     = "Cobro";
     //
     // radLabel2
     //
     this.radLabel2.Font     = new System.Drawing.Font("Segoe UI", 10F);
     this.radLabel2.Location = new System.Drawing.Point(22, 58);
     this.radLabel2.Name     = "radLabel2";
     this.radLabel2.Size     = new System.Drawing.Size(38, 21);
     this.radLabel2.TabIndex = 1;
     this.radLabel2.Text     = "Placa";
     //
     // radSeparator1
     //
     this.radSeparator1.Location  = new System.Drawing.Point(3, 42);
     this.radSeparator1.Name      = "radSeparator1";
     this.radSeparator1.Size      = new System.Drawing.Size(630, 10);
     this.radSeparator1.TabIndex  = 2;
     this.radSeparator1.ThemeName = "VisualStudio2012Light";
     //
     // radLabel1
     //
     this.radLabel1.Font     = new System.Drawing.Font("Segoe UI", 10F);
     this.radLabel1.Location = new System.Drawing.Point(3, 15);
     this.radLabel1.Name     = "radLabel1";
     this.radLabel1.Size     = new System.Drawing.Size(51, 21);
     this.radLabel1.TabIndex = 1;
     this.radLabel1.Text     = "Codigo";
     //
     // multiCbbPersonal2
     //
     this.multiCbbPersonal2.Correo = false;
     //
     // multiCbbPersonal2.NestedRadGridView
     //
     this.multiCbbPersonal2.EditorControl.BackColor = System.Drawing.SystemColors.Window;
     this.multiCbbPersonal2.EditorControl.Font      = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.multiCbbPersonal2.EditorControl.ForeColor = System.Drawing.SystemColors.ControlText;
     this.multiCbbPersonal2.EditorControl.Location  = new System.Drawing.Point(0, 0);
     //
     //
     //
     this.multiCbbPersonal2.EditorControl.MasterTemplate.AllowAddNewRow       = false;
     this.multiCbbPersonal2.EditorControl.MasterTemplate.AllowCellContextMenu = false;
     this.multiCbbPersonal2.EditorControl.MasterTemplate.AllowColumnChooser   = false;
     this.multiCbbPersonal2.EditorControl.MasterTemplate.EnableGrouping       = false;
     this.multiCbbPersonal2.EditorControl.MasterTemplate.ShowFilteringRow     = false;
     this.multiCbbPersonal2.EditorControl.MasterTemplate.ViewDefinition       = tableViewDefinition4;
     this.multiCbbPersonal2.EditorControl.Name           = "NestedRadGridView";
     this.multiCbbPersonal2.EditorControl.ReadOnly       = true;
     this.multiCbbPersonal2.EditorControl.ShowGroupPanel = false;
     this.multiCbbPersonal2.EditorControl.Size           = new System.Drawing.Size(240, 150);
     this.multiCbbPersonal2.EditorControl.TabIndex       = 0;
     this.multiCbbPersonal2.Limpiar   = false;
     this.multiCbbPersonal2.Location  = new System.Drawing.Point(78, 204);
     this.multiCbbPersonal2.Name      = "multiCbbPersonal2";
     this.multiCbbPersonal2.Size      = new System.Drawing.Size(272, 24);
     this.multiCbbPersonal2.TabIndex  = 16;
     this.multiCbbPersonal2.TabStop   = false;
     this.multiCbbPersonal2.ThemeName = "VisualStudio2012Light";
     this.multiCbbPersonal2.Validar   = false;
     //
     // radLabel6
     //
     this.radLabel6.Font     = new System.Drawing.Font("Segoe UI", 10F);
     this.radLabel6.Location = new System.Drawing.Point(15, 207);
     this.radLabel6.Name     = "radLabel6";
     this.radLabel6.Size     = new System.Drawing.Size(57, 21);
     this.radLabel6.TabIndex = 15;
     this.radLabel6.Text     = "Material";
     //
     // textPersonal1
     //
     this.textPersonal1.Correo    = false;
     this.textPersonal1.Font      = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.textPersonal1.Limpiar   = true;
     this.textPersonal1.Location  = new System.Drawing.Point(356, 207);
     this.textPersonal1.Name      = "textPersonal1";
     this.textPersonal1.NullText  = "Viajes";
     this.textPersonal1.Size      = new System.Drawing.Size(140, 24);
     this.textPersonal1.TabIndex  = 5;
     this.textPersonal1.ThemeName = "VisualStudio2012Light";
     this.textPersonal1.Validar   = true;
     //
     // radDateTimePicker1
     //
     this.radDateTimePicker1.Font      = new System.Drawing.Font("Segoe UI", 10F);
     this.radDateTimePicker1.Location  = new System.Drawing.Point(466, 12);
     this.radDateTimePicker1.Name      = "radDateTimePicker1";
     this.radDateTimePicker1.Size      = new System.Drawing.Size(164, 24);
     this.radDateTimePicker1.TabIndex  = 8;
     this.radDateTimePicker1.TabStop   = false;
     this.radDateTimePicker1.Text      = "lunes, 25 de noviembre de 2019";
     this.radDateTimePicker1.ThemeName = "VisualStudio2012Light";
     this.radDateTimePicker1.Value     = new System.DateTime(2019, 11, 25, 12, 52, 15, 642);
     //
     // Caja
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize          = new System.Drawing.Size(806, 610);
     this.Controls.Add(this.multiCbbPersonal2);
     this.Controls.Add(this.radLabel6);
     this.Controls.Add(this.tableLayoutPanel1);
     this.Controls.Add(this.radGroupBox1);
     this.Controls.Add(this.textPersonal1);
     this.Controls.Add(this.radPanel1);
     this.Name = "Caja";
     //
     //
     //
     this.RootElement.ApplyShapeToControl = true;
     this.Text      = "Caja";
     this.ThemeName = "VisualStudio2012Light";
     this.tableLayoutPanel1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.btCancelar)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.btImprimir)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.btGuardar)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radGroupBox1)).EndInit();
     this.radGroupBox1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.dataPropietario.MasterTemplate)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dataPropietario)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radPanel1)).EndInit();
     this.radPanel1.ResumeLayout(false);
     this.radPanel1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.cbbChofer.EditorControl.MasterTemplate)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cbbChofer.EditorControl)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cbbChofer)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.multiCbbPersonal1.EditorControl.MasterTemplate)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.multiCbbPersonal1.EditorControl)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.multiCbbPersonal1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtObservacion)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtApodo)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtApellido)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtCodigo)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chEstado)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel4)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel5)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radSeparator1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.multiCbbPersonal2.EditorControl.MasterTemplate)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.multiCbbPersonal2.EditorControl)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.multiCbbPersonal2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel6)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.textPersonal1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radDateTimePicker1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this)).EndInit();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
コード例 #9
0
        /// <summary>
        /// Required method for Designer support - do not modify
        /// the contents of this method with the code editor.
        /// </summary>
        private void InitializeComponent()
        {
            Telerik.WinControls.UI.GridViewCheckBoxColumn gridViewCheckBoxColumn1 = new Telerik.WinControls.UI.GridViewCheckBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn1 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn2 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn3 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn4 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn5 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn6 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn7 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn8 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn9 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn10 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn11 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn12 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn13 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Cancle_DetailCHD));
            this.rgv_StatusDoc = new Telerik.WinControls.UI.RadGridView();
            this.radSplitContainer1 = new Telerik.WinControls.UI.RadSplitContainer();
            this.splitPanel1 = new Telerik.WinControls.UI.SplitPanel();
            this.splitPanel2 = new Telerik.WinControls.UI.SplitPanel();
            this.radLabel2 = new Telerik.WinControls.UI.RadLabel();
            this.txtShiftDesc = new Telerik.WinControls.UI.RadTextBox();
            this.txtShift = new Telerik.WinControls.UI.RadTextBox();
            this.btnSearch = new Telerik.WinControls.UI.RadButton();
            this.txt_Remark = new Telerik.WinControls.UI.RadTextBox();
            this.tbn_Save = new Telerik.WinControls.UI.RadButton();
            this.radLabel1 = new Telerik.WinControls.UI.RadLabel();
            ((System.ComponentModel.ISupportInitialize)(this.rgv_StatusDoc)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.rgv_StatusDoc.MasterTemplate)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radSplitContainer1)).BeginInit();
            this.radSplitContainer1.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.splitPanel1)).BeginInit();
            this.splitPanel1.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.splitPanel2)).BeginInit();
            this.splitPanel2.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel2)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.txtShiftDesc)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.txtShift)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.btnSearch)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.txt_Remark)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.tbn_Save)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel1)).BeginInit();
            this.SuspendLayout();
            // 
            // rgv_StatusDoc
            // 
            this.rgv_StatusDoc.Dock = System.Windows.Forms.DockStyle.Fill;
            this.rgv_StatusDoc.Font = new System.Drawing.Font("Tahoma", 9.75F);
            this.rgv_StatusDoc.Location = new System.Drawing.Point(0, 0);
            // 
            // rgv_StatusDoc
            // 
            this.rgv_StatusDoc.MasterTemplate.AllowAddNewRow = false;
            gridViewCheckBoxColumn1.HeaderText = "";
            gridViewCheckBoxColumn1.Name = "CHECK";
            gridViewTextBoxColumn1.FieldName = "DOCID";
            gridViewTextBoxColumn1.HeaderText = "เลขที่เอกสาร";
            gridViewTextBoxColumn1.Name = "DOCID";
            gridViewTextBoxColumn1.ReadOnly = true;
            gridViewTextBoxColumn2.FieldName = "EMPLID";
            gridViewTextBoxColumn2.HeaderText = "รหัสพนักงาน";
            gridViewTextBoxColumn2.Name = "EMPLID";
            gridViewTextBoxColumn2.ReadOnly = true;
            gridViewTextBoxColumn3.FieldName = "EMPLNAME";
            gridViewTextBoxColumn3.HeaderText = "ชื่อ-สกุล";
            gridViewTextBoxColumn3.Name = "EMPLNAME";
            gridViewTextBoxColumn3.ReadOnly = true;
            gridViewTextBoxColumn4.FieldName = "FROMHOLIDAY";
            gridViewTextBoxColumn4.HeaderText = "วันที่มาทำ";
            gridViewTextBoxColumn4.Name = "FROMHOLIDAY";
            gridViewTextBoxColumn4.ReadOnly = true;
            gridViewTextBoxColumn5.FieldName = "TOSHIFTID";
            gridViewTextBoxColumn5.HeaderText = "กะที่มาทำ";
            gridViewTextBoxColumn5.Name = "TOSHIFTID";
            gridViewTextBoxColumn5.ReadOnly = true;
            gridViewTextBoxColumn6.FieldName = "TOSHIFTDESC";
            gridViewTextBoxColumn6.HeaderText = "คำอธิบาย";
            gridViewTextBoxColumn6.Name = "TOSHIFTDESC";
            gridViewTextBoxColumn6.ReadOnly = true;
            gridViewTextBoxColumn7.FieldName = "TOHOLIDAY";
            gridViewTextBoxColumn7.HeaderText = "วันที่หยุด";
            gridViewTextBoxColumn7.Name = "TOHOLIDAY";
            gridViewTextBoxColumn7.ReadOnly = true;
            gridViewTextBoxColumn8.FieldName = "REASON";
            gridViewTextBoxColumn8.HeaderText = "เหตุผล";
            gridViewTextBoxColumn8.Name = "REASON";
            gridViewTextBoxColumn8.ReadOnly = true;
            gridViewTextBoxColumn9.FieldName = "HEADAPPROVED";
            gridViewTextBoxColumn9.HeaderText = "หน./ผช.";
            gridViewTextBoxColumn9.Name = "HEADAPPROVED";
            gridViewTextBoxColumn9.ReadOnly = true;
            gridViewTextBoxColumn10.FieldName = "HEADAPPROVEDBYNAME";
            gridViewTextBoxColumn10.HeaderText = "ผู้อนุมัติ";
            gridViewTextBoxColumn10.Name = "HEADAPPROVEDBYNAME";
            gridViewTextBoxColumn10.ReadOnly = true;
            gridViewTextBoxColumn11.FieldName = "HRAPPROVED";
            gridViewTextBoxColumn11.HeaderText = "บุคคล";
            gridViewTextBoxColumn11.Name = "HRAPPROVED";
            gridViewTextBoxColumn11.ReadOnly = true;
            gridViewTextBoxColumn12.FieldName = "HRAPPROVEDBYNAME";
            gridViewTextBoxColumn12.HeaderText = "ผู้อนุมัติ";
            gridViewTextBoxColumn12.Name = "HRAPPROVEDBYNAME";
            gridViewTextBoxColumn12.ReadOnly = true;
            gridViewTextBoxColumn13.FieldName = "DOCSTAT";
            gridViewTextBoxColumn13.HeaderText = "สถานะ";
            gridViewTextBoxColumn13.Name = "DOCSTAT";
            gridViewTextBoxColumn13.ReadOnly = true;
            this.rgv_StatusDoc.MasterTemplate.Columns.AddRange(new Telerik.WinControls.UI.GridViewDataColumn[] {
            gridViewCheckBoxColumn1,
            gridViewTextBoxColumn1,
            gridViewTextBoxColumn2,
            gridViewTextBoxColumn3,
            gridViewTextBoxColumn4,
            gridViewTextBoxColumn5,
            gridViewTextBoxColumn6,
            gridViewTextBoxColumn7,
            gridViewTextBoxColumn8,
            gridViewTextBoxColumn9,
            gridViewTextBoxColumn10,
            gridViewTextBoxColumn11,
            gridViewTextBoxColumn12,
            gridViewTextBoxColumn13});
            this.rgv_StatusDoc.Name = "rgv_StatusDoc";
            this.rgv_StatusDoc.Size = new System.Drawing.Size(784, 194);
            this.rgv_StatusDoc.TabIndex = 3;
            this.rgv_StatusDoc.Text = "radGridView1";
            // 
            // radSplitContainer1
            // 
            this.radSplitContainer1.Controls.Add(this.splitPanel1);
            this.radSplitContainer1.Controls.Add(this.splitPanel2);
            this.radSplitContainer1.Dock = System.Windows.Forms.DockStyle.Fill;
            this.radSplitContainer1.Location = new System.Drawing.Point(0, 0);
            this.radSplitContainer1.Name = "radSplitContainer1";
            this.radSplitContainer1.Orientation = System.Windows.Forms.Orientation.Horizontal;
            // 
            // 
            // 
            this.radSplitContainer1.RootElement.MinSize = new System.Drawing.Size(25, 25);
            this.radSplitContainer1.Size = new System.Drawing.Size(784, 561);
            this.radSplitContainer1.SplitterWidth = 4;
            this.radSplitContainer1.TabIndex = 4;
            this.radSplitContainer1.TabStop = false;
            this.radSplitContainer1.Text = "radSplitContainer1";
            // 
            // splitPanel1
            // 
            this.splitPanel1.Controls.Add(this.rgv_StatusDoc);
            this.splitPanel1.Location = new System.Drawing.Point(0, 0);
            this.splitPanel1.Name = "splitPanel1";
            // 
            // 
            // 
            this.splitPanel1.RootElement.MinSize = new System.Drawing.Size(25, 25);
            this.splitPanel1.Size = new System.Drawing.Size(784, 194);
            this.splitPanel1.SizeInfo.AutoSizeScale = new System.Drawing.SizeF(0.251282F, -0.1517056F);
            this.splitPanel1.SizeInfo.SplitterCorrection = new System.Drawing.Size(189, -84);
            this.splitPanel1.TabIndex = 0;
            this.splitPanel1.TabStop = false;
            this.splitPanel1.Text = "splitPanel1";
            // 
            // splitPanel2
            // 
            this.splitPanel2.Controls.Add(this.radLabel2);
            this.splitPanel2.Controls.Add(this.txtShiftDesc);
            this.splitPanel2.Controls.Add(this.txtShift);
            this.splitPanel2.Controls.Add(this.btnSearch);
            this.splitPanel2.Controls.Add(this.txt_Remark);
            this.splitPanel2.Controls.Add(this.tbn_Save);
            this.splitPanel2.Controls.Add(this.radLabel1);
            this.splitPanel2.Location = new System.Drawing.Point(0, 198);
            this.splitPanel2.Name = "splitPanel2";
            // 
            // 
            // 
            this.splitPanel2.RootElement.MinSize = new System.Drawing.Size(25, 25);
            this.splitPanel2.Size = new System.Drawing.Size(784, 363);
            this.splitPanel2.SizeInfo.AutoSizeScale = new System.Drawing.SizeF(-0.251282F, 0.1517056F);
            this.splitPanel2.SizeInfo.SplitterCorrection = new System.Drawing.Size(-189, 84);
            this.splitPanel2.TabIndex = 1;
            this.splitPanel2.TabStop = false;
            this.splitPanel2.Text = "splitPanel2";
            // 
            // radLabel2
            // 
            this.radLabel2.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Underline);
            this.radLabel2.Location = new System.Drawing.Point(41, 32);
            this.radLabel2.Name = "radLabel2";
            this.radLabel2.Size = new System.Drawing.Size(134, 19);
            this.radLabel2.TabIndex = 13;
            this.radLabel2.Text = "กะเดิมวันที่ต้องการหยุด";
            // 
            // txtShiftDesc
            // 
            this.txtShiftDesc.Font = new System.Drawing.Font("Tahoma", 9.75F);
            this.txtShiftDesc.Location = new System.Drawing.Point(262, 32);
            this.txtShiftDesc.Name = "txtShiftDesc";
            this.txtShiftDesc.ReadOnly = true;
            this.txtShiftDesc.Size = new System.Drawing.Size(145, 21);
            this.txtShiftDesc.TabIndex = 11;
            this.txtShiftDesc.TabStop = false;
            // 
            // txtShift
            // 
            this.txtShift.Font = new System.Drawing.Font("Tahoma", 9.75F);
            this.txtShift.Location = new System.Drawing.Point(185, 32);
            this.txtShift.Name = "txtShift";
            this.txtShift.ReadOnly = true;
            this.txtShift.Size = new System.Drawing.Size(71, 21);
            this.txtShift.TabIndex = 10;
            this.txtShift.TabStop = false;
            // 
            // btnSearch
            // 
            this.btnSearch.Image = ((System.Drawing.Image)(resources.GetObject("btnSearch.Image")));
            this.btnSearch.ImageAlignment = System.Drawing.ContentAlignment.MiddleCenter;
            this.btnSearch.Location = new System.Drawing.Point(413, 34);
            this.btnSearch.Name = "btnSearch";
            this.btnSearch.Size = new System.Drawing.Size(23, 19);
            this.btnSearch.TabIndex = 12;
            // 
            // txt_Remark
            // 
            this.txt_Remark.AutoSize = false;
            this.txt_Remark.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.txt_Remark.Location = new System.Drawing.Point(41, 83);
            this.txt_Remark.Multiline = true;
            this.txt_Remark.Name = "txt_Remark";
            this.txt_Remark.Size = new System.Drawing.Size(411, 85);
            this.txt_Remark.TabIndex = 6;
            this.txt_Remark.TabStop = false;
            // 
            // tbn_Save
            // 
            this.tbn_Save.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.tbn_Save.Location = new System.Drawing.Point(342, 185);
            this.tbn_Save.Name = "tbn_Save";
            this.tbn_Save.Size = new System.Drawing.Size(110, 24);
            this.tbn_Save.TabIndex = 5;
            this.tbn_Save.Text = "บันทึก";
            // 
            // radLabel1
            // 
            this.radLabel1.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Underline, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.radLabel1.Location = new System.Drawing.Point(41, 58);
            this.radLabel1.Name = "radLabel1";
            this.radLabel1.Size = new System.Drawing.Size(100, 19);
            this.radLabel1.TabIndex = 4;
            this.radLabel1.Text = "สาเหตุการยกเลิก";
            // 
            // Cancle_DetailCHD
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.ClientSize = new System.Drawing.Size(784, 561);
            this.Controls.Add(this.radSplitContainer1);
            this.Name = "Cancle_DetailCHD";
            this.Text = "ยกเลิกเอกสารเปลี่ยนวันหยุดออนไลน์";
            ((System.ComponentModel.ISupportInitialize)(this.rgv_StatusDoc.MasterTemplate)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.rgv_StatusDoc)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radSplitContainer1)).EndInit();
            this.radSplitContainer1.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.splitPanel1)).EndInit();
            this.splitPanel1.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.splitPanel2)).EndInit();
            this.splitPanel2.ResumeLayout(false);
            this.splitPanel2.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel2)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.txtShiftDesc)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.txtShift)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.btnSearch)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.txt_Remark)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.tbn_Save)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel1)).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()
        {
            Telerik.WinControls.UI.GridViewComboBoxColumn gridViewComboBoxColumn1 = new Telerik.WinControls.UI.GridViewComboBoxColumn();
            Telerik.WinControls.UI.GridViewCheckBoxColumn gridViewCheckBoxColumn1 = new Telerik.WinControls.UI.GridViewCheckBoxColumn();
            Telerik.WinControls.UI.GridViewCheckBoxColumn gridViewCheckBoxColumn2 = new Telerik.WinControls.UI.GridViewCheckBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn1 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn2 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            this.radGroupBox1 = new Telerik.WinControls.UI.RadGroupBox();
            this.radLabel6 = new Telerik.WinControls.UI.RadLabel();
            this.cbGeneral = new Telerik.WinControls.UI.RadCheckBox();
            this.btnClearSpec = new Telerik.WinControls.UI.RadButton();
            this.btnSpecMngmt = new Telerik.WinControls.UI.RadButton();
            this.btnSubjectTypesMnmgt = new Telerik.WinControls.UI.RadButton();
            this.btnSemestersMnmgt = new Telerik.WinControls.UI.RadButton();
            this.btnInstitutesMngmt = new Telerik.WinControls.UI.RadButton();
            this.dgSpecializations = new Telerik.WinControls.UI.RadGridView();
            this.label1 = new System.Windows.Forms.Label();
            this.cbElective = new Telerik.WinControls.UI.RadCheckBox();
            this.dgSubjectTypes = new Telerik.WinControls.UI.RadGridView();
            this.lblValidation = new Telerik.WinControls.UI.RadLabel();
            this.btnCancel = new Telerik.WinControls.UI.RadButton();
            this.btnAddSubject = new Telerik.WinControls.UI.RadButton();
            this.cbInstitute = new Telerik.WinControls.UI.RadDropDownList();
            this.radLabel9 = new Telerik.WinControls.UI.RadLabel();
            this.lblDepartament = new Telerik.WinControls.UI.RadLabel();
            this.radLabel7 = new Telerik.WinControls.UI.RadLabel();
            this.lblFaculty = new Telerik.WinControls.UI.RadLabel();
            this.ckbxExam = new Telerik.WinControls.UI.RadCheckBox();
            this.seEcts = new Telerik.WinControls.UI.RadSpinEditor();
            this.cbSemester = new Telerik.WinControls.UI.RadDropDownList();
            this.tbSubjectName = new Telerik.WinControls.UI.RadTextBox();
            this.radLabel5 = new Telerik.WinControls.UI.RadLabel();
            this.radLabel4 = new Telerik.WinControls.UI.RadLabel();
            this.radLabel3 = new Telerik.WinControls.UI.RadLabel();
            this.radLabel2 = new Telerik.WinControls.UI.RadLabel();
            this.radLabel1 = new Telerik.WinControls.UI.RadLabel();
            ((System.ComponentModel.ISupportInitialize)(this.radGroupBox1)).BeginInit();
            this.radGroupBox1.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel6)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.cbGeneral)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.btnClearSpec)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.btnSpecMngmt)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.btnSubjectTypesMnmgt)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.btnSemestersMnmgt)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.btnInstitutesMngmt)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.dgSpecializations)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.cbElective)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.dgSubjectTypes)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.lblValidation)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.btnCancel)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.btnAddSubject)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.cbInstitute)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel9)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.lblDepartament)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel7)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.lblFaculty)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.ckbxExam)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.seEcts)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.cbSemester)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.tbSubjectName)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel5)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel4)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel3)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel2)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
            this.SuspendLayout();
            // 
            // radGroupBox1
            // 
            this.radGroupBox1.Controls.Add(this.radLabel6);
            this.radGroupBox1.Controls.Add(this.cbGeneral);
            this.radGroupBox1.Controls.Add(this.btnClearSpec);
            this.radGroupBox1.Controls.Add(this.btnSpecMngmt);
            this.radGroupBox1.Controls.Add(this.btnSubjectTypesMnmgt);
            this.radGroupBox1.Controls.Add(this.btnSemestersMnmgt);
            this.radGroupBox1.Controls.Add(this.btnInstitutesMngmt);
            this.radGroupBox1.Controls.Add(this.dgSpecializations);
            this.radGroupBox1.Controls.Add(this.label1);
            this.radGroupBox1.Controls.Add(this.cbElective);
            this.radGroupBox1.Controls.Add(this.dgSubjectTypes);
            this.radGroupBox1.Controls.Add(this.lblValidation);
            this.radGroupBox1.Controls.Add(this.btnCancel);
            this.radGroupBox1.Controls.Add(this.btnAddSubject);
            this.radGroupBox1.Controls.Add(this.cbInstitute);
            this.radGroupBox1.Controls.Add(this.radLabel9);
            this.radGroupBox1.Controls.Add(this.lblDepartament);
            this.radGroupBox1.Controls.Add(this.radLabel7);
            this.radGroupBox1.Controls.Add(this.lblFaculty);
            this.radGroupBox1.Controls.Add(this.ckbxExam);
            this.radGroupBox1.Controls.Add(this.seEcts);
            this.radGroupBox1.Controls.Add(this.cbSemester);
            this.radGroupBox1.Controls.Add(this.tbSubjectName);
            this.radGroupBox1.Controls.Add(this.radLabel5);
            this.radGroupBox1.Controls.Add(this.radLabel4);
            this.radGroupBox1.Controls.Add(this.radLabel3);
            this.radGroupBox1.Controls.Add(this.radLabel2);
            this.radGroupBox1.Controls.Add(this.radLabel1);
            this.radGroupBox1.FooterImageIndex = -1;
            this.radGroupBox1.FooterImageKey = "";
            this.radGroupBox1.HeaderImageIndex = -1;
            this.radGroupBox1.HeaderImageKey = "";
            this.radGroupBox1.HeaderMargin = new System.Windows.Forms.Padding(0);
            this.radGroupBox1.HeaderText = "Dodaj przedmiot";
            this.radGroupBox1.Location = new System.Drawing.Point(8, 12);
            this.radGroupBox1.Name = "radGroupBox1";
            this.radGroupBox1.Padding = new System.Windows.Forms.Padding(10, 20, 10, 10);
            // 
            // 
            // 
            this.radGroupBox1.RootElement.Padding = new System.Windows.Forms.Padding(10, 20, 10, 10);
            this.radGroupBox1.Size = new System.Drawing.Size(463, 465);
            this.radGroupBox1.TabIndex = 0;
            this.radGroupBox1.Text = "Dodaj przedmiot";
            ((Telerik.WinControls.Primitives.FillPrimitive)(this.radGroupBox1.GetChildAt(0).GetChildAt(0).GetChildAt(0))).BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(191)))), ((int)(((byte)(219)))), ((int)(((byte)(255)))));
            ((Telerik.WinControls.Primitives.FillPrimitive)(this.radGroupBox1.GetChildAt(0).GetChildAt(1).GetChildAt(0))).BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(191)))), ((int)(((byte)(219)))), ((int)(((byte)(255)))));
            // 
            // radLabel6
            // 
            this.radLabel6.Location = new System.Drawing.Point(13, 199);
            this.radLabel6.Name = "radLabel6";
            this.radLabel6.Size = new System.Drawing.Size(78, 18);
            this.radLabel6.TabIndex = 25;
            this.radLabel6.Text = "Obowi¹zkowy:";
            // 
            // cbGeneral
            // 
            this.cbGeneral.Location = new System.Drawing.Point(117, 199);
            this.cbGeneral.Name = "cbGeneral";
            this.cbGeneral.Size = new System.Drawing.Size(15, 15);
            this.cbGeneral.TabIndex = 7;
            this.cbGeneral.ToggleStateChanged += new Telerik.WinControls.UI.StateChangedEventHandler(this.cbGeneral_ToggleStateChanged);
            // 
            // btnClearSpec
            // 
            this.btnClearSpec.ForeColor = System.Drawing.Color.Black;
            this.btnClearSpec.Location = new System.Drawing.Point(39, 395);
            this.btnClearSpec.Name = "btnClearSpec";
            // 
            // 
            // 
            this.btnClearSpec.RootElement.ForeColor = System.Drawing.Color.Black;
            this.btnClearSpec.Size = new System.Drawing.Size(130, 20);
            this.btnClearSpec.TabIndex = 11;
            this.btnClearSpec.Text = "WyczyϾ specjalizacje";
            this.btnClearSpec.Click += new System.EventHandler(this.btnClearSpec_Click);
            // 
            // btnSpecMngmt
            // 
            this.btnSpecMngmt.BackgroundImage = global::StudiesPlans.Properties.Resources.management;
            this.btnSpecMngmt.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
            this.btnSpecMngmt.Image = global::StudiesPlans.Properties.Resources.management;
            this.btnSpecMngmt.ImageAlignment = System.Drawing.ContentAlignment.MiddleCenter;
            this.btnSpecMngmt.Location = new System.Drawing.Point(13, 395);
            this.btnSpecMngmt.Name = "btnSpecMngmt";
            this.btnSpecMngmt.Size = new System.Drawing.Size(20, 20);
            this.btnSpecMngmt.TabIndex = 10;
            this.btnSpecMngmt.Click += new System.EventHandler(this.btnSpecMngmt_Click);
            ((Telerik.WinControls.UI.RadButtonElement)(this.btnSpecMngmt.GetChildAt(0))).Image = global::StudiesPlans.Properties.Resources.management;
            ((Telerik.WinControls.UI.RadButtonElement)(this.btnSpecMngmt.GetChildAt(0))).ImageAlignment = System.Drawing.ContentAlignment.MiddleCenter;
            // 
            // btnSubjectTypesMnmgt
            // 
            this.btnSubjectTypesMnmgt.BackgroundImage = global::StudiesPlans.Properties.Resources.management;
            this.btnSubjectTypesMnmgt.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
            this.btnSubjectTypesMnmgt.Image = global::StudiesPlans.Properties.Resources.management;
            this.btnSubjectTypesMnmgt.ImageAlignment = System.Drawing.ContentAlignment.MiddleCenter;
            this.btnSubjectTypesMnmgt.Location = new System.Drawing.Point(252, 395);
            this.btnSubjectTypesMnmgt.Name = "btnSubjectTypesMnmgt";
            this.btnSubjectTypesMnmgt.Size = new System.Drawing.Size(20, 20);
            this.btnSubjectTypesMnmgt.TabIndex = 13;
            this.btnSubjectTypesMnmgt.Click += new System.EventHandler(this.btnSubjectTypesMnmgt_Click);
            ((Telerik.WinControls.UI.RadButtonElement)(this.btnSubjectTypesMnmgt.GetChildAt(0))).Image = global::StudiesPlans.Properties.Resources.management;
            ((Telerik.WinControls.UI.RadButtonElement)(this.btnSubjectTypesMnmgt.GetChildAt(0))).ImageAlignment = System.Drawing.ContentAlignment.MiddleCenter;
            // 
            // btnSemestersMnmgt
            // 
            this.btnSemestersMnmgt.BackgroundImage = global::StudiesPlans.Properties.Resources.management;
            this.btnSemestersMnmgt.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
            this.btnSemestersMnmgt.Image = global::StudiesPlans.Properties.Resources.management;
            this.btnSemestersMnmgt.ImageAlignment = System.Drawing.ContentAlignment.MiddleCenter;
            this.btnSemestersMnmgt.Location = new System.Drawing.Point(91, 49);
            this.btnSemestersMnmgt.Name = "btnSemestersMnmgt";
            this.btnSemestersMnmgt.Size = new System.Drawing.Size(20, 20);
            this.btnSemestersMnmgt.TabIndex = 1;
            this.btnSemestersMnmgt.Click += new System.EventHandler(this.btnSemestersMnmgt_Click);
            ((Telerik.WinControls.UI.RadButtonElement)(this.btnSemestersMnmgt.GetChildAt(0))).Image = global::StudiesPlans.Properties.Resources.management;
            ((Telerik.WinControls.UI.RadButtonElement)(this.btnSemestersMnmgt.GetChildAt(0))).ImageAlignment = System.Drawing.ContentAlignment.MiddleCenter;
            // 
            // btnInstitutesMngmt
            // 
            this.btnInstitutesMngmt.BackgroundImage = global::StudiesPlans.Properties.Resources.management;
            this.btnInstitutesMngmt.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
            this.btnInstitutesMngmt.Image = global::StudiesPlans.Properties.Resources.management;
            this.btnInstitutesMngmt.ImageAlignment = System.Drawing.ContentAlignment.MiddleCenter;
            this.btnInstitutesMngmt.Location = new System.Drawing.Point(91, 173);
            this.btnInstitutesMngmt.Name = "btnInstitutesMngmt";
            this.btnInstitutesMngmt.Size = new System.Drawing.Size(20, 20);
            this.btnInstitutesMngmt.TabIndex = 5;
            this.btnInstitutesMngmt.Click += new System.EventHandler(this.btnInstitutesMngmt_Click);
            ((Telerik.WinControls.UI.RadButtonElement)(this.btnInstitutesMngmt.GetChildAt(0))).Image = global::StudiesPlans.Properties.Resources.management;
            ((Telerik.WinControls.UI.RadButtonElement)(this.btnInstitutesMngmt.GetChildAt(0))).ImageAlignment = System.Drawing.ContentAlignment.MiddleCenter;
            // 
            // dgSpecializations
            // 
            this.dgSpecializations.AutoSize = true;
            this.dgSpecializations.AutoSizeRows = true;
            this.dgSpecializations.Location = new System.Drawing.Point(13, 244);
            // 
            // dgSpecializations
            // 
            this.dgSpecializations.MasterTemplate.AddNewRowPosition = Telerik.WinControls.UI.SystemRowPosition.Bottom;
            this.dgSpecializations.MasterTemplate.AllowCellContextMenu = false;
            this.dgSpecializations.MasterTemplate.AllowColumnReorder = false;
            this.dgSpecializations.MasterTemplate.AllowDragToGroup = false;
            this.dgSpecializations.MasterTemplate.AutoSizeColumnsMode = Telerik.WinControls.UI.GridViewAutoSizeColumnsMode.Fill;
            gridViewComboBoxColumn1.DisplayMember = null;
            gridViewComboBoxColumn1.FormatString = "";
            gridViewComboBoxColumn1.HeaderText = "Specjalizacja";
            gridViewComboBoxColumn1.Name = "specialization";
            gridViewComboBoxColumn1.ValueMember = null;
            gridViewComboBoxColumn1.Width = 77;
            gridViewCheckBoxColumn1.FormatString = "";
            gridViewCheckBoxColumn1.HeaderText = "Obowi¹zkowy";
            gridViewCheckBoxColumn1.Name = "general";
            gridViewCheckBoxColumn1.Width = 77;
            gridViewCheckBoxColumn2.FormatString = "";
            gridViewCheckBoxColumn2.HeaderText = "Obieralny";
            gridViewCheckBoxColumn2.Name = "elective";
            gridViewCheckBoxColumn2.Width = 76;
            this.dgSpecializations.MasterTemplate.Columns.AddRange(new Telerik.WinControls.UI.GridViewDataColumn[] {
            gridViewComboBoxColumn1,
            gridViewCheckBoxColumn1,
            gridViewCheckBoxColumn2});
            this.dgSpecializations.MasterTemplate.EnableGrouping = false;
            this.dgSpecializations.MasterTemplate.ShowRowHeaderColumn = false;
            this.dgSpecializations.Name = "dgSpecializations";
            this.dgSpecializations.NewRowEnterKeyMode = Telerik.WinControls.UI.RadGridViewNewRowEnterKeyMode.EnterMovesToNextCell;
            this.dgSpecializations.Padding = new System.Windows.Forms.Padding(0, 0, 0, 1);
            // 
            // 
            // 
            this.dgSpecializations.RootElement.Padding = new System.Windows.Forms.Padding(0, 0, 0, 1);
            this.dgSpecializations.Size = new System.Drawing.Size(231, 145);
            this.dgSpecializations.TabIndex = 9;
            this.dgSpecializations.Text = "specializations";
            this.dgSpecializations.CellValueChanged += new Telerik.WinControls.UI.GridViewCellEventHandler(this.dgSpecializations_CellValueChanged);
            // 
            // label1
            // 
            this.label1.AutoSize = true;
            this.label1.Location = new System.Drawing.Point(13, 220);
            this.label1.Name = "label1";
            this.label1.Size = new System.Drawing.Size(60, 13);
            this.label1.TabIndex = 19;
            this.label1.Text = "Obieralny:";
            // 
            // cbElective
            // 
            this.cbElective.Location = new System.Drawing.Point(117, 220);
            this.cbElective.Name = "cbElective";
            this.cbElective.Size = new System.Drawing.Size(15, 15);
            this.cbElective.TabIndex = 8;
            this.cbElective.ToggleStateChanged += new Telerik.WinControls.UI.StateChangedEventHandler(this.cbElective_ToggleStateChanged);
            // 
            // dgSubjectTypes
            // 
            this.dgSubjectTypes.AutoSize = true;
            this.dgSubjectTypes.AutoSizeRows = true;
            this.dgSubjectTypes.Location = new System.Drawing.Point(252, 244);
            // 
            // dgSubjectTypes
            // 
            this.dgSubjectTypes.MasterTemplate.AllowAddNewRow = false;
            this.dgSubjectTypes.MasterTemplate.AllowCellContextMenu = false;
            this.dgSubjectTypes.MasterTemplate.AllowColumnResize = false;
            this.dgSubjectTypes.MasterTemplate.AllowDeleteRow = false;
            this.dgSubjectTypes.MasterTemplate.AllowDragToGroup = false;
            this.dgSubjectTypes.MasterTemplate.AllowRowResize = false;
            this.dgSubjectTypes.MasterTemplate.AutoSizeColumnsMode = Telerik.WinControls.UI.GridViewAutoSizeColumnsMode.Fill;
            gridViewTextBoxColumn1.FormatString = "";
            gridViewTextBoxColumn1.HeaderText = "Typ";
            gridViewTextBoxColumn1.Name = "subjectType";
            gridViewTextBoxColumn1.ReadOnly = true;
            gridViewTextBoxColumn1.Width = 106;
            gridViewTextBoxColumn2.FormatString = "";
            gridViewTextBoxColumn2.HeaderText = "Godziny";
            gridViewTextBoxColumn2.Name = "hours";
            gridViewTextBoxColumn2.Width = 90;
            this.dgSubjectTypes.MasterTemplate.Columns.AddRange(new Telerik.WinControls.UI.GridViewDataColumn[] {
            gridViewTextBoxColumn1,
            gridViewTextBoxColumn2});
            this.dgSubjectTypes.MasterTemplate.EnableGrouping = false;
            this.dgSubjectTypes.MasterTemplate.ShowRowHeaderColumn = false;
            this.dgSubjectTypes.Name = "dgSubjectTypes";
            this.dgSubjectTypes.Padding = new System.Windows.Forms.Padding(0, 0, 0, 1);
            // 
            // 
            // 
            this.dgSubjectTypes.RootElement.Padding = new System.Windows.Forms.Padding(0, 0, 0, 1);
            this.dgSubjectTypes.Size = new System.Drawing.Size(198, 145);
            this.dgSubjectTypes.TabIndex = 12;
            this.dgSubjectTypes.Text = "radGridView1";
            // 
            // lblValidation
            // 
            this.lblValidation.Font = new System.Drawing.Font("Segoe UI", 8.25F, System.Drawing.FontStyle.Bold);
            this.lblValidation.ForeColor = System.Drawing.Color.Red;
            this.lblValidation.Location = new System.Drawing.Point(250, 25);
            this.lblValidation.Name = "lblValidation";
            // 
            // 
            // 
            this.lblValidation.RootElement.ForeColor = System.Drawing.Color.Red;
            this.lblValidation.Size = new System.Drawing.Size(2, 2);
            this.lblValidation.TabIndex = 16;
            // 
            // btnCancel
            // 
            this.btnCancel.ForeColor = System.Drawing.Color.Black;
            this.btnCancel.Location = new System.Drawing.Point(242, 428);
            this.btnCancel.Name = "btnCancel";
            // 
            // 
            // 
            this.btnCancel.RootElement.ForeColor = System.Drawing.Color.Black;
            this.btnCancel.Size = new System.Drawing.Size(130, 24);
            this.btnCancel.TabIndex = 15;
            this.btnCancel.Text = "Zamknij";
            this.btnCancel.Click += new System.EventHandler(this.btnCancel_Click);
            // 
            // btnAddSubject
            // 
            this.btnAddSubject.ForeColor = System.Drawing.Color.Black;
            this.btnAddSubject.Location = new System.Drawing.Point(91, 428);
            this.btnAddSubject.Name = "btnAddSubject";
            // 
            // 
            // 
            this.btnAddSubject.RootElement.ForeColor = System.Drawing.Color.Black;
            this.btnAddSubject.Size = new System.Drawing.Size(130, 24);
            this.btnAddSubject.TabIndex = 14;
            this.btnAddSubject.Text = "Dodaj przedmiot";
            this.btnAddSubject.Click += new System.EventHandler(this.btnAddSubject_Click);
            // 
            // cbInstitute
            // 
            this.cbInstitute.DropDownStyle = Telerik.WinControls.RadDropDownStyle.DropDownList;
            this.cbInstitute.Location = new System.Drawing.Point(117, 173);
            this.cbInstitute.Name = "cbInstitute";
            this.cbInstitute.Size = new System.Drawing.Size(127, 20);
            this.cbInstitute.TabIndex = 6;
            // 
            // radLabel9
            // 
            this.radLabel9.Location = new System.Drawing.Point(13, 173);
            this.radLabel9.Name = "radLabel9";
            this.radLabel9.Size = new System.Drawing.Size(46, 18);
            this.radLabel9.TabIndex = 12;
            this.radLabel9.Text = "Instytut:";
            // 
            // lblDepartament
            // 
            this.lblDepartament.Location = new System.Drawing.Point(117, 149);
            this.lblDepartament.Name = "lblDepartament";
            this.lblDepartament.Size = new System.Drawing.Size(55, 18);
            this.lblDepartament.TabIndex = 11;
            this.lblDepartament.Text = "radLabel8";
            // 
            // radLabel7
            // 
            this.radLabel7.Location = new System.Drawing.Point(13, 149);
            this.radLabel7.Name = "radLabel7";
            this.radLabel7.Size = new System.Drawing.Size(48, 18);
            this.radLabel7.TabIndex = 10;
            this.radLabel7.Text = "Wydzia³:";
            // 
            // lblFaculty
            // 
            this.lblFaculty.Location = new System.Drawing.Point(117, 125);
            this.lblFaculty.Name = "lblFaculty";
            this.lblFaculty.Size = new System.Drawing.Size(55, 18);
            this.lblFaculty.TabIndex = 9;
            this.lblFaculty.Text = "radLabel6";
            // 
            // ckbxExam
            // 
            this.ckbxExam.Location = new System.Drawing.Point(117, 101);
            this.ckbxExam.Name = "ckbxExam";
            this.ckbxExam.Size = new System.Drawing.Size(15, 15);
            this.ckbxExam.TabIndex = 4;
            // 
            // seEcts
            // 
            this.seEcts.DecimalPlaces = 1;
            this.seEcts.Increment = new decimal(new int[] {
            1,
            0,
            0,
            65536});
            this.seEcts.Location = new System.Drawing.Point(117, 75);
            this.seEcts.Name = "seEcts";
            // 
            // 
            // 
            this.seEcts.RootElement.AutoSizeMode = Telerik.WinControls.RadAutoSizeMode.WrapAroundChildren;
            this.seEcts.ShowBorder = true;
            this.seEcts.Size = new System.Drawing.Size(127, 20);
            this.seEcts.TabIndex = 3;
            this.seEcts.TabStop = false;
            // 
            // cbSemester
            // 
            this.cbSemester.DropDownStyle = Telerik.WinControls.RadDropDownStyle.DropDownList;
            this.cbSemester.Location = new System.Drawing.Point(117, 49);
            this.cbSemester.Name = "cbSemester";
            this.cbSemester.Size = new System.Drawing.Size(127, 20);
            this.cbSemester.TabIndex = 2;
            // 
            // tbSubjectName
            // 
            this.tbSubjectName.Location = new System.Drawing.Point(117, 23);
            this.tbSubjectName.Name = "tbSubjectName";
            this.tbSubjectName.Size = new System.Drawing.Size(127, 20);
            this.tbSubjectName.TabIndex = 0;
            this.tbSubjectName.TabStop = false;
            // 
            // radLabel5
            // 
            this.radLabel5.Location = new System.Drawing.Point(13, 125);
            this.radLabel5.Name = "radLabel5";
            this.radLabel5.Size = new System.Drawing.Size(52, 18);
            this.radLabel5.TabIndex = 4;
            this.radLabel5.Text = "Kierunek:";
            // 
            // radLabel4
            // 
            this.radLabel4.Location = new System.Drawing.Point(13, 101);
            this.radLabel4.Name = "radLabel4";
            this.radLabel4.Size = new System.Drawing.Size(51, 18);
            this.radLabel4.TabIndex = 3;
            this.radLabel4.Text = "Egzamin:";
            // 
            // radLabel3
            // 
            this.radLabel3.Location = new System.Drawing.Point(13, 77);
            this.radLabel3.Name = "radLabel3";
            this.radLabel3.Size = new System.Drawing.Size(71, 18);
            this.radLabel3.TabIndex = 2;
            this.radLabel3.Text = "Punkty ECTS:";
            // 
            // radLabel2
            // 
            this.radLabel2.Location = new System.Drawing.Point(13, 51);
            this.radLabel2.Name = "radLabel2";
            this.radLabel2.Size = new System.Drawing.Size(49, 18);
            this.radLabel2.TabIndex = 1;
            this.radLabel2.Text = "Semestr:";
            // 
            // radLabel1
            // 
            this.radLabel1.Location = new System.Drawing.Point(13, 25);
            this.radLabel1.Name = "radLabel1";
            this.radLabel1.Size = new System.Drawing.Size(42, 18);
            this.radLabel1.TabIndex = 0;
            this.radLabel1.Text = "Nazwa:";
            // 
            // Subjects
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.ClientSize = new System.Drawing.Size(483, 489);
            this.Controls.Add(this.radGroupBox1);
            this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
            this.MaximizeBox = false;
            this.MinimizeBox = false;
            this.Name = "Subjects";
            // 
            // 
            // 
            this.RootElement.ApplyShapeToControl = true;
            this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
            this.Text = "Zarz¹dzanie przedmiotami - dodawanie przedmiotu";
            this.ThemeName = "ControlDefault";
            this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.Subjects_FormClosing);
            ((System.ComponentModel.ISupportInitialize)(this.radGroupBox1)).EndInit();
            this.radGroupBox1.ResumeLayout(false);
            this.radGroupBox1.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel6)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.cbGeneral)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.btnClearSpec)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.btnSpecMngmt)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.btnSubjectTypesMnmgt)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.btnSemestersMnmgt)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.btnInstitutesMngmt)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.dgSpecializations)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.cbElective)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.dgSubjectTypes)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.lblValidation)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.btnCancel)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.btnAddSubject)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.cbInstitute)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel9)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.lblDepartament)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel7)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.lblFaculty)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.ckbxExam)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.seEcts)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.cbSemester)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.tbSubjectName)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel5)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel4)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel3)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel2)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this)).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();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn1 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn2 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn3 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewCheckBoxColumn gridViewCheckBoxColumn1 = new Telerik.WinControls.UI.GridViewCheckBoxColumn();
            Telerik.WinControls.UI.GridViewDecimalColumn gridViewDecimalColumn1 = new Telerik.WinControls.UI.GridViewDecimalColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn4 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewDecimalColumn gridViewDecimalColumn2 = new Telerik.WinControls.UI.GridViewDecimalColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn5 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn6 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn7 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn8 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewDateTimeColumn gridViewDateTimeColumn1 = new Telerik.WinControls.UI.GridViewDateTimeColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn9 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewCheckBoxColumn gridViewCheckBoxColumn2 = new Telerik.WinControls.UI.GridViewCheckBoxColumn();
            Telerik.WinControls.UI.GridViewCheckBoxColumn gridViewCheckBoxColumn3 = new Telerik.WinControls.UI.GridViewCheckBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn10 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewCheckBoxColumn gridViewCheckBoxColumn4 = new Telerik.WinControls.UI.GridViewCheckBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn11 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn12 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            this.radGroupBox1 = new Telerik.WinControls.UI.RadGroupBox();
            this.radLabel6 = new Telerik.WinControls.UI.RadLabel();
            this.lblAccount = new Telerik.WinControls.UI.RadLabel();
            this.radLabel4 = new Telerik.WinControls.UI.RadLabel();
            this.btnSend = new Telerik.WinControls.UI.RadButton();
            this.grdList = new Telerik.WinControls.UI.RadGridView();
            this.patientBindingSource = new System.Windows.Forms.BindingSource(this.components);
            this.lblSmsNum = new Telerik.WinControls.UI.RadLabel();
            this.lblCharNum = new Telerik.WinControls.UI.RadLabel();
            this.lblLang = new Telerik.WinControls.UI.RadLabel();
            this.radLabel3 = new Telerik.WinControls.UI.RadLabel();
            this.radLabel2 = new Telerik.WinControls.UI.RadLabel();
            this.radLabel1 = new Telerik.WinControls.UI.RadLabel();
            this.txtText = new Telerik.WinControls.UI.RadTextBoxControl();
            ((System.ComponentModel.ISupportInitialize)(this.radGroupBox1)).BeginInit();
            this.radGroupBox1.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel6)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.lblAccount)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel4)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.btnSend)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.grdList)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.patientBindingSource)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.lblSmsNum)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.lblCharNum)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.lblLang)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel3)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel2)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.txtText)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
            this.SuspendLayout();
            // 
            // radGroupBox1
            // 
            this.radGroupBox1.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
            this.radGroupBox1.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.radGroupBox1.Controls.Add(this.radLabel6);
            this.radGroupBox1.Controls.Add(this.lblAccount);
            this.radGroupBox1.Controls.Add(this.radLabel4);
            this.radGroupBox1.Controls.Add(this.btnSend);
            this.radGroupBox1.Controls.Add(this.grdList);
            this.radGroupBox1.Controls.Add(this.lblSmsNum);
            this.radGroupBox1.Controls.Add(this.lblCharNum);
            this.radGroupBox1.Controls.Add(this.lblLang);
            this.radGroupBox1.Controls.Add(this.radLabel3);
            this.radGroupBox1.Controls.Add(this.radLabel2);
            this.radGroupBox1.Controls.Add(this.radLabel1);
            this.radGroupBox1.Controls.Add(this.txtText);
            this.radGroupBox1.Font = new System.Drawing.Font("B Nazanin", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
            this.radGroupBox1.FooterImageIndex = -1;
            this.radGroupBox1.FooterImageKey = "";
            this.radGroupBox1.HeaderImageIndex = -1;
            this.radGroupBox1.HeaderImageKey = "";
            this.radGroupBox1.HeaderMargin = new System.Windows.Forms.Padding(0);
            this.radGroupBox1.HeaderText = "ارسال پیامک";
            this.radGroupBox1.Location = new System.Drawing.Point(12, 12);
            this.radGroupBox1.Name = "radGroupBox1";
            this.radGroupBox1.Padding = new System.Windows.Forms.Padding(2, 17, 2, 2);
            this.radGroupBox1.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
            // 
            // 
            // 
            this.radGroupBox1.RootElement.MinSize = new System.Drawing.Size(0, 0);
            this.radGroupBox1.RootElement.Padding = new System.Windows.Forms.Padding(2, 17, 2, 2);
            this.radGroupBox1.Size = new System.Drawing.Size(575, 392);
            this.radGroupBox1.TabIndex = 17;
            this.radGroupBox1.Text = "ارسال پیامک";
            // 
            // radLabel6
            // 
            this.radLabel6.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
            this.radLabel6.Font = new System.Drawing.Font("B Nazanin", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
            this.radLabel6.Location = new System.Drawing.Point(449, 360);
            this.radLabel6.Name = "radLabel6";
            this.radLabel6.Size = new System.Drawing.Size(25, 23);
            this.radLabel6.TabIndex = 6;
            this.radLabel6.Text = "ریال";
            this.radLabel6.TextAlignment = System.Drawing.ContentAlignment.TopRight;
            // 
            // lblAccount
            // 
            this.lblAccount.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
            this.lblAccount.Font = new System.Drawing.Font("B Nazanin", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
            this.lblAccount.Location = new System.Drawing.Point(483, 360);
            this.lblAccount.Name = "lblAccount";
            this.lblAccount.Size = new System.Drawing.Size(11, 23);
            this.lblAccount.TabIndex = 5;
            this.lblAccount.Text = "0";
            this.lblAccount.TextAlignment = System.Drawing.ContentAlignment.TopRight;
            // 
            // radLabel4
            // 
            this.radLabel4.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
            this.radLabel4.Font = new System.Drawing.Font("B Nazanin", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
            this.radLabel4.Location = new System.Drawing.Point(536, 360);
            this.radLabel4.Name = "radLabel4";
            this.radLabel4.Size = new System.Drawing.Size(34, 23);
            this.radLabel4.TabIndex = 4;
            this.radLabel4.Text = "اعتبار:";
            this.radLabel4.TextAlignment = System.Drawing.ContentAlignment.TopRight;
            // 
            // btnSend
            // 
            this.btnSend.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.btnSend.Font = new System.Drawing.Font("B Nazanin", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
            this.btnSend.Location = new System.Drawing.Point(5, 360);
            this.btnSend.Name = "btnSend";
            this.btnSend.Size = new System.Drawing.Size(130, 24);
            this.btnSend.TabIndex = 2;
            this.btnSend.Text = "ارسال";
            this.btnSend.Click += new System.EventHandler(this.btnSend_Click);
            // 
            // grdList
            // 
            this.grdList.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.grdList.Font = new System.Drawing.Font("B Nazanin", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
            this.grdList.Location = new System.Drawing.Point(5, 146);
            // 
            // grdList
            // 
            this.grdList.MasterTemplate.AddNewRowPosition = Telerik.WinControls.UI.SystemRowPosition.Bottom;
            this.grdList.MasterTemplate.AllowAddNewRow = false;
            this.grdList.MasterTemplate.AllowCellContextMenu = false;
            this.grdList.MasterTemplate.AllowColumnChooser = false;
            this.grdList.MasterTemplate.AllowColumnHeaderContextMenu = false;
            this.grdList.MasterTemplate.AllowDeleteRow = false;
            this.grdList.MasterTemplate.AllowDragToGroup = false;
            this.grdList.MasterTemplate.AllowRowResize = false;
            this.grdList.MasterTemplate.AutoSizeColumnsMode = Telerik.WinControls.UI.GridViewAutoSizeColumnsMode.Fill;
            gridViewTextBoxColumn1.FormatString = "";
            gridViewTextBoxColumn1.HeaderText = "وضعیت";
            gridViewTextBoxColumn1.ImageLayout = System.Windows.Forms.ImageLayout.Center;
            gridViewTextBoxColumn1.Name = "column2";
            gridViewTextBoxColumn1.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
            gridViewTextBoxColumn1.Width = 88;
            gridViewTextBoxColumn2.Expression = "FirstName + \" \" + LastName ";
            gridViewTextBoxColumn2.FormatString = "";
            gridViewTextBoxColumn2.HeaderText = "نام";
            gridViewTextBoxColumn2.Name = "name";
            gridViewTextBoxColumn2.Width = 201;
            gridViewTextBoxColumn3.FieldName = "Phone2";
            gridViewTextBoxColumn3.FormatString = "";
            gridViewTextBoxColumn3.HeaderText = "شماره";
            gridViewTextBoxColumn3.Name = "phone";
            gridViewTextBoxColumn3.Width = 201;
            gridViewCheckBoxColumn1.FormatString = "";
            gridViewCheckBoxColumn1.HeaderText = "ارسال";
            gridViewCheckBoxColumn1.Name = "send";
            gridViewCheckBoxColumn1.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
            gridViewCheckBoxColumn1.Width = 77;
            gridViewDecimalColumn1.DataType = typeof(int);
            gridViewDecimalColumn1.FieldName = "Age";
            gridViewDecimalColumn1.HeaderText = "Age";
            gridViewDecimalColumn1.IsAutoGenerated = true;
            gridViewDecimalColumn1.IsVisible = false;
            gridViewDecimalColumn1.Name = "Age";
            gridViewDecimalColumn1.ReadOnly = true;
            gridViewDecimalColumn1.Width = 22;
            gridViewTextBoxColumn4.DataType = typeof(ShayanData.EntityModelContainer);
            gridViewTextBoxColumn4.FieldName = "Context";
            gridViewTextBoxColumn4.HeaderText = "Context";
            gridViewTextBoxColumn4.IsAutoGenerated = true;
            gridViewTextBoxColumn4.IsVisible = false;
            gridViewTextBoxColumn4.Name = "Context";
            gridViewTextBoxColumn4.Width = 23;
            gridViewDecimalColumn2.DataType = typeof(int);
            gridViewDecimalColumn2.FieldName = "Id";
            gridViewDecimalColumn2.HeaderText = "Id";
            gridViewDecimalColumn2.IsAutoGenerated = true;
            gridViewDecimalColumn2.IsVisible = false;
            gridViewDecimalColumn2.Name = "Id";
            gridViewDecimalColumn2.Width = 24;
            gridViewTextBoxColumn5.FieldName = "FirstName";
            gridViewTextBoxColumn5.HeaderText = "FirstName";
            gridViewTextBoxColumn5.IsAutoGenerated = true;
            gridViewTextBoxColumn5.IsVisible = false;
            gridViewTextBoxColumn5.Name = "FirstName";
            gridViewTextBoxColumn5.Width = 25;
            gridViewTextBoxColumn6.FieldName = "LastName";
            gridViewTextBoxColumn6.HeaderText = "LastName";
            gridViewTextBoxColumn6.IsAutoGenerated = true;
            gridViewTextBoxColumn6.IsVisible = false;
            gridViewTextBoxColumn6.Name = "LastName";
            gridViewTextBoxColumn6.Width = 26;
            gridViewTextBoxColumn7.FieldName = "Phone1";
            gridViewTextBoxColumn7.HeaderText = "Phone1";
            gridViewTextBoxColumn7.IsAutoGenerated = true;
            gridViewTextBoxColumn7.IsVisible = false;
            gridViewTextBoxColumn7.Name = "Phone1";
            gridViewTextBoxColumn7.Width = 27;
            gridViewTextBoxColumn8.FieldName = "Address";
            gridViewTextBoxColumn8.HeaderText = "Address";
            gridViewTextBoxColumn8.IsAutoGenerated = true;
            gridViewTextBoxColumn8.IsVisible = false;
            gridViewTextBoxColumn8.Name = "Address";
            gridViewTextBoxColumn8.Width = 28;
            gridViewDateTimeColumn1.DataType = typeof(System.Nullable<System.DateTime>);
            gridViewDateTimeColumn1.FieldName = "BirthDate";
            gridViewDateTimeColumn1.HeaderText = "BirthDate";
            gridViewDateTimeColumn1.IsAutoGenerated = true;
            gridViewDateTimeColumn1.IsVisible = false;
            gridViewDateTimeColumn1.Name = "BirthDate";
            gridViewDateTimeColumn1.Width = 29;
            gridViewTextBoxColumn9.FieldName = "Description";
            gridViewTextBoxColumn9.HeaderText = "Description";
            gridViewTextBoxColumn9.IsAutoGenerated = true;
            gridViewTextBoxColumn9.IsVisible = false;
            gridViewTextBoxColumn9.Name = "Description";
            gridViewTextBoxColumn9.Width = 30;
            gridViewCheckBoxColumn2.FieldName = "Pregnancy";
            gridViewCheckBoxColumn2.HeaderText = "Pregnancy";
            gridViewCheckBoxColumn2.IsAutoGenerated = true;
            gridViewCheckBoxColumn2.IsVisible = false;
            gridViewCheckBoxColumn2.Name = "Pregnancy";
            gridViewCheckBoxColumn2.Width = 32;
            gridViewCheckBoxColumn3.FieldName = "Hepatit";
            gridViewCheckBoxColumn3.HeaderText = "Hepatit";
            gridViewCheckBoxColumn3.IsAutoGenerated = true;
            gridViewCheckBoxColumn3.IsVisible = false;
            gridViewCheckBoxColumn3.Name = "Hepatit";
            gridViewCheckBoxColumn3.Width = 34;
            gridViewTextBoxColumn10.FieldName = "Code";
            gridViewTextBoxColumn10.HeaderText = "Code";
            gridViewTextBoxColumn10.IsAutoGenerated = true;
            gridViewTextBoxColumn10.IsVisible = false;
            gridViewTextBoxColumn10.Name = "Code";
            gridViewTextBoxColumn10.Width = 36;
            gridViewCheckBoxColumn4.FieldName = "IsCodeAutoGenerated";
            gridViewCheckBoxColumn4.HeaderText = "IsCodeAutoGenerated";
            gridViewCheckBoxColumn4.IsAutoGenerated = true;
            gridViewCheckBoxColumn4.IsVisible = false;
            gridViewCheckBoxColumn4.Name = "IsCodeAutoGenerated";
            gridViewCheckBoxColumn4.Width = 38;
            gridViewTextBoxColumn11.DataType = typeof(System.Data.Objects.DataClasses.EntityCollection<ShayanData.InsPtn>);
            gridViewTextBoxColumn11.FieldName = "InsPtns";
            gridViewTextBoxColumn11.HeaderText = "InsPtns";
            gridViewTextBoxColumn11.IsAutoGenerated = true;
            gridViewTextBoxColumn11.IsVisible = false;
            gridViewTextBoxColumn11.Name = "InsPtns";
            gridViewTextBoxColumn11.Width = 41;
            gridViewTextBoxColumn12.DataType = typeof(System.Data.Objects.DataClasses.EntityCollection<ShayanData.Visit>);
            gridViewTextBoxColumn12.FieldName = "Visits";
            gridViewTextBoxColumn12.HeaderText = "Visits";
            gridViewTextBoxColumn12.IsAutoGenerated = true;
            gridViewTextBoxColumn12.IsVisible = false;
            gridViewTextBoxColumn12.Name = "Visits";
            gridViewTextBoxColumn12.Width = 53;
            this.grdList.MasterTemplate.Columns.AddRange(new Telerik.WinControls.UI.GridViewDataColumn[] {
            gridViewTextBoxColumn1,
            gridViewTextBoxColumn2,
            gridViewTextBoxColumn3,
            gridViewCheckBoxColumn1,
            gridViewDecimalColumn1,
            gridViewTextBoxColumn4,
            gridViewDecimalColumn2,
            gridViewTextBoxColumn5,
            gridViewTextBoxColumn6,
            gridViewTextBoxColumn7,
            gridViewTextBoxColumn8,
            gridViewDateTimeColumn1,
            gridViewTextBoxColumn9,
            gridViewCheckBoxColumn2,
            gridViewCheckBoxColumn3,
            gridViewTextBoxColumn10,
            gridViewCheckBoxColumn4,
            gridViewTextBoxColumn11,
            gridViewTextBoxColumn12});
            this.grdList.MasterTemplate.DataSource = this.patientBindingSource;
            this.grdList.MasterTemplate.ShowRowHeaderColumn = false;
            this.grdList.Name = "grdList";
            this.grdList.ShowGroupPanel = false;
            this.grdList.Size = new System.Drawing.Size(565, 208);
            this.grdList.TabIndex = 1;
            this.grdList.Text = "radGridView1";
            // 
            // patientBindingSource
            // 
            this.patientBindingSource.DataSource = typeof(ShayanData.Patient);
            // 
            // lblSmsNum
            // 
            this.lblSmsNum.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) 
            | System.Windows.Forms.AnchorStyles.Left)));
            this.lblSmsNum.Font = new System.Drawing.Font("B Nazanin", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
            this.lblSmsNum.Location = new System.Drawing.Point(18, 54);
            this.lblSmsNum.Name = "lblSmsNum";
            this.lblSmsNum.RightToLeft = System.Windows.Forms.RightToLeft.No;
            this.lblSmsNum.Size = new System.Drawing.Size(11, 23);
            this.lblSmsNum.TabIndex = 5;
            this.lblSmsNum.Text = "0";
            this.lblSmsNum.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
            // 
            // lblCharNum
            // 
            this.lblCharNum.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) 
            | System.Windows.Forms.AnchorStyles.Left)));
            this.lblCharNum.Font = new System.Drawing.Font("B Nazanin", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
            this.lblCharNum.Location = new System.Drawing.Point(18, 29);
            this.lblCharNum.Name = "lblCharNum";
            this.lblCharNum.RightToLeft = System.Windows.Forms.RightToLeft.No;
            this.lblCharNum.Size = new System.Drawing.Size(11, 23);
            this.lblCharNum.TabIndex = 4;
            this.lblCharNum.Text = "0";
            this.lblCharNum.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
            // 
            // lblLang
            // 
            this.lblLang.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) 
            | System.Windows.Forms.AnchorStyles.Left)));
            this.lblLang.Font = new System.Drawing.Font("B Nazanin", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
            this.lblLang.Location = new System.Drawing.Point(92, 117);
            this.lblLang.Name = "lblLang";
            this.lblLang.Size = new System.Drawing.Size(43, 23);
            this.lblLang.TabIndex = 3;
            this.lblLang.Text = "انگلیسی";
            this.lblLang.TextAlignment = System.Drawing.ContentAlignment.TopRight;
            // 
            // radLabel3
            // 
            this.radLabel3.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) 
            | System.Windows.Forms.AnchorStyles.Left)));
            this.radLabel3.Font = new System.Drawing.Font("B Nazanin", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
            this.radLabel3.Location = new System.Drawing.Point(73, 54);
            this.radLabel3.Name = "radLabel3";
            this.radLabel3.Size = new System.Drawing.Size(62, 23);
            this.radLabel3.TabIndex = 3;
            this.radLabel3.Text = "تعداد پیامک:";
            this.radLabel3.TextAlignment = System.Drawing.ContentAlignment.TopRight;
            // 
            // radLabel2
            // 
            this.radLabel2.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) 
            | System.Windows.Forms.AnchorStyles.Left)));
            this.radLabel2.Font = new System.Drawing.Font("B Nazanin", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
            this.radLabel2.Location = new System.Drawing.Point(71, 29);
            this.radLabel2.Name = "radLabel2";
            this.radLabel2.Size = new System.Drawing.Size(64, 23);
            this.radLabel2.TabIndex = 3;
            this.radLabel2.Text = "تعداد کاراکتر:";
            this.radLabel2.TextAlignment = System.Drawing.ContentAlignment.TopRight;
            // 
            // radLabel1
            // 
            this.radLabel1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) 
            | System.Windows.Forms.AnchorStyles.Right)));
            this.radLabel1.Font = new System.Drawing.Font("B Nazanin", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
            this.radLabel1.Location = new System.Drawing.Point(514, 29);
            this.radLabel1.Name = "radLabel1";
            this.radLabel1.Size = new System.Drawing.Size(56, 23);
            this.radLabel1.TabIndex = 2;
            this.radLabel1.Text = "متن پیامک:";
            this.radLabel1.TextAlignment = System.Drawing.ContentAlignment.TopRight;
            // 
            // txtText
            // 
            this.txtText.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 
            | System.Windows.Forms.AnchorStyles.Right)));
            this.txtText.Font = new System.Drawing.Font("B Nazanin", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
            this.txtText.Location = new System.Drawing.Point(140, 29);
            this.txtText.Multiline = true;
            this.txtText.Name = "txtText";
            this.txtText.Size = new System.Drawing.Size(354, 111);
            this.txtText.TabIndex = 0;
            this.txtText.TextChanged += new System.EventHandler(this.txtText_TextChanged);
            // 
            // FormSmsSending
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.ClientSize = new System.Drawing.Size(598, 412);
            this.Controls.Add(this.radGroupBox1);
            this.Name = "FormSmsSending";
            this.RightToLeft = System.Windows.Forms.RightToLeft.No;
            // 
            // 
            // 
            this.RootElement.ApplyShapeToControl = true;
            this.Text = "FormSmsSending";
            this.ThemeName = "ControlDefault";
            ((System.ComponentModel.ISupportInitialize)(this.radGroupBox1)).EndInit();
            this.radGroupBox1.ResumeLayout(false);
            this.radGroupBox1.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel6)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.lblAccount)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel4)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.btnSend)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.grdList)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.patientBindingSource)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.lblSmsNum)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.lblCharNum)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.lblLang)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel3)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel2)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.txtText)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this)).EndInit();
            this.ResumeLayout(false);

        }
コード例 #12
0
ファイル: frmSYList.Designer.cs プロジェクト: RazenRyne/eSAR
        /// <summary>
        /// Required method for Designer support - do not modify
        /// the contents of this method with the code editor.
        /// </summary>
        private void InitializeComponent()
        {
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn1 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewCheckBoxColumn gridViewCheckBoxColumn1 = new Telerik.WinControls.UI.GridViewCheckBoxColumn();
            this.radPanel1 = new Telerik.WinControls.UI.RadPanel();
            this.btnCancel = new Telerik.WinControls.UI.RadButton();
            this.btnDelete = new Telerik.WinControls.UI.RadButton();
            this.gvSY = new Telerik.WinControls.UI.RadGridView();
            this.radPanel2 = new Telerik.WinControls.UI.RadPanel();
            this.txtSY = new Telerik.WinControls.UI.RadTextBox();
            this.radLabel1 = new Telerik.WinControls.UI.RadLabel();
            this.btnAdd = new Telerik.WinControls.UI.RadButton();
            ((System.ComponentModel.ISupportInitialize)(this.radPanel1)).BeginInit();
            this.radPanel1.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.btnCancel)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.btnDelete)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.gvSY)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.gvSY.MasterTemplate)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radPanel2)).BeginInit();
            this.radPanel2.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.txtSY)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.btnAdd)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
            this.SuspendLayout();
            // 
            // radPanel1
            // 
            this.radPanel1.Controls.Add(this.btnCancel);
            this.radPanel1.Controls.Add(this.btnDelete);
            this.radPanel1.Dock = System.Windows.Forms.DockStyle.Bottom;
            this.radPanel1.Location = new System.Drawing.Point(0, 375);
            this.radPanel1.Name = "radPanel1";
            this.radPanel1.Size = new System.Drawing.Size(281, 50);
            this.radPanel1.TabIndex = 4;
            // 
            // btnCancel
            // 
            this.btnCancel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
            this.btnCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
            this.btnCancel.Location = new System.Drawing.Point(12, 14);
            this.btnCancel.Name = "btnCancel";
            this.btnCancel.Size = new System.Drawing.Size(83, 24);
            this.btnCancel.TabIndex = 4;
            this.btnCancel.Text = "Close";
            this.btnCancel.Click += new System.EventHandler(this.btnCancel_Click);
            // 
            // btnDelete
            // 
            this.btnDelete.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
            this.btnDelete.Location = new System.Drawing.Point(182, 14);
            this.btnDelete.Name = "btnDelete";
            this.btnDelete.Size = new System.Drawing.Size(83, 24);
            this.btnDelete.TabIndex = 3;
            this.btnDelete.Text = "Delete";
            this.btnDelete.Visible = false;
            this.btnDelete.Click += new System.EventHandler(this.btnDelete_Click);
            // 
            // gvSY
            // 
            this.gvSY.Dock = System.Windows.Forms.DockStyle.Fill;
            this.gvSY.Location = new System.Drawing.Point(0, 69);
            // 
            // 
            // 
            this.gvSY.MasterTemplate.AllowAddNewRow = false;
            this.gvSY.MasterTemplate.AllowDragToGroup = false;
            gridViewTextBoxColumn1.FieldName = "SY";
            gridViewTextBoxColumn1.HeaderText = "School Year";
            gridViewTextBoxColumn1.Name = "SY";
            gridViewTextBoxColumn1.ReadOnly = true;
            gridViewTextBoxColumn1.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
            gridViewTextBoxColumn1.Width = 150;
            gridViewCheckBoxColumn1.FieldName = "CurrentSY";
            gridViewCheckBoxColumn1.HeaderText = "Current";
            gridViewCheckBoxColumn1.Name = "CurrentSY";
            this.gvSY.MasterTemplate.Columns.AddRange(new Telerik.WinControls.UI.GridViewDataColumn[] {
            gridViewTextBoxColumn1,
            gridViewCheckBoxColumn1});
            this.gvSY.MasterTemplate.EnableGrouping = false;
            this.gvSY.Name = "gvSY";
            this.gvSY.Size = new System.Drawing.Size(281, 306);
            this.gvSY.TabIndex = 2;
            this.gvSY.ValueChanging += new Telerik.WinControls.UI.ValueChangingEventHandler(this.gvSY_ValueChanging);
            this.gvSY.SelectionChanged += new System.EventHandler(this.gvSY_SelectionChanged);
            this.gvSY.CellValueChanged += new Telerik.WinControls.UI.GridViewCellEventHandler(this.gvSY_CellValueChanged);
            // 
            // radPanel2
            // 
            this.radPanel2.Controls.Add(this.txtSY);
            this.radPanel2.Controls.Add(this.radLabel1);
            this.radPanel2.Controls.Add(this.btnAdd);
            this.radPanel2.Dock = System.Windows.Forms.DockStyle.Top;
            this.radPanel2.Location = new System.Drawing.Point(0, 0);
            this.radPanel2.Name = "radPanel2";
            this.radPanel2.Size = new System.Drawing.Size(281, 69);
            this.radPanel2.TabIndex = 5;
            // 
            // txtSY
            // 
            this.txtSY.Location = new System.Drawing.Point(32, 28);
            this.txtSY.MaxLength = 4;
            this.txtSY.Name = "txtSY";
            this.txtSY.Size = new System.Drawing.Size(100, 20);
            this.txtSY.TabIndex = 0;
            this.txtSY.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.txtSY_KeyPress);
            // 
            // radLabel1
            // 
            this.radLabel1.Location = new System.Drawing.Point(8, 29);
            this.radLabel1.Name = "radLabel1";
            this.radLabel1.Size = new System.Drawing.Size(18, 18);
            this.radLabel1.TabIndex = 15;
            this.radLabel1.Text = "SY";
            // 
            // btnAdd
            // 
            this.btnAdd.Location = new System.Drawing.Point(138, 26);
            this.btnAdd.Name = "btnAdd";
            this.btnAdd.Size = new System.Drawing.Size(65, 24);
            this.btnAdd.TabIndex = 1;
            this.btnAdd.Text = "Add";
            this.btnAdd.Click += new System.EventHandler(this.btnAdd_Click);
            // 
            // frmSYList
            // 
            this.AcceptButton = this.btnAdd;
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.CancelButton = this.btnCancel;
            this.ClientSize = new System.Drawing.Size(281, 425);
            this.ControlBox = false;
            this.Controls.Add(this.gvSY);
            this.Controls.Add(this.radPanel2);
            this.Controls.Add(this.radPanel1);
            this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
            this.Name = "frmSYList";
            // 
            // 
            // 
            this.RootElement.ApplyShapeToControl = true;
            this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
            this.Text = "Manage School Year";
            this.ThemeName = "ControlDefault";
            this.Load += new System.EventHandler(this.frmSYList_Load);
            ((System.ComponentModel.ISupportInitialize)(this.radPanel1)).EndInit();
            this.radPanel1.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.btnCancel)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.btnDelete)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.gvSY.MasterTemplate)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.gvSY)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radPanel2)).EndInit();
            this.radPanel2.ResumeLayout(false);
            this.radPanel2.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.txtSY)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.btnAdd)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this)).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();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn1 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn2 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewImageColumn gridViewImageColumn1 = new Telerik.WinControls.UI.GridViewImageColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn3 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn4 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn5 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn6 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn7 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewCheckBoxColumn gridViewCheckBoxColumn1 = new Telerik.WinControls.UI.GridViewCheckBoxColumn();
            Telerik.WinControls.UI.GridViewDateTimeColumn gridViewDateTimeColumn1 = new Telerik.WinControls.UI.GridViewDateTimeColumn();
            Telerik.WinControls.UI.GridViewDateTimeColumn gridViewDateTimeColumn2 = new Telerik.WinControls.UI.GridViewDateTimeColumn();
            Telerik.WinControls.Data.SortDescriptor sortDescriptor1 = new Telerik.WinControls.Data.SortDescriptor();
            Telerik.WinControls.UI.TableViewDefinition tableViewDefinition1 = new Telerik.WinControls.UI.TableViewDefinition();
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(RadForm2));
            this.radSplitContainer1 = new Telerik.WinControls.UI.RadSplitContainer();
            this.splitPanel1 = new Telerik.WinControls.UI.SplitPanel();
            this.radSplitContainer2 = new Telerik.WinControls.UI.RadSplitContainer();
            this.splitPanel2 = new Telerik.WinControls.UI.SplitPanel();
            this.splitPanel3 = new Telerik.WinControls.UI.SplitPanel();
            this.radButton2 = new Telerik.WinControls.UI.RadButton();
            this.radButton1 = new Telerik.WinControls.UI.RadButton();
            this.radPropertyGrid1 = new Telerik.WinControls.UI.RadPropertyGrid();
            this.radGridView2 = new Telerik.WinControls.UI.RadGridView();
            this.radThemeManager1 = new Telerik.WinControls.RadThemeManager();
            this.aquaTheme1 = new Telerik.WinControls.Themes.AquaTheme();
            this.breezeTheme1 = new Telerik.WinControls.Themes.BreezeTheme();
            this.desertTheme1 = new Telerik.WinControls.Themes.DesertTheme();
            this.highContrastBlackTheme1 = new Telerik.WinControls.Themes.HighContrastBlackTheme();
            this.office2007BlackTheme1 = new Telerik.WinControls.Themes.Office2007BlackTheme();
            this.office2007SilverTheme1 = new Telerik.WinControls.Themes.Office2007SilverTheme();
            this.office2010BlackTheme1 = new Telerik.WinControls.Themes.Office2010BlackTheme();
            this.office2010BlueTheme1 = new Telerik.WinControls.Themes.Office2010BlueTheme();
            this.office2010SilverTheme1 = new Telerik.WinControls.Themes.Office2010SilverTheme();
            this.office2013DarkTheme1 = new Telerik.WinControls.Themes.Office2013DarkTheme();
            this.office2013LightTheme1 = new Telerik.WinControls.Themes.Office2013LightTheme();
            this.telerikMetroTheme1 = new Telerik.WinControls.Themes.TelerikMetroTheme();
            this.telerikMetroBlueTheme1 = new Telerik.WinControls.Themes.TelerikMetroBlueTheme();
            this.telerikMetroTouchTheme1 = new Telerik.WinControls.Themes.TelerikMetroTouchTheme();
            this.visualStudio2012DarkTheme1 = new Telerik.WinControls.Themes.VisualStudio2012DarkTheme();
            this.visualStudio2012LightTheme1 = new Telerik.WinControls.Themes.VisualStudio2012LightTheme();
            this.windows7Theme1 = new Telerik.WinControls.Themes.Windows7Theme();
            this.windows8Theme1 = new Telerik.WinControls.Themes.Windows8Theme();
            this.radStatusStrip1 = new Telerik.WinControls.UI.RadStatusStrip();
            this.radLabelElement1 = new Telerik.WinControls.UI.RadLabelElement();
            this.radRibbonBar1 = new Telerik.WinControls.UI.RadRibbonBar();
            this.ribbonTab1 = new Telerik.WinControls.UI.RibbonTab();
            this.radRibbonBarGroup1 = new Telerik.WinControls.UI.RadRibbonBarGroup();
            this.radButtonElement1 = new Telerik.WinControls.UI.RadButtonElement();
            this.radButtonElement2 = new Telerik.WinControls.UI.RadButtonElement();
            this.radButtonElement3 = new Telerik.WinControls.UI.RadButtonElement();
            this.radRibbonBarGroup10 = new Telerik.WinControls.UI.RadRibbonBarGroup();
            this.radToggleButtonElement1 = new Telerik.WinControls.UI.RadToggleButtonElement();
            this.radToggleButtonElement2 = new Telerik.WinControls.UI.RadToggleButtonElement();
            this.radToggleButtonElement3 = new Telerik.WinControls.UI.RadToggleButtonElement();
            this.radRibbonBarGroup11 = new Telerik.WinControls.UI.RadRibbonBarGroup();
            this.radButtonElement23 = new Telerik.WinControls.UI.RadButtonElement();
            this.radButtonElement24 = new Telerik.WinControls.UI.RadButtonElement();
            this.ribbonTab2 = new Telerik.WinControls.UI.RibbonTab();
            this.radRibbonBarGroup2 = new Telerik.WinControls.UI.RadRibbonBarGroup();
            this.radButtonElement4 = new Telerik.WinControls.UI.RadButtonElement();
            this.radButtonElement5 = new Telerik.WinControls.UI.RadButtonElement();
            this.radButtonElement6 = new Telerik.WinControls.UI.RadButtonElement();
            this.radRibbonBarGroup3 = new Telerik.WinControls.UI.RadRibbonBarGroup();
            this.radButtonElement7 = new Telerik.WinControls.UI.RadButtonElement();
            this.radButtonElement8 = new Telerik.WinControls.UI.RadButtonElement();
            this.radButtonElement9 = new Telerik.WinControls.UI.RadButtonElement();
            this.radRibbonBarGroup4 = new Telerik.WinControls.UI.RadRibbonBarGroup();
            this.radButtonElement10 = new Telerik.WinControls.UI.RadButtonElement();
            this.radButtonElement11 = new Telerik.WinControls.UI.RadButtonElement();
            this.radButtonElement12 = new Telerik.WinControls.UI.RadButtonElement();
            this.radRibbonBarGroup8 = new Telerik.WinControls.UI.RadRibbonBarGroup();
            this.radButtonElement13 = new Telerik.WinControls.UI.RadButtonElement();
            this.radButtonElement14 = new Telerik.WinControls.UI.RadButtonElement();
            this.radRibbonBarGroup5 = new Telerik.WinControls.UI.RadRibbonBarGroup();
            this.radButtonElement15 = new Telerik.WinControls.UI.RadButtonElement();
            this.radButtonElement16 = new Telerik.WinControls.UI.RadButtonElement();
            this.radRibbonBarGroup6 = new Telerik.WinControls.UI.RadRibbonBarGroup();
            this.radButtonElement17 = new Telerik.WinControls.UI.RadButtonElement();
            this.radButtonElement18 = new Telerik.WinControls.UI.RadButtonElement();
            this.radButtonElement22 = new Telerik.WinControls.UI.RadButtonElement();
            this.radRibbonBarGroup7 = new Telerik.WinControls.UI.RadRibbonBarGroup();
            this.radButtonElement19 = new Telerik.WinControls.UI.RadButtonElement();
            this.radButtonElement20 = new Telerik.WinControls.UI.RadButtonElement();
            this.radRibbonBarGroup9 = new Telerik.WinControls.UI.RadRibbonBarGroup();
            this.radButtonElement21 = new Telerik.WinControls.UI.RadButtonElement();
            this.radMenuButtonItem2 = new Telerik.WinControls.UI.RadMenuButtonItem();
            this.pictureBox2 = new System.Windows.Forms.PictureBox();
            this.bookModelBindingSource = new System.Windows.Forms.BindingSource(this.components);
            this.radRibbonFormBehavior1 = new Telerik.WinControls.UI.RadRibbonFormBehavior();
            this.pictureBox1 = new System.Windows.Forms.PictureBox();
            this.bindingSource1 = new System.Windows.Forms.BindingSource(this.components);
            this.bookModelBindingSource1 = new System.Windows.Forms.BindingSource(this.components);
            ((System.ComponentModel.ISupportInitialize)(this.radSplitContainer1)).BeginInit();
            this.radSplitContainer1.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.splitPanel1)).BeginInit();
            this.splitPanel1.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.radSplitContainer2)).BeginInit();
            this.radSplitContainer2.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.splitPanel2)).BeginInit();
            this.splitPanel2.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.splitPanel3)).BeginInit();
            this.splitPanel3.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.radButton2)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radButton1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radPropertyGrid1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radGridView2)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radGridView2.MasterTemplate)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radStatusStrip1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radRibbonBar1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.pictureBox2)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.bookModelBindingSource)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.bindingSource1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.bookModelBindingSource1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
            this.SuspendLayout();
            // 
            // radSplitContainer1
            // 
            this.radSplitContainer1.Controls.Add(this.splitPanel1);
            this.radSplitContainer1.Location = new System.Drawing.Point(9, 165);
            this.radSplitContainer1.Name = "radSplitContainer1";
            // 
            // 
            // 
            this.radSplitContainer1.RootElement.MinSize = new System.Drawing.Size(0, 0);
            this.radSplitContainer1.Size = new System.Drawing.Size(1128, 608);
            this.radSplitContainer1.SplitterWidth = 5;
            this.radSplitContainer1.TabIndex = 1;
            this.radSplitContainer1.TabStop = false;
            this.radSplitContainer1.Text = "radSplitContainer1";
            this.radSplitContainer1.ThemeName = "Windows8";
            // 
            // splitPanel1
            // 
            this.splitPanel1.Controls.Add(this.radSplitContainer2);
            this.splitPanel1.Controls.Add(this.radGridView2);
            this.splitPanel1.Location = new System.Drawing.Point(0, 0);
            this.splitPanel1.Name = "splitPanel1";
            // 
            // 
            // 
            this.splitPanel1.RootElement.MinSize = new System.Drawing.Size(0, 0);
            this.splitPanel1.Size = new System.Drawing.Size(1128, 608);
            this.splitPanel1.SizeInfo.AutoSizeScale = new System.Drawing.SizeF(0.234127F, 0F);
            this.splitPanel1.SizeInfo.SplitterCorrection = new System.Drawing.Size(237, 0);
            this.splitPanel1.TabIndex = 0;
            this.splitPanel1.TabStop = false;
            this.splitPanel1.Text = "splitPanel1";
            this.splitPanel1.ThemeName = "Windows8";
            // 
            // radSplitContainer2
            // 
            this.radSplitContainer2.Controls.Add(this.splitPanel2);
            this.radSplitContainer2.Controls.Add(this.splitPanel3);
            this.radSplitContainer2.Dock = System.Windows.Forms.DockStyle.Right;
            this.radSplitContainer2.Location = new System.Drawing.Point(828, 0);
            this.radSplitContainer2.Name = "radSplitContainer2";
            this.radSplitContainer2.Orientation = System.Windows.Forms.Orientation.Horizontal;
            // 
            // 
            // 
            this.radSplitContainer2.RootElement.MinSize = new System.Drawing.Size(0, 0);
            this.radSplitContainer2.Size = new System.Drawing.Size(300, 608);
            this.radSplitContainer2.SplitterWidth = 5;
            this.radSplitContainer2.TabIndex = 2;
            this.radSplitContainer2.TabStop = false;
            this.radSplitContainer2.Text = "radSplitContainer2";
            this.radSplitContainer2.ThemeName = "Windows8";
            // 
            // splitPanel2
            // 
            this.splitPanel2.Controls.Add(this.pictureBox2);
            this.splitPanel2.Location = new System.Drawing.Point(0, 0);
            this.splitPanel2.Name = "splitPanel2";
            // 
            // 
            // 
            this.splitPanel2.RootElement.MinSize = new System.Drawing.Size(0, 0);
            this.splitPanel2.Size = new System.Drawing.Size(300, 176);
            this.splitPanel2.SizeInfo.AutoSizeScale = new System.Drawing.SizeF(0F, -0.2080979F);
            this.splitPanel2.SizeInfo.SplitterCorrection = new System.Drawing.Size(0, -112);
            this.splitPanel2.TabIndex = 0;
            this.splitPanel2.TabStop = false;
            this.splitPanel2.Text = "splitPanel2";
            this.splitPanel2.ThemeName = "Windows8";
            // 
            // splitPanel3
            // 
            this.splitPanel3.Controls.Add(this.radButton2);
            this.splitPanel3.Controls.Add(this.radButton1);
            this.splitPanel3.Controls.Add(this.radPropertyGrid1);
            this.splitPanel3.Location = new System.Drawing.Point(0, 181);
            this.splitPanel3.Name = "splitPanel3";
            // 
            // 
            // 
            this.splitPanel3.RootElement.MinSize = new System.Drawing.Size(0, 0);
            this.splitPanel3.Size = new System.Drawing.Size(300, 427);
            this.splitPanel3.SizeInfo.AutoSizeScale = new System.Drawing.SizeF(0F, 0.2080979F);
            this.splitPanel3.SizeInfo.SplitterCorrection = new System.Drawing.Size(0, 256);
            this.splitPanel3.TabIndex = 1;
            this.splitPanel3.TabStop = false;
            this.splitPanel3.Text = "splitPanel3";
            this.splitPanel3.ThemeName = "Windows8";
            // 
            // radButton2
            // 
            this.radButton2.Location = new System.Drawing.Point(177, 285);
            this.radButton2.Name = "radButton2";
            this.radButton2.Size = new System.Drawing.Size(100, 27);
            this.radButton2.TabIndex = 99;
            this.radButton2.Text = "Cancel";
            // 
            // radButton1
            // 
            this.radButton1.Location = new System.Drawing.Point(43, 285);
            this.radButton1.Name = "radButton1";
            this.radButton1.Size = new System.Drawing.Size(100, 27);
            this.radButton1.TabIndex = 100;
            this.radButton1.Text = "Save";
            this.radButton1.Click += new System.EventHandler(this.radButton1_Click);
            // 
            // radPropertyGrid1
            // 
            this.radPropertyGrid1.Dock = System.Windows.Forms.DockStyle.Top;
            this.radPropertyGrid1.Location = new System.Drawing.Point(0, 0);
            this.radPropertyGrid1.Name = "radPropertyGrid1";
            this.radPropertyGrid1.Padding = new System.Windows.Forms.Padding(0, 0, 0, 5);
            this.radPropertyGrid1.SelectedObject = this.radGridView2.RootElement;
            this.radPropertyGrid1.Size = new System.Drawing.Size(300, 279);
            this.radPropertyGrid1.SortOrder = System.Windows.Forms.SortOrder.Ascending;
            this.radPropertyGrid1.TabIndex = 0;
            this.radPropertyGrid1.Text = "radPropertyGrid1";
            this.radPropertyGrid1.ToolbarVisible = true;
            this.radPropertyGrid1.Editing += new Telerik.WinControls.UI.PropertyGridItemEditingEventHandler(this.radPropertyGrid1_Editing);
            this.radPropertyGrid1.Edited += new Telerik.WinControls.UI.PropertyGridItemEditedEventHandler(this.radPropertyGrid1_Edited);
            this.radPropertyGrid1.MouseLeave += new System.EventHandler(this.radPropertyGrid1_MouseLeave);
            // 
            // radGridView2
            // 
            this.radGridView2.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(191)))), ((int)(((byte)(219)))), ((int)(((byte)(255)))));
            this.radGridView2.BeginEditMode = Telerik.WinControls.RadGridViewBeginEditMode.BeginEditOnF2;
            this.radGridView2.Cursor = System.Windows.Forms.Cursors.Default;
            this.radGridView2.Font = new System.Drawing.Font("Segoe UI", 8.25F);
            this.radGridView2.ForeColor = System.Drawing.Color.Black;
            this.radGridView2.ImeMode = System.Windows.Forms.ImeMode.NoControl;
            this.radGridView2.Location = new System.Drawing.Point(1, 0);
            // 
            // 
            // 
            this.radGridView2.MasterTemplate.AllowAddNewRow = false;
            this.radGridView2.MasterTemplate.AllowDeleteRow = false;
            this.radGridView2.MasterTemplate.AllowEditRow = false;
            this.radGridView2.MasterTemplate.AllowRowResize = false;
            this.radGridView2.MasterTemplate.AutoGenerateColumns = false;
            gridViewTextBoxColumn1.EnableExpressionEditor = false;
            gridViewTextBoxColumn1.FieldName = "id";
            gridViewTextBoxColumn1.HeaderText = "ID";
            gridViewTextBoxColumn1.IsAutoGenerated = true;
            gridViewTextBoxColumn1.Name = "id";
            gridViewTextBoxColumn1.SortOrder = Telerik.WinControls.UI.RadSortOrder.Ascending;
            gridViewTextBoxColumn1.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
            gridViewTextBoxColumn2.EnableExpressionEditor = false;
            gridViewTextBoxColumn2.FieldName = "book_image";
            gridViewTextBoxColumn2.HeaderText = "book_image";
            gridViewTextBoxColumn2.IsAutoGenerated = true;
            gridViewTextBoxColumn2.IsVisible = false;
            gridViewTextBoxColumn2.Name = "book_image";
            gridViewImageColumn1.EnableExpressionEditor = false;
            gridViewImageColumn1.FieldName = "BookImage";
            gridViewImageColumn1.HeaderText = "Book Image";
            gridViewImageColumn1.IsAutoGenerated = true;
            gridViewImageColumn1.Name = "BookImage";
            gridViewImageColumn1.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
            gridViewImageColumn1.Width = 110;
            gridViewTextBoxColumn3.EnableExpressionEditor = false;
            gridViewTextBoxColumn3.FieldName = "book_name";
            gridViewTextBoxColumn3.HeaderText = "Book Name";
            gridViewTextBoxColumn3.IsAutoGenerated = true;
            gridViewTextBoxColumn3.Multiline = true;
            gridViewTextBoxColumn3.Name = "book_name";
            gridViewTextBoxColumn3.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
            gridViewTextBoxColumn3.Width = 160;
            gridViewTextBoxColumn3.WrapText = true;
            gridViewTextBoxColumn4.EnableExpressionEditor = false;
            gridViewTextBoxColumn4.FieldName = "book_author";
            gridViewTextBoxColumn4.HeaderText = "Author(s)";
            gridViewTextBoxColumn4.IsAutoGenerated = true;
            gridViewTextBoxColumn4.Multiline = true;
            gridViewTextBoxColumn4.Name = "book_author";
            gridViewTextBoxColumn4.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
            gridViewTextBoxColumn4.Width = 120;
            gridViewTextBoxColumn4.WrapText = true;
            gridViewTextBoxColumn5.EnableExpressionEditor = false;
            gridViewTextBoxColumn5.FieldName = "book_year";
            gridViewTextBoxColumn5.HeaderText = "Year";
            gridViewTextBoxColumn5.IsAutoGenerated = true;
            gridViewTextBoxColumn5.Name = "book_year";
            gridViewTextBoxColumn5.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
            gridViewTextBoxColumn5.Width = 55;
            gridViewTextBoxColumn6.EnableExpressionEditor = false;
            gridViewTextBoxColumn6.FieldName = "book_publisher";
            gridViewTextBoxColumn6.HeaderText = "Publisher";
            gridViewTextBoxColumn6.IsAutoGenerated = true;
            gridViewTextBoxColumn6.Multiline = true;
            gridViewTextBoxColumn6.Name = "book_publisher";
            gridViewTextBoxColumn6.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
            gridViewTextBoxColumn6.Width = 110;
            gridViewTextBoxColumn6.WrapText = true;
            gridViewTextBoxColumn7.EnableExpressionEditor = false;
            gridViewTextBoxColumn7.FieldName = "book_description";
            gridViewTextBoxColumn7.HeaderText = "Description";
            gridViewTextBoxColumn7.IsAutoGenerated = true;
            gridViewTextBoxColumn7.Multiline = true;
            gridViewTextBoxColumn7.Name = "book_description";
            gridViewTextBoxColumn7.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
            gridViewTextBoxColumn7.Width = 140;
            gridViewTextBoxColumn7.WrapText = true;
            gridViewCheckBoxColumn1.DataType = typeof(string);
            gridViewCheckBoxColumn1.EnableExpressionEditor = false;
            gridViewCheckBoxColumn1.FieldName = "status";
            gridViewCheckBoxColumn1.HeaderText = "Active";
            gridViewCheckBoxColumn1.MinWidth = 20;
            gridViewCheckBoxColumn1.Name = "status";
            gridViewCheckBoxColumn1.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
            gridViewDateTimeColumn1.EnableExpressionEditor = false;
            gridViewDateTimeColumn1.FieldName = "created_at";
            gridViewDateTimeColumn1.Format = System.Windows.Forms.DateTimePickerFormat.Long;
            gridViewDateTimeColumn1.HeaderText = "Date Created";
            gridViewDateTimeColumn1.IsAutoGenerated = true;
            gridViewDateTimeColumn1.IsVisible = false;
            gridViewDateTimeColumn1.Name = "created_at";
            gridViewDateTimeColumn1.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
            gridViewDateTimeColumn1.Width = 80;
            gridViewDateTimeColumn2.EnableExpressionEditor = false;
            gridViewDateTimeColumn2.FieldName = "updated_at";
            gridViewDateTimeColumn2.Format = System.Windows.Forms.DateTimePickerFormat.Long;
            gridViewDateTimeColumn2.HeaderText = "Last Update";
            gridViewDateTimeColumn2.IsAutoGenerated = true;
            gridViewDateTimeColumn2.IsVisible = false;
            gridViewDateTimeColumn2.Name = "updated_at";
            gridViewDateTimeColumn2.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
            gridViewDateTimeColumn2.Width = 80;
            this.radGridView2.MasterTemplate.Columns.AddRange(new Telerik.WinControls.UI.GridViewDataColumn[] {
            gridViewTextBoxColumn1,
            gridViewTextBoxColumn2,
            gridViewImageColumn1,
            gridViewTextBoxColumn3,
            gridViewTextBoxColumn4,
            gridViewTextBoxColumn5,
            gridViewTextBoxColumn6,
            gridViewTextBoxColumn7,
            gridViewCheckBoxColumn1,
            gridViewDateTimeColumn1,
            gridViewDateTimeColumn2});
            this.radGridView2.MasterTemplate.DataSource = this.bookModelBindingSource;
            this.radGridView2.MasterTemplate.EnableAlternatingRowColor = true;
            this.radGridView2.MasterTemplate.EnableGrouping = false;
            this.radGridView2.MasterTemplate.EnablePaging = true;
            this.radGridView2.MasterTemplate.PageSize = 10;
            sortDescriptor1.PropertyName = "id";
            this.radGridView2.MasterTemplate.SortDescriptors.AddRange(new Telerik.WinControls.Data.SortDescriptor[] {
            sortDescriptor1});
            this.radGridView2.MasterTemplate.ViewDefinition = tableViewDefinition1;
            this.radGridView2.Name = "radGridView2";
            this.radGridView2.RightToLeft = System.Windows.Forms.RightToLeft.No;
            this.radGridView2.ShowGroupPanel = false;
            this.radGridView2.Size = new System.Drawing.Size(821, 493);
            this.radGridView2.TabIndex = 1;
            this.radGridView2.Text = "radGridView2";
            this.radGridView2.ViewCellFormatting += new Telerik.WinControls.UI.CellFormattingEventHandler(this.radGridView2_ViewCellFormatting);
            this.radGridView2.CurrentRowChanging += new Telerik.WinControls.UI.CurrentRowChangingEventHandler(this.radGridView2_CurrentRowChanging);
            this.radGridView2.PageChanging += new System.EventHandler<Telerik.WinControls.PageChangingEventArgs>(this.radGridView2_PageChanging);
            // 
            // radStatusStrip1
            // 
            this.radStatusStrip1.Items.AddRange(new Telerik.WinControls.RadItem[] {
            this.radLabelElement1});
            this.radStatusStrip1.Location = new System.Drawing.Point(0, 697);
            this.radStatusStrip1.Name = "radStatusStrip1";
            this.radStatusStrip1.Size = new System.Drawing.Size(1143, 26);
            this.radStatusStrip1.TabIndex = 1;
            this.radStatusStrip1.Text = "radStatusStrip1";
            // 
            // radLabelElement1
            // 
            this.radLabelElement1.AccessibleDescription = "No Operation";
            this.radLabelElement1.AccessibleName = "No Operation";
            this.radLabelElement1.Name = "radLabelElement1";
            this.radStatusStrip1.SetSpring(this.radLabelElement1, false);
            this.radLabelElement1.Text = "No Operation";
            this.radLabelElement1.TextWrap = true;
            // 
            // radRibbonBar1
            // 
            this.radRibbonBar1.CommandTabs.AddRange(new Telerik.WinControls.RadItem[] {
            this.ribbonTab1,
            this.ribbonTab2});
            this.radRibbonBar1.Location = new System.Drawing.Point(0, 0);
            this.radRibbonBar1.Name = "radRibbonBar1";
            this.radRibbonBar1.Size = new System.Drawing.Size(1143, 162);
            this.radRibbonBar1.StartButtonImage = ((System.Drawing.Image)(resources.GetObject("radRibbonBar1.StartButtonImage")));
            this.radRibbonBar1.StartMenuItems.AddRange(new Telerik.WinControls.RadItem[] {
            this.radMenuButtonItem2});
            this.radRibbonBar1.TabIndex = 3;
            this.radRibbonBar1.Text = "UET Library";
            // 
            // ribbonTab1
            // 
            this.ribbonTab1.AccessibleDescription = "Home";
            this.ribbonTab1.AccessibleName = "Home";
            this.ribbonTab1.IsSelected = true;
            this.ribbonTab1.Items.AddRange(new Telerik.WinControls.RadItem[] {
            this.radRibbonBarGroup1,
            this.radRibbonBarGroup10,
            this.radRibbonBarGroup11});
            this.ribbonTab1.Name = "ribbonTab1";
            this.ribbonTab1.Text = "Home";
            // 
            // radRibbonBarGroup1
            // 
            this.radRibbonBarGroup1.AccessibleDescription = "Operation";
            this.radRibbonBarGroup1.AccessibleName = "Operation";
            this.radRibbonBarGroup1.Items.AddRange(new Telerik.WinControls.RadItem[] {
            this.radButtonElement1,
            this.radButtonElement2,
            this.radButtonElement3});
            this.radRibbonBarGroup1.Name = "radRibbonBarGroup1";
            this.radRibbonBarGroup1.Text = "Operation";
            // 
            // radButtonElement1
            // 
            this.radButtonElement1.AccessibleDescription = "radButtonElement1";
            this.radButtonElement1.AccessibleName = "radButtonElement1";
            this.radButtonElement1.Image = ((System.Drawing.Image)(resources.GetObject("radButtonElement1.Image")));
            this.radButtonElement1.ImageAlignment = System.Drawing.ContentAlignment.MiddleCenter;
            this.radButtonElement1.Name = "radButtonElement1";
            this.radButtonElement1.Text = "Create";
            this.radButtonElement1.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
            this.radButtonElement1.Click += new System.EventHandler(this.radButtonElement1_Click);
            // 
            // radButtonElement2
            // 
            this.radButtonElement2.AccessibleDescription = "radButtonElement2";
            this.radButtonElement2.AccessibleName = "radButtonElement2";
            this.radButtonElement2.Image = ((System.Drawing.Image)(resources.GetObject("radButtonElement2.Image")));
            this.radButtonElement2.ImageAlignment = System.Drawing.ContentAlignment.MiddleCenter;
            this.radButtonElement2.Name = "radButtonElement2";
            this.radButtonElement2.Text = "Delete";
            this.radButtonElement2.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
            this.radButtonElement2.Click += new System.EventHandler(this.radButtonElement2_Click);
            // 
            // radButtonElement3
            // 
            this.radButtonElement3.AccessibleDescription = "radButtonElement3";
            this.radButtonElement3.AccessibleName = "radButtonElement3";
            this.radButtonElement3.Image = ((System.Drawing.Image)(resources.GetObject("radButtonElement3.Image")));
            this.radButtonElement3.ImageAlignment = System.Drawing.ContentAlignment.MiddleCenter;
            this.radButtonElement3.Name = "radButtonElement3";
            this.radButtonElement3.Text = "Refresh";
            this.radButtonElement3.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
            this.radButtonElement3.Click += new System.EventHandler(this.radButtonElement3_Click);
            // 
            // radRibbonBarGroup10
            // 
            this.radRibbonBarGroup10.AccessibleDescription = "Option";
            this.radRibbonBarGroup10.AccessibleName = "Option";
            this.radRibbonBarGroup10.Items.AddRange(new Telerik.WinControls.RadItem[] {
            this.radToggleButtonElement1,
            this.radToggleButtonElement2,
            this.radToggleButtonElement3});
            this.radRibbonBarGroup10.Name = "radRibbonBarGroup10";
            this.radRibbonBarGroup10.Text = "Option";
            // 
            // radToggleButtonElement1
            // 
            this.radToggleButtonElement1.AccessibleDescription = "Filter";
            this.radToggleButtonElement1.AccessibleName = "Filter";
            this.radToggleButtonElement1.Image = global::LibraryDesktop.Properties.Resources.filter;
            this.radToggleButtonElement1.ImageAlignment = System.Drawing.ContentAlignment.MiddleCenter;
            this.radToggleButtonElement1.Name = "radToggleButtonElement1";
            this.radToggleButtonElement1.Padding = new System.Windows.Forms.Padding(1);
            this.radToggleButtonElement1.ReadOnly = false;
            this.radToggleButtonElement1.Text = "Filter";
            this.radToggleButtonElement1.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
            this.radToggleButtonElement1.CheckStateChanging += new Telerik.WinControls.UI.CheckStateChangingEventHandler(this.radToggleButtonElement1_CheckStateChanging);
            // 
            // radToggleButtonElement2
            // 
            this.radToggleButtonElement2.AccessibleDescription = "Search";
            this.radToggleButtonElement2.AccessibleName = "Search";
            this.radToggleButtonElement2.Image = global::LibraryDesktop.Properties.Resources.search;
            this.radToggleButtonElement2.ImageAlignment = System.Drawing.ContentAlignment.MiddleCenter;
            this.radToggleButtonElement2.Name = "radToggleButtonElement2";
            this.radToggleButtonElement2.Padding = new System.Windows.Forms.Padding(1);
            this.radToggleButtonElement2.ReadOnly = false;
            this.radToggleButtonElement2.Text = "Search";
            this.radToggleButtonElement2.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
            this.radToggleButtonElement2.CheckStateChanging += new Telerik.WinControls.UI.CheckStateChangingEventHandler(this.radToggleButtonElement2_CheckStateChanging);
            // 
            // radToggleButtonElement3
            // 
            this.radToggleButtonElement3.AccessibleDescription = "Grouping";
            this.radToggleButtonElement3.AccessibleName = "Grouping";
            this.radToggleButtonElement3.Image = global::LibraryDesktop.Properties.Resources.group;
            this.radToggleButtonElement3.ImageAlignment = System.Drawing.ContentAlignment.MiddleCenter;
            this.radToggleButtonElement3.Name = "radToggleButtonElement3";
            this.radToggleButtonElement3.Padding = new System.Windows.Forms.Padding(1);
            this.radToggleButtonElement3.ReadOnly = false;
            this.radToggleButtonElement3.Text = "Group";
            this.radToggleButtonElement3.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
            this.radToggleButtonElement3.CheckStateChanging += new Telerik.WinControls.UI.CheckStateChangingEventHandler(this.radToggleButtonElement3_CheckStateChanging);
            // 
            // radRibbonBarGroup11
            // 
            this.radRibbonBarGroup11.AccessibleDescription = "Other";
            this.radRibbonBarGroup11.AccessibleName = "Other";
            this.radRibbonBarGroup11.Items.AddRange(new Telerik.WinControls.RadItem[] {
            this.radButtonElement23,
            this.radButtonElement24});
            this.radRibbonBarGroup11.Name = "radRibbonBarGroup11";
            this.radRibbonBarGroup11.Text = "Other";
            // 
            // radButtonElement23
            // 
            this.radButtonElement23.AccessibleDescription = "Help";
            this.radButtonElement23.AccessibleName = "Help";
            this.radButtonElement23.Image = global::LibraryDesktop.Properties.Resources.question;
            this.radButtonElement23.ImageAlignment = System.Drawing.ContentAlignment.MiddleCenter;
            this.radButtonElement23.Name = "radButtonElement23";
            this.radButtonElement23.Padding = new System.Windows.Forms.Padding(1);
            this.radButtonElement23.Text = "Help";
            this.radButtonElement23.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
            this.radButtonElement23.Click += new System.EventHandler(this.radButtonElement23_Click);
            // 
            // radButtonElement24
            // 
            this.radButtonElement24.AccessibleDescription = "About";
            this.radButtonElement24.AccessibleName = "About";
            this.radButtonElement24.Image = global::LibraryDesktop.Properties.Resources.exclaim;
            this.radButtonElement24.ImageAlignment = System.Drawing.ContentAlignment.MiddleCenter;
            this.radButtonElement24.Name = "radButtonElement24";
            this.radButtonElement24.Padding = new System.Windows.Forms.Padding(1);
            this.radButtonElement24.Text = "About";
            this.radButtonElement24.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
            this.radButtonElement24.Click += new System.EventHandler(this.radButtonElement24_Click);
            // 
            // ribbonTab2
            // 
            this.ribbonTab2.AccessibleDescription = "Action";
            this.ribbonTab2.AccessibleName = "Action";
            this.ribbonTab2.IsSelected = false;
            this.ribbonTab2.Items.AddRange(new Telerik.WinControls.RadItem[] {
            this.radRibbonBarGroup2,
            this.radRibbonBarGroup3,
            this.radRibbonBarGroup4,
            this.radRibbonBarGroup8,
            this.radRibbonBarGroup5,
            this.radRibbonBarGroup6,
            this.radRibbonBarGroup7,
            this.radRibbonBarGroup9});
            this.ribbonTab2.Name = "ribbonTab2";
            this.ribbonTab2.Text = "Theme";
            // 
            // radRibbonBarGroup2
            // 
            this.radRibbonBarGroup2.AccessibleDescription = "Natural";
            this.radRibbonBarGroup2.AccessibleName = "Natural";
            this.radRibbonBarGroup2.Items.AddRange(new Telerik.WinControls.RadItem[] {
            this.radButtonElement4,
            this.radButtonElement5,
            this.radButtonElement6});
            this.radRibbonBarGroup2.Name = "radRibbonBarGroup2";
            this.radRibbonBarGroup2.Orientation = System.Windows.Forms.Orientation.Vertical;
            this.radRibbonBarGroup2.Text = "Natural";
            // 
            // radButtonElement4
            // 
            this.radButtonElement4.AccessibleDescription = "Breeze";
            this.radButtonElement4.AccessibleName = "Breeze";
            this.radButtonElement4.Image = ((System.Drawing.Image)(resources.GetObject("radButtonElement4.Image")));
            this.radButtonElement4.Name = "radButtonElement4";
            this.radButtonElement4.Padding = new System.Windows.Forms.Padding(1);
            this.radButtonElement4.Tag = "breeze";
            this.radButtonElement4.Text = "Breeze";
            this.radButtonElement4.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
            this.radButtonElement4.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageBeforeText;
            this.radButtonElement4.Click += new System.EventHandler(this.radRibbonBar1_Click);
            // 
            // radButtonElement5
            // 
            this.radButtonElement5.AccessibleDescription = "Aqua";
            this.radButtonElement5.AccessibleName = "Aqua";
            this.radButtonElement5.Image = ((System.Drawing.Image)(resources.GetObject("radButtonElement5.Image")));
            this.radButtonElement5.Name = "radButtonElement5";
            this.radButtonElement5.Padding = new System.Windows.Forms.Padding(1);
            this.radButtonElement5.Tag = "aqua";
            this.radButtonElement5.Text = "Aqua";
            this.radButtonElement5.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
            this.radButtonElement5.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageBeforeText;
            this.radButtonElement5.Click += new System.EventHandler(this.radRibbonBar1_Click);
            // 
            // radButtonElement6
            // 
            this.radButtonElement6.AccessibleDescription = "Desert";
            this.radButtonElement6.AccessibleName = "Desert";
            this.radButtonElement6.Image = ((System.Drawing.Image)(resources.GetObject("radButtonElement6.Image")));
            this.radButtonElement6.Name = "radButtonElement6";
            this.radButtonElement6.Padding = new System.Windows.Forms.Padding(1);
            this.radButtonElement6.Tag = "desert";
            this.radButtonElement6.Text = "Desert";
            this.radButtonElement6.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
            this.radButtonElement6.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageBeforeText;
            this.radButtonElement6.Click += new System.EventHandler(this.radRibbonBar1_Click);
            // 
            // radRibbonBarGroup3
            // 
            this.radRibbonBarGroup3.AccessibleDescription = "Office 2007";
            this.radRibbonBarGroup3.AccessibleName = "Office 2007";
            this.radRibbonBarGroup3.Items.AddRange(new Telerik.WinControls.RadItem[] {
            this.radButtonElement7,
            this.radButtonElement8,
            this.radButtonElement9});
            this.radRibbonBarGroup3.Name = "radRibbonBarGroup3";
            this.radRibbonBarGroup3.Orientation = System.Windows.Forms.Orientation.Vertical;
            this.radRibbonBarGroup3.Text = "Office 2007";
            // 
            // radButtonElement7
            // 
            this.radButtonElement7.AccessibleDescription = "Office2007Black";
            this.radButtonElement7.AccessibleName = "Office2007Black";
            this.radButtonElement7.Image = ((System.Drawing.Image)(resources.GetObject("radButtonElement7.Image")));
            this.radButtonElement7.Name = "radButtonElement7";
            this.radButtonElement7.Padding = new System.Windows.Forms.Padding(1);
            this.radButtonElement7.Tag = "office2007Black";
            this.radButtonElement7.Text = "Black";
            this.radButtonElement7.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
            this.radButtonElement7.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageBeforeText;
            this.radButtonElement7.Click += new System.EventHandler(this.radRibbonBar1_Click);
            // 
            // radButtonElement8
            // 
            this.radButtonElement8.AccessibleDescription = "Blue";
            this.radButtonElement8.AccessibleName = "Blue";
            this.radButtonElement8.Image = ((System.Drawing.Image)(resources.GetObject("radButtonElement8.Image")));
            this.radButtonElement8.Name = "radButtonElement8";
            this.radButtonElement8.Padding = new System.Windows.Forms.Padding(1);
            this.radButtonElement8.Text = "Blue";
            this.radButtonElement8.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
            this.radButtonElement8.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageBeforeText;
            this.radButtonElement8.Click += new System.EventHandler(this.radRibbonBar1_Click);
            // 
            // radButtonElement9
            // 
            this.radButtonElement9.AccessibleDescription = "Office2007Silver";
            this.radButtonElement9.AccessibleName = "Office2007Silver";
            this.radButtonElement9.Image = ((System.Drawing.Image)(resources.GetObject("radButtonElement9.Image")));
            this.radButtonElement9.Name = "radButtonElement9";
            this.radButtonElement9.Padding = new System.Windows.Forms.Padding(1);
            this.radButtonElement9.Tag = "office2007Silver";
            this.radButtonElement9.Text = "Silver";
            this.radButtonElement9.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
            this.radButtonElement9.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageBeforeText;
            this.radButtonElement9.Click += new System.EventHandler(this.radRibbonBar1_Click);
            // 
            // radRibbonBarGroup4
            // 
            this.radRibbonBarGroup4.AccessibleDescription = "Office 2010";
            this.radRibbonBarGroup4.AccessibleName = "Office 2010";
            this.radRibbonBarGroup4.Items.AddRange(new Telerik.WinControls.RadItem[] {
            this.radButtonElement10,
            this.radButtonElement11,
            this.radButtonElement12});
            this.radRibbonBarGroup4.Name = "radRibbonBarGroup4";
            this.radRibbonBarGroup4.Orientation = System.Windows.Forms.Orientation.Vertical;
            this.radRibbonBarGroup4.Text = "Office 2010";
            // 
            // radButtonElement10
            // 
            this.radButtonElement10.AccessibleDescription = "Office2010Black";
            this.radButtonElement10.AccessibleName = "Office2010Black";
            this.radButtonElement10.Image = ((System.Drawing.Image)(resources.GetObject("radButtonElement10.Image")));
            this.radButtonElement10.Name = "radButtonElement10";
            this.radButtonElement10.Padding = new System.Windows.Forms.Padding(1);
            this.radButtonElement10.Tag = "office2010Black";
            this.radButtonElement10.Text = "Black";
            this.radButtonElement10.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
            this.radButtonElement10.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageBeforeText;
            this.radButtonElement10.Click += new System.EventHandler(this.radRibbonBar1_Click);
            // 
            // radButtonElement11
            // 
            this.radButtonElement11.AccessibleDescription = "Office2010Blue";
            this.radButtonElement11.AccessibleName = "Office2010Blue";
            this.radButtonElement11.Image = ((System.Drawing.Image)(resources.GetObject("radButtonElement11.Image")));
            this.radButtonElement11.Name = "radButtonElement11";
            this.radButtonElement11.Padding = new System.Windows.Forms.Padding(1);
            this.radButtonElement11.Tag = "office2010Blue";
            this.radButtonElement11.Text = "Blue";
            this.radButtonElement11.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
            this.radButtonElement11.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageBeforeText;
            this.radButtonElement11.Click += new System.EventHandler(this.radRibbonBar1_Click);
            // 
            // radButtonElement12
            // 
            this.radButtonElement12.AccessibleDescription = "Office2010Silver";
            this.radButtonElement12.AccessibleName = "Office2010Silver";
            this.radButtonElement12.Image = ((System.Drawing.Image)(resources.GetObject("radButtonElement12.Image")));
            this.radButtonElement12.Name = "radButtonElement12";
            this.radButtonElement12.Padding = new System.Windows.Forms.Padding(1);
            this.radButtonElement12.Tag = "office2010Silver";
            this.radButtonElement12.Text = "Silver";
            this.radButtonElement12.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
            this.radButtonElement12.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageBeforeText;
            this.radButtonElement12.Click += new System.EventHandler(this.radRibbonBar1_Click);
            // 
            // radRibbonBarGroup8
            // 
            this.radRibbonBarGroup8.AccessibleDescription = "Office 2013";
            this.radRibbonBarGroup8.AccessibleName = "Office 2013";
            this.radRibbonBarGroup8.Items.AddRange(new Telerik.WinControls.RadItem[] {
            this.radButtonElement13,
            this.radButtonElement14});
            this.radRibbonBarGroup8.Name = "radRibbonBarGroup8";
            this.radRibbonBarGroup8.Orientation = System.Windows.Forms.Orientation.Vertical;
            this.radRibbonBarGroup8.Text = "Office 2013";
            // 
            // radButtonElement13
            // 
            this.radButtonElement13.AccessibleDescription = "Office2013Dark";
            this.radButtonElement13.AccessibleName = "Office2013Dark";
            this.radButtonElement13.Image = ((System.Drawing.Image)(resources.GetObject("radButtonElement13.Image")));
            this.radButtonElement13.Name = "radButtonElement13";
            this.radButtonElement13.Padding = new System.Windows.Forms.Padding(1);
            this.radButtonElement13.Tag = "office2013Dark";
            this.radButtonElement13.Text = "Dark";
            this.radButtonElement13.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
            this.radButtonElement13.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageBeforeText;
            this.radButtonElement13.Click += new System.EventHandler(this.radRibbonBar1_Click);
            // 
            // radButtonElement14
            // 
            this.radButtonElement14.AccessibleDescription = "Office2013Light";
            this.radButtonElement14.AccessibleName = "Office2013Light";
            this.radButtonElement14.Image = ((System.Drawing.Image)(resources.GetObject("radButtonElement14.Image")));
            this.radButtonElement14.Name = "radButtonElement14";
            this.radButtonElement14.Padding = new System.Windows.Forms.Padding(1);
            this.radButtonElement14.Tag = "office2013Light";
            this.radButtonElement14.Text = "Light";
            this.radButtonElement14.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
            this.radButtonElement14.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageBeforeText;
            this.radButtonElement14.Click += new System.EventHandler(this.radRibbonBar1_Click);
            // 
            // radRibbonBarGroup5
            // 
            this.radRibbonBarGroup5.AccessibleDescription = "Visual Studio 2012";
            this.radRibbonBarGroup5.AccessibleName = "Visual Studio 2012";
            this.radRibbonBarGroup5.Items.AddRange(new Telerik.WinControls.RadItem[] {
            this.radButtonElement15,
            this.radButtonElement16});
            this.radRibbonBarGroup5.Name = "radRibbonBarGroup5";
            this.radRibbonBarGroup5.Orientation = System.Windows.Forms.Orientation.Vertical;
            this.radRibbonBarGroup5.Text = "Visual Studio 2012";
            // 
            // radButtonElement15
            // 
            this.radButtonElement15.AccessibleDescription = "VisualStudio2012Dark";
            this.radButtonElement15.AccessibleName = "VisualStudio2012Dark";
            this.radButtonElement15.Image = ((System.Drawing.Image)(resources.GetObject("radButtonElement15.Image")));
            this.radButtonElement15.Name = "radButtonElement15";
            this.radButtonElement15.Padding = new System.Windows.Forms.Padding(1);
            this.radButtonElement15.Tag = "visualStudio2012Dark";
            this.radButtonElement15.Text = "Dark";
            this.radButtonElement15.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
            this.radButtonElement15.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageBeforeText;
            this.radButtonElement15.Click += new System.EventHandler(this.radRibbonBar1_Click);
            // 
            // radButtonElement16
            // 
            this.radButtonElement16.AccessibleDescription = "VisualStudio2012Light";
            this.radButtonElement16.AccessibleName = "VisualStudio2012Light";
            this.radButtonElement16.Image = ((System.Drawing.Image)(resources.GetObject("radButtonElement16.Image")));
            this.radButtonElement16.Name = "radButtonElement16";
            this.radButtonElement16.Padding = new System.Windows.Forms.Padding(1);
            this.radButtonElement16.Tag = "visualStudio2012Light";
            this.radButtonElement16.Text = "Light";
            this.radButtonElement16.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
            this.radButtonElement16.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageBeforeText;
            this.radButtonElement16.Click += new System.EventHandler(this.radRibbonBar1_Click);
            // 
            // radRibbonBarGroup6
            // 
            this.radRibbonBarGroup6.AccessibleDescription = "Telerik Metro";
            this.radRibbonBarGroup6.AccessibleName = "Telerik Metro";
            this.radRibbonBarGroup6.Items.AddRange(new Telerik.WinControls.RadItem[] {
            this.radButtonElement17,
            this.radButtonElement18,
            this.radButtonElement22});
            this.radRibbonBarGroup6.Name = "radRibbonBarGroup6";
            this.radRibbonBarGroup6.Orientation = System.Windows.Forms.Orientation.Vertical;
            this.radRibbonBarGroup6.Text = "Telerik Metro";
            // 
            // radButtonElement17
            // 
            this.radButtonElement17.AccessibleDescription = "TelerikMetroTheme";
            this.radButtonElement17.AccessibleName = "TelerikMetroTheme";
            this.radButtonElement17.Image = ((System.Drawing.Image)(resources.GetObject("radButtonElement17.Image")));
            this.radButtonElement17.Name = "radButtonElement17";
            this.radButtonElement17.Padding = new System.Windows.Forms.Padding(1);
            this.radButtonElement17.Tag = "telerikMetroTheme";
            this.radButtonElement17.Text = "Default";
            this.radButtonElement17.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
            this.radButtonElement17.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageBeforeText;
            this.radButtonElement17.Click += new System.EventHandler(this.radRibbonBar1_Click);
            // 
            // radButtonElement18
            // 
            this.radButtonElement18.AccessibleDescription = "TelerikMetroBlueTheme";
            this.radButtonElement18.AccessibleName = "TelerikMetroBlueTheme";
            this.radButtonElement18.Image = ((System.Drawing.Image)(resources.GetObject("radButtonElement18.Image")));
            this.radButtonElement18.Name = "radButtonElement18";
            this.radButtonElement18.Padding = new System.Windows.Forms.Padding(1);
            this.radButtonElement18.Tag = "telerikMetroBlueTheme";
            this.radButtonElement18.Text = "Blue";
            this.radButtonElement18.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
            this.radButtonElement18.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageBeforeText;
            this.radButtonElement18.Click += new System.EventHandler(this.radRibbonBar1_Click);
            // 
            // radButtonElement22
            // 
            this.radButtonElement22.AccessibleDescription = "TelerikMetroTouchTheme";
            this.radButtonElement22.AccessibleName = "TelerikMetroTouchTheme";
            this.radButtonElement22.Image = ((System.Drawing.Image)(resources.GetObject("radButtonElement22.Image")));
            this.radButtonElement22.ImageAlignment = System.Drawing.ContentAlignment.MiddleLeft;
            this.radButtonElement22.Name = "radButtonElement22";
            this.radButtonElement22.Padding = new System.Windows.Forms.Padding(1);
            this.radButtonElement22.Tag = "telerikMetroTouchTheme";
            this.radButtonElement22.Text = "Touch";
            this.radButtonElement22.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
            this.radButtonElement22.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageBeforeText;
            this.radButtonElement22.Click += new System.EventHandler(this.radRibbonBar1_Click);
            // 
            // radRibbonBarGroup7
            // 
            this.radRibbonBarGroup7.AccessibleDescription = "Windows";
            this.radRibbonBarGroup7.AccessibleName = "Windows";
            this.radRibbonBarGroup7.Items.AddRange(new Telerik.WinControls.RadItem[] {
            this.radButtonElement19,
            this.radButtonElement20});
            this.radRibbonBarGroup7.Name = "radRibbonBarGroup7";
            this.radRibbonBarGroup7.Orientation = System.Windows.Forms.Orientation.Vertical;
            this.radRibbonBarGroup7.Text = "Windows";
            // 
            // radButtonElement19
            // 
            this.radButtonElement19.AccessibleDescription = "Windows7";
            this.radButtonElement19.AccessibleName = "Windows7";
            this.radButtonElement19.Image = ((System.Drawing.Image)(resources.GetObject("radButtonElement19.Image")));
            this.radButtonElement19.Name = "radButtonElement19";
            this.radButtonElement19.Padding = new System.Windows.Forms.Padding(1);
            this.radButtonElement19.Tag = "windows7";
            this.radButtonElement19.Text = "Windows 7";
            this.radButtonElement19.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
            this.radButtonElement19.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageBeforeText;
            this.radButtonElement19.Click += new System.EventHandler(this.radRibbonBar1_Click);
            // 
            // radButtonElement20
            // 
            this.radButtonElement20.AccessibleDescription = "Windows8";
            this.radButtonElement20.AccessibleName = "Windows8";
            this.radButtonElement20.Image = ((System.Drawing.Image)(resources.GetObject("radButtonElement20.Image")));
            this.radButtonElement20.Name = "radButtonElement20";
            this.radButtonElement20.Padding = new System.Windows.Forms.Padding(1);
            this.radButtonElement20.Tag = "windows8";
            this.radButtonElement20.Text = "Windows 8";
            this.radButtonElement20.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
            this.radButtonElement20.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageBeforeText;
            this.radButtonElement20.Click += new System.EventHandler(this.radRibbonBar1_Click);
            // 
            // radRibbonBarGroup9
            // 
            this.radRibbonBarGroup9.AccessibleDescription = "Other";
            this.radRibbonBarGroup9.AccessibleName = "Other";
            this.radRibbonBarGroup9.Items.AddRange(new Telerik.WinControls.RadItem[] {
            this.radButtonElement21});
            this.radRibbonBarGroup9.Name = "radRibbonBarGroup9";
            this.radRibbonBarGroup9.Orientation = System.Windows.Forms.Orientation.Vertical;
            this.radRibbonBarGroup9.Text = "Other";
            // 
            // radButtonElement21
            // 
            this.radButtonElement21.AccessibleDescription = "HighContrastBlackTheme";
            this.radButtonElement21.AccessibleName = "HighContrastBlackTheme";
            this.radButtonElement21.Image = ((System.Drawing.Image)(resources.GetObject("radButtonElement21.Image")));
            this.radButtonElement21.Name = "radButtonElement21";
            this.radButtonElement21.Padding = new System.Windows.Forms.Padding(1);
            this.radButtonElement21.Tag = "highContrastBlackTheme";
            this.radButtonElement21.Text = "High Contrast";
            this.radButtonElement21.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
            this.radButtonElement21.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageBeforeText;
            this.radButtonElement21.Click += new System.EventHandler(this.radRibbonBar1_Click);
            // 
            // radMenuButtonItem2
            // 
            this.radMenuButtonItem2.AccessibleDescription = "radMenuButtonItem2";
            this.radMenuButtonItem2.AccessibleName = "radMenuButtonItem2";
            // 
            // 
            // 
            this.radMenuButtonItem2.ButtonElement.AccessibleDescription = "radMenuButtonItem2";
            this.radMenuButtonItem2.ButtonElement.AccessibleName = "radMenuButtonItem2";
            this.radMenuButtonItem2.Name = "radMenuButtonItem2";
            this.radMenuButtonItem2.Text = "About";
            this.radMenuButtonItem2.Click += new System.EventHandler(this.radMenuButtonItem2_Click);
            // 
            // pictureBox2
            // 
            this.pictureBox2.Dock = System.Windows.Forms.DockStyle.Fill;
            this.pictureBox2.Location = new System.Drawing.Point(0, 0);
            this.pictureBox2.Name = "pictureBox2";
            this.pictureBox2.Size = new System.Drawing.Size(300, 176);
            this.pictureBox2.SizeMode = System.Windows.Forms.PictureBoxSizeMode.Zoom;
            this.pictureBox2.TabIndex = 0;
            this.pictureBox2.TabStop = false;
            // 
            // bookModelBindingSource
            // 
            this.bookModelBindingSource.DataSource = typeof(LibraryDesktop.Models.BookModel);
            // 
            // radRibbonFormBehavior1
            // 
            this.radRibbonFormBehavior1.Form = this;
            // 
            // pictureBox1
            // 
            this.pictureBox1.Dock = System.Windows.Forms.DockStyle.Fill;
            this.pictureBox1.Location = new System.Drawing.Point(0, 0);
            this.pictureBox1.Name = "pictureBox1";
            this.pictureBox1.Size = new System.Drawing.Size(284, 157);
            this.pictureBox1.SizeMode = System.Windows.Forms.PictureBoxSizeMode.Zoom;
            this.pictureBox1.TabIndex = 0;
            this.pictureBox1.TabStop = false;
            // 
            // bookModelBindingSource1
            // 
            this.bookModelBindingSource1.DataSource = typeof(LibraryDesktop.Models.BookModel);
            // 
            // RadForm2
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.ClientSize = new System.Drawing.Size(1143, 723);
            this.Controls.Add(this.radRibbonBar1);
            this.Controls.Add(this.radStatusStrip1);
            this.Controls.Add(this.radSplitContainer1);
            this.FormBehavior = this.radRibbonFormBehavior1;
            this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
            this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
            this.IconScaling = Telerik.WinControls.Enumerations.ImageScaling.None;
            this.MaximizeBox = false;
            this.Name = "RadForm2";
            // 
            // 
            // 
            this.RootElement.ApplyShapeToControl = true;
            this.Text = "UET Library";
            this.ThemeName = "Windows8";
            this.Load += new System.EventHandler(this.RadForm2_Load);
            ((System.ComponentModel.ISupportInitialize)(this.radSplitContainer1)).EndInit();
            this.radSplitContainer1.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.splitPanel1)).EndInit();
            this.splitPanel1.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.radSplitContainer2)).EndInit();
            this.radSplitContainer2.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.splitPanel2)).EndInit();
            this.splitPanel2.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.splitPanel3)).EndInit();
            this.splitPanel3.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.radButton2)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radButton1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radPropertyGrid1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radGridView2.MasterTemplate)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radGridView2)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radStatusStrip1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radRibbonBar1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.pictureBox2)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.bookModelBindingSource)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.bindingSource1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.bookModelBindingSource1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this)).EndInit();
            this.ResumeLayout(false);
            this.PerformLayout();

        }
コード例 #14
0
        /// <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(CustomerView));
            Telerik.WinControls.UI.GridViewCheckBoxColumn gridViewCheckBoxColumn3 = new Telerik.WinControls.UI.GridViewCheckBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn11 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn12 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn13 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn14 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn15 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            this.buttonNew = new System.Windows.Forms.Button();
            this.buttonUpdate = new System.Windows.Forms.Button();
            this.buttonDelete = new System.Windows.Forms.Button();
            this.buttonRefresh = new System.Windows.Forms.Button();
            this.panel1 = new System.Windows.Forms.Panel();
            this.groupBox2 = new System.Windows.Forms.GroupBox();
            this.buttonSelectItems = new System.Windows.Forms.Button();
            this.btnImport = new System.Windows.Forms.Button();
            this.panel2 = new System.Windows.Forms.Panel();
            this.groupBox1 = new System.Windows.Forms.GroupBox();
            this.radGridView = new Telerik.WinControls.UI.RadGridView();
            this.panel1.SuspendLayout();
            this.groupBox2.SuspendLayout();
            this.panel2.SuspendLayout();
            this.groupBox1.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.radGridView)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radGridView.MasterTemplate)).BeginInit();
            this.SuspendLayout();
            // 
            // buttonNew
            // 
            this.buttonNew.Image = ((System.Drawing.Image)(resources.GetObject("buttonNew.Image")));
            this.buttonNew.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
            this.buttonNew.Location = new System.Drawing.Point(6, 13);
            this.buttonNew.Name = "buttonNew";
            this.buttonNew.Size = new System.Drawing.Size(70, 25);
            this.buttonNew.TabIndex = 0;
            this.buttonNew.Text = "Thêm   ";
            this.buttonNew.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            this.buttonNew.UseVisualStyleBackColor = true;
            this.buttonNew.Click += new System.EventHandler(this.NewItem);
            // 
            // buttonUpdate
            // 
            this.buttonUpdate.Image = ((System.Drawing.Image)(resources.GetObject("buttonUpdate.Image")));
            this.buttonUpdate.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
            this.buttonUpdate.Location = new System.Drawing.Point(82, 13);
            this.buttonUpdate.Name = "buttonUpdate";
            this.buttonUpdate.Size = new System.Drawing.Size(70, 25);
            this.buttonUpdate.TabIndex = 2;
            this.buttonUpdate.Text = "Sửa    ";
            this.buttonUpdate.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            this.buttonUpdate.UseVisualStyleBackColor = true;
            this.buttonUpdate.Click += new System.EventHandler(this.UpdateItem);
            // 
            // buttonDelete
            // 
            this.buttonDelete.Image = ((System.Drawing.Image)(resources.GetObject("buttonDelete.Image")));
            this.buttonDelete.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
            this.buttonDelete.Location = new System.Drawing.Point(158, 13);
            this.buttonDelete.Name = "buttonDelete";
            this.buttonDelete.Size = new System.Drawing.Size(70, 25);
            this.buttonDelete.TabIndex = 3;
            this.buttonDelete.Text = "Xóa    ";
            this.buttonDelete.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            this.buttonDelete.UseVisualStyleBackColor = true;
            this.buttonDelete.Click += new System.EventHandler(this.DeleteItem);
            // 
            // buttonRefresh
            // 
            this.buttonRefresh.Image = ((System.Drawing.Image)(resources.GetObject("buttonRefresh.Image")));
            this.buttonRefresh.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
            this.buttonRefresh.Location = new System.Drawing.Point(234, 14);
            this.buttonRefresh.Name = "buttonRefresh";
            this.buttonRefresh.Size = new System.Drawing.Size(90, 23);
            this.buttonRefresh.TabIndex = 4;
            this.buttonRefresh.Text = "Cập nhật";
            this.buttonRefresh.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            this.buttonRefresh.UseVisualStyleBackColor = true;
            this.buttonRefresh.Click += new System.EventHandler(this.RefreshItems);
            // 
            // panel1
            // 
            this.panel1.Controls.Add(this.groupBox2);
            this.panel1.Dock = System.Windows.Forms.DockStyle.Top;
            this.panel1.Location = new System.Drawing.Point(0, 0);
            this.panel1.Name = "panel1";
            this.panel1.Size = new System.Drawing.Size(810, 44);
            this.panel1.TabIndex = 5;
            // 
            // groupBox2
            // 
            this.groupBox2.Controls.Add(this.buttonSelectItems);
            this.groupBox2.Controls.Add(this.btnImport);
            this.groupBox2.Controls.Add(this.buttonNew);
            this.groupBox2.Controls.Add(this.buttonUpdate);
            this.groupBox2.Controls.Add(this.buttonDelete);
            this.groupBox2.Controls.Add(this.buttonRefresh);
            this.groupBox2.Dock = System.Windows.Forms.DockStyle.Fill;
            this.groupBox2.Location = new System.Drawing.Point(0, 0);
            this.groupBox2.Name = "groupBox2";
            this.groupBox2.Size = new System.Drawing.Size(810, 44);
            this.groupBox2.TabIndex = 5;
            this.groupBox2.TabStop = false;
            // 
            // buttonSelectItems
            // 
            this.buttonSelectItems.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
            this.buttonSelectItems.Location = new System.Drawing.Point(411, 14);
            this.buttonSelectItems.Name = "buttonSelectItems";
            this.buttonSelectItems.Size = new System.Drawing.Size(103, 23);
            this.buttonSelectItems.TabIndex = 6;
            this.buttonSelectItems.Text = "chọn ";
            this.buttonSelectItems.UseVisualStyleBackColor = true;
            this.buttonSelectItems.Click += new System.EventHandler(this.SelectAllItem);
            // 
            // btnImport
            // 
            this.btnImport.Image = ((System.Drawing.Image)(resources.GetObject("btnImport.Image")));
            this.btnImport.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
            this.btnImport.Location = new System.Drawing.Point(330, 14);
            this.btnImport.Name = "btnImport";
            this.btnImport.Size = new System.Drawing.Size(75, 23);
            this.btnImport.TabIndex = 5;
            this.btnImport.Text = "Import";
            this.btnImport.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            this.btnImport.UseVisualStyleBackColor = true;
            this.btnImport.Click += new System.EventHandler(this.btnImport_Click);
            // 
            // panel2
            // 
            this.panel2.Controls.Add(this.groupBox1);
            this.panel2.Dock = System.Windows.Forms.DockStyle.Fill;
            this.panel2.Location = new System.Drawing.Point(0, 44);
            this.panel2.Name = "panel2";
            this.panel2.Size = new System.Drawing.Size(810, 351);
            this.panel2.TabIndex = 6;
            // 
            // groupBox1
            // 
            this.groupBox1.Controls.Add(this.radGridView);
            this.groupBox1.Dock = System.Windows.Forms.DockStyle.Fill;
            this.groupBox1.Location = new System.Drawing.Point(0, 0);
            this.groupBox1.Name = "groupBox1";
            this.groupBox1.Size = new System.Drawing.Size(810, 351);
            this.groupBox1.TabIndex = 2;
            this.groupBox1.TabStop = false;
            this.groupBox1.Text = "Danh sách khách hàng";
            // 
            // radGridView
            // 
            this.radGridView.AutoScroll = true;
            this.radGridView.Dock = System.Windows.Forms.DockStyle.Fill;
            this.radGridView.Location = new System.Drawing.Point(3, 18);
            // 
            // radGridView
            // 
            this.radGridView.MasterTemplate.AllowAddNewRow = false;
            this.radGridView.MasterTemplate.AllowCellContextMenu = false;
            this.radGridView.MasterTemplate.AllowColumnChooser = false;
            this.radGridView.MasterTemplate.AllowColumnHeaderContextMenu = false;
            this.radGridView.MasterTemplate.AllowDeleteRow = false;
            this.radGridView.MasterTemplate.AllowDragToGroup = false;
            this.radGridView.MasterTemplate.AutoGenerateColumns = false;
            this.radGridView.MasterTemplate.AutoSizeColumnsMode = Telerik.WinControls.UI.GridViewAutoSizeColumnsMode.Fill;
            gridViewCheckBoxColumn3.AllowFiltering = false;
            gridViewCheckBoxColumn3.AllowGroup = false;
            gridViewCheckBoxColumn3.AllowHide = false;
            gridViewCheckBoxColumn3.AllowResize = false;
            gridViewCheckBoxColumn3.AllowSort = false;
            gridViewCheckBoxColumn3.FormatString = "";
            gridViewCheckBoxColumn3.HeaderText = "";
            gridViewCheckBoxColumn3.Name = "columnSelect";
            gridViewCheckBoxColumn3.VisibleInColumnChooser = false;
            gridViewTextBoxColumn11.AllowGroup = false;
            gridViewTextBoxColumn11.FieldName = "FullName";
            gridViewTextBoxColumn11.FormatString = "";
            gridViewTextBoxColumn11.HeaderText = "Họ tên";
            gridViewTextBoxColumn11.Name = "columnName";
            gridViewTextBoxColumn11.ReadOnly = true;
            gridViewTextBoxColumn11.Width = 148;
            gridViewTextBoxColumn12.AllowGroup = false;
            gridViewTextBoxColumn12.FieldName = "Segment";
            gridViewTextBoxColumn12.FormatString = "";
            gridViewTextBoxColumn12.HeaderText = "Phân khúc";
            gridViewTextBoxColumn12.Name = "columnSegment";
            gridViewTextBoxColumn12.ReadOnly = true;
            gridViewTextBoxColumn12.Width = 148;
            gridViewTextBoxColumn13.AllowGroup = false;
            gridViewTextBoxColumn13.FieldName = "Mobile1";
            gridViewTextBoxColumn13.FormatString = "";
            gridViewTextBoxColumn13.HeaderText = "Di động";
            gridViewTextBoxColumn13.Name = "columnMobile1";
            gridViewTextBoxColumn13.ReadOnly = true;
            gridViewTextBoxColumn13.Width = 148;
            gridViewTextBoxColumn14.AllowGroup = false;
            gridViewTextBoxColumn14.FieldName = "Email1";
            gridViewTextBoxColumn14.FormatString = "";
            gridViewTextBoxColumn14.HeaderText = "Email";
            gridViewTextBoxColumn14.Name = "columnEmail";
            gridViewTextBoxColumn14.ReadOnly = true;
            gridViewTextBoxColumn14.Width = 148;
            gridViewTextBoxColumn15.AllowGroup = false;
            gridViewTextBoxColumn15.FieldName = "City";
            gridViewTextBoxColumn15.FormatString = "";
            gridViewTextBoxColumn15.HeaderText = "Thành phố";
            gridViewTextBoxColumn15.Name = "columnCity";
            gridViewTextBoxColumn15.ReadOnly = true;
            gridViewTextBoxColumn15.Width = 147;
            this.radGridView.MasterTemplate.Columns.AddRange(new Telerik.WinControls.UI.GridViewDataColumn[] {
            gridViewCheckBoxColumn3,
            gridViewTextBoxColumn11,
            gridViewTextBoxColumn12,
            gridViewTextBoxColumn13,
            gridViewTextBoxColumn14,
            gridViewTextBoxColumn15});
            this.radGridView.MasterTemplate.EnableFiltering = true;
            this.radGridView.MasterTemplate.EnableGrouping = false;
            this.radGridView.Name = "radGridView";
            this.radGridView.Size = new System.Drawing.Size(804, 330);
            this.radGridView.TabIndex = 0;
            this.radGridView.Text = "radGridView1";
            // 
            // CustomerView
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.BackColor = System.Drawing.SystemColors.ButtonHighlight;
            this.ClientSize = new System.Drawing.Size(810, 395);
            this.Controls.Add(this.panel2);
            this.Controls.Add(this.panel1);
            this.Font = new System.Drawing.Font("Segoe UI", 8.25F);
            this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
            this.Name = "CustomerView";
            this.panel1.ResumeLayout(false);
            this.groupBox2.ResumeLayout(false);
            this.panel2.ResumeLayout(false);
            this.groupBox1.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.radGridView.MasterTemplate)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radGridView)).EndInit();
            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();
            Telerik.WinControls.UI.GridViewDecimalColumn gridViewDecimalColumn1 = new Telerik.WinControls.UI.GridViewDecimalColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn1 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn2 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewCheckBoxColumn gridViewCheckBoxColumn1 = new Telerik.WinControls.UI.GridViewCheckBoxColumn();
            Telerik.WinControls.UI.GridViewCheckBoxColumn gridViewCheckBoxColumn2 = new Telerik.WinControls.UI.GridViewCheckBoxColumn();
            Telerik.WinControls.UI.GridViewCheckBoxColumn gridViewCheckBoxColumn3 = new Telerik.WinControls.UI.GridViewCheckBoxColumn();
            Telerik.WinControls.UI.GridViewDateTimeColumn gridViewDateTimeColumn1 = new Telerik.WinControls.UI.GridViewDateTimeColumn();
            Telerik.WinControls.UI.GridViewDateTimeColumn gridViewDateTimeColumn2 = new Telerik.WinControls.UI.GridViewDateTimeColumn();
            Telerik.WinControls.UI.GridViewDateTimeColumn gridViewDateTimeColumn3 = new Telerik.WinControls.UI.GridViewDateTimeColumn();
            Telerik.WinControls.UI.GridViewDateTimeColumn gridViewDateTimeColumn4 = new Telerik.WinControls.UI.GridViewDateTimeColumn();
            Telerik.WinControls.UI.GridViewDecimalColumn gridViewDecimalColumn2 = new Telerik.WinControls.UI.GridViewDecimalColumn();
            Telerik.WinControls.UI.GridViewCheckBoxColumn gridViewCheckBoxColumn4 = new Telerik.WinControls.UI.GridViewCheckBoxColumn();
            this.ddlClientOrganizations = new Telerik.WinControls.UI.RadMultiColumnComboBox();
            this.btnSelectFile = new System.Windows.Forms.Button();
            this.txtFileName = new System.Windows.Forms.TextBox();
            this.ddlFileTypes = new Telerik.WinControls.UI.RadDropDownList();
            this.label3 = new System.Windows.Forms.Label();
            this.label2 = new System.Windows.Forms.Label();
            this.btnUpload = new System.Windows.Forms.Button();
            this.btnClose = new System.Windows.Forms.Button();
            this.openFileDlg = new System.Windows.Forms.OpenFileDialog();
            this.label4 = new System.Windows.Forms.Label();
            this.gvClientOrgs = new Telerik.WinControls.UI.RadGridView();
            this.clientOrganizationBindingSource = new System.Windows.Forms.BindingSource(this.components);
            this.radPanel1 = new Telerik.WinControls.UI.RadPanel();
            ((System.ComponentModel.ISupportInitialize)(this.ddlClientOrganizations)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.ddlClientOrganizations.EditorControl)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.ddlClientOrganizations.EditorControl.MasterTemplate)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.ddlFileTypes)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.gvClientOrgs)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.gvClientOrgs.MasterTemplate)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.clientOrganizationBindingSource)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radPanel1)).BeginInit();
            this.radPanel1.SuspendLayout();
            this.SuspendLayout();
            // 
            // ddlClientOrganizations
            // 
            this.ddlClientOrganizations.AutoSizeDropDownToBestFit = true;
            // 
            // ddlClientOrganizations.NestedRadGridView
            // 
            this.ddlClientOrganizations.EditorControl.AutoSize = true;
            this.ddlClientOrganizations.EditorControl.BackColor = System.Drawing.SystemColors.Window;
            this.ddlClientOrganizations.EditorControl.Font = new System.Drawing.Font("Microsoft Sans Serif", 7.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.ddlClientOrganizations.EditorControl.ForeColor = System.Drawing.SystemColors.ControlText;
            this.ddlClientOrganizations.EditorControl.Location = new System.Drawing.Point(0, 0);
            // 
            // 
            // 
            this.ddlClientOrganizations.EditorControl.MasterTemplate.AllowAddNewRow = false;
            this.ddlClientOrganizations.EditorControl.MasterTemplate.AllowCellContextMenu = false;
            this.ddlClientOrganizations.EditorControl.MasterTemplate.AllowColumnChooser = false;
            this.ddlClientOrganizations.EditorControl.MasterTemplate.AllowDeleteRow = false;
            this.ddlClientOrganizations.EditorControl.MasterTemplate.AllowDragToGroup = false;
            this.ddlClientOrganizations.EditorControl.MasterTemplate.AllowEditRow = false;
            this.ddlClientOrganizations.EditorControl.MasterTemplate.AutoSizeColumnsMode = Telerik.WinControls.UI.GridViewAutoSizeColumnsMode.Fill;
            this.ddlClientOrganizations.EditorControl.MasterTemplate.EnableAlternatingRowColor = true;
            this.ddlClientOrganizations.EditorControl.MasterTemplate.EnableGrouping = false;
            this.ddlClientOrganizations.EditorControl.MasterTemplate.ShowFilteringRow = false;
            this.ddlClientOrganizations.EditorControl.Name = "NestedRadGridView";
            this.ddlClientOrganizations.EditorControl.ReadOnly = true;
            this.ddlClientOrganizations.EditorControl.ShowGroupPanel = false;
            this.ddlClientOrganizations.EditorControl.Size = new System.Drawing.Size(300, 187);
            this.ddlClientOrganizations.EditorControl.TabIndex = 0;
            this.ddlClientOrganizations.Enabled = false;
            this.ddlClientOrganizations.Location = new System.Drawing.Point(273, 31);
            this.ddlClientOrganizations.Margin = new System.Windows.Forms.Padding(2);
            this.ddlClientOrganizations.Name = "ddlClientOrganizations";
            this.ddlClientOrganizations.Size = new System.Drawing.Size(194, 20);
            this.ddlClientOrganizations.TabIndex = 7;
            this.ddlClientOrganizations.TabStop = false;
            // 
            // btnSelectFile
            // 
            this.btnSelectFile.Location = new System.Drawing.Point(410, 64);
            this.btnSelectFile.Margin = new System.Windows.Forms.Padding(2);
            this.btnSelectFile.Name = "btnSelectFile";
            this.btnSelectFile.Size = new System.Drawing.Size(56, 19);
            this.btnSelectFile.TabIndex = 6;
            this.btnSelectFile.Text = "Select";
            this.btnSelectFile.UseVisualStyleBackColor = true;
            this.btnSelectFile.Click += new System.EventHandler(this.btnSelectFile_Click);
            // 
            // txtFileName
            // 
            this.txtFileName.Location = new System.Drawing.Point(63, 62);
            this.txtFileName.Margin = new System.Windows.Forms.Padding(2);
            this.txtFileName.Name = "txtFileName";
            this.txtFileName.Size = new System.Drawing.Size(332, 20);
            this.txtFileName.TabIndex = 5;
            // 
            // ddlFileTypes
            // 
            this.ddlFileTypes.AutoCompleteDisplayMember = null;
            this.ddlFileTypes.AutoCompleteValueMember = null;
            this.ddlFileTypes.Location = new System.Drawing.Point(63, 32);
            this.ddlFileTypes.Margin = new System.Windows.Forms.Padding(2);
            this.ddlFileTypes.Name = "ddlFileTypes";
            this.ddlFileTypes.Size = new System.Drawing.Size(194, 20);
            this.ddlFileTypes.TabIndex = 4;
            // 
            // label3
            // 
            this.label3.AutoSize = true;
            this.label3.Location = new System.Drawing.Point(5, 66);
            this.label3.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
            this.label3.Name = "label3";
            this.label3.Size = new System.Drawing.Size(57, 13);
            this.label3.TabIndex = 2;
            this.label3.Text = "File Name";
            // 
            // label2
            // 
            this.label2.AutoSize = true;
            this.label2.Location = new System.Drawing.Point(5, 32);
            this.label2.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
            this.label2.Name = "label2";
            this.label2.Size = new System.Drawing.Size(51, 13);
            this.label2.TabIndex = 1;
            this.label2.Text = "File Type";
            // 
            // btnUpload
            // 
            this.btnUpload.Location = new System.Drawing.Point(664, 49);
            this.btnUpload.Margin = new System.Windows.Forms.Padding(2);
            this.btnUpload.Name = "btnUpload";
            this.btnUpload.Size = new System.Drawing.Size(56, 31);
            this.btnUpload.TabIndex = 1;
            this.btnUpload.Text = "Upload";
            this.btnUpload.UseVisualStyleBackColor = true;
            this.btnUpload.Click += new System.EventHandler(this.btnUpload_Click);
            // 
            // btnClose
            // 
            this.btnClose.Location = new System.Drawing.Point(772, 49);
            this.btnClose.Margin = new System.Windows.Forms.Padding(2);
            this.btnClose.Name = "btnClose";
            this.btnClose.Size = new System.Drawing.Size(56, 31);
            this.btnClose.TabIndex = 2;
            this.btnClose.Text = "Close";
            this.btnClose.UseVisualStyleBackColor = true;
            this.btnClose.Click += new System.EventHandler(this.btnClose_Click);
            // 
            // openFileDlg
            // 
            this.openFileDlg.Filter = "Text Files|*.txt|CSV Files|*.csv|All Files|*.*";
            this.openFileDlg.Title = "Select File to add to Database";
        
            // 
            // label4
            // 
            this.label4.Dock = System.Windows.Forms.DockStyle.Top;
            this.label4.Font = new System.Drawing.Font("Microsoft Sans Serif", 10.2F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label4.Location = new System.Drawing.Point(0, 0);
            this.label4.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
            this.label4.Name = "label4";
            this.label4.Size = new System.Drawing.Size(962, 23);
            this.label4.TabIndex = 3;
            this.label4.Text = "Add Import File to Database";
            this.label4.TextAlign = System.Drawing.ContentAlignment.BottomCenter;
            // 
            // gvClientOrgs
            // 
            this.gvClientOrgs.Dock = System.Windows.Forms.DockStyle.Fill;
            this.gvClientOrgs.Location = new System.Drawing.Point(0, 23);
            this.gvClientOrgs.Margin = new System.Windows.Forms.Padding(2);
            // 
            // gvClientOrgs
            // 
            this.gvClientOrgs.MasterTemplate.AllowAddNewRow = false;
            this.gvClientOrgs.MasterTemplate.AllowColumnReorder = false;
            this.gvClientOrgs.MasterTemplate.AllowDeleteRow = false;
            this.gvClientOrgs.MasterTemplate.AllowEditRow = false;
            this.gvClientOrgs.MasterTemplate.AutoSizeColumnsMode = Telerik.WinControls.UI.GridViewAutoSizeColumnsMode.Fill;
            gridViewDecimalColumn1.DataType = typeof(int);
            gridViewDecimalColumn1.FieldName = "ClientOrganizationID";
            gridViewDecimalColumn1.HeaderText = "ClientOrganizationID";
            gridViewDecimalColumn1.IsAutoGenerated = true;
            gridViewDecimalColumn1.Name = "ClientOrganizationID";
            gridViewDecimalColumn1.Width = 79;
            gridViewTextBoxColumn1.FieldName = "Name";
            gridViewTextBoxColumn1.HeaderText = "Name";
            gridViewTextBoxColumn1.IsAutoGenerated = true;
            gridViewTextBoxColumn1.Name = "Name";
            gridViewTextBoxColumn1.Width = 79;
            gridViewTextBoxColumn2.FieldName = "Description";
            gridViewTextBoxColumn2.HeaderText = "Description";
            gridViewTextBoxColumn2.IsAutoGenerated = true;
            gridViewTextBoxColumn2.Name = "Description";
            gridViewTextBoxColumn2.Width = 79;
            gridViewCheckBoxColumn1.FieldName = "CampaignEnabled";
            gridViewCheckBoxColumn1.HeaderText = "CampaignEnabled";
            gridViewCheckBoxColumn1.IsAutoGenerated = true;
            gridViewCheckBoxColumn1.Name = "CampaignEnabled";
            gridViewCheckBoxColumn1.Width = 79;
            gridViewCheckBoxColumn2.FieldName = "Contracted";
            gridViewCheckBoxColumn2.HeaderText = "Contracted";
            gridViewCheckBoxColumn2.IsAutoGenerated = true;
            gridViewCheckBoxColumn2.Name = "Contracted";
            gridViewCheckBoxColumn2.Width = 79;
            gridViewCheckBoxColumn3.FieldName = "LoadInProgress";
            gridViewCheckBoxColumn3.HeaderText = "LoadInProgress";
            gridViewCheckBoxColumn3.IsAutoGenerated = true;
            gridViewCheckBoxColumn3.Name = "LoadInProgress";
            gridViewCheckBoxColumn3.Width = 79;
            gridViewDateTimeColumn1.FieldName = "CommunityLastUpdate";
            gridViewDateTimeColumn1.HeaderText = "CommunityLastUpdate";
            gridViewDateTimeColumn1.IsAutoGenerated = true;
            gridViewDateTimeColumn1.Name = "CommunityLastUpdate";
            gridViewDateTimeColumn1.Width = 79;
            gridViewDateTimeColumn2.FieldName = "EmergencyLastUpdate";
            gridViewDateTimeColumn2.HeaderText = "EmergencyLastUpdate";
            gridViewDateTimeColumn2.IsAutoGenerated = true;
            gridViewDateTimeColumn2.Name = "EmergencyLastUpdate";
            gridViewDateTimeColumn2.Width = 79;
            gridViewDateTimeColumn3.FieldName = "InPatientLastUpdate";
            gridViewDateTimeColumn3.HeaderText = "InPatientLastUpdate";
            gridViewDateTimeColumn3.IsAutoGenerated = true;
            gridViewDateTimeColumn3.Name = "InPatientLastUpdate";
            gridViewDateTimeColumn3.Width = 79;
            gridViewDateTimeColumn4.FieldName = "OutPatientLastUpdate";
            gridViewDateTimeColumn4.HeaderText = "OutPatientLastUpdate";
            gridViewDateTimeColumn4.IsAutoGenerated = true;
            gridViewDateTimeColumn4.Name = "OutPatientLastUpdate";
            gridViewDateTimeColumn4.Width = 79;
            gridViewDecimalColumn2.DataType = typeof(System.Nullable<int>);
            gridViewDecimalColumn2.FieldName = "ParentOrganizationID";
            gridViewDecimalColumn2.HeaderText = "ParentOrganizationID";
            gridViewDecimalColumn2.IsAutoGenerated = true;
            gridViewDecimalColumn2.Name = "ParentOrganizationID";
            gridViewDecimalColumn2.Width = 79;
            gridViewCheckBoxColumn4.FieldName = "Terminated";
            gridViewCheckBoxColumn4.HeaderText = "Terminated";
            gridViewCheckBoxColumn4.IsAutoGenerated = true;
            gridViewCheckBoxColumn4.Name = "Terminated";
            gridViewCheckBoxColumn4.Width = 84;
            this.gvClientOrgs.MasterTemplate.Columns.AddRange(new Telerik.WinControls.UI.GridViewDataColumn[] {
            gridViewDecimalColumn1,
            gridViewTextBoxColumn1,
            gridViewTextBoxColumn2,
            gridViewCheckBoxColumn1,
            gridViewCheckBoxColumn2,
            gridViewCheckBoxColumn3,
            gridViewDateTimeColumn1,
            gridViewDateTimeColumn2,
            gridViewDateTimeColumn3,
            gridViewDateTimeColumn4,
            gridViewDecimalColumn2,
            gridViewCheckBoxColumn4});
            this.gvClientOrgs.MasterTemplate.DataSource = this.clientOrganizationBindingSource;
            this.gvClientOrgs.MasterTemplate.EnableAlternatingRowColor = true;
            this.gvClientOrgs.Name = "gvClientOrgs";
            this.gvClientOrgs.ReadOnly = true;
            this.gvClientOrgs.Size = new System.Drawing.Size(962, 324);
            this.gvClientOrgs.TabIndex = 8;
            this.gvClientOrgs.Text = "radGridView1";
            // 
            // clientOrganizationBindingSource
            // 
            this.clientOrganizationBindingSource.DataSource = typeof(DataPlatform.POCO.ClientOrganization);
            // 
            // radPanel1
            // 
            this.radPanel1.Controls.Add(this.btnClose);
            this.radPanel1.Controls.Add(this.btnSelectFile);
            this.radPanel1.Controls.Add(this.ddlClientOrganizations);
            this.radPanel1.Controls.Add(this.btnUpload);
            this.radPanel1.Controls.Add(this.ddlFileTypes);
            this.radPanel1.Controls.Add(this.txtFileName);
            this.radPanel1.Controls.Add(this.label2);
            this.radPanel1.Controls.Add(this.label3);
            this.radPanel1.Dock = System.Windows.Forms.DockStyle.Bottom;
            this.radPanel1.Location = new System.Drawing.Point(0, 347);
            this.radPanel1.Margin = new System.Windows.Forms.Padding(2);
            this.radPanel1.Name = "radPanel1";
            this.radPanel1.Size = new System.Drawing.Size(962, 99);
            this.radPanel1.TabIndex = 4;
            // 
            // frmAddToDB
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.ClientSize = new System.Drawing.Size(962, 446);
            this.Controls.Add(this.gvClientOrgs);
            this.Controls.Add(this.radPanel1);
            this.Controls.Add(this.label4);
            this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
            this.Margin = new System.Windows.Forms.Padding(2);
            this.Name = "frmAddToDB";
            this.Text = "Add Import File to Database";   
            ((System.ComponentModel.ISupportInitialize)(this.ddlClientOrganizations.EditorControl.MasterTemplate)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.ddlClientOrganizations.EditorControl)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.ddlClientOrganizations)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.ddlFileTypes)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.gvClientOrgs.MasterTemplate)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.gvClientOrgs)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.clientOrganizationBindingSource)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radPanel1)).EndInit();
            this.radPanel1.ResumeLayout(false);
            this.radPanel1.PerformLayout();
            this.ResumeLayout(false);

        }
コード例 #16
0
        /// <summary>
        /// Required method for Designer support - do not modify
        /// the contents of this method with the code editor.
        /// </summary>
        private void InitializeComponent()
        {
            Telerik.WinControls.UI.GridViewCheckBoxColumn gridViewCheckBoxColumn1 = new Telerik.WinControls.UI.GridViewCheckBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn1 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn2 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn3 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn4 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn5 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn6 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn7 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn8 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn9 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn10 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn11 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn12 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            this.radPanelTop = new Telerik.WinControls.UI.RadPanel();
            this.radGroupBoxHead = new Telerik.WinControls.UI.RadGroupBox();
            this.ddl_Section = new Telerik.WinControls.UI.RadDropDownList();
            this.txtDocNumber = new Telerik.WinControls.UI.RadTextBox();
            this.txt_DocDate = new Telerik.WinControls.UI.RadTextBox();
            this.txt_DocId = new Telerik.WinControls.UI.RadTextBox();
            this.txt_EmpId = new Telerik.WinControls.UI.RadTextBox();
            this.rdb_EmpId = new Telerik.WinControls.UI.RadRadioButton();
            this.radLabel1 = new Telerik.WinControls.UI.RadLabel();
            this.btnserch = new Telerik.WinControls.UI.RadButton();
            this.dt_To = new Telerik.WinControls.UI.RadDateTimePicker();
            this.radLabel2 = new Telerik.WinControls.UI.RadLabel();
            this.dt_From = new Telerik.WinControls.UI.RadDateTimePicker();
            this.rdb_Section = new Telerik.WinControls.UI.RadRadioButton();
            this.rdb_DocId = new Telerik.WinControls.UI.RadRadioButton();
            this.btnSave = new Telerik.WinControls.UI.RadButton();
            this.radPanelRight = new Telerik.WinControls.UI.RadPanel();
            this.radPanelGridView = new Telerik.WinControls.UI.RadPanel();
            this.radGroupBox1 = new Telerik.WinControls.UI.RadGroupBox();
            this.rgv_ApproveMN = new Telerik.WinControls.UI.RadGridView();
            this.radPanel1 = new Telerik.WinControls.UI.RadPanel();
            this.radButtonUnChechAll = new Telerik.WinControls.UI.RadButton();
            this.radButtonCheckAll = new Telerik.WinControls.UI.RadButton();
            ((System.ComponentModel.ISupportInitialize)(this.radPanelTop)).BeginInit();
            this.radPanelTop.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.radGroupBoxHead)).BeginInit();
            this.radGroupBoxHead.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.ddl_Section)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.txtDocNumber)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.txt_DocDate)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.txt_DocId)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.txt_EmpId)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.rdb_EmpId)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.btnserch)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.dt_To)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel2)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.dt_From)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.rdb_Section)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.rdb_DocId)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.btnSave)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radPanelRight)).BeginInit();
            this.radPanelRight.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.radPanelGridView)).BeginInit();
            this.radPanelGridView.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.radGroupBox1)).BeginInit();
            this.radGroupBox1.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.rgv_ApproveMN)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.rgv_ApproveMN.MasterTemplate)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radPanel1)).BeginInit();
            this.radPanel1.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.radButtonUnChechAll)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radButtonCheckAll)).BeginInit();
            this.SuspendLayout();
            // 
            // radPanelTop
            // 
            this.radPanelTop.Controls.Add(this.radGroupBoxHead);
            this.radPanelTop.Dock = System.Windows.Forms.DockStyle.Top;
            this.radPanelTop.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(222)));
            this.radPanelTop.Location = new System.Drawing.Point(0, 0);
            this.radPanelTop.Margin = new System.Windows.Forms.Padding(4);
            this.radPanelTop.Name = "radPanelTop";
            this.radPanelTop.Size = new System.Drawing.Size(784, 144);
            this.radPanelTop.TabIndex = 0;
            // 
            // radGroupBoxHead
            // 
            this.radGroupBoxHead.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
            this.radGroupBoxHead.Controls.Add(this.ddl_Section);
            this.radGroupBoxHead.Controls.Add(this.txtDocNumber);
            this.radGroupBoxHead.Controls.Add(this.txt_DocDate);
            this.radGroupBoxHead.Controls.Add(this.txt_DocId);
            this.radGroupBoxHead.Controls.Add(this.txt_EmpId);
            this.radGroupBoxHead.Controls.Add(this.rdb_EmpId);
            this.radGroupBoxHead.Controls.Add(this.radLabel1);
            this.radGroupBoxHead.Controls.Add(this.btnserch);
            this.radGroupBoxHead.Controls.Add(this.dt_To);
            this.radGroupBoxHead.Controls.Add(this.radLabel2);
            this.radGroupBoxHead.Controls.Add(this.dt_From);
            this.radGroupBoxHead.Controls.Add(this.rdb_Section);
            this.radGroupBoxHead.Controls.Add(this.rdb_DocId);
            this.radGroupBoxHead.Dock = System.Windows.Forms.DockStyle.Top;
            this.radGroupBoxHead.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(222)));
            this.radGroupBoxHead.HeaderText = "ค้นหาข้อมูล";
            this.radGroupBoxHead.Location = new System.Drawing.Point(0, 0);
            this.radGroupBoxHead.Margin = new System.Windows.Forms.Padding(4);
            this.radGroupBoxHead.Name = "radGroupBoxHead";
            this.radGroupBoxHead.Padding = new System.Windows.Forms.Padding(3, 22, 3, 2);
            // 
            // 
            // 
            this.radGroupBoxHead.RootElement.Padding = new System.Windows.Forms.Padding(3, 22, 3, 2);
            this.radGroupBoxHead.Size = new System.Drawing.Size(784, 138);
            this.radGroupBoxHead.TabIndex = 0;
            this.radGroupBoxHead.Text = "ค้นหาข้อมูล";
            // 
            // ddl_Section
            // 
            this.ddl_Section.DefaultItemsCountInDropDown = 15;
            this.ddl_Section.Font = new System.Drawing.Font("Tahoma", 9.75F);
            this.ddl_Section.Location = new System.Drawing.Point(128, 26);
            this.ddl_Section.Name = "ddl_Section";
            this.ddl_Section.Size = new System.Drawing.Size(250, 21);
            this.ddl_Section.TabIndex = 65;
            // 
            // txtDocNumber
            // 
            this.txtDocNumber.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(222)));
            this.txtDocNumber.Location = new System.Drawing.Point(244, 78);
            this.txtDocNumber.Margin = new System.Windows.Forms.Padding(4);
            this.txtDocNumber.MaxLength = 4;
            this.txtDocNumber.Name = "txtDocNumber";
            this.txtDocNumber.Size = new System.Drawing.Size(47, 20);
            this.txtDocNumber.TabIndex = 64;
            this.txtDocNumber.TabStop = false;
            // 
            // txt_DocDate
            // 
            this.txt_DocDate.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(222)));
            this.txt_DocDate.Location = new System.Drawing.Point(176, 78);
            this.txt_DocDate.Margin = new System.Windows.Forms.Padding(4);
            this.txt_DocDate.MaxLength = 6;
            this.txt_DocDate.Name = "txt_DocDate";
            this.txt_DocDate.Size = new System.Drawing.Size(60, 20);
            this.txt_DocDate.TabIndex = 63;
            this.txt_DocDate.TabStop = false;
            // 
            // txt_DocId
            // 
            this.txt_DocId.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(222)));
            this.txt_DocId.Location = new System.Drawing.Point(128, 78);
            this.txt_DocId.Margin = new System.Windows.Forms.Padding(4);
            this.txt_DocId.MaxLength = 3;
            this.txt_DocId.Name = "txt_DocId";
            this.txt_DocId.ReadOnly = true;
            this.txt_DocId.Size = new System.Drawing.Size(40, 20);
            this.txt_DocId.TabIndex = 62;
            this.txt_DocId.TabStop = false;
            this.txt_DocId.Text = "OUT";
            // 
            // txt_EmpId
            // 
            this.txt_EmpId.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(222)));
            this.txt_EmpId.Location = new System.Drawing.Point(128, 51);
            this.txt_EmpId.Margin = new System.Windows.Forms.Padding(4);
            this.txt_EmpId.Name = "txt_EmpId";
            this.txt_EmpId.Size = new System.Drawing.Size(250, 20);
            this.txt_EmpId.TabIndex = 53;
            this.txt_EmpId.TabStop = false;
            // 
            // rdb_EmpId
            // 
            this.rdb_EmpId.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(222)));
            this.rdb_EmpId.Location = new System.Drawing.Point(16, 52);
            this.rdb_EmpId.Margin = new System.Windows.Forms.Padding(4);
            this.rdb_EmpId.Name = "rdb_EmpId";
            this.rdb_EmpId.Size = new System.Drawing.Size(85, 18);
            this.rdb_EmpId.TabIndex = 52;
            this.rdb_EmpId.Text = "รหัสพนักงาน";
            // 
            // radLabel1
            // 
            this.radLabel1.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(222)));
            this.radLabel1.Location = new System.Drawing.Point(386, 26);
            this.radLabel1.Margin = new System.Windows.Forms.Padding(4);
            this.radLabel1.Name = "radLabel1";
            this.radLabel1.Size = new System.Drawing.Size(23, 18);
            this.radLabel1.TabIndex = 58;
            this.radLabel1.Text = "เริ่ม";
            // 
            // btnserch
            // 
            this.btnserch.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(222)));
            this.btnserch.Location = new System.Drawing.Point(16, 104);
            this.btnserch.Margin = new System.Windows.Forms.Padding(4);
            this.btnserch.Name = "btnserch";
            this.btnserch.Size = new System.Drawing.Size(100, 25);
            this.btnserch.TabIndex = 59;
            this.btnserch.Text = "ค้นหา";
            // 
            // dt_To
            // 
            this.dt_To.CustomFormat = "yyyy-MM-dd";
            this.dt_To.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(222)));
            this.dt_To.Format = System.Windows.Forms.DateTimePickerFormat.Custom;
            this.dt_To.Location = new System.Drawing.Point(580, 26);
            this.dt_To.Margin = new System.Windows.Forms.Padding(4);
            this.dt_To.Name = "dt_To";
            this.dt_To.Size = new System.Drawing.Size(87, 20);
            this.dt_To.TabIndex = 51;
            this.dt_To.TabStop = false;
            this.dt_To.Text = "2014-02-13";
            this.dt_To.Value = new System.DateTime(2014, 2, 13, 10, 1, 20, 739);
            // 
            // radLabel2
            // 
            this.radLabel2.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(222)));
            this.radLabel2.Location = new System.Drawing.Point(552, 28);
            this.radLabel2.Margin = new System.Windows.Forms.Padding(4);
            this.radLabel2.Name = "radLabel2";
            this.radLabel2.Size = new System.Drawing.Size(20, 18);
            this.radLabel2.TabIndex = 54;
            this.radLabel2.Text = "ถึง";
            // 
            // dt_From
            // 
            this.dt_From.CustomFormat = "yyyy-MM-dd";
            this.dt_From.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(222)));
            this.dt_From.Format = System.Windows.Forms.DateTimePickerFormat.Custom;
            this.dt_From.Location = new System.Drawing.Point(417, 26);
            this.dt_From.Margin = new System.Windows.Forms.Padding(4);
            this.dt_From.Name = "dt_From";
            this.dt_From.Size = new System.Drawing.Size(87, 20);
            this.dt_From.TabIndex = 50;
            this.dt_From.TabStop = false;
            this.dt_From.Text = "2014-02-13";
            this.dt_From.Value = new System.DateTime(2014, 2, 13, 10, 1, 9, 724);
            // 
            // rdb_Section
            // 
            this.rdb_Section.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(222)));
            this.rdb_Section.Location = new System.Drawing.Point(16, 26);
            this.rdb_Section.Margin = new System.Windows.Forms.Padding(4);
            this.rdb_Section.Name = "rdb_Section";
            this.rdb_Section.Size = new System.Drawing.Size(51, 18);
            this.rdb_Section.TabIndex = 48;
            this.rdb_Section.TabStop = true;
            this.rdb_Section.Text = "แผนก";
            this.rdb_Section.ToggleState = Telerik.WinControls.Enumerations.ToggleState.On;
            // 
            // rdb_DocId
            // 
            this.rdb_DocId.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(222)));
            this.rdb_DocId.Location = new System.Drawing.Point(16, 78);
            this.rdb_DocId.Margin = new System.Windows.Forms.Padding(4);
            this.rdb_DocId.Name = "rdb_DocId";
            this.rdb_DocId.Size = new System.Drawing.Size(106, 18);
            this.rdb_DocId.TabIndex = 57;
            this.rdb_DocId.Text = "เลขที่ใบออกนอก";
            // 
            // btnSave
            // 
            this.btnSave.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(222)));
            this.btnSave.Location = new System.Drawing.Point(5, 7);
            this.btnSave.Margin = new System.Windows.Forms.Padding(4);
            this.btnSave.Name = "btnSave";
            this.btnSave.Size = new System.Drawing.Size(128, 30);
            this.btnSave.TabIndex = 13;
            this.btnSave.Text = "บันทึก";
            // 
            // radPanelRight
            // 
            this.radPanelRight.Controls.Add(this.btnSave);
            this.radPanelRight.Dock = System.Windows.Forms.DockStyle.Right;
            this.radPanelRight.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(222)));
            this.radPanelRight.Location = new System.Drawing.Point(640, 144);
            this.radPanelRight.Margin = new System.Windows.Forms.Padding(4);
            this.radPanelRight.Name = "radPanelRight";
            this.radPanelRight.Size = new System.Drawing.Size(144, 417);
            this.radPanelRight.TabIndex = 3;
            // 
            // radPanelGridView
            // 
            this.radPanelGridView.Controls.Add(this.radGroupBox1);
            this.radPanelGridView.Controls.Add(this.radPanel1);
            this.radPanelGridView.Dock = System.Windows.Forms.DockStyle.Fill;
            this.radPanelGridView.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(222)));
            this.radPanelGridView.Location = new System.Drawing.Point(0, 144);
            this.radPanelGridView.Margin = new System.Windows.Forms.Padding(4);
            this.radPanelGridView.Name = "radPanelGridView";
            this.radPanelGridView.Size = new System.Drawing.Size(640, 417);
            this.radPanelGridView.TabIndex = 4;
            // 
            // radGroupBox1
            // 
            this.radGroupBox1.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
            this.radGroupBox1.Controls.Add(this.rgv_ApproveMN);
            this.radGroupBox1.Dock = System.Windows.Forms.DockStyle.Fill;
            this.radGroupBox1.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(222)));
            this.radGroupBox1.HeaderText = "";
            this.radGroupBox1.Location = new System.Drawing.Point(0, 37);
            this.radGroupBox1.Name = "radGroupBox1";
            // 
            // 
            // 
            this.radGroupBox1.RootElement.Padding = new System.Windows.Forms.Padding(2, 18, 2, 2);
            this.radGroupBox1.Size = new System.Drawing.Size(640, 380);
            this.radGroupBox1.TabIndex = 16;
            // 
            // rgv_ApproveMN
            // 
            this.rgv_ApproveMN.Dock = System.Windows.Forms.DockStyle.Fill;
            this.rgv_ApproveMN.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(222)));
            this.rgv_ApproveMN.Location = new System.Drawing.Point(2, 18);
            this.rgv_ApproveMN.Margin = new System.Windows.Forms.Padding(4);
            // 
            // rgv_ApproveMN
            // 
            gridViewCheckBoxColumn1.HeaderText = "";
            gridViewCheckBoxColumn1.Name = "CHECK";
            gridViewCheckBoxColumn1.Width = 20;
            gridViewTextBoxColumn1.FieldName = "DocId";
            gridViewTextBoxColumn1.HeaderText = "เลขที่เอกสาร";
            gridViewTextBoxColumn1.Name = "DocId";
            gridViewTextBoxColumn1.ReadOnly = true;
            gridViewTextBoxColumn2.FieldName = "OutOfficeId";
            gridViewTextBoxColumn2.HeaderText = "ลำดับ";
            gridViewTextBoxColumn2.Name = "OutOfficeId";
            gridViewTextBoxColumn2.ReadOnly = true;
            gridViewTextBoxColumn2.Width = 20;
            gridViewTextBoxColumn3.FieldName = "EmplId";
            gridViewTextBoxColumn3.HeaderText = "รหัสพนักงาน";
            gridViewTextBoxColumn3.Name = "EmplId";
            gridViewTextBoxColumn3.ReadOnly = true;
            gridViewTextBoxColumn4.FieldName = "EmplFullName";
            gridViewTextBoxColumn4.HeaderText = "ชื่อ-สกุล";
            gridViewTextBoxColumn4.Name = "EmplFullName";
            gridViewTextBoxColumn4.ReadOnly = true;
            gridViewTextBoxColumn5.FieldName = "Dimention";
            gridViewTextBoxColumn5.HeaderText = "แผนก";
            gridViewTextBoxColumn5.Name = "Dimention";
            gridViewTextBoxColumn5.ReadOnly = true;
            gridViewTextBoxColumn6.FieldName = "Dept";
            gridViewTextBoxColumn6.HeaderText = "ตำแหน่ง";
            gridViewTextBoxColumn6.Name = "Dept";
            gridViewTextBoxColumn6.ReadOnly = true;
            gridViewTextBoxColumn7.FieldName = "ShiftId";
            gridViewTextBoxColumn7.HeaderText = "รหัสกะ";
            gridViewTextBoxColumn7.Name = "ShiftId";
            gridViewTextBoxColumn7.ReadOnly = true;
            gridViewTextBoxColumn8.FieldName = "StartTime";
            gridViewTextBoxColumn8.HeaderText = "เริ่มทำ";
            gridViewTextBoxColumn8.Name = "StartTime";
            gridViewTextBoxColumn8.ReadOnly = true;
            gridViewTextBoxColumn9.FieldName = "EndTime";
            gridViewTextBoxColumn9.HeaderText = "สิ้นสุด";
            gridViewTextBoxColumn9.Name = "EndTime";
            gridViewTextBoxColumn9.ReadOnly = true;
            gridViewTextBoxColumn10.FieldName = "OutType";
            gridViewTextBoxColumn10.HeaderText = "ออกนอก";
            gridViewTextBoxColumn10.Name = "OutType";
            gridViewTextBoxColumn10.ReadOnly = true;
            gridViewTextBoxColumn11.FieldName = "CombackType";
            gridViewTextBoxColumn11.HeaderText = "กลับเข้ามา";
            gridViewTextBoxColumn11.Name = "CombackType";
            gridViewTextBoxColumn11.ReadOnly = true;
            gridViewTextBoxColumn12.FieldName = "HrApprovedOutDateTime";
            gridViewTextBoxColumn12.HeaderText = "เวลาออก";
            gridViewTextBoxColumn12.Name = "HrApprovedOutDateTime";
            gridViewTextBoxColumn12.ReadOnly = true;
            this.rgv_ApproveMN.MasterTemplate.Columns.AddRange(new Telerik.WinControls.UI.GridViewDataColumn[] {
            gridViewCheckBoxColumn1,
            gridViewTextBoxColumn1,
            gridViewTextBoxColumn2,
            gridViewTextBoxColumn3,
            gridViewTextBoxColumn4,
            gridViewTextBoxColumn5,
            gridViewTextBoxColumn6,
            gridViewTextBoxColumn7,
            gridViewTextBoxColumn8,
            gridViewTextBoxColumn9,
            gridViewTextBoxColumn10,
            gridViewTextBoxColumn11,
            gridViewTextBoxColumn12});
            this.rgv_ApproveMN.Name = "rgv_ApproveMN";
            this.rgv_ApproveMN.Size = new System.Drawing.Size(636, 360);
            this.rgv_ApproveMN.TabIndex = 1;
            this.rgv_ApproveMN.Text = "radGridView1";
            // 
            // radPanel1
            // 
            this.radPanel1.Controls.Add(this.radButtonUnChechAll);
            this.radPanel1.Controls.Add(this.radButtonCheckAll);
            this.radPanel1.Dock = System.Windows.Forms.DockStyle.Top;
            this.radPanel1.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(222)));
            this.radPanel1.Location = new System.Drawing.Point(0, 0);
            this.radPanel1.Name = "radPanel1";
            this.radPanel1.Size = new System.Drawing.Size(640, 37);
            this.radPanel1.TabIndex = 15;
            // 
            // radButtonUnChechAll
            // 
            this.radButtonUnChechAll.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(222)));
            this.radButtonUnChechAll.Location = new System.Drawing.Point(105, 8);
            this.radButtonUnChechAll.Margin = new System.Windows.Forms.Padding(4);
            this.radButtonUnChechAll.Name = "radButtonUnChechAll";
            this.radButtonUnChechAll.Size = new System.Drawing.Size(92, 23);
            this.radButtonUnChechAll.TabIndex = 15;
            this.radButtonUnChechAll.Text = "UnCheckAll";
            this.radButtonUnChechAll.Click += new System.EventHandler(this.radButtonUnChechAll_Click);
            // 
            // radButtonCheckAll
            // 
            this.radButtonCheckAll.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(222)));
            this.radButtonCheckAll.Location = new System.Drawing.Point(13, 8);
            this.radButtonCheckAll.Margin = new System.Windows.Forms.Padding(4);
            this.radButtonCheckAll.Name = "radButtonCheckAll";
            this.radButtonCheckAll.Size = new System.Drawing.Size(84, 23);
            this.radButtonCheckAll.TabIndex = 14;
            this.radButtonCheckAll.Text = "CheckAll";
            this.radButtonCheckAll.Click += new System.EventHandler(this.radButtonCheckAll_Click);
            // 
            // FormMNApproveIn
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 16F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.AutoScroll = true;
            this.ClientSize = new System.Drawing.Size(784, 561);
            this.Controls.Add(this.radPanelGridView);
            this.Controls.Add(this.radPanelRight);
            this.Controls.Add(this.radPanelTop);
            this.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(222)));
            this.Margin = new System.Windows.Forms.Padding(4);
            this.Name = "FormMNApproveIn";
            this.Text = "ลงเวลากลับ(มินิมาร์ท)";
            this.Load += new System.EventHandler(this.FormMNApproveIn_Load);
            ((System.ComponentModel.ISupportInitialize)(this.radPanelTop)).EndInit();
            this.radPanelTop.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.radGroupBoxHead)).EndInit();
            this.radGroupBoxHead.ResumeLayout(false);
            this.radGroupBoxHead.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.ddl_Section)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.txtDocNumber)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.txt_DocDate)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.txt_DocId)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.txt_EmpId)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.rdb_EmpId)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.btnserch)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.dt_To)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel2)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.dt_From)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.rdb_Section)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.rdb_DocId)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.btnSave)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radPanelRight)).EndInit();
            this.radPanelRight.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.radPanelGridView)).EndInit();
            this.radPanelGridView.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.radGroupBox1)).EndInit();
            this.radGroupBox1.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.rgv_ApproveMN.MasterTemplate)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.rgv_ApproveMN)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radPanel1)).EndInit();
            this.radPanel1.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.radButtonUnChechAll)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radButtonCheckAll)).EndInit();
            this.ResumeLayout(false);

        }
コード例 #17
0
        /// <summary>
        /// Required method for Designer support - do not modify
        /// the contents of this method with the code editor.
        /// </summary>
        private void InitializeComponent()
        {
            this.components = new System.ComponentModel.Container();
            System.Windows.Forms.Label customerIDLabel;
            System.Windows.Forms.Label companyNameLabel;
            System.Windows.Forms.Label contactNameLabel;
            System.Windows.Forms.Label contactTitleLabel;
            System.Windows.Forms.Label addressLabel;
            System.Windows.Forms.Label cityLabel;
            System.Windows.Forms.Label regionLabel;
            System.Windows.Forms.Label postalCodeLabel;
            System.Windows.Forms.Label countryLabel;
            System.Windows.Forms.Label phoneLabel;
            System.Windows.Forms.Label faxLabel;
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(CustomerForm));
            Telerik.WinControls.UI.GridViewTextBoxColumn   gridViewTextBoxColumn1  = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn   gridViewTextBoxColumn2  = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn   gridViewTextBoxColumn3  = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn   gridViewTextBoxColumn4  = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn   gridViewTextBoxColumn5  = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn   gridViewTextBoxColumn6  = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn   gridViewTextBoxColumn7  = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn   gridViewTextBoxColumn8  = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn   gridViewTextBoxColumn9  = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn   gridViewTextBoxColumn10 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn   gridViewTextBoxColumn11 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewCheckBoxColumn  gridViewCheckBoxColumn1 = new Telerik.WinControls.UI.GridViewCheckBoxColumn();
            this.nwindRadGridView                 = new Telerik.Examples.WinControls.DataSources.NorthwindDataSet();
            this.customersBindingSource           = new System.Windows.Forms.BindingSource(this.components);
            this.customersTableAdapter            = new Telerik.Examples.WinControls.DataSources.NorthwindDataSetTableAdapters.CustomersTableAdapter();
            this.customersBindingNavigator        = new System.Windows.Forms.BindingNavigator(this.components);
            this.bindingNavigatorCountItem        = new System.Windows.Forms.ToolStripLabel();
            this.bindingNavigatorMoveFirstItem    = new System.Windows.Forms.ToolStripButton();
            this.bindingNavigatorMovePreviousItem = new System.Windows.Forms.ToolStripButton();
            this.bindingNavigatorSeparator        = new System.Windows.Forms.ToolStripSeparator();
            this.bindingNavigatorPositionItem     = new System.Windows.Forms.ToolStripTextBox();
            this.bindingNavigatorSeparator1       = new System.Windows.Forms.ToolStripSeparator();
            this.bindingNavigatorMoveNextItem     = new System.Windows.Forms.ToolStripButton();
            this.bindingNavigatorMoveLastItem     = new System.Windows.Forms.ToolStripButton();
            this.bindingNavigatorSeparator2       = new System.Windows.Forms.ToolStripSeparator();
            this.customerIDTextBox                = new System.Windows.Forms.TextBox();
            this.companyNameTextBox               = new System.Windows.Forms.TextBox();
            this.contactNameTextBox               = new System.Windows.Forms.TextBox();
            this.contactTitleTextBox              = new System.Windows.Forms.TextBox();
            this.addressTextBox    = new System.Windows.Forms.TextBox();
            this.cityTextBox       = new System.Windows.Forms.TextBox();
            this.regionTextBox     = new System.Windows.Forms.TextBox();
            this.postalCodeTextBox = new System.Windows.Forms.TextBox();
            this.countryTextBox    = new System.Windows.Forms.TextBox();
            this.phoneTextBox      = new System.Windows.Forms.TextBox();
            this.faxTextBox        = new System.Windows.Forms.TextBox();
            this.radGridView1      = new Telerik.WinControls.UI.RadGridView();
            customerIDLabel        = new System.Windows.Forms.Label();
            companyNameLabel       = new System.Windows.Forms.Label();
            contactNameLabel       = new System.Windows.Forms.Label();
            contactTitleLabel      = new System.Windows.Forms.Label();
            addressLabel           = new System.Windows.Forms.Label();
            cityLabel       = new System.Windows.Forms.Label();
            regionLabel     = new System.Windows.Forms.Label();
            postalCodeLabel = new System.Windows.Forms.Label();
            countryLabel    = new System.Windows.Forms.Label();
            phoneLabel      = new System.Windows.Forms.Label();
            faxLabel        = new System.Windows.Forms.Label();
            ((System.ComponentModel.ISupportInitialize)(this.nwindRadGridView)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.customersBindingSource)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.customersBindingNavigator)).BeginInit();
            this.customersBindingNavigator.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.radGridView1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radGridView1.MasterTemplate)).BeginInit();
            this.SuspendLayout();
            //
            // customerIDLabel
            //
            customerIDLabel.AutoSize = true;
            customerIDLabel.Location = new System.Drawing.Point(26, 330);
            customerIDLabel.Name     = "customerIDLabel";
            customerIDLabel.Size     = new System.Drawing.Size(68, 13);
            customerIDLabel.TabIndex = 2;
            customerIDLabel.Text     = "Customer ID:";
            //
            // companyNameLabel
            //
            companyNameLabel.AutoSize = true;
            companyNameLabel.Location = new System.Drawing.Point(9, 356);
            companyNameLabel.Name     = "companyNameLabel";
            companyNameLabel.Size     = new System.Drawing.Size(85, 13);
            companyNameLabel.TabIndex = 4;
            companyNameLabel.Text     = "Company Name:";
            //
            // contactNameLabel
            //
            contactNameLabel.AutoSize = true;
            contactNameLabel.Location = new System.Drawing.Point(16, 382);
            contactNameLabel.Name     = "contactNameLabel";
            contactNameLabel.Size     = new System.Drawing.Size(78, 13);
            contactNameLabel.TabIndex = 6;
            contactNameLabel.Text     = "Contact Name:";
            //
            // contactTitleLabel
            //
            contactTitleLabel.AutoSize = true;
            contactTitleLabel.Location = new System.Drawing.Point(24, 408);
            contactTitleLabel.Name     = "contactTitleLabel";
            contactTitleLabel.Size     = new System.Drawing.Size(70, 13);
            contactTitleLabel.TabIndex = 8;
            contactTitleLabel.Text     = "Contact Title:";
            //
            // addressLabel
            //
            addressLabel.AutoSize = true;
            addressLabel.Location = new System.Drawing.Point(296, 330);
            addressLabel.Name     = "addressLabel";
            addressLabel.Size     = new System.Drawing.Size(48, 13);
            addressLabel.TabIndex = 10;
            addressLabel.Text     = "Address:";
            //
            // cityLabel
            //
            cityLabel.AutoSize = true;
            cityLabel.Location = new System.Drawing.Point(67, 434);
            cityLabel.Name     = "cityLabel";
            cityLabel.Size     = new System.Drawing.Size(27, 13);
            cityLabel.TabIndex = 12;
            cityLabel.Text     = "City:";
            //
            // regionLabel
            //
            regionLabel.AutoSize = true;
            regionLabel.Location = new System.Drawing.Point(300, 408);
            regionLabel.Name     = "regionLabel";
            regionLabel.Size     = new System.Drawing.Size(44, 13);
            regionLabel.TabIndex = 14;
            regionLabel.Text     = "Region:";
            //
            // postalCodeLabel
            //
            postalCodeLabel.AutoSize = true;
            postalCodeLabel.Location = new System.Drawing.Point(27, 460);
            postalCodeLabel.Name     = "postalCodeLabel";
            postalCodeLabel.Size     = new System.Drawing.Size(67, 13);
            postalCodeLabel.TabIndex = 16;
            postalCodeLabel.Text     = "Postal Code:";
            //
            // countryLabel
            //
            countryLabel.AutoSize = true;
            countryLabel.Location = new System.Drawing.Point(298, 434);
            countryLabel.Name     = "countryLabel";
            countryLabel.Size     = new System.Drawing.Size(46, 13);
            countryLabel.TabIndex = 18;
            countryLabel.Text     = "Country:";
            //
            // phoneLabel
            //
            phoneLabel.AutoSize = true;
            phoneLabel.Location = new System.Drawing.Point(303, 356);
            phoneLabel.Name     = "phoneLabel";
            phoneLabel.Size     = new System.Drawing.Size(41, 13);
            phoneLabel.TabIndex = 20;
            phoneLabel.Text     = "Phone:";
            //
            // faxLabel
            //
            faxLabel.AutoSize = true;
            faxLabel.Location = new System.Drawing.Point(317, 382);
            faxLabel.Name     = "faxLabel";
            faxLabel.Size     = new System.Drawing.Size(27, 13);
            faxLabel.TabIndex = 22;
            faxLabel.Text     = "Fax:";
            //
            // nwindRadGridView
            //
            this.nwindRadGridView.DataSetName             = "NwindRadGridView";
            this.nwindRadGridView.SchemaSerializationMode = System.Data.SchemaSerializationMode.IncludeSchema;
            //
            // customersBindingSource
            //
            this.customersBindingSource.DataMember = "Customers";
            this.customersBindingSource.DataSource = this.nwindRadGridView;
            //
            // customersTableAdapter
            //
            this.customersTableAdapter.ClearBeforeFill = true;
            //
            // customersBindingNavigator
            //
            this.customersBindingNavigator.AddNewItem    = null;
            this.customersBindingNavigator.BindingSource = this.customersBindingSource;
            this.customersBindingNavigator.CountItem     = this.bindingNavigatorCountItem;
            this.customersBindingNavigator.DeleteItem    = null;
            this.customersBindingNavigator.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
                this.bindingNavigatorMoveFirstItem,
                this.bindingNavigatorMovePreviousItem,
                this.bindingNavigatorSeparator,
                this.bindingNavigatorPositionItem,
                this.bindingNavigatorCountItem,
                this.bindingNavigatorSeparator1,
                this.bindingNavigatorMoveNextItem,
                this.bindingNavigatorMoveLastItem,
                this.bindingNavigatorSeparator2
            });
            this.customersBindingNavigator.Location         = new System.Drawing.Point(0, 0);
            this.customersBindingNavigator.MoveFirstItem    = this.bindingNavigatorMoveFirstItem;
            this.customersBindingNavigator.MoveLastItem     = this.bindingNavigatorMoveLastItem;
            this.customersBindingNavigator.MoveNextItem     = this.bindingNavigatorMoveNextItem;
            this.customersBindingNavigator.MovePreviousItem = this.bindingNavigatorMovePreviousItem;
            this.customersBindingNavigator.Name             = "customersBindingNavigator";
            this.customersBindingNavigator.PositionItem     = this.bindingNavigatorPositionItem;
            this.customersBindingNavigator.Size             = new System.Drawing.Size(601, 25);
            this.customersBindingNavigator.TabIndex         = 0;
            this.customersBindingNavigator.Text             = "bindingNavigator1";
            //
            // bindingNavigatorCountItem
            //
            this.bindingNavigatorCountItem.Name        = "bindingNavigatorCountItem";
            this.bindingNavigatorCountItem.Size        = new System.Drawing.Size(35, 22);
            this.bindingNavigatorCountItem.Text        = "of {0}";
            this.bindingNavigatorCountItem.ToolTipText = "Total number of items";
            //
            // bindingNavigatorMoveFirstItem
            //
            this.bindingNavigatorMoveFirstItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
            this.bindingNavigatorMoveFirstItem.Image        = ((System.Drawing.Image)(resources.GetObject("bindingNavigatorMoveFirstItem.Image")));
            this.bindingNavigatorMoveFirstItem.Name         = "bindingNavigatorMoveFirstItem";
            this.bindingNavigatorMoveFirstItem.RightToLeftAutoMirrorImage = true;
            this.bindingNavigatorMoveFirstItem.Size = new System.Drawing.Size(23, 22);
            this.bindingNavigatorMoveFirstItem.Text = "Move first";
            //
            // bindingNavigatorMovePreviousItem
            //
            this.bindingNavigatorMovePreviousItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
            this.bindingNavigatorMovePreviousItem.Image        = ((System.Drawing.Image)(resources.GetObject("bindingNavigatorMovePreviousItem.Image")));
            this.bindingNavigatorMovePreviousItem.Name         = "bindingNavigatorMovePreviousItem";
            this.bindingNavigatorMovePreviousItem.RightToLeftAutoMirrorImage = true;
            this.bindingNavigatorMovePreviousItem.Size = new System.Drawing.Size(23, 22);
            this.bindingNavigatorMovePreviousItem.Text = "Move previous";
            //
            // bindingNavigatorSeparator
            //
            this.bindingNavigatorSeparator.Name = "bindingNavigatorSeparator";
            this.bindingNavigatorSeparator.Size = new System.Drawing.Size(6, 25);
            //
            // bindingNavigatorPositionItem
            //
            this.bindingNavigatorPositionItem.AccessibleName = "Position";
            this.bindingNavigatorPositionItem.AutoSize       = false;
            this.bindingNavigatorPositionItem.Name           = "bindingNavigatorPositionItem";
            this.bindingNavigatorPositionItem.Size           = new System.Drawing.Size(50, 23);
            this.bindingNavigatorPositionItem.Text           = "0";
            this.bindingNavigatorPositionItem.ToolTipText    = "Current position";
            //
            // bindingNavigatorSeparator1
            //
            this.bindingNavigatorSeparator1.Name = "bindingNavigatorSeparator1";
            this.bindingNavigatorSeparator1.Size = new System.Drawing.Size(6, 25);
            //
            // bindingNavigatorMoveNextItem
            //
            this.bindingNavigatorMoveNextItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
            this.bindingNavigatorMoveNextItem.Image        = ((System.Drawing.Image)(resources.GetObject("bindingNavigatorMoveNextItem.Image")));
            this.bindingNavigatorMoveNextItem.Name         = "bindingNavigatorMoveNextItem";
            this.bindingNavigatorMoveNextItem.RightToLeftAutoMirrorImage = true;
            this.bindingNavigatorMoveNextItem.Size = new System.Drawing.Size(23, 22);
            this.bindingNavigatorMoveNextItem.Text = "Move next";
            //
            // bindingNavigatorMoveLastItem
            //
            this.bindingNavigatorMoveLastItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
            this.bindingNavigatorMoveLastItem.Image        = ((System.Drawing.Image)(resources.GetObject("bindingNavigatorMoveLastItem.Image")));
            this.bindingNavigatorMoveLastItem.Name         = "bindingNavigatorMoveLastItem";
            this.bindingNavigatorMoveLastItem.RightToLeftAutoMirrorImage = true;
            this.bindingNavigatorMoveLastItem.Size = new System.Drawing.Size(23, 22);
            this.bindingNavigatorMoveLastItem.Text = "Move last";
            //
            // bindingNavigatorSeparator2
            //
            this.bindingNavigatorSeparator2.Name = "bindingNavigatorSeparator2";
            this.bindingNavigatorSeparator2.Size = new System.Drawing.Size(6, 25);
            //
            // customerIDTextBox
            //
            this.customerIDTextBox.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.customersBindingSource, "CustomerID", true));
            this.customerIDTextBox.Location = new System.Drawing.Point(100, 327);
            this.customerIDTextBox.Name     = "customerIDTextBox";
            this.customerIDTextBox.Size     = new System.Drawing.Size(157, 20);
            this.customerIDTextBox.TabIndex = 3;
            //
            // companyNameTextBox
            //
            this.companyNameTextBox.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.customersBindingSource, "CompanyName", true));
            this.companyNameTextBox.Location = new System.Drawing.Point(100, 353);
            this.companyNameTextBox.Name     = "companyNameTextBox";
            this.companyNameTextBox.Size     = new System.Drawing.Size(157, 20);
            this.companyNameTextBox.TabIndex = 5;
            //
            // contactNameTextBox
            //
            this.contactNameTextBox.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.customersBindingSource, "ContactName", true));
            this.contactNameTextBox.Location = new System.Drawing.Point(100, 379);
            this.contactNameTextBox.Name     = "contactNameTextBox";
            this.contactNameTextBox.Size     = new System.Drawing.Size(157, 20);
            this.contactNameTextBox.TabIndex = 7;
            //
            // contactTitleTextBox
            //
            this.contactTitleTextBox.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.customersBindingSource, "ContactTitle", true));
            this.contactTitleTextBox.Location = new System.Drawing.Point(100, 405);
            this.contactTitleTextBox.Name     = "contactTitleTextBox";
            this.contactTitleTextBox.Size     = new System.Drawing.Size(157, 20);
            this.contactTitleTextBox.TabIndex = 9;
            //
            // addressTextBox
            //
            this.addressTextBox.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.customersBindingSource, "Address", true));
            this.addressTextBox.Location = new System.Drawing.Point(350, 327);
            this.addressTextBox.Name     = "addressTextBox";
            this.addressTextBox.Size     = new System.Drawing.Size(157, 20);
            this.addressTextBox.TabIndex = 11;
            //
            // cityTextBox
            //
            this.cityTextBox.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.customersBindingSource, "City", true));
            this.cityTextBox.Location = new System.Drawing.Point(100, 431);
            this.cityTextBox.Name     = "cityTextBox";
            this.cityTextBox.Size     = new System.Drawing.Size(157, 20);
            this.cityTextBox.TabIndex = 13;
            //
            // regionTextBox
            //
            this.regionTextBox.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.customersBindingSource, "Region", true));
            this.regionTextBox.Location = new System.Drawing.Point(350, 405);
            this.regionTextBox.Name     = "regionTextBox";
            this.regionTextBox.Size     = new System.Drawing.Size(157, 20);
            this.regionTextBox.TabIndex = 15;
            //
            // postalCodeTextBox
            //
            this.postalCodeTextBox.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.customersBindingSource, "PostalCode", true));
            this.postalCodeTextBox.Location = new System.Drawing.Point(100, 457);
            this.postalCodeTextBox.Name     = "postalCodeTextBox";
            this.postalCodeTextBox.Size     = new System.Drawing.Size(157, 20);
            this.postalCodeTextBox.TabIndex = 17;
            //
            // countryTextBox
            //
            this.countryTextBox.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.customersBindingSource, "Country", true));
            this.countryTextBox.Location = new System.Drawing.Point(350, 431);
            this.countryTextBox.Name     = "countryTextBox";
            this.countryTextBox.Size     = new System.Drawing.Size(157, 20);
            this.countryTextBox.TabIndex = 19;
            //
            // phoneTextBox
            //
            this.phoneTextBox.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.customersBindingSource, "Phone", true));
            this.phoneTextBox.Location = new System.Drawing.Point(350, 353);
            this.phoneTextBox.Name     = "phoneTextBox";
            this.phoneTextBox.Size     = new System.Drawing.Size(157, 20);
            this.phoneTextBox.TabIndex = 21;
            //
            // faxTextBox
            //
            this.faxTextBox.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.customersBindingSource, "Fax", true));
            this.faxTextBox.Location = new System.Drawing.Point(350, 379);
            this.faxTextBox.Name     = "faxTextBox";
            this.faxTextBox.Size     = new System.Drawing.Size(157, 20);
            this.faxTextBox.TabIndex = 23;
            //
            // radGridView1
            //
            this.radGridView1.Dock     = System.Windows.Forms.DockStyle.Top;
            this.radGridView1.Location = new System.Drawing.Point(0, 25);
            //
            //
            //
            gridViewTextBoxColumn1.FieldName   = "CustomerID";
            gridViewTextBoxColumn1.HeaderText  = "CustomerID";
            gridViewTextBoxColumn1.Name        = "CustomerID";
            gridViewTextBoxColumn2.FieldName   = "CompanyName";
            gridViewTextBoxColumn2.HeaderText  = "CompanyName";
            gridViewTextBoxColumn2.Name        = "CompanyName";
            gridViewTextBoxColumn3.FieldName   = "ContactName";
            gridViewTextBoxColumn3.HeaderText  = "ContactName";
            gridViewTextBoxColumn3.Name        = "ContactName";
            gridViewTextBoxColumn4.FieldName   = "ContactTitle";
            gridViewTextBoxColumn4.HeaderText  = "ContactTitle";
            gridViewTextBoxColumn4.Name        = "ContactTitle";
            gridViewTextBoxColumn5.FieldName   = "Address";
            gridViewTextBoxColumn5.HeaderText  = "Address";
            gridViewTextBoxColumn5.Name        = "Address";
            gridViewTextBoxColumn6.FieldName   = "City";
            gridViewTextBoxColumn6.HeaderText  = "City";
            gridViewTextBoxColumn6.Name        = "City";
            gridViewTextBoxColumn7.FieldName   = "Region";
            gridViewTextBoxColumn7.HeaderText  = "Region";
            gridViewTextBoxColumn7.Name        = "Region";
            gridViewTextBoxColumn8.FieldName   = "PostalCode";
            gridViewTextBoxColumn8.HeaderText  = "PostalCode";
            gridViewTextBoxColumn8.Name        = "PostalCode";
            gridViewTextBoxColumn9.FieldName   = "Country";
            gridViewTextBoxColumn9.HeaderText  = "Country";
            gridViewTextBoxColumn9.Name        = "Country";
            gridViewTextBoxColumn10.FieldName  = "Phone";
            gridViewTextBoxColumn10.HeaderText = "Phone";
            gridViewTextBoxColumn10.Name       = "Phone";
            gridViewTextBoxColumn11.FieldName  = "Fax";
            gridViewTextBoxColumn11.HeaderText = "Fax";
            gridViewTextBoxColumn11.Name       = "Fax";
            gridViewCheckBoxColumn1.DataType   = typeof(bool);
            gridViewCheckBoxColumn1.FieldName  = "Bool";
            gridViewCheckBoxColumn1.HeaderText = "Bool";
            gridViewCheckBoxColumn1.Name       = "Bool";
            this.radGridView1.MasterTemplate.Columns.Add(gridViewTextBoxColumn1);
            this.radGridView1.MasterTemplate.Columns.Add(gridViewTextBoxColumn2);
            this.radGridView1.MasterTemplate.Columns.Add(gridViewTextBoxColumn3);
            this.radGridView1.MasterTemplate.Columns.Add(gridViewTextBoxColumn4);
            this.radGridView1.MasterTemplate.Columns.Add(gridViewTextBoxColumn5);
            this.radGridView1.MasterTemplate.Columns.Add(gridViewTextBoxColumn6);
            this.radGridView1.MasterTemplate.Columns.Add(gridViewTextBoxColumn7);
            this.radGridView1.MasterTemplate.Columns.Add(gridViewTextBoxColumn8);
            this.radGridView1.MasterTemplate.Columns.Add(gridViewTextBoxColumn9);
            this.radGridView1.MasterTemplate.Columns.Add(gridViewTextBoxColumn10);
            this.radGridView1.MasterTemplate.Columns.Add(gridViewTextBoxColumn11);
            this.radGridView1.MasterTemplate.Columns.Add(gridViewCheckBoxColumn1);
            this.radGridView1.MasterTemplate.DataSource = this.customersBindingSource;

            this.radGridView1.Name     = "radGridView1";
            this.radGridView1.Size     = new System.Drawing.Size(601, 280);
            this.radGridView1.TabIndex = 24;
            this.radGridView1.Text     = "radGridView1";
            //
            // CustomerForm
            //
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
            this.ClientSize          = new System.Drawing.Size(601, 510);
            this.Controls.Add(this.radGridView1);
            this.Controls.Add(faxLabel);
            this.Controls.Add(this.faxTextBox);
            this.Controls.Add(phoneLabel);
            this.Controls.Add(this.phoneTextBox);
            this.Controls.Add(countryLabel);
            this.Controls.Add(this.countryTextBox);
            this.Controls.Add(postalCodeLabel);
            this.Controls.Add(this.postalCodeTextBox);
            this.Controls.Add(regionLabel);
            this.Controls.Add(this.regionTextBox);
            this.Controls.Add(cityLabel);
            this.Controls.Add(this.cityTextBox);
            this.Controls.Add(addressLabel);
            this.Controls.Add(this.addressTextBox);
            this.Controls.Add(contactTitleLabel);
            this.Controls.Add(this.contactTitleTextBox);
            this.Controls.Add(contactNameLabel);
            this.Controls.Add(this.contactNameTextBox);
            this.Controls.Add(companyNameLabel);
            this.Controls.Add(this.companyNameTextBox);
            this.Controls.Add(customerIDLabel);
            this.Controls.Add(this.customerIDTextBox);
            this.Controls.Add(this.customersBindingNavigator);
            this.Name  = "CustomerForm";
            this.Text  = "CustomerForm";
            this.Load += new System.EventHandler(this.CustomerForm_Load);
            ((System.ComponentModel.ISupportInitialize)(this.nwindRadGridView)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.customersBindingSource)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.customersBindingNavigator)).EndInit();
            this.customersBindingNavigator.ResumeLayout(false);
            this.customersBindingNavigator.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.radGridView1.MasterTemplate)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radGridView1)).EndInit();
            this.ResumeLayout(false);
            this.PerformLayout();
        }
コード例 #18
0
ファイル: FrmEmployee.Designer.cs プロジェクト: windygu/ERP
 /// <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();
     Telerik.WinControls.UI.GridViewCheckBoxColumn gridViewCheckBoxColumn1 = new Telerik.WinControls.UI.GridViewCheckBoxColumn();
     this.gpUserList           = new Telerik.WinControls.UI.RadGroupBox();
     this.lblUserId            = new Telerik.WinControls.UI.RadLabel();
     this.txtUserName          = new Telerik.WinControls.UI.RadTextBox();
     this.dgUserList           = new Telerik.WinControls.UI.RadGridView();
     this.btnShow              = new Telerik.WinControls.UI.RadButton();
     this.gpEmployeeInfo       = new Telerik.WinControls.UI.RadGroupBox();
     this.txtBirthDate         = new Telerik.WinControls.UI.RadTextBox();
     this.btnCancel            = new Telerik.WinControls.UI.RadButton();
     this.txtName              = new Telerik.WinControls.UI.RadTextBox();
     this.btnSave              = new Telerik.WinControls.UI.RadButton();
     this.txtFatherName        = new Telerik.WinControls.UI.RadTextBox();
     this.txtFamily            = new Telerik.WinControls.UI.RadTextBox();
     this.txtNationalCode      = new Telerik.WinControls.UI.RadTextBox();
     this.radCollapsiblePanel2 = new Telerik.WinControls.UI.RadCollapsiblePanel();
     this.txtInfo              = new Telerik.WinControls.UI.RadTextBox();
     this.erp = new System.Windows.Forms.ErrorProvider(this.components);
     ((System.ComponentModel.ISupportInitialize)(this.gpUserList)).BeginInit();
     this.gpUserList.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.lblUserId)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtUserName)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dgUserList)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dgUserList.MasterTemplate)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.btnShow)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gpEmployeeInfo)).BeginInit();
     this.gpEmployeeInfo.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.txtBirthDate)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.btnCancel)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtName)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.btnSave)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtFatherName)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtFamily)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtNationalCode)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radCollapsiblePanel2)).BeginInit();
     this.radCollapsiblePanel2.PanelContainer.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.txtInfo)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.erp)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
     this.SuspendLayout();
     //
     // gpUserList
     //
     this.gpUserList.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
     this.gpUserList.Controls.Add(this.lblUserId);
     this.gpUserList.Controls.Add(this.txtUserName);
     this.gpUserList.Controls.Add(this.dgUserList);
     this.gpUserList.Controls.Add(this.btnShow);
     this.gpUserList.HeaderText  = "لیست کاربران";
     this.gpUserList.Location    = new System.Drawing.Point(2, 2);
     this.gpUserList.Name        = "gpUserList";
     this.gpUserList.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
     this.gpUserList.Size        = new System.Drawing.Size(703, 293);
     this.gpUserList.TabIndex    = 3;
     this.gpUserList.Text        = "لیست کاربران";
     //
     // lblUserId
     //
     this.lblUserId.Location      = new System.Drawing.Point(10, 22);
     this.lblUserId.Name          = "lblUserId";
     this.lblUserId.Size          = new System.Drawing.Size(50, 18);
     this.lblUserId.TabIndex      = 7;
     this.lblUserId.Text          = "lblUserId";
     this.lblUserId.TextAlignment = System.Drawing.ContentAlignment.TopRight;
     this.lblUserId.Visible       = false;
     //
     // txtUserName
     //
     this.txtUserName.Location  = new System.Drawing.Point(453, 20);
     this.txtUserName.Margin    = new System.Windows.Forms.Padding(5);
     this.txtUserName.MaxLength = 10;
     this.txtUserName.Name      = "txtUserName";
     this.txtUserName.NullText  = "نام کاربری";
     this.txtUserName.Padding   = new System.Windows.Forms.Padding(2);
     this.txtUserName.Size      = new System.Drawing.Size(240, 21);
     this.txtUserName.TabIndex  = 1;
     this.txtUserName.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     this.txtUserName.KeyDown  += new System.Windows.Forms.KeyEventHandler(this.txtSearchUserName_KeyDown);
     //
     // dgUserList
     //
     this.dgUserList.Location = new System.Drawing.Point(8, 50);
     this.dgUserList.Margin   = new System.Windows.Forms.Padding(0);
     //
     // dgUserList
     //
     this.dgUserList.MasterTemplate.AllowAddNewRow      = false;
     this.dgUserList.MasterTemplate.AutoSizeColumnsMode = Telerik.WinControls.UI.GridViewAutoSizeColumnsMode.Fill;
     gridViewCheckBoxColumn1.HeaderText             = "انتخاب";
     gridViewCheckBoxColumn1.MaxWidth               = 50;
     gridViewCheckBoxColumn1.MinWidth               = 40;
     gridViewCheckBoxColumn1.Name                   = "clmSelect";
     gridViewCheckBoxColumn1.VisibleInColumnChooser = false;
     this.dgUserList.MasterTemplate.Columns.AddRange(new Telerik.WinControls.UI.GridViewDataColumn[] {
         gridViewCheckBoxColumn1
     });
     this.dgUserList.MasterTemplate.EnableGrouping = false;
     this.dgUserList.MasterTemplate.EnablePaging   = true;
     this.dgUserList.MasterTemplate.PageSize       = 10;
     this.dgUserList.Name        = "dgUserList";
     this.dgUserList.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
     this.dgUserList.Size        = new System.Drawing.Size(685, 225);
     this.dgUserList.TabIndex    = 0;
     this.dgUserList.Text        = "radGridView1";
     this.dgUserList.CellClick  += new Telerik.WinControls.UI.GridViewCellEventHandler(this.dgUserList_CellClick);
     //
     // btnShow
     //
     this.btnShow.Location = new System.Drawing.Point(335, 21);
     this.btnShow.Name     = "btnShow";
     this.btnShow.Size     = new System.Drawing.Size(110, 20);
     this.btnShow.TabIndex = 2;
     this.btnShow.Text     = "نمایش";
     this.btnShow.Click   += new System.EventHandler(this.btnShow_Click);
     //
     // gpEmployeeInfo
     //
     this.gpEmployeeInfo.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
     this.gpEmployeeInfo.Controls.Add(this.txtBirthDate);
     this.gpEmployeeInfo.Controls.Add(this.btnCancel);
     this.gpEmployeeInfo.Controls.Add(this.txtName);
     this.gpEmployeeInfo.Controls.Add(this.btnSave);
     this.gpEmployeeInfo.Controls.Add(this.txtFatherName);
     this.gpEmployeeInfo.Controls.Add(this.txtFamily);
     this.gpEmployeeInfo.Controls.Add(this.txtNationalCode);
     this.gpEmployeeInfo.HeaderText  = "اطلاعات پرسنلی";
     this.gpEmployeeInfo.Location    = new System.Drawing.Point(2, 301);
     this.gpEmployeeInfo.Name        = "gpEmployeeInfo";
     this.gpEmployeeInfo.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
     this.gpEmployeeInfo.Size        = new System.Drawing.Size(703, 98);
     this.gpEmployeeInfo.TabIndex    = 4;
     this.gpEmployeeInfo.Text        = "اطلاعات پرسنلی";
     //
     // txtBirthDate
     //
     this.txtBirthDate.Location  = new System.Drawing.Point(8, 21);
     this.txtBirthDate.Name      = "txtBirthDate";
     this.txtBirthDate.NullText  = "تاریخ تولد";
     this.txtBirthDate.Size      = new System.Drawing.Size(124, 20);
     this.txtBirthDate.TabIndex  = 4;
     this.txtBirthDate.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     //
     // btnCancel
     //
     this.btnCancel.Location = new System.Drawing.Point(149, 56);
     this.btnCancel.Name     = "btnCancel";
     this.btnCancel.Size     = new System.Drawing.Size(122, 24);
     this.btnCancel.TabIndex = 6;
     this.btnCancel.Text     = "انصراف";
     this.btnCancel.Click   += new System.EventHandler(this.btnCancel_Click);
     //
     // txtName
     //
     this.txtName.Location  = new System.Drawing.Point(430, 21);
     this.txtName.Name      = "txtName";
     this.txtName.NullText  = "نام";
     this.txtName.Size      = new System.Drawing.Size(124, 20);
     this.txtName.TabIndex  = 1;
     this.txtName.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     //
     // btnSave
     //
     this.btnSave.Location = new System.Drawing.Point(10, 56);
     this.btnSave.Name     = "btnSave";
     this.btnSave.Size     = new System.Drawing.Size(122, 24);
     this.btnSave.TabIndex = 5;
     this.btnSave.Text     = "ذخیره";
     this.btnSave.Click   += new System.EventHandler(this.btnSave_Click);
     //
     // txtFatherName
     //
     this.txtFatherName.Location  = new System.Drawing.Point(147, 21);
     this.txtFatherName.Name      = "txtFatherName";
     this.txtFatherName.NullText  = "نام پدر";
     this.txtFatherName.Size      = new System.Drawing.Size(124, 20);
     this.txtFatherName.TabIndex  = 3;
     this.txtFatherName.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     //
     // txtFamily
     //
     this.txtFamily.Location  = new System.Drawing.Point(287, 21);
     this.txtFamily.Name      = "txtFamily";
     this.txtFamily.NullText  = "نام خانوادگی";
     this.txtFamily.Size      = new System.Drawing.Size(124, 20);
     this.txtFamily.TabIndex  = 2;
     this.txtFamily.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     //
     // txtNationalCode
     //
     this.txtNationalCode.Location  = new System.Drawing.Point(571, 21);
     this.txtNationalCode.Name      = "txtNationalCode";
     this.txtNationalCode.NullText  = "کدملی";
     this.txtNationalCode.Size      = new System.Drawing.Size(124, 20);
     this.txtNationalCode.TabIndex  = 0;
     this.txtNationalCode.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     //
     // radCollapsiblePanel2
     //
     this.radCollapsiblePanel2.Location = new System.Drawing.Point(2, 405);
     this.radCollapsiblePanel2.Name     = "radCollapsiblePanel2";
     //
     // radCollapsiblePanel2.PanelContainer
     //
     this.radCollapsiblePanel2.PanelContainer.Controls.Add(this.txtInfo);
     this.radCollapsiblePanel2.PanelContainer.Size = new System.Drawing.Size(701, 113);
     this.radCollapsiblePanel2.Size     = new System.Drawing.Size(703, 141);
     this.radCollapsiblePanel2.TabIndex = 7;
     this.radCollapsiblePanel2.Text     = "radCollapsiblePanel2";
     //
     // txtInfo
     //
     this.txtInfo.AutoSize   = false;
     this.txtInfo.Location   = new System.Drawing.Point(7, 12);
     this.txtInfo.Multiline  = true;
     this.txtInfo.Name       = "txtInfo";
     this.txtInfo.ReadOnly   = true;
     this.txtInfo.ScrollBars = System.Windows.Forms.ScrollBars.Vertical;
     this.txtInfo.Size       = new System.Drawing.Size(687, 86);
     this.txtInfo.TabIndex   = 1;
     //
     // erp
     //
     this.erp.ContainerControl = this;
     this.erp.RightToLeft      = true;
     //
     // FrmEmployee
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize          = new System.Drawing.Size(716, 548);
     this.Controls.Add(this.radCollapsiblePanel2);
     this.Controls.Add(this.gpEmployeeInfo);
     this.Controls.Add(this.gpUserList);
     this.Name = "FrmEmployee";
     //
     //
     //
     this.RootElement.ApplyShapeToControl = true;
     this.Text      = "فرم اطلاعات کارمندی";
     this.ThemeName = "ControlDefault";
     this.Load     += new System.EventHandler(this.FrmEmployee_Load);
     ((System.ComponentModel.ISupportInitialize)(this.gpUserList)).EndInit();
     this.gpUserList.ResumeLayout(false);
     this.gpUserList.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.lblUserId)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtUserName)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dgUserList.MasterTemplate)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dgUserList)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.btnShow)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gpEmployeeInfo)).EndInit();
     this.gpEmployeeInfo.ResumeLayout(false);
     this.gpEmployeeInfo.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.txtBirthDate)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.btnCancel)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtName)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.btnSave)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtFatherName)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtFamily)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtNationalCode)).EndInit();
     this.radCollapsiblePanel2.PanelContainer.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.radCollapsiblePanel2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtInfo)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.erp)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this)).EndInit();
     this.ResumeLayout(false);
 }
コード例 #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();
     Telerik.WinControls.UI.GridViewDecimalColumn  gridViewDecimalColumn1  = new Telerik.WinControls.UI.GridViewDecimalColumn();
     Telerik.WinControls.UI.GridViewComboBoxColumn gridViewComboBoxColumn1 = new Telerik.WinControls.UI.GridViewComboBoxColumn();
     Telerik.WinControls.UI.GridViewDateTimeColumn gridViewDateTimeColumn1 = new Telerik.WinControls.UI.GridViewDateTimeColumn();
     Telerik.WinControls.UI.GridViewComboBoxColumn gridViewComboBoxColumn2 = new Telerik.WinControls.UI.GridViewComboBoxColumn();
     Telerik.WinControls.UI.GridViewCheckBoxColumn gridViewCheckBoxColumn1 = new Telerik.WinControls.UI.GridViewCheckBoxColumn();
     Telerik.WinControls.UI.GridViewCheckBoxColumn gridViewCheckBoxColumn2 = new Telerik.WinControls.UI.GridViewCheckBoxColumn();
     Telerik.WinControls.UI.GridViewTextBoxColumn  gridViewTextBoxColumn1  = new Telerik.WinControls.UI.GridViewTextBoxColumn();
     Telerik.WinControls.Data.SortDescriptor       sortDescriptor1         = new Telerik.WinControls.Data.SortDescriptor();
     Telerik.WinControls.Data.SortDescriptor       sortDescriptor2         = new Telerik.WinControls.Data.SortDescriptor();
     this.buruhBindingSource     = new System.Windows.Forms.BindingSource(this.components);
     this.sinarekDataSet         = new NB.sinarekDataSet();
     this.tipehadirBindingSource = new System.Windows.Forms.BindingSource(this.components);
     this.absenBindingSource     = new System.Windows.Forms.BindingSource(this.components);
     this.tableAdapterManager    = new NB.sinarekDataSetTableAdapters.TableAdapterManager();
     this.radGroupBox1           = new Telerik.WinControls.UI.RadGroupBox();
     this.ddlNama                 = new Telerik.WinControls.UI.RadDropDownList();
     this.btnClearFilter          = new Telerik.WinControls.UI.RadButton();
     this.dtpTanggal              = new Telerik.WinControls.UI.RadDateTimePicker();
     this.rbTanggal               = new Telerik.WinControls.UI.RadRadioButton();
     this.ddlTipeAbsen            = new Telerik.WinControls.UI.RadDropDownList();
     this.tipehadirBindingSource1 = new System.Windows.Forms.BindingSource(this.components);
     this.rbTipeAbsen             = new Telerik.WinControls.UI.RadRadioButton();
     this.rbNama = new Telerik.WinControls.UI.RadRadioButton();
     this.tipehadirTableAdapter1 = new NB.sinarekDataSetTableAdapters.tipehadirTableAdapter();
     this.radGridView1           = new Telerik.WinControls.UI.RadGridView();
     ((System.ComponentModel.ISupportInitialize)(this.buruhBindingSource)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.sinarekDataSet)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.tipehadirBindingSource)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.absenBindingSource)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radGroupBox1)).BeginInit();
     this.radGroupBox1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.ddlNama)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.btnClearFilter)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dtpTanggal)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.rbTanggal)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ddlTipeAbsen)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.tipehadirBindingSource1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.rbTipeAbsen)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.rbNama)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radGridView1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
     this.SuspendLayout();
     //
     // buruhBindingSource
     //
     this.buruhBindingSource.DataMember = "buruh";
     this.buruhBindingSource.DataSource = this.sinarekDataSet;
     this.buruhBindingSource.Filter     = "active = 1";
     //
     // sinarekDataSet
     //
     this.sinarekDataSet.DataSetName             = "sinarekDataSet";
     this.sinarekDataSet.SchemaSerializationMode = System.Data.SchemaSerializationMode.IncludeSchema;
     //
     // tipehadirBindingSource
     //
     this.tipehadirBindingSource.DataMember = "tipehadir";
     this.tipehadirBindingSource.DataSource = this.sinarekDataSet;
     //
     // absenBindingSource
     //
     this.absenBindingSource.DataMember              = "absen";
     this.absenBindingSource.DataSource              = this.sinarekDataSet;
     this.absenBindingSource.Filter                  = "";
     this.tableAdapterManager.UpdateOrder            = NB.sinarekDataSetTableAdapters.TableAdapterManager.UpdateOrderOption.InsertUpdateDelete;
     this.tableAdapterManager.vpengisianTableAdapter = null;
     //
     // radGroupBox1
     //
     this.radGroupBox1.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
     this.radGroupBox1.Controls.Add(this.ddlNama);
     this.radGroupBox1.Controls.Add(this.btnClearFilter);
     this.radGroupBox1.Controls.Add(this.dtpTanggal);
     this.radGroupBox1.Controls.Add(this.rbTanggal);
     this.radGroupBox1.Controls.Add(this.ddlTipeAbsen);
     this.radGroupBox1.Controls.Add(this.rbTipeAbsen);
     this.radGroupBox1.Controls.Add(this.rbNama);
     this.radGroupBox1.FooterImageIndex = -1;
     this.radGroupBox1.FooterImageKey   = "";
     this.radGroupBox1.HeaderImageIndex = -1;
     this.radGroupBox1.HeaderImageKey   = "";
     this.radGroupBox1.HeaderMargin     = new System.Windows.Forms.Padding(0);
     this.radGroupBox1.HeaderText       = "Filter Absen";
     this.radGroupBox1.Location         = new System.Drawing.Point(12, 5);
     this.radGroupBox1.Name             = "radGroupBox1";
     this.radGroupBox1.Padding          = new System.Windows.Forms.Padding(2, 18, 2, 2);
     //
     //
     //
     this.radGroupBox1.RootElement.Padding = new System.Windows.Forms.Padding(2, 18, 2, 2);
     this.radGroupBox1.Size     = new System.Drawing.Size(637, 88);
     this.radGroupBox1.TabIndex = 5;
     this.radGroupBox1.Text     = "Filter Absen";
     //
     // ddlNama
     //
     this.ddlNama.AutoCompleteDisplayMember = "Name";
     this.ddlNama.AutoCompleteMode          = System.Windows.Forms.AutoCompleteMode.SuggestAppend;
     this.ddlNama.AutoCompleteValueMember   = "BuruhID";
     this.ddlNama.DataSource               = this.buruhBindingSource;
     this.ddlNama.DisplayMember            = "Name";
     this.ddlNama.DropDownAnimationEnabled = true;
     this.ddlNama.Font     = new System.Drawing.Font("Segoe UI", 10F);
     this.ddlNama.Location = new System.Drawing.Point(117, 17);
     this.ddlNama.Name     = "ddlNama";
     this.ddlNama.ShowImageInEditorArea = true;
     this.ddlNama.Size                  = new System.Drawing.Size(141, 23);
     this.ddlNama.SortStyle             = Telerik.WinControls.Enumerations.SortStyle.Ascending;
     this.ddlNama.TabIndex              = 8;
     this.ddlNama.ValueMember           = "BuruhID";
     this.ddlNama.SelectedValueChanged += new System.EventHandler(this.ddlNama_SelectedValueChanged);
     //
     // btnClearFilter
     //
     this.btnClearFilter.Font     = new System.Drawing.Font("Segoe UI", 10F);
     this.btnClearFilter.Location = new System.Drawing.Point(344, 55);
     this.btnClearFilter.Name     = "btnClearFilter";
     this.btnClearFilter.Size     = new System.Drawing.Size(237, 25);
     this.btnClearFilter.TabIndex = 7;
     this.btnClearFilter.Text     = "&Lihat Semua";
     this.btnClearFilter.Click   += new System.EventHandler(this.btnClearFilter_Click);
     //
     // dtpTanggal
     //
     this.dtpTanggal.CustomFormat  = "dd MMM yyyy";
     this.dtpTanggal.Font          = new System.Drawing.Font("Segoe UI", 10F);
     this.dtpTanggal.Format        = System.Windows.Forms.DateTimePickerFormat.Custom;
     this.dtpTanggal.Location      = new System.Drawing.Point(117, 49);
     this.dtpTanggal.MaxDate       = new System.DateTime(9998, 12, 31, 0, 0, 0, 0);
     this.dtpTanggal.MinDate       = new System.DateTime(1753, 1, 1, 0, 0, 0, 0);
     this.dtpTanggal.Name          = "dtpTanggal";
     this.dtpTanggal.NullableValue = new System.DateTime(2011, 11, 7, 0, 0, 0, 0);
     this.dtpTanggal.NullDate      = new System.DateTime(1753, 1, 1, 0, 0, 0, 0);
     this.dtpTanggal.ShowUpDown    = true;
     this.dtpTanggal.Size          = new System.Drawing.Size(141, 23);
     this.dtpTanggal.TabIndex      = 5;
     this.dtpTanggal.TabStop       = false;
     this.dtpTanggal.Text          = "07 Nov 2011";
     this.dtpTanggal.Value         = new System.DateTime(2011, 11, 7, 0, 0, 0, 0);
     this.dtpTanggal.ValueChanged += new System.EventHandler(this.dtpTanggal_ValueChanged);
     //
     // rbTanggal
     //
     this.rbTanggal.Font     = new System.Drawing.Font("Segoe UI", 10F);
     this.rbTanggal.Location = new System.Drawing.Point(8, 53);
     this.rbTanggal.Name     = "rbTanggal";
     this.rbTanggal.Size     = new System.Drawing.Size(79, 18);
     this.rbTanggal.TabIndex = 4;
     this.rbTanggal.Text     = "&Tanggal";
     //
     // ddlTipeAbsen
     //
     this.ddlTipeAbsen.AutoCompleteDisplayMember = "Nama";
     this.ddlTipeAbsen.AutoCompleteMode          = System.Windows.Forms.AutoCompleteMode.SuggestAppend;
     this.ddlTipeAbsen.AutoCompleteValueMember   = "tipehadirid";
     this.ddlTipeAbsen.DataSource               = this.tipehadirBindingSource1;
     this.ddlTipeAbsen.DisplayMember            = "Nama";
     this.ddlTipeAbsen.DropDownAnimationEnabled = true;
     this.ddlTipeAbsen.Font     = new System.Drawing.Font("Segoe UI", 10F);
     this.ddlTipeAbsen.Location = new System.Drawing.Point(457, 17);
     this.ddlTipeAbsen.Name     = "ddlTipeAbsen";
     this.ddlTipeAbsen.ShowImageInEditorArea = true;
     this.ddlTipeAbsen.Size                  = new System.Drawing.Size(123, 23);
     this.ddlTipeAbsen.SortStyle             = Telerik.WinControls.Enumerations.SortStyle.Ascending;
     this.ddlTipeAbsen.TabIndex              = 3;
     this.ddlTipeAbsen.ValueMember           = "tipehadirid";
     this.ddlTipeAbsen.SelectedValueChanged += new System.EventHandler(this.ddlTipeAbsen_SelectedValueChanged);
     //
     // tipehadirBindingSource1
     //
     this.tipehadirBindingSource1.DataMember = "tipehadir";
     this.tipehadirBindingSource1.DataSource = this.sinarekDataSet;
     //
     // rbTipeAbsen
     //
     this.rbTipeAbsen.Font     = new System.Drawing.Font("Segoe UI", 10F);
     this.rbTipeAbsen.Location = new System.Drawing.Point(343, 21);
     this.rbTipeAbsen.Name     = "rbTipeAbsen";
     this.rbTipeAbsen.Size     = new System.Drawing.Size(108, 18);
     this.rbTipeAbsen.TabIndex = 2;
     this.rbTipeAbsen.Text     = "Tipe &Absen";
     this.rbTipeAbsen.Click   += new System.EventHandler(this.rbButton_Click);
     //
     // rbNama
     //
     this.rbNama.Font     = new System.Drawing.Font("Segoe UI", 10F);
     this.rbNama.Location = new System.Drawing.Point(9, 21);
     this.rbNama.Name     = "rbNama";
     this.rbNama.Size     = new System.Drawing.Size(78, 18);
     this.rbNama.TabIndex = 0;
     this.rbNama.Text     = "&Nama";
     //
     // tipehadirTableAdapter1
     //
     this.tipehadirTableAdapter1.ClearBeforeFill = true;
     //
     // radGridView1
     //
     this.radGridView1.BeginEditMode = Telerik.WinControls.RadGridViewBeginEditMode.BeginEditOnF2;
     this.radGridView1.Dock          = System.Windows.Forms.DockStyle.Bottom;
     this.radGridView1.EnableKeyMap  = true;
     this.radGridView1.Font          = new System.Drawing.Font("Segoe UI", 10F);
     this.radGridView1.Location      = new System.Drawing.Point(0, 107);
     //
     // radGridView1
     //
     this.radGridView1.MasterTemplate.AllowAddNewRow      = false;
     this.radGridView1.MasterTemplate.AllowColumnReorder  = false;
     this.radGridView1.MasterTemplate.AllowDeleteRow      = false;
     this.radGridView1.MasterTemplate.AutoGenerateColumns = false;
     gridViewDecimalColumn1.DataType               = typeof(uint);
     gridViewDecimalColumn1.FieldName              = "Absenid";
     gridViewDecimalColumn1.FormatString           = "";
     gridViewDecimalColumn1.HeaderText             = "Absenid";
     gridViewDecimalColumn1.IsAutoGenerated        = true;
     gridViewDecimalColumn1.IsVisible              = false;
     gridViewDecimalColumn1.Name                   = "Absenid";
     gridViewDecimalColumn1.TextAlignment          = System.Drawing.ContentAlignment.MiddleRight;
     gridViewDecimalColumn1.VisibleInColumnChooser = false;
     gridViewComboBoxColumn1.DataSource            = this.buruhBindingSource;
     gridViewComboBoxColumn1.DataType              = typeof(int);
     gridViewComboBoxColumn1.DisplayMember         = "Name";
     gridViewComboBoxColumn1.DisplayMemberSort     = true;
     gridViewComboBoxColumn1.FieldName             = "MemberID";
     gridViewComboBoxColumn1.FormatString          = "";
     gridViewComboBoxColumn1.HeaderText            = "Nama";
     gridViewComboBoxColumn1.Name                  = "MemberID";
     gridViewComboBoxColumn1.ReadOnly              = true;
     gridViewComboBoxColumn1.SortOrder             = Telerik.WinControls.UI.RadSortOrder.Ascending;
     gridViewComboBoxColumn1.ValueMember           = "BuruhID";
     gridViewComboBoxColumn1.Width                 = 160;
     gridViewDateTimeColumn1.CustomFormat          = "dd MMM yyyy";
     gridViewDateTimeColumn1.FieldName             = "tanggal";
     gridViewDateTimeColumn1.Format                = System.Windows.Forms.DateTimePickerFormat.Custom;
     gridViewDateTimeColumn1.FormatString          = "{0:dd MMM yyyy}";
     gridViewDateTimeColumn1.HeaderText            = "Tanggal";
     gridViewDateTimeColumn1.IsAutoGenerated       = true;
     gridViewDateTimeColumn1.Name                  = "tanggal";
     gridViewDateTimeColumn1.ReadOnly              = true;
     gridViewDateTimeColumn1.Width                 = 100;
     gridViewComboBoxColumn2.AllowGroup            = false;
     gridViewComboBoxColumn2.DataSource            = this.tipehadirBindingSource;
     gridViewComboBoxColumn2.DataType              = typeof(short);
     gridViewComboBoxColumn2.DisplayMember         = "Nama";
     gridViewComboBoxColumn2.DisplayMemberSort     = true;
     gridViewComboBoxColumn2.FieldName             = "tipehadirid";
     gridViewComboBoxColumn2.FormatString          = "";
     gridViewComboBoxColumn2.HeaderText            = "Absensi";
     gridViewComboBoxColumn2.Name                  = "tipehadirid";
     gridViewComboBoxColumn2.SortOrder             = Telerik.WinControls.UI.RadSortOrder.Ascending;
     gridViewComboBoxColumn2.ValueMember           = "tipehadirid";
     gridViewComboBoxColumn2.Width                 = 80;
     gridViewComboBoxColumn2.WrapText              = true;
     gridViewCheckBoxColumn1.AllowGroup            = false;
     gridViewCheckBoxColumn1.DataType              = typeof(sbyte);
     gridViewCheckBoxColumn1.FieldName             = "Pagi";
     gridViewCheckBoxColumn1.FormatString          = "";
     gridViewCheckBoxColumn1.HeaderText            = "Pagi";
     gridViewCheckBoxColumn1.Name                  = "Pagi";
     gridViewCheckBoxColumn2.AllowGroup            = false;
     gridViewCheckBoxColumn2.DataType              = typeof(sbyte);
     gridViewCheckBoxColumn2.FieldName             = "sore";
     gridViewCheckBoxColumn2.FormatString          = "";
     gridViewCheckBoxColumn2.HeaderText            = "Sore";
     gridViewCheckBoxColumn2.Name                  = "Sore";
     gridViewTextBoxColumn1.AllowGroup             = false;
     gridViewTextBoxColumn1.FieldName              = "keterangan";
     gridViewTextBoxColumn1.FormatString           = "";
     gridViewTextBoxColumn1.HeaderText             = "Keterangan";
     gridViewTextBoxColumn1.IsAutoGenerated        = true;
     gridViewTextBoxColumn1.IsPinned               = true;
     gridViewTextBoxColumn1.MaxLength              = 160000;
     gridViewTextBoxColumn1.MaxWidth               = 250;
     gridViewTextBoxColumn1.MinWidth               = 100;
     gridViewTextBoxColumn1.Name                   = "keterangan";
     gridViewTextBoxColumn1.PinPosition            = Telerik.WinControls.UI.PinnedColumnPosition.Right;
     gridViewTextBoxColumn1.Width                  = 150;
     gridViewTextBoxColumn1.WrapText               = true;
     this.radGridView1.MasterTemplate.Columns.AddRange(new Telerik.WinControls.UI.GridViewDataColumn[] {
         gridViewDecimalColumn1,
         gridViewComboBoxColumn1,
         gridViewDateTimeColumn1,
         gridViewComboBoxColumn2,
         gridViewCheckBoxColumn1,
         gridViewCheckBoxColumn2,
         gridViewTextBoxColumn1
     });
     this.radGridView1.MasterTemplate.DataSource = this.absenBindingSource;
     this.radGridView1.MasterTemplate.EnableAlternatingRowColor = true;
     sortDescriptor1.PropertyName = "MemberID";
     sortDescriptor2.PropertyName = "tipehadirid";
     this.radGridView1.MasterTemplate.SortDescriptors.AddRange(new Telerik.WinControls.Data.SortDescriptor[] {
         sortDescriptor1,
         sortDescriptor2
     });
     this.radGridView1.Name                   = "radGridView1";
     this.radGridView1.ShowGroupPanel         = false;
     this.radGridView1.Size                   = new System.Drawing.Size(666, 376);
     this.radGridView1.TabIndex               = 1;
     this.radGridView1.Text                   = "radGridView1";
     this.radGridView1.CellBeginEdit         += new Telerik.WinControls.UI.GridViewCellCancelEventHandler(this.radGridView1_CellBeginEdit);
     this.radGridView1.CellEditorInitialized += new Telerik.WinControls.UI.GridViewCellEventHandler(this.radGridView1_CellEditorInitialized);
     this.radGridView1.CellEndEdit           += new Telerik.WinControls.UI.GridViewCellEventHandler(this.radGridView1_CellEndEdit);
     //
     // frmAbsen
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize          = new System.Drawing.Size(666, 483);
     this.Controls.Add(this.radGroupBox1);
     this.Controls.Add(this.radGridView1);
     this.Font            = new System.Drawing.Font("Segoe UI", 12F);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
     this.MaximizeBox     = false;
     this.MinimizeBox     = false;
     this.Name            = "frmAbsen";
     //
     //
     //
     this.RootElement.ApplyShapeToControl = true;
     this.ShowIcon  = false;
     this.Text      = "Data Kehadiran";
     this.ThemeName = "ControlDefault";
     this.Load     += new System.EventHandler(this.frmAbsen_Load);
     ((System.ComponentModel.ISupportInitialize)(this.buruhBindingSource)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.sinarekDataSet)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.tipehadirBindingSource)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.absenBindingSource)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radGroupBox1)).EndInit();
     this.radGroupBox1.ResumeLayout(false);
     this.radGroupBox1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.ddlNama)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.btnClearFilter)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dtpTanggal)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.rbTanggal)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ddlTipeAbsen)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.tipehadirBindingSource1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.rbTipeAbsen)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.rbNama)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radGridView1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this)).EndInit();
     this.ResumeLayout(false);
 }
コード例 #20
0
ファイル: DOC001MView.cs プロジェクト: ferarell/DelfinGroup
        private void FormatGridCNTR()
        {
            try
            {
                Telerik.WinControls.UI.Localization.RadGridLocalizationProvider.CurrentProvider = new Infrastructure.WinForms.Controls.MySpanishRadGridLocalizationProvider();
                this.grdItemsCNTR.Columns.Clear();
                this.grdItemsCNTR.AllowAddNewRow = false;

                grdItemsCNTR.Columns.Add("CNTR_Numero", "Número del Contenedor", "CNTR_Numero");
                grdItemsCNTR.Columns.Add("DHBL_Precinto", "Precinto", "DHBL_Precinto");

                Telerik.WinControls.UI.GridViewComboBoxColumn _tipocontenedor = new Telerik.WinControls.UI.GridViewComboBoxColumn();
                _tipocontenedor.Name          = "PACK_Codigo";
                _tipocontenedor.HeaderText    = "Tipo Contenedor";
                _tipocontenedor.FieldName     = "PACK_Codigo";
                _tipocontenedor.ValueMember   = "PACK_Codigo";
                _tipocontenedor.DisplayMember = "PACK_DescC";
                _tipocontenedor.DataSource    = Presenter.ListPaquetes;
                this.grdItemsCNTR.Columns.Add(_tipocontenedor);

                grdItemsCNTR.Columns.Add("DHBL_DescProducto", "Descripción de la Carga", "DHBL_DescProducto");
                grdItemsCNTR.Columns.Add("DHBL_MarcasNumeros", "Marcas y Números", "DHBL_MarcasNumeros");
                grdItemsCNTR.Columns.Add("DHBL_CantBultos", "Cantidad de Bultos", "DHBL_CantBultos");
                grdItemsCNTR.Columns.Add("DHBL_PesoBruto", "Peso (Kg.)", "DHBL_PesoBruto");
                grdItemsCNTR.Columns.Add("DHBL_Volumen", "Volumen (M³)", "DHBL_Volumen");


                Telerik.WinControls.UI.GridViewComboBoxColumn _comodity = new Telerik.WinControls.UI.GridViewComboBoxColumn();
                _comodity.Name          = "TIPO_CodCDT";
                _comodity.HeaderText    = "Comodity";
                _comodity.FieldName     = "TIPO_CodCDT";
                _comodity.ValueMember   = "TIPO_CodTipo";
                _comodity.DisplayMember = "TIPO_Desc1";
                _comodity.DataSource    = Presenter.ListTiposCDT;
                this.grdItemsCNTR.Columns.Add(_comodity);

                Telerik.WinControls.UI.GridViewComboBoxColumn _tipobulto = new Telerik.WinControls.UI.GridViewComboBoxColumn();
                _tipobulto.Name          = "TIPO_CodPAC";
                _tipobulto.HeaderText    = "Tipo Bulto";
                _tipobulto.FieldName     = "TIPO_CodPAC";
                _tipobulto.ValueMember   = "TIPO_CodTipo";
                _tipobulto.DisplayMember = "TIPO_Desc1";
                _tipobulto.DataSource    = Presenter.ListTiposPAC;
                this.grdItemsCNTR.Columns.Add(_tipobulto);


                Telerik.WinControls.UI.GridViewCheckBoxColumn _esimo = new Telerik.WinControls.UI.GridViewCheckBoxColumn();
                _esimo.Name       = "DHBL_EsIMO";
                _esimo.HeaderText = "Es IMO";
                _esimo.FieldName  = "DHBL_EsIMO";
                this.grdItemsCNTR.Columns.Add(_esimo);

                Telerik.WinControls.UI.GridViewComboBoxColumn _tipoimo = new Telerik.WinControls.UI.GridViewComboBoxColumn();
                _tipoimo.Name          = "TIPO_CodIMO";
                _tipoimo.HeaderText    = "Clase IMO";
                _tipoimo.FieldName     = "TIPO_CodIMO";
                _tipoimo.ValueMember   = "TIPO_CodTipo";
                _tipoimo.DisplayMember = "TIPO_Desc1";
                _tipoimo.DataSource    = Presenter.ListTiposIMO;
                this.grdItemsCNTR.Columns.Add(_tipoimo);

                grdItemsCNTR.Columns.Add("DHBL_ContractNRO", "Contract NRO", "DHBL_ContractNRO");

                Telerik.WinControls.UI.GridViewCheckBoxColumn _pp = new Telerik.WinControls.UI.GridViewCheckBoxColumn();
                _pp.Name       = "DHBL_PP";
                _pp.HeaderText = "Es Parte Contenedor";
                _pp.FieldName  = "DHBL_PP";
                this.grdItemsCNTR.Columns.Add(_pp);

                this.grdItems.AutoGenerateColumns = false;
                this.grdItemsCNTR.BestFitColumns();
                Infrastructure.WinForms.Controls.GridAutoFit.Fit(grdItemsCNTR);
                this.grdItemsCNTR.ShowFilteringRow = false;
                this.grdItemsCNTR.EnableFiltering  = false;
                this.grdItemsCNTR.MasterTemplate.EnableFiltering = false;
                this.grdItemsCNTR.EnableGrouping = false;
                this.grdItemsCNTR.MasterTemplate.EnableGrouping = false;
                this.grdItemsCNTR.EnableSorting = false;
                this.grdItemsCNTR.MasterTemplate.EnableCustomSorting = false;
            }
            catch (Exception)
            {
                throw;
            }
        }
コード例 #21
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     Telerik.WinControls.UI.GridViewTextBoxColumn  gridViewTextBoxColumn1  = new Telerik.WinControls.UI.GridViewTextBoxColumn();
     Telerik.WinControls.UI.GridViewTextBoxColumn  gridViewTextBoxColumn2  = new Telerik.WinControls.UI.GridViewTextBoxColumn();
     Telerik.WinControls.UI.GridViewTextBoxColumn  gridViewTextBoxColumn3  = new Telerik.WinControls.UI.GridViewTextBoxColumn();
     Telerik.WinControls.UI.GridViewTextBoxColumn  gridViewTextBoxColumn4  = new Telerik.WinControls.UI.GridViewTextBoxColumn();
     Telerik.WinControls.UI.GridViewTextBoxColumn  gridViewTextBoxColumn5  = new Telerik.WinControls.UI.GridViewTextBoxColumn();
     Telerik.WinControls.UI.GridViewTextBoxColumn  gridViewTextBoxColumn6  = new Telerik.WinControls.UI.GridViewTextBoxColumn();
     Telerik.WinControls.UI.GridViewTextBoxColumn  gridViewTextBoxColumn7  = new Telerik.WinControls.UI.GridViewTextBoxColumn();
     Telerik.WinControls.UI.GridViewTextBoxColumn  gridViewTextBoxColumn8  = new Telerik.WinControls.UI.GridViewTextBoxColumn();
     Telerik.WinControls.UI.GridViewTextBoxColumn  gridViewTextBoxColumn9  = new Telerik.WinControls.UI.GridViewTextBoxColumn();
     Telerik.WinControls.UI.GridViewTextBoxColumn  gridViewTextBoxColumn10 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
     Telerik.WinControls.UI.GridViewTextBoxColumn  gridViewTextBoxColumn11 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
     Telerik.WinControls.UI.GridViewCheckBoxColumn gridViewCheckBoxColumn1 = new Telerik.WinControls.UI.GridViewCheckBoxColumn();
     Telerik.WinControls.UI.TableViewDefinition    tableViewDefinition1    = new Telerik.WinControls.UI.TableViewDefinition();
     Telerik.WinControls.UI.GridViewTextBoxColumn  gridViewTextBoxColumn12 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
     Telerik.WinControls.UI.GridViewTextBoxColumn  gridViewTextBoxColumn13 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
     Telerik.WinControls.UI.GridViewTextBoxColumn  gridViewTextBoxColumn14 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
     Telerik.WinControls.UI.GridViewTextBoxColumn  gridViewTextBoxColumn15 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
     Telerik.WinControls.UI.TableViewDefinition    tableViewDefinition2    = new Telerik.WinControls.UI.TableViewDefinition();
     this.DataGrid        = new Telerik.WinControls.UI.RadGridView();
     this.groupBox2       = new System.Windows.Forms.GroupBox();
     this.button3         = new System.Windows.Forms.Button();
     this.button2         = new System.Windows.Forms.Button();
     this.button1         = new System.Windows.Forms.Button();
     this.groupBox3       = new System.Windows.Forms.GroupBox();
     this.label2          = new System.Windows.Forms.Label();
     this.CityDataGrid    = new Telerik.WinControls.UI.RadGridView();
     this.lblMode         = new System.Windows.Forms.Label();
     this.txtSearch       = new System.Windows.Forms.TextBox();
     this.groupBox1       = new System.Windows.Forms.GroupBox();
     this.label9          = new System.Windows.Forms.Label();
     this.label3          = new System.Windows.Forms.Label();
     this.isCusIgnoreExp  = new System.Windows.Forms.CheckBox();
     this.txtCusExpDate   = new System.Windows.Forms.DateTimePicker();
     this.DatePicker      = new System.Windows.Forms.DateTimePicker();
     this.label10         = new System.Windows.Forms.Label();
     this.label8          = new System.Windows.Forms.Label();
     this.label7          = new System.Windows.Forms.Label();
     this.label6          = new System.Windows.Forms.Label();
     this.label5          = new System.Windows.Forms.Label();
     this.label4          = new System.Windows.Forms.Label();
     this.label1          = new System.Windows.Forms.Label();
     this.txtMessage      = new System.Windows.Forms.Label();
     this.panel1          = new System.Windows.Forms.Panel();
     this.txtCusLicense   = new com.sms.gui.AdvanceTextControl();
     this.txtCusPH        = new com.sms.gui.AdvanceTextControl();
     this.txtCusCity      = new com.sms.gui.AdvanceTextControl();
     this.txtCusAddr      = new com.sms.gui.AdvanceTextControl();
     this.txtCusName      = new com.sms.gui.AdvanceTextControl();
     this.txtCusCusCode   = new com.sms.gui.AdvanceTextControl();
     this.txtCusCCode     = new com.sms.gui.AdvanceTextControl();
     this.txtCusZCode     = new com.sms.gui.AdvanceTextControl();
     this.txtCustomerCity = new com.sms.gui.AdvanceTextControl();
     ((System.ComponentModel.ISupportInitialize)(this.DataGrid)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.DataGrid.MasterTemplate)).BeginInit();
     this.groupBox2.SuspendLayout();
     this.groupBox3.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.CityDataGrid)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.CityDataGrid.MasterTemplate)).BeginInit();
     this.groupBox1.SuspendLayout();
     this.panel1.SuspendLayout();
     this.SuspendLayout();
     //
     // DataGrid
     //
     this.DataGrid.BackColor = System.Drawing.SystemColors.Control;
     this.DataGrid.Cursor    = System.Windows.Forms.Cursors.Default;
     this.DataGrid.Font      = new System.Drawing.Font("Segoe UI", 12F);
     this.DataGrid.ForeColor = System.Drawing.SystemColors.ControlText;
     this.DataGrid.ImeMode   = System.Windows.Forms.ImeMode.NoControl;
     this.DataGrid.Location  = new System.Drawing.Point(3, 455);
     //
     //
     //
     this.DataGrid.MasterTemplate.AllowAddNewRow     = false;
     this.DataGrid.MasterTemplate.AllowColumnReorder = false;
     gridViewTextBoxColumn1.EnableExpressionEditor   = false;
     gridViewTextBoxColumn1.FieldName               = "cust_code";
     gridViewTextBoxColumn1.HeaderText              = "Customer ID";
     gridViewTextBoxColumn1.Name                    = "cust_code";
     gridViewTextBoxColumn1.Width                   = 135;
     gridViewTextBoxColumn2.EnableExpressionEditor  = false;
     gridViewTextBoxColumn2.FieldName               = "cus_name";
     gridViewTextBoxColumn2.HeaderText              = "Customer Name";
     gridViewTextBoxColumn2.Name                    = "cus_name";
     gridViewTextBoxColumn2.Width                   = 239;
     gridViewTextBoxColumn3.EnableExpressionEditor  = false;
     gridViewTextBoxColumn3.FieldName               = "z_code";
     gridViewTextBoxColumn3.HeaderText              = "Zone ID";
     gridViewTextBoxColumn3.IsVisible               = false;
     gridViewTextBoxColumn3.Name                    = "z_code";
     gridViewTextBoxColumn3.Width                   = 133;
     gridViewTextBoxColumn4.EnableExpressionEditor  = false;
     gridViewTextBoxColumn4.FieldName               = "zone";
     gridViewTextBoxColumn4.HeaderText              = "Zone";
     gridViewTextBoxColumn4.Name                    = "zone";
     gridViewTextBoxColumn4.Width                   = 176;
     gridViewTextBoxColumn5.EnableExpressionEditor  = false;
     gridViewTextBoxColumn5.FieldName               = "city_code";
     gridViewTextBoxColumn5.HeaderText              = "City ID";
     gridViewTextBoxColumn5.IsVisible               = false;
     gridViewTextBoxColumn5.Name                    = "city_code";
     gridViewTextBoxColumn5.Width                   = 129;
     gridViewTextBoxColumn6.EnableExpressionEditor  = false;
     gridViewTextBoxColumn6.FieldName               = "city";
     gridViewTextBoxColumn6.HeaderText              = "City Name";
     gridViewTextBoxColumn6.Name                    = "city";
     gridViewTextBoxColumn6.Width                   = 202;
     gridViewTextBoxColumn7.EnableExpressionEditor  = false;
     gridViewTextBoxColumn7.FieldName               = "addr";
     gridViewTextBoxColumn7.HeaderText              = "Address";
     gridViewTextBoxColumn7.Name                    = "addr";
     gridViewTextBoxColumn7.Width                   = 238;
     gridViewTextBoxColumn8.EnableExpressionEditor  = false;
     gridViewTextBoxColumn8.FieldName               = "ph";
     gridViewTextBoxColumn8.HeaderText              = "Phone#";
     gridViewTextBoxColumn8.Name                    = "ph";
     gridViewTextBoxColumn8.Width                   = 149;
     gridViewTextBoxColumn9.EnableExpressionEditor  = false;
     gridViewTextBoxColumn9.FieldName               = "licence";
     gridViewTextBoxColumn9.HeaderText              = "Licence";
     gridViewTextBoxColumn9.Name                    = "licence";
     gridViewTextBoxColumn9.Width                   = 184;
     gridViewTextBoxColumn10.EnableExpressionEditor = false;
     gridViewTextBoxColumn10.FieldName              = "cust_date";
     gridViewTextBoxColumn10.HeaderText             = "Added Date";
     gridViewTextBoxColumn10.Name                   = "cust_date";
     gridViewTextBoxColumn10.Width                  = 183;
     gridViewTextBoxColumn11.EnableExpressionEditor = false;
     gridViewTextBoxColumn11.FieldName              = "lic_exp_date";
     gridViewTextBoxColumn11.HeaderText             = "Licence Exp Date";
     gridViewTextBoxColumn11.Name                   = "lic_exp_date";
     gridViewTextBoxColumn11.Width                  = 214;
     gridViewCheckBoxColumn1.EnableExpressionEditor = false;
     gridViewCheckBoxColumn1.FieldName              = "chk_exp_date";
     gridViewCheckBoxColumn1.HeaderText             = "Ignore Expiry?";
     gridViewCheckBoxColumn1.MinWidth               = 20;
     gridViewCheckBoxColumn1.Name                   = "chk_exp_date";
     gridViewCheckBoxColumn1.Width                  = 174;
     this.DataGrid.MasterTemplate.Columns.AddRange(new Telerik.WinControls.UI.GridViewDataColumn[] {
         gridViewTextBoxColumn1,
         gridViewTextBoxColumn2,
         gridViewTextBoxColumn3,
         gridViewTextBoxColumn4,
         gridViewTextBoxColumn5,
         gridViewTextBoxColumn6,
         gridViewTextBoxColumn7,
         gridViewTextBoxColumn8,
         gridViewTextBoxColumn9,
         gridViewTextBoxColumn10,
         gridViewTextBoxColumn11,
         gridViewCheckBoxColumn1
     });
     this.DataGrid.MasterTemplate.EnableFiltering     = true;
     this.DataGrid.MasterTemplate.ShowRowHeaderColumn = false;
     this.DataGrid.MasterTemplate.ViewDefinition      = tableViewDefinition1;
     this.DataGrid.Name              = "DataGrid";
     this.DataGrid.ReadOnly          = true;
     this.DataGrid.RightToLeft       = System.Windows.Forms.RightToLeft.No;
     this.DataGrid.ShowGroupPanel    = false;
     this.DataGrid.Size              = new System.Drawing.Size(1098, 229);
     this.DataGrid.TabIndex          = 0;
     this.DataGrid.Text              = "radGridView1";
     this.DataGrid.SelectionChanged += new System.EventHandler(this.MasterTemplate_SelectionChanged);
     //
     // groupBox2
     //
     this.groupBox2.Controls.Add(this.button3);
     this.groupBox2.Controls.Add(this.button2);
     this.groupBox2.Controls.Add(this.button1);
     this.groupBox2.Location = new System.Drawing.Point(1107, 455);
     this.groupBox2.Name     = "groupBox2";
     this.groupBox2.Size     = new System.Drawing.Size(212, 161);
     this.groupBox2.TabIndex = 61;
     this.groupBox2.TabStop  = false;
     this.groupBox2.Text     = "Actions";
     //
     // button3
     //
     this.button3.Dock     = System.Windows.Forms.DockStyle.Top;
     this.button3.Location = new System.Drawing.Point(3, 108);
     this.button3.Name     = "button3";
     this.button3.Size     = new System.Drawing.Size(206, 45);
     this.button3.TabIndex = 100;
     this.button3.Text     = "Exit";
     this.button3.UseVisualStyleBackColor = true;
     this.button3.Click += new System.EventHandler(this.button3_Click);
     //
     // button2
     //
     this.button2.Dock     = System.Windows.Forms.DockStyle.Top;
     this.button2.Location = new System.Drawing.Point(3, 63);
     this.button2.Name     = "button2";
     this.button2.Size     = new System.Drawing.Size(206, 45);
     this.button2.TabIndex = 95;
     this.button2.Text     = "Cancel";
     this.button2.UseVisualStyleBackColor = true;
     this.button2.Click += new System.EventHandler(this.button2_Click);
     //
     // button1
     //
     this.button1.Dock     = System.Windows.Forms.DockStyle.Top;
     this.button1.Location = new System.Drawing.Point(3, 18);
     this.button1.Name     = "button1";
     this.button1.Size     = new System.Drawing.Size(206, 45);
     this.button1.TabIndex = 90;
     this.button1.Text     = "Save";
     this.button1.UseVisualStyleBackColor = true;
     this.button1.Click += new System.EventHandler(this.button1_Click);
     //
     // groupBox3
     //
     this.groupBox3.Controls.Add(this.label2);
     this.groupBox3.Controls.Add(this.CityDataGrid);
     this.groupBox3.Controls.Add(this.lblMode);
     this.groupBox3.Controls.Add(this.txtSearch);
     this.groupBox3.Location = new System.Drawing.Point(8, 8);
     this.groupBox3.Name     = "groupBox3";
     this.groupBox3.Size     = new System.Drawing.Size(511, 441);
     this.groupBox3.TabIndex = 67;
     this.groupBox3.TabStop  = false;
     this.groupBox3.Text     = "Select City and Zone";
     //
     // label2
     //
     this.label2.AutoSize = true;
     this.label2.Location = new System.Drawing.Point(278, 34);
     this.label2.Name     = "label2";
     this.label2.Size     = new System.Drawing.Size(183, 17);
     this.label2.TabIndex = 13;
     this.label2.Text     = "F8: ID and F9 Name Search";
     //
     // CityDataGrid
     //
     this.CityDataGrid.BackColor = System.Drawing.SystemColors.Control;
     this.CityDataGrid.Cursor    = System.Windows.Forms.Cursors.Default;
     this.CityDataGrid.Dock      = System.Windows.Forms.DockStyle.Bottom;
     this.CityDataGrid.Font      = new System.Drawing.Font("Segoe UI", 8.25F);
     this.CityDataGrid.ForeColor = System.Drawing.SystemColors.ControlText;
     this.CityDataGrid.ImeMode   = System.Windows.Forms.ImeMode.NoControl;
     this.CityDataGrid.Location  = new System.Drawing.Point(3, 88);
     //
     //
     //
     this.CityDataGrid.MasterTemplate.AllowAddNewRow     = false;
     this.CityDataGrid.MasterTemplate.AllowColumnReorder = false;
     gridViewTextBoxColumn12.EnableExpressionEditor      = false;
     gridViewTextBoxColumn12.FieldName              = "CityCode";
     gridViewTextBoxColumn12.HeaderText             = "ID";
     gridViewTextBoxColumn12.Name                   = "CityCode";
     gridViewTextBoxColumn12.Width                  = 103;
     gridViewTextBoxColumn13.EnableExpressionEditor = false;
     gridViewTextBoxColumn13.FieldName              = "CityName";
     gridViewTextBoxColumn13.HeaderText             = "Name";
     gridViewTextBoxColumn13.Name                   = "CityName";
     gridViewTextBoxColumn13.Width                  = 223;
     gridViewTextBoxColumn14.EnableExpressionEditor = false;
     gridViewTextBoxColumn14.FieldName              = "ZoneName";
     gridViewTextBoxColumn14.HeaderText             = "Zone";
     gridViewTextBoxColumn14.Name                   = "ZoneName";
     gridViewTextBoxColumn14.Width                  = 126;
     gridViewTextBoxColumn15.EnableExpressionEditor = false;
     gridViewTextBoxColumn15.FieldName              = "ZoneCode";
     gridViewTextBoxColumn15.HeaderText             = "ZoneCode";
     gridViewTextBoxColumn15.IsVisible              = false;
     gridViewTextBoxColumn15.Name                   = "ZoneCode";
     this.CityDataGrid.MasterTemplate.Columns.AddRange(new Telerik.WinControls.UI.GridViewDataColumn[] {
         gridViewTextBoxColumn12,
         gridViewTextBoxColumn13,
         gridViewTextBoxColumn14,
         gridViewTextBoxColumn15
     });
     this.CityDataGrid.MasterTemplate.EnableGrouping      = false;
     this.CityDataGrid.MasterTemplate.EnableSorting       = false;
     this.CityDataGrid.MasterTemplate.ShowColumnHeaders   = false;
     this.CityDataGrid.MasterTemplate.ShowRowHeaderColumn = false;
     this.CityDataGrid.MasterTemplate.ViewDefinition      = tableViewDefinition2;
     this.CityDataGrid.Name              = "CityDataGrid";
     this.CityDataGrid.ReadOnly          = true;
     this.CityDataGrid.RightToLeft       = System.Windows.Forms.RightToLeft.No;
     this.CityDataGrid.ShowGroupPanel    = false;
     this.CityDataGrid.Size              = new System.Drawing.Size(505, 350);
     this.CityDataGrid.TabIndex          = 5;
     this.CityDataGrid.Text              = "radGridView1";
     this.CityDataGrid.SelectionChanged += new System.EventHandler(this.CityDataGrid_SelectionChanged);
     //
     // lblMode
     //
     this.lblMode.AutoSize    = true;
     this.lblMode.Location    = new System.Drawing.Point(6, 60);
     this.lblMode.Name        = "lblMode";
     this.lblMode.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
     this.lblMode.Size        = new System.Drawing.Size(73, 17);
     this.lblMode.TabIndex    = 11;
     this.lblMode.Text        = "Search By";
     //
     // txtSearch
     //
     this.txtSearch.AutoCompleteMode   = System.Windows.Forms.AutoCompleteMode.Suggest;
     this.txtSearch.AutoCompleteSource = System.Windows.Forms.AutoCompleteSource.CustomSource;
     this.txtSearch.Location           = new System.Drawing.Point(194, 60);
     this.txtSearch.Name         = "txtSearch";
     this.txtSearch.Size         = new System.Drawing.Size(123, 22);
     this.txtSearch.TabIndex     = 0;
     this.txtSearch.TextChanged += new System.EventHandler(this.txtSearch_TextChanged);
     this.txtSearch.KeyDown     += new System.Windows.Forms.KeyEventHandler(this.txtSearch_KeyDown);
     //
     // groupBox1
     //
     this.groupBox1.Controls.Add(this.txtCusLicense);
     this.groupBox1.Controls.Add(this.txtCusPH);
     this.groupBox1.Controls.Add(this.txtCusCity);
     this.groupBox1.Controls.Add(this.txtCusAddr);
     this.groupBox1.Controls.Add(this.txtCusName);
     this.groupBox1.Controls.Add(this.txtCusCusCode);
     this.groupBox1.Controls.Add(this.txtCusCCode);
     this.groupBox1.Controls.Add(this.txtCusZCode);
     this.groupBox1.Controls.Add(this.txtCustomerCity);
     this.groupBox1.Controls.Add(this.label9);
     this.groupBox1.Controls.Add(this.label3);
     this.groupBox1.Controls.Add(this.isCusIgnoreExp);
     this.groupBox1.Controls.Add(this.txtCusExpDate);
     this.groupBox1.Controls.Add(this.DatePicker);
     this.groupBox1.Controls.Add(this.label10);
     this.groupBox1.Controls.Add(this.label8);
     this.groupBox1.Controls.Add(this.label7);
     this.groupBox1.Controls.Add(this.label6);
     this.groupBox1.Controls.Add(this.label5);
     this.groupBox1.Controls.Add(this.label4);
     this.groupBox1.Controls.Add(this.label1);
     this.groupBox1.Location = new System.Drawing.Point(525, 8);
     this.groupBox1.Name     = "groupBox1";
     this.groupBox1.Size     = new System.Drawing.Size(744, 441);
     this.groupBox1.TabIndex = 68;
     this.groupBox1.TabStop  = false;
     this.groupBox1.Text     = "Customer Form";
     //
     // label9
     //
     this.label9.AutoSize = true;
     this.label9.Location = new System.Drawing.Point(84, 246);
     this.label9.Name     = "label9";
     this.label9.Size     = new System.Drawing.Size(31, 17);
     this.label9.TabIndex = 101;
     this.label9.Text     = "City";
     //
     // label3
     //
     this.label3.AutoSize = true;
     this.label3.Location = new System.Drawing.Point(10, 94);
     this.label3.Name     = "label3";
     this.label3.Size     = new System.Drawing.Size(105, 17);
     this.label3.TabIndex = 106;
     this.label3.Text     = "Customer Code";
     //
     // isCusIgnoreExp
     //
     this.isCusIgnoreExp.AutoSize = true;
     this.isCusIgnoreExp.Location = new System.Drawing.Point(435, 390);
     this.isCusIgnoreExp.Name     = "isCusIgnoreExp";
     this.isCusIgnoreExp.Size     = new System.Drawing.Size(176, 21);
     this.isCusIgnoreExp.TabIndex = 65;
     this.isCusIgnoreExp.Text     = "Ignore Customer Expiry";
     this.isCusIgnoreExp.UseVisualStyleBackColor = true;
     //
     // txtCusExpDate
     //
     this.txtCusExpDate.CustomFormat = "yyyy-MM-dd";
     this.txtCusExpDate.Format       = System.Windows.Forms.DateTimePickerFormat.Custom;
     this.txtCusExpDate.Location     = new System.Drawing.Point(187, 390);
     this.txtCusExpDate.Name         = "txtCusExpDate";
     this.txtCusExpDate.Size         = new System.Drawing.Size(214, 22);
     this.txtCusExpDate.TabIndex     = 60;
     //
     // DatePicker
     //
     this.DatePicker.CustomFormat = "yyyy-MM-dd hh:mm:ss tt";
     this.DatePicker.Format       = System.Windows.Forms.DateTimePickerFormat.Custom;
     this.DatePicker.Location     = new System.Drawing.Point(497, 39);
     this.DatePicker.MinDate      = new System.DateTime(2017, 5, 4, 0, 0, 0, 0);
     this.DatePicker.Name         = "DatePicker";
     this.DatePicker.Size         = new System.Drawing.Size(228, 22);
     this.DatePicker.TabIndex     = 21;
     //
     // label10
     //
     this.label10.AutoSize = true;
     this.label10.Location = new System.Drawing.Point(413, 42);
     this.label10.Name     = "label10";
     this.label10.Size     = new System.Drawing.Size(38, 17);
     this.label10.TabIndex = 105;
     this.label10.Text     = "Date";
     //
     // label8
     //
     this.label8.AutoSize = true;
     this.label8.Location = new System.Drawing.Point(6, 144);
     this.label8.Name     = "label8";
     this.label8.Size     = new System.Drawing.Size(109, 17);
     this.label8.TabIndex = 104;
     this.label8.Text     = "Customer Name";
     //
     // label7
     //
     this.label7.AutoSize = true;
     this.label7.Location = new System.Drawing.Point(55, 195);
     this.label7.Name     = "label7";
     this.label7.Size     = new System.Drawing.Size(60, 17);
     this.label7.TabIndex = 103;
     this.label7.Text     = "Address";
     //
     // label6
     //
     this.label6.AutoSize = true;
     this.label6.Location = new System.Drawing.Point(44, 297);
     this.label6.Name     = "label6";
     this.label6.Size     = new System.Drawing.Size(71, 17);
     this.label6.TabIndex = 102;
     this.label6.Text     = "Phone No";
     //
     // label5
     //
     this.label5.AutoSize = true;
     this.label5.Location = new System.Drawing.Point(50, 348);
     this.label5.Name     = "label5";
     this.label5.Size     = new System.Drawing.Size(65, 17);
     this.label5.TabIndex = 101;
     this.label5.Text     = "License#";
     //
     // label4
     //
     this.label4.AutoSize = true;
     this.label4.Location = new System.Drawing.Point(10, 395);
     this.label4.Name     = "label4";
     this.label4.Size     = new System.Drawing.Size(118, 17);
     this.label4.TabIndex = 100;
     this.label4.Text     = "License Exp Date";
     //
     // label1
     //
     this.label1.AutoSize = true;
     this.label1.Location = new System.Drawing.Point(20, 41);
     this.label1.Name     = "label1";
     this.label1.Size     = new System.Drawing.Size(95, 17);
     this.label1.TabIndex = 99;
     this.label1.Text     = "Customer City";
     //
     // txtMessage
     //
     this.txtMessage.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                    | System.Windows.Forms.AnchorStyles.Right)));
     this.txtMessage.Font      = new System.Drawing.Font("Microsoft Sans Serif", 15F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtMessage.Location  = new System.Drawing.Point(1490, 170);
     this.txtMessage.Name      = "txtMessage";
     this.txtMessage.Size      = new System.Drawing.Size(215, 65);
     this.txtMessage.TabIndex  = 70;
     this.txtMessage.Text      = "Message";
     this.txtMessage.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     this.txtMessage.Visible   = false;
     //
     // panel1
     //
     this.panel1.Controls.Add(this.DataGrid);
     this.panel1.Controls.Add(this.groupBox3);
     this.panel1.Controls.Add(this.groupBox2);
     this.panel1.Controls.Add(this.groupBox1);
     this.panel1.Location = new System.Drawing.Point(12, 12);
     this.panel1.Name     = "panel1";
     this.panel1.Size     = new System.Drawing.Size(1332, 691);
     this.panel1.TabIndex = 1;
     //
     // txtCusLicense
     //
     this.txtCusLicense.AdvanceText    = "";
     this.txtCusLicense.InvalidMessage = null;
     this.txtCusLicense.IsRequired     = false;
     this.txtCusLicense.Location       = new System.Drawing.Point(185, 322);
     this.txtCusLicense.Name           = "txtCusLicense";
     this.txtCusLicense.RequiredChar   = '*';
     this.txtCusLicense.Size           = new System.Drawing.Size(218, 45);
     this.txtCusLicense.TabIndex       = 114;
     this.txtCusLicense.Type           = com.sms.gui.AdvanceTextControl.TextType.TEXT;
     //
     // txtCusPH
     //
     this.txtCusPH.AdvanceText    = "";
     this.txtCusPH.InvalidMessage = null;
     this.txtCusPH.IsRequired     = false;
     this.txtCusPH.Location       = new System.Drawing.Point(187, 271);
     this.txtCusPH.Name           = "txtCusPH";
     this.txtCusPH.RequiredChar   = '*';
     this.txtCusPH.Size           = new System.Drawing.Size(218, 45);
     this.txtCusPH.TabIndex       = 113;
     this.txtCusPH.Type           = com.sms.gui.AdvanceTextControl.TextType.TEXT;
     //
     // txtCusCity
     //
     this.txtCusCity.AdvanceText    = "";
     this.txtCusCity.InvalidMessage = null;
     this.txtCusCity.IsRequired     = false;
     this.txtCusCity.Location       = new System.Drawing.Point(187, 220);
     this.txtCusCity.Name           = "txtCusCity";
     this.txtCusCity.RequiredChar   = '*';
     this.txtCusCity.Size           = new System.Drawing.Size(218, 45);
     this.txtCusCity.TabIndex       = 112;
     this.txtCusCity.Type           = com.sms.gui.AdvanceTextControl.TextType.TEXT;
     //
     // txtCusAddr
     //
     this.txtCusAddr.AdvanceText    = "";
     this.txtCusAddr.InvalidMessage = null;
     this.txtCusAddr.IsRequired     = false;
     this.txtCusAddr.Location       = new System.Drawing.Point(187, 169);
     this.txtCusAddr.Name           = "txtCusAddr";
     this.txtCusAddr.RequiredChar   = '*';
     this.txtCusAddr.Size           = new System.Drawing.Size(503, 45);
     this.txtCusAddr.TabIndex       = 111;
     this.txtCusAddr.Type           = com.sms.gui.AdvanceTextControl.TextType.TEXT;
     //
     // txtCusName
     //
     this.txtCusName.AdvanceText    = "";
     this.txtCusName.InvalidMessage = null;
     this.txtCusName.IsRequired     = false;
     this.txtCusName.Location       = new System.Drawing.Point(187, 118);
     this.txtCusName.Name           = "txtCusName";
     this.txtCusName.RequiredChar   = '*';
     this.txtCusName.Size           = new System.Drawing.Size(218, 45);
     this.txtCusName.TabIndex       = 110;
     this.txtCusName.Type           = com.sms.gui.AdvanceTextControl.TextType.TEXT;
     //
     // txtCusCusCode
     //
     this.txtCusCusCode.AdvanceText    = "0";
     this.txtCusCusCode.Enabled        = false;
     this.txtCusCusCode.InvalidMessage = null;
     this.txtCusCusCode.IsRequired     = false;
     this.txtCusCusCode.Location       = new System.Drawing.Point(365, 67);
     this.txtCusCusCode.Name           = "txtCusCusCode";
     this.txtCusCusCode.RequiredChar   = '*';
     this.txtCusCusCode.Size           = new System.Drawing.Size(83, 45);
     this.txtCusCusCode.TabIndex       = 109;
     this.txtCusCusCode.Type           = com.sms.gui.AdvanceTextControl.TextType.NUMBER;
     //
     // txtCusCCode
     //
     this.txtCusCCode.AdvanceText    = "0";
     this.txtCusCCode.Enabled        = false;
     this.txtCusCCode.InvalidMessage = null;
     this.txtCusCCode.IsRequired     = false;
     this.txtCusCCode.Location       = new System.Drawing.Point(276, 67);
     this.txtCusCCode.Name           = "txtCusCCode";
     this.txtCusCCode.RequiredChar   = '*';
     this.txtCusCCode.Size           = new System.Drawing.Size(83, 45);
     this.txtCusCCode.TabIndex       = 108;
     this.txtCusCCode.Type           = com.sms.gui.AdvanceTextControl.TextType.NUMBER;
     //
     // txtCusZCode
     //
     this.txtCusZCode.AdvanceText    = "0";
     this.txtCusZCode.Enabled        = false;
     this.txtCusZCode.InvalidMessage = null;
     this.txtCusZCode.IsRequired     = false;
     this.txtCusZCode.Location       = new System.Drawing.Point(187, 67);
     this.txtCusZCode.Name           = "txtCusZCode";
     this.txtCusZCode.RequiredChar   = '*';
     this.txtCusZCode.Size           = new System.Drawing.Size(83, 45);
     this.txtCusZCode.TabIndex       = 107;
     this.txtCusZCode.Type           = com.sms.gui.AdvanceTextControl.TextType.NUMBER;
     //
     // txtCustomerCity
     //
     this.txtCustomerCity.AdvanceText    = "";
     this.txtCustomerCity.Enabled        = false;
     this.txtCustomerCity.InvalidMessage = null;
     this.txtCustomerCity.IsRequired     = false;
     this.txtCustomerCity.Location       = new System.Drawing.Point(185, 16);
     this.txtCustomerCity.Name           = "txtCustomerCity";
     this.txtCustomerCity.RequiredChar   = '*';
     this.txtCustomerCity.Size           = new System.Drawing.Size(218, 45);
     this.txtCustomerCity.TabIndex       = 57;
     this.txtCustomerCity.Type           = com.sms.gui.AdvanceTextControl.TextType.TEXT;
     //
     // CustomerModify
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 16F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize          = new System.Drawing.Size(1769, 771);
     this.Controls.Add(this.panel1);
     this.Controls.Add(this.txtMessage);
     this.KeyPreview   = true;
     this.Name         = "CustomerModify";
     this.Text         = "CustomerModify";
     this.Load        += new System.EventHandler(this.CustomerModify_Load);
     this.FontChanged += new System.EventHandler(this.CustomerModify_FontChanged);
     this.KeyDown     += new System.Windows.Forms.KeyEventHandler(this.CustomerModify_KeyDown);
     ((System.ComponentModel.ISupportInitialize)(this.DataGrid.MasterTemplate)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.DataGrid)).EndInit();
     this.groupBox2.ResumeLayout(false);
     this.groupBox3.ResumeLayout(false);
     this.groupBox3.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.CityDataGrid.MasterTemplate)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.CityDataGrid)).EndInit();
     this.groupBox1.ResumeLayout(false);
     this.groupBox1.PerformLayout();
     this.panel1.ResumeLayout(false);
     this.ResumeLayout(false);
 }
コード例 #22
0
        /// <summary>
        /// Required method for Designer support - do not modify
        /// the contents of this method with the code editor.
        /// </summary>
        private void InitializeComponent()
        {
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn6 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn7 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn8 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn9 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewCheckBoxColumn gridViewCheckBoxColumn2 = new Telerik.WinControls.UI.GridViewCheckBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn10 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            this.panel1 = new System.Windows.Forms.Panel();
            this.button1 = new System.Windows.Forms.Button();
            this.bNewCustomer = new System.Windows.Forms.Button();
            this.groupBox1 = new System.Windows.Forms.GroupBox();
            this.label3 = new System.Windows.Forms.Label();
            this.label2 = new System.Windows.Forms.Label();
            this.label1 = new System.Windows.Forms.Label();
            this.bSearch = new System.Windows.Forms.Button();
            this.tPhoneNumber = new System.Windows.Forms.TextBox();
            this.tLastName = new System.Windows.Forms.TextBox();
            this.tName = new System.Windows.Forms.TextBox();
            this.radGridView1 = new Telerik.WinControls.UI.RadGridView();
            this.radTitleBar1 = new Telerik.WinControls.UI.RadTitleBar();
            this.visualStudio2012LightTheme1 = new Telerik.WinControls.Themes.VisualStudio2012LightTheme();
            this.saveFileDialog1 = new System.Windows.Forms.SaveFileDialog();
            this.panel1.SuspendLayout();
            this.groupBox1.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.radGridView1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radGridView1.MasterTemplate)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radTitleBar1)).BeginInit();
            this.SuspendLayout();
            // 
            // panel1
            // 
            this.panel1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(239)))), ((int)(((byte)(239)))), ((int)(((byte)(242)))));
            this.panel1.Controls.Add(this.button1);
            this.panel1.Controls.Add(this.bNewCustomer);
            this.panel1.Controls.Add(this.groupBox1);
            this.panel1.Dock = System.Windows.Forms.DockStyle.Top;
            this.panel1.Location = new System.Drawing.Point(3, 44);
            this.panel1.Name = "panel1";
            this.panel1.Padding = new System.Windows.Forms.Padding(5);
            this.panel1.Size = new System.Drawing.Size(794, 81);
            this.panel1.TabIndex = 0;
            // 
            // button1
            // 
            this.button1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
            this.button1.Location = new System.Drawing.Point(226, 13);
            this.button1.Name = "button1";
            this.button1.Size = new System.Drawing.Size(63, 60);
            this.button1.TabIndex = 2;
            this.button1.Text = "ذخیره Excel";
            this.button1.UseVisualStyleBackColor = true;
            this.button1.Click += new System.EventHandler(this.button1_Click);
            // 
            // bNewCustomer
            // 
            this.bNewCustomer.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
            this.bNewCustomer.Location = new System.Drawing.Point(290, 13);
            this.bNewCustomer.Name = "bNewCustomer";
            this.bNewCustomer.Size = new System.Drawing.Size(67, 60);
            this.bNewCustomer.TabIndex = 1;
            this.bNewCustomer.Text = "مشتری جدید";
            this.bNewCustomer.UseVisualStyleBackColor = true;
            this.bNewCustomer.Click += new System.EventHandler(this.bNewCustomer_Click);
            // 
            // groupBox1
            // 
            this.groupBox1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
            this.groupBox1.Controls.Add(this.label3);
            this.groupBox1.Controls.Add(this.label2);
            this.groupBox1.Controls.Add(this.label1);
            this.groupBox1.Controls.Add(this.bSearch);
            this.groupBox1.Controls.Add(this.tPhoneNumber);
            this.groupBox1.Controls.Add(this.tLastName);
            this.groupBox1.Controls.Add(this.tName);
            this.groupBox1.Location = new System.Drawing.Point(363, 8);
            this.groupBox1.Name = "groupBox1";
            this.groupBox1.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
            this.groupBox1.Size = new System.Drawing.Size(423, 67);
            this.groupBox1.TabIndex = 0;
            this.groupBox1.TabStop = false;
            this.groupBox1.Text = "جستجو مشتری";
            // 
            // label3
            // 
            this.label3.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
            this.label3.AutoSize = true;
            this.label3.Location = new System.Drawing.Point(141, 23);
            this.label3.Name = "label3";
            this.label3.Size = new System.Drawing.Size(66, 13);
            this.label3.TabIndex = 6;
            this.label3.Text = "شماره تماس";
            // 
            // label2
            // 
            this.label2.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
            this.label2.AutoSize = true;
            this.label2.Location = new System.Drawing.Point(248, 23);
            this.label2.Name = "label2";
            this.label2.Size = new System.Drawing.Size(65, 13);
            this.label2.TabIndex = 5;
            this.label2.Text = "نام خانوادگی";
            // 
            // label1
            // 
            this.label1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
            this.label1.AutoSize = true;
            this.label1.Location = new System.Drawing.Point(396, 23);
            this.label1.Name = "label1";
            this.label1.Size = new System.Drawing.Size(20, 13);
            this.label1.TabIndex = 4;
            this.label1.Text = "نام";
            // 
            // bSearch
            // 
            this.bSearch.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
            this.bSearch.Location = new System.Drawing.Point(23, 37);
            this.bSearch.Name = "bSearch";
            this.bSearch.Size = new System.Drawing.Size(75, 23);
            this.bSearch.TabIndex = 3;
            this.bSearch.Text = "جستجو";
            this.bSearch.UseVisualStyleBackColor = true;
            this.bSearch.Click += new System.EventHandler(this.bSearch_Click);
            // 
            // tPhoneNumber
            // 
            this.tPhoneNumber.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
            this.tPhoneNumber.Location = new System.Drawing.Point(104, 39);
            this.tPhoneNumber.Name = "tPhoneNumber";
            this.tPhoneNumber.Size = new System.Drawing.Size(100, 21);
            this.tPhoneNumber.TabIndex = 2;
            // 
            // tLastName
            // 
            this.tLastName.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
            this.tLastName.Location = new System.Drawing.Point(210, 39);
            this.tLastName.Name = "tLastName";
            this.tLastName.Size = new System.Drawing.Size(100, 21);
            this.tLastName.TabIndex = 1;
            // 
            // tName
            // 
            this.tName.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
            this.tName.Location = new System.Drawing.Point(316, 39);
            this.tName.Name = "tName";
            this.tName.Size = new System.Drawing.Size(100, 21);
            this.tName.TabIndex = 0;
            // 
            // radGridView1
            // 
            this.radGridView1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(238)))), ((int)(((byte)(238)))), ((int)(((byte)(238)))));
            this.radGridView1.Cursor = System.Windows.Forms.Cursors.Default;
            this.radGridView1.Dock = System.Windows.Forms.DockStyle.Fill;
            this.radGridView1.Font = new System.Drawing.Font("Tahoma", 8.25F);
            this.radGridView1.ForeColor = System.Drawing.SystemColors.ControlText;
            this.radGridView1.ImeMode = System.Windows.Forms.ImeMode.NoControl;
            this.radGridView1.Location = new System.Drawing.Point(3, 125);
            // 
            // radGridView1
            // 
            this.radGridView1.MasterTemplate.AllowAddNewRow = false;
            this.radGridView1.MasterTemplate.AllowEditRow = false;
            this.radGridView1.MasterTemplate.AutoSizeColumnsMode = Telerik.WinControls.UI.GridViewAutoSizeColumnsMode.Fill;
            gridViewTextBoxColumn6.EnableExpressionEditor = false;
            gridViewTextBoxColumn6.FieldName = "Id";
            gridViewTextBoxColumn6.HeaderText = "شناسه";
            gridViewTextBoxColumn6.MaxWidth = 100;
            gridViewTextBoxColumn6.MinWidth = 100;
            gridViewTextBoxColumn6.Name = "column1";
            gridViewTextBoxColumn6.ReadOnly = true;
            gridViewTextBoxColumn6.Width = 100;
            gridViewTextBoxColumn7.EnableExpressionEditor = false;
            gridViewTextBoxColumn7.FieldName = "FirstName";
            gridViewTextBoxColumn7.HeaderText = "نام";
            gridViewTextBoxColumn7.MaxWidth = 128;
            gridViewTextBoxColumn7.MinWidth = 128;
            gridViewTextBoxColumn7.Name = "column2";
            gridViewTextBoxColumn7.Width = 128;
            gridViewTextBoxColumn8.EnableExpressionEditor = false;
            gridViewTextBoxColumn8.FieldName = "LastName";
            gridViewTextBoxColumn8.HeaderText = "نام خانوادگی";
            gridViewTextBoxColumn8.MaxWidth = 134;
            gridViewTextBoxColumn8.MinWidth = 134;
            gridViewTextBoxColumn8.Name = "column3";
            gridViewTextBoxColumn8.Width = 134;
            gridViewTextBoxColumn9.EnableExpressionEditor = false;
            gridViewTextBoxColumn9.FieldName = "PhoneNumber";
            gridViewTextBoxColumn9.HeaderText = "شماره تماس";
            gridViewTextBoxColumn9.MaxWidth = 134;
            gridViewTextBoxColumn9.MinWidth = 134;
            gridViewTextBoxColumn9.Name = "column4";
            gridViewTextBoxColumn9.Width = 134;
            gridViewCheckBoxColumn2.EnableExpressionEditor = false;
            gridViewCheckBoxColumn2.FieldName = "Gender";
            gridViewCheckBoxColumn2.HeaderText = "جنسیت (زن)";
            gridViewCheckBoxColumn2.MaxWidth = 94;
            gridViewCheckBoxColumn2.MinWidth = 94;
            gridViewCheckBoxColumn2.Name = "column5";
            gridViewCheckBoxColumn2.Width = 94;
            gridViewTextBoxColumn10.EnableExpressionEditor = false;
            gridViewTextBoxColumn10.FieldName = "Description";
            gridViewTextBoxColumn10.HeaderText = "توضیحات";
            gridViewTextBoxColumn10.MaxWidth = 2000;
            gridViewTextBoxColumn10.Multiline = true;
            gridViewTextBoxColumn10.Name = "column6";
            gridViewTextBoxColumn10.Width = 191;
            this.radGridView1.MasterTemplate.Columns.AddRange(new Telerik.WinControls.UI.GridViewDataColumn[] {
            gridViewTextBoxColumn6,
            gridViewTextBoxColumn7,
            gridViewTextBoxColumn8,
            gridViewTextBoxColumn9,
            gridViewCheckBoxColumn2,
            gridViewTextBoxColumn10});
            this.radGridView1.MasterTemplate.EnableAlternatingRowColor = true;
            this.radGridView1.MasterTemplate.EnableGrouping = false;
            this.radGridView1.MasterTemplate.EnablePaging = true;
            this.radGridView1.MasterTemplate.PageSize = 25;
            this.radGridView1.Name = "radGridView1";
            this.radGridView1.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
            this.radGridView1.Size = new System.Drawing.Size(794, 422);
            this.radGridView1.TabIndex = 5;
            this.radGridView1.Text = "radGridView1";
            this.radGridView1.ThemeName = "VisualStudio2012Light";
            this.radGridView1.UserDeletingRow += new Telerik.WinControls.UI.GridViewRowCancelEventHandler(this.radGridView1_UserDeletingRow);
            this.radGridView1.CellDoubleClick += new Telerik.WinControls.UI.GridViewCellEventHandler(this.MasterTemplate_CellDoubleClick);
            // 
            // radTitleBar1
            // 
            this.radTitleBar1.BackColor = System.Drawing.SystemColors.ButtonHighlight;
            this.radTitleBar1.Dock = System.Windows.Forms.DockStyle.Top;
            this.radTitleBar1.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.radTitleBar1.Location = new System.Drawing.Point(3, 3);
            this.radTitleBar1.Name = "radTitleBar1";
            this.radTitleBar1.Size = new System.Drawing.Size(794, 41);
            this.radTitleBar1.TabIndex = 6;
            this.radTitleBar1.TabStop = false;
            this.radTitleBar1.Text = "مشتری ها";
            this.radTitleBar1.ThemeName = "VisualStudio2012Light";
            ((Telerik.WinControls.UI.RadTitleBarElement)(this.radTitleBar1.GetChildAt(0))).Text = "مشتری ها";
            ((Telerik.WinControls.UI.RadTitleBarElement)(this.radTitleBar1.GetChildAt(0))).ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(120)))), ((int)(((byte)(120)))), ((int)(((byte)(120)))));
            ((Telerik.WinControls.UI.RadTitleBarElement)(this.radTitleBar1.GetChildAt(0))).Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            // 
            // CustomersForm
            // 
            this.AcceptButton = this.bSearch;
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(239)))), ((int)(((byte)(239)))), ((int)(((byte)(242)))));
            this.ClientSize = new System.Drawing.Size(800, 550);
            this.Controls.Add(this.radGridView1);
            this.Controls.Add(this.panel1);
            this.Controls.Add(this.radTitleBar1);
            this.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(62)))));
            this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
            this.Name = "CustomersForm";
            this.Padding = new System.Windows.Forms.Padding(3);
            this.ShowIcon = false;
            this.ShowInTaskbar = false;
            this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
            this.Text = "مشتری ها";
            this.Load += new System.EventHandler(this.CustomersForm_Load);
            this.panel1.ResumeLayout(false);
            this.groupBox1.ResumeLayout(false);
            this.groupBox1.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.radGridView1.MasterTemplate)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radGridView1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radTitleBar1)).EndInit();
            this.ResumeLayout(false);

        }
コード例 #23
0
 /// <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(frmComplementos));
     Telerik.WinControls.UI.GridViewTextBoxColumn   gridViewTextBoxColumn1  = new Telerik.WinControls.UI.GridViewTextBoxColumn();
     Telerik.WinControls.UI.GridViewTextBoxColumn   gridViewTextBoxColumn2  = new Telerik.WinControls.UI.GridViewTextBoxColumn();
     Telerik.WinControls.UI.GridViewTextBoxColumn   gridViewTextBoxColumn3  = new Telerik.WinControls.UI.GridViewTextBoxColumn();
     Telerik.WinControls.UI.GridViewTextBoxColumn   gridViewTextBoxColumn4  = new Telerik.WinControls.UI.GridViewTextBoxColumn();
     Telerik.WinControls.UI.GridViewTextBoxColumn   gridViewTextBoxColumn5  = new Telerik.WinControls.UI.GridViewTextBoxColumn();
     Telerik.WinControls.UI.GridViewCheckBoxColumn  gridViewCheckBoxColumn1 = new Telerik.WinControls.UI.GridViewCheckBoxColumn();
     Telerik.WinControls.UI.TableViewDefinition     tableViewDefinition1    = new Telerik.WinControls.UI.TableViewDefinition();
     Telerik.WinControls.UI.RadListDataItem         radListDataItem1        = new Telerik.WinControls.UI.RadListDataItem();
     Telerik.WinControls.UI.RadListDataItem         radListDataItem2        = new Telerik.WinControls.UI.RadListDataItem();
     Telerik.WinControls.UI.RadListDataItem         radListDataItem3        = new Telerik.WinControls.UI.RadListDataItem();
     Telerik.WinControls.UI.RadListDataItem         radListDataItem4        = new Telerik.WinControls.UI.RadListDataItem();
     this.CommandBar              = new Telerik.WinControls.UI.RadCommandBar();
     this.commandBarRowElement1   = new Telerik.WinControls.UI.CommandBarRowElement();
     this.commandBarStripElement1 = new Telerik.WinControls.UI.CommandBarStripElement();
     this.btnNuevo                = new Telerik.WinControls.UI.CommandBarButton();
     this.commandBarSeparator1    = new Telerik.WinControls.UI.CommandBarSeparator();
     this.btnGuardar              = new Telerik.WinControls.UI.CommandBarButton();
     this.commandBarSeparator2    = new Telerik.WinControls.UI.CommandBarSeparator();
     this.btnEliminar             = new Telerik.WinControls.UI.CommandBarButton();
     this.commandBarSeparator3    = new Telerik.WinControls.UI.CommandBarSeparator();
     this.btnSalir                = new Telerik.WinControls.UI.CommandBarButton();
     this.commandBarSeparator4    = new Telerik.WinControls.UI.CommandBarSeparator();
     this.commandBarLabel1        = new Telerik.WinControls.UI.CommandBarLabel();
     this.commandBarStripElement2 = new Telerik.WinControls.UI.CommandBarStripElement();
     this.commandBarStripElement3 = new Telerik.WinControls.UI.CommandBarStripElement();
     this.commandBarStripElement4 = new Telerik.WinControls.UI.CommandBarStripElement();
     this.radDock1                = new Telerik.WinControls.UI.Docking.RadDock();
     this.documentWindow1         = new Telerik.WinControls.UI.Docking.DocumentWindow();
     this.radPanel4               = new Telerik.WinControls.UI.RadPanel();
     this.gvDatos                 = new Telerik.WinControls.UI.RadGridView();
     this.radPanel2               = new Telerik.WinControls.UI.RadPanel();
     this.txtClave                = new Telerik.WinControls.UI.RadTextBox();
     this.label2                  = new System.Windows.Forms.Label();
     this.cboColores              = new Telerik.WinControls.UI.RadDropDownList();
     this.label3                  = new System.Windows.Forms.Label();
     this.txtId                   = new Telerik.WinControls.UI.RadTextBox();
     this.chkEstatus              = new System.Windows.Forms.CheckBox();
     this.documentContainer1      = new Telerik.WinControls.UI.Docking.DocumentContainer();
     this.documentTabStrip1       = new Telerik.WinControls.UI.Docking.DocumentTabStrip();
     this.commandBarStripElement5 = new Telerik.WinControls.UI.CommandBarStripElement();
     this.label4                  = new System.Windows.Forms.Label();
     this.cboTipo                 = new Telerik.WinControls.UI.RadDropDownList();
     ((System.ComponentModel.ISupportInitialize)(this.CommandBar)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radDock1)).BeginInit();
     this.radDock1.SuspendLayout();
     this.documentWindow1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.radPanel4)).BeginInit();
     this.radPanel4.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gvDatos)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvDatos.MasterTemplate)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radPanel2)).BeginInit();
     this.radPanel2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.txtClave)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cboColores)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtId)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.documentContainer1)).BeginInit();
     this.documentContainer1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.documentTabStrip1)).BeginInit();
     this.documentTabStrip1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.cboTipo)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
     this.SuspendLayout();
     //
     // CommandBar
     //
     this.CommandBar.Dock     = System.Windows.Forms.DockStyle.Top;
     this.CommandBar.Location = new System.Drawing.Point(0, 0);
     this.CommandBar.Name     = "CommandBar";
     this.CommandBar.Rows.AddRange(new Telerik.WinControls.UI.CommandBarRowElement[] {
         this.commandBarRowElement1
     });
     this.CommandBar.Size     = new System.Drawing.Size(885, 53);
     this.CommandBar.TabIndex = 0;
     //
     // commandBarRowElement1
     //
     this.commandBarRowElement1.DisabledTextRenderingHint = System.Drawing.Text.TextRenderingHint.SystemDefault;
     this.commandBarRowElement1.MinSize = new System.Drawing.Size(25, 25);
     this.commandBarRowElement1.Name    = "commandBarRowElement1";
     this.commandBarRowElement1.Strips.AddRange(new Telerik.WinControls.UI.CommandBarStripElement[] {
         this.commandBarStripElement1
     });
     this.commandBarRowElement1.Text = "";
     this.commandBarRowElement1.TextRenderingHint          = System.Drawing.Text.TextRenderingHint.SystemDefault;
     this.commandBarRowElement1.UseCompatibleTextRendering = false;
     //
     // commandBarStripElement1
     //
     this.commandBarStripElement1.DisplayName = "commandBarStripElement1";
     this.commandBarStripElement1.Items.AddRange(new Telerik.WinControls.UI.RadCommandBarBaseItem[] {
         this.btnNuevo,
         this.commandBarSeparator1,
         this.btnGuardar,
         this.commandBarSeparator2,
         this.btnEliminar,
         this.commandBarSeparator3,
         this.btnSalir,
         this.commandBarSeparator4,
         this.commandBarLabel1
     });
     this.commandBarStripElement1.Name = "commandBarStripElement1";
     //
     //
     //
     this.commandBarStripElement1.OverflowButton.Visibility = Telerik.WinControls.ElementVisibility.Hidden;
     this.commandBarStripElement1.StretchHorizontally       = true;
     ((Telerik.WinControls.UI.RadCommandBarOverflowButton)(this.commandBarStripElement1.GetChildAt(2))).Visibility = Telerik.WinControls.ElementVisibility.Hidden;
     //
     // btnNuevo
     //
     this.btnNuevo.DisplayName       = "commandBarButton1";
     this.btnNuevo.DrawText          = true;
     this.btnNuevo.Image             = ((System.Drawing.Image)(resources.GetObject("btnNuevo.Image")));
     this.btnNuevo.Name              = "btnNuevo";
     this.btnNuevo.Text              = "Nuevo";
     this.btnNuevo.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
     this.btnNuevo.Click            += new System.EventHandler(this.btnNuevo_Click);
     //
     // commandBarSeparator1
     //
     this.commandBarSeparator1.DisplayName           = "commandBarSeparator1";
     this.commandBarSeparator1.Name                  = "commandBarSeparator1";
     this.commandBarSeparator1.VisibleInOverflowMenu = false;
     //
     // btnGuardar
     //
     this.btnGuardar.DisplayName       = "commandBarButton2";
     this.btnGuardar.DrawText          = true;
     this.btnGuardar.Image             = ((System.Drawing.Image)(resources.GetObject("btnGuardar.Image")));
     this.btnGuardar.Name              = "btnGuardar";
     this.btnGuardar.Text              = "Guardar";
     this.btnGuardar.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
     this.btnGuardar.Click            += new System.EventHandler(this.btnGuardar_Click);
     //
     // commandBarSeparator2
     //
     this.commandBarSeparator2.DisplayName           = "commandBarSeparator2";
     this.commandBarSeparator2.Name                  = "commandBarSeparator2";
     this.commandBarSeparator2.VisibleInOverflowMenu = false;
     //
     // btnEliminar
     //
     this.btnEliminar.DisplayName       = "commandBarButton3";
     this.btnEliminar.DrawText          = true;
     this.btnEliminar.Image             = ((System.Drawing.Image)(resources.GetObject("btnEliminar.Image")));
     this.btnEliminar.Name              = "btnEliminar";
     this.btnEliminar.Text              = "Eliminar";
     this.btnEliminar.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
     this.btnEliminar.TextOrientation   = System.Windows.Forms.Orientation.Horizontal;
     this.btnEliminar.Click            += new System.EventHandler(this.btnEliminar_Click);
     //
     // commandBarSeparator3
     //
     this.commandBarSeparator3.DisplayName           = "commandBarSeparator3";
     this.commandBarSeparator3.Name                  = "commandBarSeparator3";
     this.commandBarSeparator3.VisibleInOverflowMenu = false;
     //
     // btnSalir
     //
     this.btnSalir.DisplayName       = "commandBarButton4";
     this.btnSalir.DrawText          = true;
     this.btnSalir.Image             = ((System.Drawing.Image)(resources.GetObject("btnSalir.Image")));
     this.btnSalir.Name              = "btnSalir";
     this.btnSalir.Text              = "Salir";
     this.btnSalir.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
     this.btnSalir.Click            += new System.EventHandler(this.btnSalir_Click);
     //
     // commandBarSeparator4
     //
     this.commandBarSeparator4.DisplayName           = "commandBarSeparator4";
     this.commandBarSeparator4.Name                  = "commandBarSeparator4";
     this.commandBarSeparator4.VisibleInOverflowMenu = false;
     //
     // commandBarLabel1
     //
     this.commandBarLabel1.DisplayName         = "commandBarLabel1";
     this.commandBarLabel1.Font                = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold);
     this.commandBarLabel1.ForeColor           = System.Drawing.Color.Navy;
     this.commandBarLabel1.Name                = "commandBarLabel1";
     this.commandBarLabel1.StretchHorizontally = true;
     this.commandBarLabel1.Text                = "REFLEJANTES";
     //
     // commandBarStripElement2
     //
     this.commandBarStripElement2.DisplayName = "commandBarStripElement2";
     this.commandBarStripElement2.Name        = "commandBarStripElement2";
     //
     // commandBarStripElement3
     //
     this.commandBarStripElement3.DisplayName = "commandBarStripElement3";
     this.commandBarStripElement3.Name        = "commandBarStripElement3";
     //
     // commandBarStripElement4
     //
     this.commandBarStripElement4.DisplayName = "commandBarStripElement4";
     this.commandBarStripElement4.Name        = "commandBarStripElement4";
     //
     // radDock1
     //
     this.radDock1.ActiveWindow = this.documentWindow1;
     this.radDock1.Controls.Add(this.documentContainer1);
     this.radDock1.Dock                  = System.Windows.Forms.DockStyle.Fill;
     this.radDock1.IsCleanUpTarget       = true;
     this.radDock1.Location              = new System.Drawing.Point(0, 53);
     this.radDock1.MainDocumentContainer = this.documentContainer1;
     this.radDock1.Name                  = "radDock1";
     //
     //
     //
     this.radDock1.RootElement.MinSize = new System.Drawing.Size(25, 25);
     this.radDock1.Size     = new System.Drawing.Size(885, 422);
     this.radDock1.TabIndex = 3;
     this.radDock1.TabStop  = false;
     //
     // documentWindow1
     //
     this.documentWindow1.Controls.Add(this.radPanel4);
     this.documentWindow1.Controls.Add(this.radPanel2);
     this.documentWindow1.DocumentButtons   = Telerik.WinControls.UI.Docking.DocumentStripButtons.None;
     this.documentWindow1.Font              = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.documentWindow1.Location          = new System.Drawing.Point(6, 29);
     this.documentWindow1.Name              = "documentWindow1";
     this.documentWindow1.PreviousDockState = Telerik.WinControls.UI.Docking.DockState.TabbedDocument;
     this.documentWindow1.Size              = new System.Drawing.Size(863, 377);
     this.documentWindow1.Text              = "Reflejante";
     //
     // radPanel4
     //
     this.radPanel4.Controls.Add(this.gvDatos);
     this.radPanel4.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.radPanel4.Location = new System.Drawing.Point(0, 109);
     this.radPanel4.Name     = "radPanel4";
     this.radPanel4.Size     = new System.Drawing.Size(863, 268);
     this.radPanel4.TabIndex = 4;
     //
     // gvDatos
     //
     this.gvDatos.AutoScroll = true;
     this.gvDatos.Dock       = System.Windows.Forms.DockStyle.Fill;
     this.gvDatos.Location   = new System.Drawing.Point(0, 0);
     //
     //
     //
     this.gvDatos.MasterTemplate.AllowAddNewRow      = false;
     this.gvDatos.MasterTemplate.AllowDeleteRow      = false;
     this.gvDatos.MasterTemplate.AllowEditRow        = false;
     this.gvDatos.MasterTemplate.AllowSearchRow      = true;
     this.gvDatos.MasterTemplate.AutoExpandGroups    = true;
     this.gvDatos.MasterTemplate.AutoGenerateColumns = false;
     gridViewTextBoxColumn1.FieldName   = "Id";
     gridViewTextBoxColumn1.HeaderText  = "Id";
     gridViewTextBoxColumn1.IsVisible   = false;
     gridViewTextBoxColumn1.Name        = "Id";
     gridViewTextBoxColumn2.FieldName   = "Color.Id";
     gridViewTextBoxColumn2.HeaderText  = "IdColor";
     gridViewTextBoxColumn2.IsVisible   = false;
     gridViewTextBoxColumn2.Name        = "IdColor";
     gridViewTextBoxColumn3.FieldName   = "Tipo";
     gridViewTextBoxColumn3.HeaderText  = "Tipo";
     gridViewTextBoxColumn3.MaxWidth    = 150;
     gridViewTextBoxColumn3.MinWidth    = 130;
     gridViewTextBoxColumn3.Name        = "Tipo";
     gridViewTextBoxColumn3.Width       = 130;
     gridViewTextBoxColumn4.FieldName   = "Clave";
     gridViewTextBoxColumn4.HeaderText  = "Clave";
     gridViewTextBoxColumn4.MaxWidth    = 100;
     gridViewTextBoxColumn4.MinWidth    = 80;
     gridViewTextBoxColumn4.Name        = "Clave";
     gridViewTextBoxColumn4.Width       = 80;
     gridViewTextBoxColumn5.FieldName   = "Color.Nombre";
     gridViewTextBoxColumn5.HeaderText  = "Color";
     gridViewTextBoxColumn5.MaxWidth    = 150;
     gridViewTextBoxColumn5.MinWidth    = 150;
     gridViewTextBoxColumn5.Name        = "Color";
     gridViewTextBoxColumn5.Width       = 150;
     gridViewCheckBoxColumn1.FieldName  = "DatosUsuario.Estatus";
     gridViewCheckBoxColumn1.HeaderText = "Activo";
     gridViewCheckBoxColumn1.MaxWidth   = 100;
     gridViewCheckBoxColumn1.MinWidth   = 80;
     gridViewCheckBoxColumn1.Name       = "Estatus";
     gridViewCheckBoxColumn1.Width      = 80;
     this.gvDatos.MasterTemplate.Columns.AddRange(new Telerik.WinControls.UI.GridViewDataColumn[] {
         gridViewTextBoxColumn1,
         gridViewTextBoxColumn2,
         gridViewTextBoxColumn3,
         gridViewTextBoxColumn4,
         gridViewTextBoxColumn5,
         gridViewCheckBoxColumn1
     });
     this.gvDatos.MasterTemplate.EnableAlternatingRowColor = true;
     this.gvDatos.MasterTemplate.ShowGroupedColumns        = true;
     this.gvDatos.MasterTemplate.ShowRowHeaderColumn       = false;
     this.gvDatos.MasterTemplate.ViewDefinition            = tableViewDefinition1;
     this.gvDatos.Name               = "gvDatos";
     this.gvDatos.ShowNoDataText     = false;
     this.gvDatos.Size               = new System.Drawing.Size(863, 268);
     this.gvDatos.TabIndex           = 6;
     this.gvDatos.CurrentRowChanged += new Telerik.WinControls.UI.CurrentRowChangedEventHandler(this.gvDatos_CurrentRowChanged);
     //
     // radPanel2
     //
     this.radPanel2.Controls.Add(this.cboTipo);
     this.radPanel2.Controls.Add(this.label4);
     this.radPanel2.Controls.Add(this.txtClave);
     this.radPanel2.Controls.Add(this.label2);
     this.radPanel2.Controls.Add(this.cboColores);
     this.radPanel2.Controls.Add(this.label3);
     this.radPanel2.Controls.Add(this.txtId);
     this.radPanel2.Controls.Add(this.chkEstatus);
     this.radPanel2.Dock     = System.Windows.Forms.DockStyle.Top;
     this.radPanel2.Location = new System.Drawing.Point(0, 0);
     this.radPanel2.Name     = "radPanel2";
     this.radPanel2.Size     = new System.Drawing.Size(863, 109);
     this.radPanel2.TabIndex = 0;
     //
     // txtClave
     //
     this.txtClave.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
     this.txtClave.Location        = new System.Drawing.Point(57, 50);
     this.txtClave.MaxLength       = 30;
     this.txtClave.Name            = "txtClave";
     this.txtClave.Size            = new System.Drawing.Size(65, 20);
     this.txtClave.TabIndex        = 2;
     //
     // label2
     //
     this.label2.AutoSize = true;
     this.label2.Location = new System.Drawing.Point(20, 54);
     this.label2.Name     = "label2";
     this.label2.Size     = new System.Drawing.Size(37, 13);
     this.label2.TabIndex = 33;
     this.label2.Text     = "Clave:";
     //
     // cboColores
     //
     this.cboColores.DropDownStyle = Telerik.WinControls.RadDropDownStyle.DropDownList;
     this.cboColores.Location      = new System.Drawing.Point(57, 75);
     this.cboColores.Name          = "cboColores";
     this.cboColores.Size          = new System.Drawing.Size(178, 20);
     this.cboColores.TabIndex      = 3;
     //
     // label3
     //
     this.label3.AutoSize = true;
     this.label3.Location = new System.Drawing.Point(19, 79);
     this.label3.Name     = "label3";
     this.label3.Size     = new System.Drawing.Size(38, 13);
     this.label3.TabIndex = 31;
     this.label3.Text     = "Color:";
     //
     // txtId
     //
     this.txtId.Location = new System.Drawing.Point(303, 27);
     this.txtId.Name     = "txtId";
     this.txtId.Size     = new System.Drawing.Size(45, 20);
     this.txtId.TabIndex = 27;
     this.txtId.Text     = "0";
     this.txtId.Visible  = false;
     //
     // chkEstatus
     //
     this.chkEstatus.CheckAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.chkEstatus.Checked    = true;
     this.chkEstatus.CheckState = System.Windows.Forms.CheckState.Checked;
     this.chkEstatus.Location   = new System.Drawing.Point(285, 75);
     this.chkEstatus.Name       = "chkEstatus";
     this.chkEstatus.Size       = new System.Drawing.Size(63, 20);
     this.chkEstatus.TabIndex   = 4;
     this.chkEstatus.Text       = "Activo:";
     this.chkEstatus.UseVisualStyleBackColor = true;
     //
     // documentContainer1
     //
     this.documentContainer1.Controls.Add(this.documentTabStrip1);
     this.documentContainer1.Name = "documentContainer1";
     //
     //
     //
     this.documentContainer1.RootElement.MinSize         = new System.Drawing.Size(25, 25);
     this.documentContainer1.SizeInfo.AbsoluteSize       = new System.Drawing.Size(664, 240);
     this.documentContainer1.SizeInfo.SizeMode           = Telerik.WinControls.UI.Docking.SplitPanelSizeMode.Fill;
     this.documentContainer1.SizeInfo.SplitterCorrection = new System.Drawing.Size(-7, 32);
     this.documentContainer1.TabIndex = 2;
     //
     // documentTabStrip1
     //
     this.documentTabStrip1.CanUpdateChildIndex = true;
     this.documentTabStrip1.Controls.Add(this.documentWindow1);
     this.documentTabStrip1.Location = new System.Drawing.Point(0, 0);
     this.documentTabStrip1.Name     = "documentTabStrip1";
     //
     //
     //
     this.documentTabStrip1.RootElement.MinSize = new System.Drawing.Size(25, 25);
     this.documentTabStrip1.SelectedIndex       = 0;
     this.documentTabStrip1.Size     = new System.Drawing.Size(875, 412);
     this.documentTabStrip1.TabIndex = 0;
     this.documentTabStrip1.TabStop  = false;
     //
     // commandBarStripElement5
     //
     this.commandBarStripElement5.DisplayName = "commandBarStripElement5";
     this.commandBarStripElement5.Name        = "commandBarStripElement5";
     //
     // label4
     //
     this.label4.AutoSize = true;
     this.label4.Location = new System.Drawing.Point(25, 29);
     this.label4.Name     = "label4";
     this.label4.Size     = new System.Drawing.Size(32, 13);
     this.label4.TabIndex = 34;
     this.label4.Text     = "Tipo:";
     //
     // cboTipo
     //
     this.cboTipo.AutoScroll    = true;
     this.cboTipo.DropDownStyle = Telerik.WinControls.RadDropDownStyle.DropDownList;
     radListDataItem1.Tag       = "3";
     radListDataItem1.Text      = "OJO DE GATO";
     radListDataItem2.Tag       = "2";
     radListDataItem2.Text      = "PAPEL REFLEJANTE";
     radListDataItem3.Tag       = "1";
     radListDataItem3.Text      = "REFLEJANTE";
     radListDataItem4.Tag       = "4";
     radListDataItem4.Text      = "TIPO LED";
     this.cboTipo.Items.Add(radListDataItem1);
     this.cboTipo.Items.Add(radListDataItem2);
     this.cboTipo.Items.Add(radListDataItem3);
     this.cboTipo.Items.Add(radListDataItem4);
     this.cboTipo.Location  = new System.Drawing.Point(57, 25);
     this.cboTipo.Name      = "cboTipo";
     this.cboTipo.Size      = new System.Drawing.Size(178, 20);
     this.cboTipo.SortStyle = Telerik.WinControls.Enumerations.SortStyle.Ascending;
     this.cboTipo.TabIndex  = 1;
     //
     // frmComplementos
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize          = new System.Drawing.Size(885, 475);
     this.Controls.Add(this.radDock1);
     this.Controls.Add(this.CommandBar);
     this.EnableAnalytics = false;
     this.Name            = "frmComplementos";
     //
     //
     //
     this.RootElement.ApplyShapeToControl = true;
     this.ShowIcon = false;
     this.Text     = "REFLEJANTES";
     this.Load    += new System.EventHandler(this.frmComplementos_Load);
     ((System.ComponentModel.ISupportInitialize)(this.CommandBar)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radDock1)).EndInit();
     this.radDock1.ResumeLayout(false);
     this.documentWindow1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.radPanel4)).EndInit();
     this.radPanel4.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gvDatos.MasterTemplate)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvDatos)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radPanel2)).EndInit();
     this.radPanel2.ResumeLayout(false);
     this.radPanel2.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.txtClave)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cboColores)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtId)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.documentContainer1)).EndInit();
     this.documentContainer1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.documentTabStrip1)).EndInit();
     this.documentTabStrip1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.cboTipo)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this)).EndInit();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
コード例 #24
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();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn9 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn10 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn11 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn12 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn13 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn14 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn15 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn16 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewCheckBoxColumn gridViewCheckBoxColumn2 = new Telerik.WinControls.UI.GridViewCheckBoxColumn();
            this.ucFiltrosClientes = new Alejandria.Win.Forms.Clientes.UcFiltrosClientes();
            this.radPanel1 = new Telerik.WinControls.UI.RadPanel();
            this.radPanel2 = new Telerik.WinControls.UI.RadPanel();
            this.ucClienteDetalle = new Alejandria.Win.Forms.Clientes.UcClienteDetalle();
            this.radPanel3 = new Telerik.WinControls.UI.RadPanel();
            this.GridCuotas = new Telerik.WinControls.UI.RadGridView();
            this.BtnGuardar = new Telerik.WinControls.UI.RadButton();
            this.TxtTotal = new Telerik.WinControls.UI.RadTextBox();
            this.radLabel1 = new Telerik.WinControls.UI.RadLabel();
            ((System.ComponentModel.ISupportInitialize)(this.radPanel1)).BeginInit();
            this.radPanel1.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.radPanel2)).BeginInit();
            this.radPanel2.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.radPanel3)).BeginInit();
            this.radPanel3.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.GridCuotas)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.GridCuotas.MasterTemplate)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.BtnGuardar)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.TxtTotal)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
            this.SuspendLayout();
            // 
            // ucFiltrosClientes
            // 
            this.ucFiltrosClientes.Cuit = "";
            this.ucFiltrosClientes.Denominacion = "";
            this.ucFiltrosClientes.Location = new System.Drawing.Point(12, 45);
            this.ucFiltrosClientes.Name = "ucFiltrosClientes";
            this.ucFiltrosClientes.Size = new System.Drawing.Size(371, 123);
            this.ucFiltrosClientes.TabIndex = 0;
            // 
            // radPanel1
            // 
            this.radPanel1.Controls.Add(this.ucFiltrosClientes);
            this.radPanel1.Location = new System.Drawing.Point(15, 13);
            this.radPanel1.Name = "radPanel1";
            this.radPanel1.Size = new System.Drawing.Size(391, 196);
            this.radPanel1.TabIndex = 1;
            this.radPanel1.ThemeName = "TelerikMetro";
            // 
            // radPanel2
            // 
            this.radPanel2.Controls.Add(this.ucClienteDetalle);
            this.radPanel2.Location = new System.Drawing.Point(412, 13);
            this.radPanel2.Name = "radPanel2";
            this.radPanel2.Size = new System.Drawing.Size(684, 196);
            this.radPanel2.TabIndex = 2;
            this.radPanel2.ThemeName = "TelerikMetro";
            // 
            // ucClienteDetalle
            // 
            this.ucClienteDetalle.ClienteNombre = "";
            this.ucClienteDetalle.Cuit = "";
            this.ucClienteDetalle.Domicilio = "";
            this.ucClienteDetalle.FormaPago = "";
            this.ucClienteDetalle.Localidad = "";
            this.ucClienteDetalle.Location = new System.Drawing.Point(3, 3);
            this.ucClienteDetalle.Name = "ucClienteDetalle";
            this.ucClienteDetalle.Provincia = "";
            this.ucClienteDetalle.Size = new System.Drawing.Size(674, 181);
            this.ucClienteDetalle.TabIndex = 0;
            // 
            // radPanel3
            // 
            this.radPanel3.Controls.Add(this.GridCuotas);
            this.radPanel3.Location = new System.Drawing.Point(15, 216);
            this.radPanel3.Name = "radPanel3";
            this.radPanel3.Size = new System.Drawing.Size(1081, 279);
            this.radPanel3.TabIndex = 3;
            this.radPanel3.ThemeName = "TelerikMetro";
            // 
            // GridCuotas
            // 
            this.GridCuotas.Dock = System.Windows.Forms.DockStyle.Fill;
            this.GridCuotas.Location = new System.Drawing.Point(0, 0);
            // 
            // GridCuotas
            // 
            this.GridCuotas.MasterTemplate.AllowAddNewRow = false;
            this.GridCuotas.MasterTemplate.AllowColumnReorder = false;
            this.GridCuotas.MasterTemplate.AllowDeleteRow = false;
            this.GridCuotas.MasterTemplate.AllowDragToGroup = false;
            this.GridCuotas.MasterTemplate.AutoSizeColumnsMode = Telerik.WinControls.UI.GridViewAutoSizeColumnsMode.Fill;
            gridViewTextBoxColumn9.FieldName = "FechaVencimiento";
            gridViewTextBoxColumn9.HeaderText = "FechaVencimiento";
            gridViewTextBoxColumn9.Name = "FechaVencimiento";
            gridViewTextBoxColumn9.Width = 152;
            gridViewTextBoxColumn10.FieldName = "FechaVencimientoHasta";
            gridViewTextBoxColumn10.HeaderText = "FechaVencimientoHasta";
            gridViewTextBoxColumn10.IsVisible = false;
            gridViewTextBoxColumn10.Name = "FechaVencimientoHasta";
            gridViewTextBoxColumn10.Width = 132;
            gridViewTextBoxColumn11.FieldName = "Venta.NumeroComprobante";
            gridViewTextBoxColumn11.HeaderText = "Venta";
            gridViewTextBoxColumn11.Name = "Venta";
            gridViewTextBoxColumn11.Width = 68;
            gridViewTextBoxColumn12.FieldName = "Fecha";
            gridViewTextBoxColumn12.HeaderText = "Fecha";
            gridViewTextBoxColumn12.Name = "Fecha";
            gridViewTextBoxColumn12.Width = 113;
            gridViewTextBoxColumn13.FieldName = "Cliente.Denominacion";
            gridViewTextBoxColumn13.HeaderText = "Cliente";
            gridViewTextBoxColumn13.Name = "Cliente";
            gridViewTextBoxColumn13.Width = 233;
            gridViewTextBoxColumn14.FieldName = "Venta.Concepto";
            gridViewTextBoxColumn14.HeaderText = "Obra";
            gridViewTextBoxColumn14.Name = "Concepto";
            gridViewTextBoxColumn14.Width = 232;
            gridViewTextBoxColumn15.FieldName = "Cuota";
            gridViewTextBoxColumn15.HeaderText = "Cuota";
            gridViewTextBoxColumn15.Name = "Cuota";
            gridViewTextBoxColumn15.Width = 102;
            gridViewTextBoxColumn16.FieldName = "Importe";
            gridViewTextBoxColumn16.HeaderText = "Importe";
            gridViewTextBoxColumn16.Name = "Importe";
            gridViewTextBoxColumn16.Width = 116;
            gridViewCheckBoxColumn2.HeaderText = "Pagar";
            gridViewCheckBoxColumn2.MaxWidth = 50;
            gridViewCheckBoxColumn2.MinWidth = 30;
            gridViewCheckBoxColumn2.Name = "Pagar";
            this.GridCuotas.MasterTemplate.Columns.AddRange(new Telerik.WinControls.UI.GridViewDataColumn[] {
            gridViewTextBoxColumn9,
            gridViewTextBoxColumn10,
            gridViewTextBoxColumn11,
            gridViewTextBoxColumn12,
            gridViewTextBoxColumn13,
            gridViewTextBoxColumn14,
            gridViewTextBoxColumn15,
            gridViewTextBoxColumn16,
            gridViewCheckBoxColumn2});
            this.GridCuotas.Name = "GridCuotas";
            this.GridCuotas.Size = new System.Drawing.Size(1081, 279);
            this.GridCuotas.TabIndex = 4;
            this.GridCuotas.ThemeName = "TelerikMetro";
            this.GridCuotas.ValueChanged += new System.EventHandler(this.GridCuotas_ValueChanged_1);
            // 
            // BtnGuardar
            // 
            this.BtnGuardar.Font = new System.Drawing.Font("Segoe UI", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.BtnGuardar.Location = new System.Drawing.Point(960, 512);
            this.BtnGuardar.Name = "BtnGuardar";
            this.BtnGuardar.Size = new System.Drawing.Size(130, 27);
            this.BtnGuardar.TabIndex = 3;
            this.BtnGuardar.Text = "Guardar";
            this.BtnGuardar.ThemeName = "TelerikMetro";
            this.BtnGuardar.Click += new System.EventHandler(this.BtnGuardar_Click_1);
            // 
            // TxtTotal
            // 
            this.TxtTotal.Font = new System.Drawing.Font("Segoe UI", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.TxtTotal.Location = new System.Drawing.Point(845, 515);
            this.TxtTotal.Name = "TxtTotal";
            this.TxtTotal.Size = new System.Drawing.Size(100, 26);
            this.TxtTotal.TabIndex = 2;
            this.TxtTotal.TabStop = false;
            this.TxtTotal.ThemeName = "TelerikMetro";
            // 
            // radLabel1
            // 
            this.radLabel1.Font = new System.Drawing.Font("Segoe UI", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.radLabel1.Location = new System.Drawing.Point(781, 515);
            this.radLabel1.Name = "radLabel1";
            this.radLabel1.Size = new System.Drawing.Size(49, 24);
            this.radLabel1.TabIndex = 1;
            this.radLabel1.Text = "Total:";
            // 
            // FrmCuentaCorriente
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.ClientSize = new System.Drawing.Size(1123, 551);
            this.Controls.Add(this.BtnGuardar);
            this.Controls.Add(this.radPanel3);
            this.Controls.Add(this.radPanel2);
            this.Controls.Add(this.TxtTotal);
            this.Controls.Add(this.radPanel1);
            this.Controls.Add(this.radLabel1);
            this.Name = "FrmCuentaCorriente";
            // 
            // 
            // 
            this.RootElement.ApplyShapeToControl = true;
            this.Text = "Pago de Cuotas";
            this.Load += new System.EventHandler(this.FrmCuentaCorriente_Load);
            ((System.ComponentModel.ISupportInitialize)(this.radPanel1)).EndInit();
            this.radPanel1.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.radPanel2)).EndInit();
            this.radPanel2.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.radPanel3)).EndInit();
            this.radPanel3.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.GridCuotas.MasterTemplate)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.GridCuotas)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.BtnGuardar)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.TxtTotal)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this)).EndInit();
            this.ResumeLayout(false);
            this.PerformLayout();

        }
コード例 #25
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();
     Telerik.WinControls.UI.GridViewTextBoxColumn   gridViewTextBoxColumn2  = new Telerik.WinControls.UI.GridViewTextBoxColumn();
     Telerik.WinControls.UI.GridViewDateTimeColumn  gridViewDateTimeColumn2 = new Telerik.WinControls.UI.GridViewDateTimeColumn();
     Telerik.WinControls.UI.GridViewCheckBoxColumn  gridViewCheckBoxColumn2 = new Telerik.WinControls.UI.GridViewCheckBoxColumn();
     Telerik.WinControls.UI.TableViewDefinition     tableViewDefinition2    = new Telerik.WinControls.UI.TableViewDefinition();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FrmItemCategory));
     this.RdTxtSubjectDescription = new Telerik.WinControls.UI.RadTextBoxControl();
     this.RdPageViewMain          = new Telerik.WinControls.UI.RadPageView();
     this.RdTbpEntry            = new Telerik.WinControls.UI.RadPageViewPage();
     this.RdTxtSubjectRemarks   = new Telerik.WinControls.UI.RadTextBoxControl();
     this.RdTxtItemCategoryCode = new Telerik.WinControls.UI.RadTextBoxControl();
     this.radLabel4             = new Telerik.WinControls.UI.RadLabel();
     this.radLabel3             = new Telerik.WinControls.UI.RadLabel();
     this.radLabel2             = new Telerik.WinControls.UI.RadLabel();
     this.RdChkClassStatus      = new Telerik.WinControls.UI.RadCheckBox();
     this.radLabel1             = new Telerik.WinControls.UI.RadLabel();
     this.RdTbpList             = new Telerik.WinControls.UI.RadPageViewPage();
     this.RdGrdClass            = new Telerik.WinControls.UI.RadGridView();
     this.BtnEdit                    = new System.Windows.Forms.ToolStripButton();
     this.bindingNavigator1          = new System.Windows.Forms.BindingNavigator(this.components);
     this.bindingNavigatorCountItem  = new System.Windows.Forms.ToolStripLabel();
     this.BtnAddNew                  = new System.Windows.Forms.ToolStripButton();
     this.BtnDelete                  = new System.Windows.Forms.ToolStripButton();
     this.BtnSave                    = new System.Windows.Forms.ToolStripButton();
     this.BtnUndo                    = new System.Windows.Forms.ToolStripButton();
     this.bindingNavigatorSeparator  = new System.Windows.Forms.ToolStripSeparator();
     this.BtnMoveFirst               = new System.Windows.Forms.ToolStripButton();
     this.BtnMovePrevious            = new System.Windows.Forms.ToolStripButton();
     this.TxtPositionItem            = new System.Windows.Forms.ToolStripTextBox();
     this.bindingNavigatorSeparator1 = new System.Windows.Forms.ToolStripSeparator();
     this.BtnMoveNext                = new System.Windows.Forms.ToolStripButton();
     this.BtnMoveLast                = new System.Windows.Forms.ToolStripButton();
     this.bindingNavigatorSeparator2 = new System.Windows.Forms.ToolStripSeparator();
     this.BtnFind                    = new System.Windows.Forms.ToolStripButton();
     this.BtnPrint                   = new System.Windows.Forms.ToolStripButton();
     this.BtnReload                  = new System.Windows.Forms.ToolStripButton();
     this.BtnExport                  = new System.Windows.Forms.ToolStripButton();
     this.BtnClose                   = new System.Windows.Forms.ToolStripButton();
     this.toolStripSeparator1        = new System.Windows.Forms.ToolStripSeparator();
     ((System.ComponentModel.ISupportInitialize)(this.RdTxtSubjectDescription)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.RdPageViewMain)).BeginInit();
     this.RdPageViewMain.SuspendLayout();
     this.RdTbpEntry.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.RdTxtSubjectRemarks)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.RdTxtItemCategoryCode)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel4)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.RdChkClassStatus)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel1)).BeginInit();
     this.RdTbpList.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.RdGrdClass)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.RdGrdClass.MasterTemplate)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.bindingNavigator1)).BeginInit();
     this.bindingNavigator1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
     this.SuspendLayout();
     //
     // RdTxtSubjectDescription
     //
     this.RdTxtSubjectDescription.BackColor = System.Drawing.Color.White;
     this.RdTxtSubjectDescription.Location  = new System.Drawing.Point(166, 62);
     this.RdTxtSubjectDescription.MaxLength = 200;
     this.RdTxtSubjectDescription.Name      = "RdTxtSubjectDescription";
     this.RdTxtSubjectDescription.NullText  = "Enter Item Category Description";
     //
     //
     //
     this.RdTxtSubjectDescription.RootElement.UseDefaultDisabledPaint = false;
     this.RdTxtSubjectDescription.Size     = new System.Drawing.Size(339, 20);
     this.RdTxtSubjectDescription.TabIndex = 1;
     //
     // RdPageViewMain
     //
     this.RdPageViewMain.Controls.Add(this.RdTbpEntry);
     this.RdPageViewMain.Controls.Add(this.RdTbpList);
     this.RdPageViewMain.Dock         = System.Windows.Forms.DockStyle.Fill;
     this.RdPageViewMain.Location     = new System.Drawing.Point(0, 25);
     this.RdPageViewMain.Name         = "RdPageViewMain";
     this.RdPageViewMain.SelectedPage = this.RdTbpEntry;
     this.RdPageViewMain.Size         = new System.Drawing.Size(800, 425);
     this.RdPageViewMain.TabIndex     = 3;
     ((Telerik.WinControls.UI.RadPageViewStripElement)(this.RdPageViewMain.GetChildAt(0))).StripButtons = Telerik.WinControls.UI.StripViewButtons.ItemList;
     //
     // RdTbpEntry
     //
     this.RdTbpEntry.Controls.Add(this.RdTxtSubjectRemarks);
     this.RdTbpEntry.Controls.Add(this.RdTxtSubjectDescription);
     this.RdTbpEntry.Controls.Add(this.RdTxtItemCategoryCode);
     this.RdTbpEntry.Controls.Add(this.radLabel4);
     this.RdTbpEntry.Controls.Add(this.radLabel3);
     this.RdTbpEntry.Controls.Add(this.radLabel2);
     this.RdTbpEntry.Controls.Add(this.RdChkClassStatus);
     this.RdTbpEntry.Controls.Add(this.radLabel1);
     this.RdTbpEntry.Image    = global::A3DIMS.Properties.Resources.CartView25X24;
     this.RdTbpEntry.ItemSize = new System.Drawing.SizeF(67F, 36F);
     this.RdTbpEntry.Location = new System.Drawing.Point(10, 45);
     this.RdTbpEntry.Name     = "RdTbpEntry";
     this.RdTbpEntry.Size     = new System.Drawing.Size(779, 369);
     this.RdTbpEntry.Text     = "Entry";
     //
     // RdTxtSubjectRemarks
     //
     this.RdTxtSubjectRemarks.BackColor = System.Drawing.Color.White;
     this.RdTxtSubjectRemarks.Location  = new System.Drawing.Point(166, 88);
     this.RdTxtSubjectRemarks.MaxLength = 500;
     this.RdTxtSubjectRemarks.Multiline = true;
     this.RdTxtSubjectRemarks.Name      = "RdTxtSubjectRemarks";
     this.RdTxtSubjectRemarks.NullText  = "Enter Item Category Remarks";
     //
     //
     //
     this.RdTxtSubjectRemarks.RootElement.UseDefaultDisabledPaint = false;
     this.RdTxtSubjectRemarks.Size     = new System.Drawing.Size(339, 38);
     this.RdTxtSubjectRemarks.TabIndex = 2;
     //
     // RdTxtItemCategoryCode
     //
     this.RdTxtItemCategoryCode.BackColor = System.Drawing.Color.White;
     this.RdTxtItemCategoryCode.Location  = new System.Drawing.Point(166, 36);
     this.RdTxtItemCategoryCode.MaxLength = 10;
     this.RdTxtItemCategoryCode.Name      = "RdTxtItemCategoryCode";
     this.RdTxtItemCategoryCode.NullText  = "Enter Item Category Code";
     //
     //
     //
     this.RdTxtItemCategoryCode.RootElement.UseDefaultDisabledPaint = false;
     this.RdTxtItemCategoryCode.Size     = new System.Drawing.Size(141, 20);
     this.RdTxtItemCategoryCode.TabIndex = 0;
     //
     // radLabel4
     //
     this.radLabel4.Location = new System.Drawing.Point(16, 132);
     this.radLabel4.Name     = "radLabel4";
     this.radLabel4.Size     = new System.Drawing.Size(37, 18);
     this.radLabel4.TabIndex = 5;
     this.radLabel4.Text     = "Status";
     //
     // radLabel3
     //
     this.radLabel3.Location = new System.Drawing.Point(16, 90);
     this.radLabel3.Name     = "radLabel3";
     this.radLabel3.Size     = new System.Drawing.Size(123, 18);
     this.radLabel3.TabIndex = 4;
     this.radLabel3.Text     = "Item Category Remarks";
     //
     // radLabel2
     //
     this.radLabel2.Font     = new System.Drawing.Font("Segoe UI", 8.25F, System.Drawing.FontStyle.Bold);
     this.radLabel2.Location = new System.Drawing.Point(16, 64);
     this.radLabel2.Name     = "radLabel2";
     this.radLabel2.Size     = new System.Drawing.Size(146, 18);
     this.radLabel2.TabIndex = 1;
     this.radLabel2.Text     = "Item Category Description";
     //
     // RdChkClassStatus
     //
     this.RdChkClassStatus.Location = new System.Drawing.Point(166, 132);
     this.RdChkClassStatus.Name     = "RdChkClassStatus";
     this.RdChkClassStatus.Size     = new System.Drawing.Size(106, 18);
     this.RdChkClassStatus.TabIndex = 3;
     this.RdChkClassStatus.Text     = "Active / In-Active";
     //
     // radLabel1
     //
     this.radLabel1.Font     = new System.Drawing.Font("Segoe UI", 8.25F, System.Drawing.FontStyle.Bold);
     this.radLabel1.Location = new System.Drawing.Point(15, 38);
     this.radLabel1.Name     = "radLabel1";
     this.radLabel1.Size     = new System.Drawing.Size(112, 18);
     this.radLabel1.TabIndex = 0;
     this.radLabel1.Text     = "Item Category Code";
     //
     // RdTbpList
     //
     this.RdTbpList.Controls.Add(this.RdGrdClass);
     this.RdTbpList.Image    = global::A3DIMS.Properties.Resources.ListView25X24;
     this.RdTbpList.ItemSize = new System.Drawing.SizeF(96F, 36F);
     this.RdTbpList.Location = new System.Drawing.Point(10, 45);
     this.RdTbpList.Name     = "RdTbpList";
     this.RdTbpList.Size     = new System.Drawing.Size(779, 369);
     this.RdTbpList.Text     = "Details List";
     //
     // RdGrdClass
     //
     this.RdGrdClass.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(233)))), ((int)(((byte)(240)))), ((int)(((byte)(249)))));
     this.RdGrdClass.Cursor    = System.Windows.Forms.Cursors.Default;
     this.RdGrdClass.Dock      = System.Windows.Forms.DockStyle.Fill;
     this.RdGrdClass.Font      = new System.Drawing.Font("Segoe UI", 8.25F);
     this.RdGrdClass.ForeColor = System.Drawing.Color.Black;
     this.RdGrdClass.ImeMode   = System.Windows.Forms.ImeMode.NoControl;
     this.RdGrdClass.Location  = new System.Drawing.Point(0, 0);
     //
     //
     //
     this.RdGrdClass.MasterTemplate.AllowAddNewRow      = false;
     this.RdGrdClass.MasterTemplate.AllowDeleteRow      = false;
     this.RdGrdClass.MasterTemplate.AllowEditRow        = false;
     this.RdGrdClass.MasterTemplate.AllowSearchRow      = true;
     this.RdGrdClass.MasterTemplate.AutoGenerateColumns = false;
     this.RdGrdClass.MasterTemplate.AutoSizeColumnsMode = Telerik.WinControls.UI.GridViewAutoSizeColumnsMode.Fill;
     gridViewTextBoxColumn2.EnableExpressionEditor      = false;
     gridViewTextBoxColumn2.FieldName  = "cItemCategoryCode";
     gridViewTextBoxColumn2.HeaderText = "Item Category Code";
     gridViewTextBoxColumn2.Name       = "cItemCategoryCode";
     gridViewTextBoxColumn2.Width      = 256;
     gridViewDateTimeColumn2.EnableExpressionEditor = false;
     gridViewDateTimeColumn2.FieldName              = "cItemCategoryDesc";
     gridViewDateTimeColumn2.Format                 = System.Windows.Forms.DateTimePickerFormat.Short;
     gridViewDateTimeColumn2.HeaderText             = "Item Category Description";
     gridViewDateTimeColumn2.Name                   = "cItemCategoryDesc";
     gridViewDateTimeColumn2.Width                  = 336;
     gridViewCheckBoxColumn2.EnableExpressionEditor = false;
     gridViewCheckBoxColumn2.FieldName              = "lItemCategoryStatus";
     gridViewCheckBoxColumn2.HeaderText             = "Status";
     gridViewCheckBoxColumn2.MinWidth               = 20;
     gridViewCheckBoxColumn2.Name                   = "lItemCategoryStatus";
     gridViewCheckBoxColumn2.Width                  = 168;
     this.RdGrdClass.MasterTemplate.Columns.AddRange(new Telerik.WinControls.UI.GridViewDataColumn[] {
         gridViewTextBoxColumn2,
         gridViewDateTimeColumn2,
         gridViewCheckBoxColumn2
     });
     this.RdGrdClass.MasterTemplate.EnableFiltering = true;
     this.RdGrdClass.MasterTemplate.ViewDefinition  = tableViewDefinition2;
     this.RdGrdClass.Name             = "RdGrdClass";
     this.RdGrdClass.RightToLeft      = System.Windows.Forms.RightToLeft.No;
     this.RdGrdClass.Size             = new System.Drawing.Size(779, 369);
     this.RdGrdClass.TabIndex         = 0;
     this.RdGrdClass.CellDoubleClick += new Telerik.WinControls.UI.GridViewCellEventHandler(this.RdGrdClass_CellDoubleClick);
     //
     // BtnEdit
     //
     this.BtnEdit.DisplayStyle          = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.BtnEdit.Image                 = global::A3DIMS.Properties.Resources.Edit16X16;
     this.BtnEdit.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.BtnEdit.Name   = "BtnEdit";
     this.BtnEdit.Size   = new System.Drawing.Size(23, 22);
     this.BtnEdit.Text   = "Edit";
     this.BtnEdit.Click += new System.EventHandler(this.BtnEdit_Click);
     //
     // bindingNavigator1
     //
     this.bindingNavigator1.AddNewItem = null;
     this.bindingNavigator1.BackColor  = System.Drawing.Color.Transparent;
     this.bindingNavigator1.CountItem  = this.bindingNavigatorCountItem;
     this.bindingNavigator1.DeleteItem = null;
     this.bindingNavigator1.GripStyle  = System.Windows.Forms.ToolStripGripStyle.Hidden;
     this.bindingNavigator1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.BtnAddNew,
         this.BtnEdit,
         this.BtnDelete,
         this.BtnSave,
         this.BtnUndo,
         this.bindingNavigatorSeparator,
         this.BtnMoveFirst,
         this.BtnMovePrevious,
         this.TxtPositionItem,
         this.bindingNavigatorCountItem,
         this.bindingNavigatorSeparator1,
         this.BtnMoveNext,
         this.BtnMoveLast,
         this.bindingNavigatorSeparator2,
         this.BtnFind,
         this.BtnPrint,
         this.BtnReload,
         this.BtnExport,
         this.BtnClose,
         this.toolStripSeparator1
     });
     this.bindingNavigator1.Location         = new System.Drawing.Point(0, 0);
     this.bindingNavigator1.MoveFirstItem    = this.BtnMoveFirst;
     this.bindingNavigator1.MoveLastItem     = this.BtnMoveLast;
     this.bindingNavigator1.MoveNextItem     = this.BtnMoveNext;
     this.bindingNavigator1.MovePreviousItem = this.BtnMovePrevious;
     this.bindingNavigator1.Name             = "bindingNavigator1";
     this.bindingNavigator1.PositionItem     = this.TxtPositionItem;
     this.bindingNavigator1.RenderMode       = System.Windows.Forms.ToolStripRenderMode.Professional;
     this.bindingNavigator1.Size             = new System.Drawing.Size(800, 25);
     this.bindingNavigator1.TabIndex         = 2;
     this.bindingNavigator1.Text             = "bindingNavigator1";
     //
     // bindingNavigatorCountItem
     //
     this.bindingNavigatorCountItem.Name        = "bindingNavigatorCountItem";
     this.bindingNavigatorCountItem.Size        = new System.Drawing.Size(35, 22);
     this.bindingNavigatorCountItem.Text        = "of {0}";
     this.bindingNavigatorCountItem.ToolTipText = "Total number of items";
     //
     // BtnAddNew
     //
     this.BtnAddNew.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.BtnAddNew.Image        = global::A3DIMS.Properties.Resources.Add16X16;
     this.BtnAddNew.Name         = "BtnAddNew";
     this.BtnAddNew.RightToLeftAutoMirrorImage = true;
     this.BtnAddNew.Size   = new System.Drawing.Size(23, 22);
     this.BtnAddNew.Text   = "Add new";
     this.BtnAddNew.Click += new System.EventHandler(this.BtnAddNew_Click);
     //
     // BtnDelete
     //
     this.BtnDelete.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.BtnDelete.Image        = ((System.Drawing.Image)(resources.GetObject("BtnDelete.Image")));
     this.BtnDelete.Name         = "BtnDelete";
     this.BtnDelete.RightToLeftAutoMirrorImage = true;
     this.BtnDelete.Size   = new System.Drawing.Size(23, 22);
     this.BtnDelete.Text   = "Delete";
     this.BtnDelete.Click += new System.EventHandler(this.BtnDelete_Click);
     //
     // BtnSave
     //
     this.BtnSave.DisplayStyle          = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.BtnSave.Image                 = global::A3DIMS.Properties.Resources.save_all;
     this.BtnSave.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.BtnSave.Name   = "BtnSave";
     this.BtnSave.Size   = new System.Drawing.Size(23, 22);
     this.BtnSave.Text   = "Save";
     this.BtnSave.Click += new System.EventHandler(this.BtnSave_Click);
     //
     // BtnUndo
     //
     this.BtnUndo.DisplayStyle          = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.BtnUndo.Image                 = global::A3DIMS.Properties.Resources.UndoRed16X16;
     this.BtnUndo.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.BtnUndo.Name   = "BtnUndo";
     this.BtnUndo.Size   = new System.Drawing.Size(23, 22);
     this.BtnUndo.Text   = "Undo";
     this.BtnUndo.Click += new System.EventHandler(this.BtnUndo_Click);
     //
     // bindingNavigatorSeparator
     //
     this.bindingNavigatorSeparator.Name = "bindingNavigatorSeparator";
     this.bindingNavigatorSeparator.Size = new System.Drawing.Size(6, 25);
     //
     // BtnMoveFirst
     //
     this.BtnMoveFirst.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.BtnMoveFirst.Image        = ((System.Drawing.Image)(resources.GetObject("BtnMoveFirst.Image")));
     this.BtnMoveFirst.Name         = "BtnMoveFirst";
     this.BtnMoveFirst.RightToLeftAutoMirrorImage = true;
     this.BtnMoveFirst.Size = new System.Drawing.Size(23, 22);
     this.BtnMoveFirst.Text = "Move first";
     //
     // BtnMovePrevious
     //
     this.BtnMovePrevious.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.BtnMovePrevious.Image        = ((System.Drawing.Image)(resources.GetObject("BtnMovePrevious.Image")));
     this.BtnMovePrevious.Name         = "BtnMovePrevious";
     this.BtnMovePrevious.RightToLeftAutoMirrorImage = true;
     this.BtnMovePrevious.Size = new System.Drawing.Size(23, 22);
     this.BtnMovePrevious.Text = "Move previous";
     //
     // TxtPositionItem
     //
     this.TxtPositionItem.AccessibleName = "Position";
     this.TxtPositionItem.AutoSize       = false;
     this.TxtPositionItem.Font           = new System.Drawing.Font("Segoe UI", 9F);
     this.TxtPositionItem.Name           = "TxtPositionItem";
     this.TxtPositionItem.Size           = new System.Drawing.Size(50, 23);
     this.TxtPositionItem.Text           = "0";
     this.TxtPositionItem.ToolTipText    = "Current position";
     //
     // bindingNavigatorSeparator1
     //
     this.bindingNavigatorSeparator1.Name = "bindingNavigatorSeparator1";
     this.bindingNavigatorSeparator1.Size = new System.Drawing.Size(6, 25);
     //
     // BtnMoveNext
     //
     this.BtnMoveNext.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.BtnMoveNext.Image        = ((System.Drawing.Image)(resources.GetObject("BtnMoveNext.Image")));
     this.BtnMoveNext.Name         = "BtnMoveNext";
     this.BtnMoveNext.RightToLeftAutoMirrorImage = true;
     this.BtnMoveNext.Size = new System.Drawing.Size(23, 22);
     this.BtnMoveNext.Text = "Move next";
     //
     // BtnMoveLast
     //
     this.BtnMoveLast.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.BtnMoveLast.Image        = ((System.Drawing.Image)(resources.GetObject("BtnMoveLast.Image")));
     this.BtnMoveLast.Name         = "BtnMoveLast";
     this.BtnMoveLast.RightToLeftAutoMirrorImage = true;
     this.BtnMoveLast.Size = new System.Drawing.Size(23, 22);
     this.BtnMoveLast.Text = "Move last";
     //
     // bindingNavigatorSeparator2
     //
     this.bindingNavigatorSeparator2.Name = "bindingNavigatorSeparator2";
     this.bindingNavigatorSeparator2.Size = new System.Drawing.Size(6, 25);
     //
     // BtnFind
     //
     this.BtnFind.DisplayStyle          = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.BtnFind.Image                 = global::A3DIMS.Properties.Resources.Find16X16;
     this.BtnFind.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.BtnFind.Name   = "BtnFind";
     this.BtnFind.Size   = new System.Drawing.Size(23, 22);
     this.BtnFind.Text   = "Find";
     this.BtnFind.Click += new System.EventHandler(this.BtnFind_Click);
     //
     // BtnPrint
     //
     this.BtnPrint.DisplayStyle          = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.BtnPrint.Image                 = global::A3DIMS.Properties.Resources.Print16X16;
     this.BtnPrint.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.BtnPrint.Name   = "BtnPrint";
     this.BtnPrint.Size   = new System.Drawing.Size(23, 22);
     this.BtnPrint.Text   = "Print";
     this.BtnPrint.Click += new System.EventHandler(this.BtnPrint_Click);
     //
     // BtnReload
     //
     this.BtnReload.DisplayStyle          = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.BtnReload.Image                 = global::A3DIMS.Properties.Resources.Reload16X16;
     this.BtnReload.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.BtnReload.Name   = "BtnReload";
     this.BtnReload.Size   = new System.Drawing.Size(23, 22);
     this.BtnReload.Text   = "Reload / Refresh";
     this.BtnReload.Click += new System.EventHandler(this.BtnReload_Click);
     //
     // BtnExport
     //
     this.BtnExport.DisplayStyle          = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.BtnExport.Image                 = global::A3DIMS.Properties.Resources.Excel16X16;
     this.BtnExport.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.BtnExport.Name   = "BtnExport";
     this.BtnExport.Size   = new System.Drawing.Size(23, 22);
     this.BtnExport.Text   = "Export to Excel";
     this.BtnExport.Click += new System.EventHandler(this.BtnExport_Click);
     //
     // BtnClose
     //
     this.BtnClose.DisplayStyle          = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.BtnClose.Image                 = global::A3DIMS.Properties.Resources.Close16X16;
     this.BtnClose.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.BtnClose.Name   = "BtnClose";
     this.BtnClose.Size   = new System.Drawing.Size(23, 22);
     this.BtnClose.Text   = "Close";
     this.BtnClose.Click += new System.EventHandler(this.BtnClose_Click);
     //
     // toolStripSeparator1
     //
     this.toolStripSeparator1.Name = "toolStripSeparator1";
     this.toolStripSeparator1.Size = new System.Drawing.Size(6, 25);
     //
     // FrmItemCategory
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.BackColor           = System.Drawing.Color.White;
     this.ClientSize          = new System.Drawing.Size(800, 450);
     this.Controls.Add(this.RdPageViewMain);
     this.Controls.Add(this.bindingNavigator1);
     this.Name = "FrmItemCategory";
     //
     //
     //
     this.RootElement.ApplyShapeToControl = true;
     this.Text  = "Item Category";
     this.Load += new System.EventHandler(this.FrmSubjects_Load);
     ((System.ComponentModel.ISupportInitialize)(this.RdTxtSubjectDescription)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.RdPageViewMain)).EndInit();
     this.RdPageViewMain.ResumeLayout(false);
     this.RdTbpEntry.ResumeLayout(false);
     this.RdTbpEntry.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.RdTxtSubjectRemarks)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.RdTxtItemCategoryCode)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel4)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.RdChkClassStatus)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel1)).EndInit();
     this.RdTbpList.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.RdGrdClass.MasterTemplate)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.RdGrdClass)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.bindingNavigator1)).EndInit();
     this.bindingNavigator1.ResumeLayout(false);
     this.bindingNavigator1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this)).EndInit();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
コード例 #26
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();
            Telerik.WinControls.UI.GridViewDecimalColumn gridViewDecimalColumn1 = new Telerik.WinControls.UI.GridViewDecimalColumn();
            Telerik.WinControls.UI.GridViewCheckBoxColumn gridViewCheckBoxColumn1 = new Telerik.WinControls.UI.GridViewCheckBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn1 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn2 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn3 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewDecimalColumn gridViewDecimalColumn2 = new Telerik.WinControls.UI.GridViewDecimalColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn4 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn5 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn6 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn7 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn8 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn9 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.ConditionalFormattingObject conditionalFormattingObject1 = new Telerik.WinControls.UI.ConditionalFormattingObject();
            Telerik.WinControls.UI.ConditionalFormattingObject conditionalFormattingObject2 = new Telerik.WinControls.UI.ConditionalFormattingObject();
            Telerik.WinControls.UI.ConditionalFormattingObject conditionalFormattingObject3 = new Telerik.WinControls.UI.ConditionalFormattingObject();
            Telerik.WinControls.Data.SortDescriptor sortDescriptor1 = new Telerik.WinControls.Data.SortDescriptor();
            Telerik.WinControls.UI.TableViewDefinition tableViewDefinition1 = new Telerik.WinControls.UI.TableViewDefinition();
            this.cb = new System.Windows.Forms.BindingSource(this.components);
            this.selectBtn = new Telerik.WinControls.UI.RadButton();
            this.radGridView1 = new Telerik.WinControls.UI.RadGridView();
            ((System.ComponentModel.ISupportInitialize)(this.cb)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.selectBtn)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radGridView1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radGridView1.MasterTemplate)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
            this.SuspendLayout();
            // 
            // cb
            // 
            this.cb.DataSource = typeof(tiraxco.ChequeTurnFull);
            // 
            // selectBtn
            // 
            this.selectBtn.Location = new System.Drawing.Point(15, 432);
            this.selectBtn.Name = "selectBtn";
            this.selectBtn.Size = new System.Drawing.Size(110, 24);
            this.selectBtn.TabIndex = 8;
            this.selectBtn.Text = "انتخاب";
            this.selectBtn.Click += new System.EventHandler(this.selectBtn_Click);
            // 
            // radGridView1
            // 
            this.radGridView1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 
            | System.Windows.Forms.AnchorStyles.Right)));
            this.radGridView1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(191)))), ((int)(((byte)(219)))), ((int)(((byte)(255)))));
            this.radGridView1.Cursor = System.Windows.Forms.Cursors.Default;
            this.radGridView1.Font = new System.Drawing.Font("Segoe UI", 8.25F);
            this.radGridView1.ForeColor = System.Drawing.Color.Black;
            this.radGridView1.ImeMode = System.Windows.Forms.ImeMode.NoControl;
            this.radGridView1.Location = new System.Drawing.Point(15, 41);
            // 
            // 
            // 
            this.radGridView1.MasterTemplate.AllowAddNewRow = false;
            this.radGridView1.MasterTemplate.AllowDragToGroup = false;
            this.radGridView1.MasterTemplate.AllowEditRow = false;
            this.radGridView1.MasterTemplate.AutoSizeColumnsMode = Telerik.WinControls.UI.GridViewAutoSizeColumnsMode.Fill;
            gridViewDecimalColumn1.DataType = typeof(int);
            gridViewDecimalColumn1.EnableExpressionEditor = false;
            gridViewDecimalColumn1.FieldName = "ID";
            gridViewDecimalColumn1.HeaderText = "#";
            gridViewDecimalColumn1.IsAutoGenerated = true;
            gridViewDecimalColumn1.Name = "ID";
            gridViewDecimalColumn1.Width = 60;
            gridViewCheckBoxColumn1.DataType = typeof(System.Nullable<bool>);
            gridViewCheckBoxColumn1.EnableExpressionEditor = false;
            gridViewCheckBoxColumn1.FieldName = "type";
            gridViewCheckBoxColumn1.HeaderText = "دریافتنی/پرداختنی";
            gridViewCheckBoxColumn1.IsAutoGenerated = true;
            gridViewCheckBoxColumn1.IsVisible = false;
            gridViewCheckBoxColumn1.MinWidth = 20;
            gridViewCheckBoxColumn1.Name = "type";
            gridViewTextBoxColumn1.EnableExpressionEditor = false;
            gridViewTextBoxColumn1.FieldName = "date";
            gridViewTextBoxColumn1.HeaderText = "تاریخ";
            gridViewTextBoxColumn1.IsAutoGenerated = true;
            gridViewTextBoxColumn1.Name = "date";
            gridViewTextBoxColumn1.SortOrder = Telerik.WinControls.UI.RadSortOrder.Ascending;
            gridViewTextBoxColumn1.Width = 74;
            gridViewTextBoxColumn2.EnableExpressionEditor = false;
            gridViewTextBoxColumn2.FieldName = "bank";
            gridViewTextBoxColumn2.HeaderText = "بانک";
            gridViewTextBoxColumn2.IsAutoGenerated = true;
            gridViewTextBoxColumn2.Name = "bank";
            gridViewTextBoxColumn2.Width = 131;
            gridViewTextBoxColumn3.EnableExpressionEditor = false;
            gridViewTextBoxColumn3.FieldName = "number";
            gridViewTextBoxColumn3.HeaderText = "شماره";
            gridViewTextBoxColumn3.IsAutoGenerated = true;
            gridViewTextBoxColumn3.Name = "number";
            gridViewTextBoxColumn3.Width = 117;
            gridViewDecimalColumn2.DataType = typeof(System.Nullable<int>);
            gridViewDecimalColumn2.EnableExpressionEditor = false;
            gridViewDecimalColumn2.FieldName = "amount";
            gridViewDecimalColumn2.HeaderText = "مبلغ";
            gridViewDecimalColumn2.IsAutoGenerated = true;
            gridViewDecimalColumn2.Name = "amount";
            gridViewDecimalColumn2.Width = 128;
            gridViewTextBoxColumn4.EnableExpressionEditor = false;
            gridViewTextBoxColumn4.FieldName = "account_number";
            gridViewTextBoxColumn4.IsAutoGenerated = true;
            gridViewTextBoxColumn4.IsVisible = false;
            gridViewTextBoxColumn4.Name = "account_number";
            gridViewTextBoxColumn5.EnableExpressionEditor = false;
            gridViewTextBoxColumn5.FieldName = "branch";
            gridViewTextBoxColumn5.HeaderText = "branch";
            gridViewTextBoxColumn5.IsAutoGenerated = true;
            gridViewTextBoxColumn5.IsVisible = false;
            gridViewTextBoxColumn5.Name = "branch";
            gridViewTextBoxColumn6.EnableExpressionEditor = false;
            gridViewTextBoxColumn6.FieldName = "account_owner";
            gridViewTextBoxColumn6.HeaderText = "صاحب حساب";
            gridViewTextBoxColumn6.IsAutoGenerated = true;
            gridViewTextBoxColumn6.Name = "account_owner";
            gridViewTextBoxColumn6.Width = 172;
            gridViewTextBoxColumn7.EnableExpressionEditor = false;
            gridViewTextBoxColumn7.FieldName = "payto";
            gridViewTextBoxColumn7.HeaderText = "در وجه";
            gridViewTextBoxColumn7.IsAutoGenerated = true;
            gridViewTextBoxColumn7.Name = "payto";
            gridViewTextBoxColumn7.Width = 77;
            gridViewTextBoxColumn8.EnableExpressionEditor = false;
            gridViewTextBoxColumn8.FieldName = "beacuseOf";
            gridViewTextBoxColumn8.HeaderText = "بابت";
            gridViewTextBoxColumn8.IsAutoGenerated = true;
            gridViewTextBoxColumn8.IsVisible = false;
            gridViewTextBoxColumn8.Name = "beacuseOf";
            gridViewTextBoxColumn8.Width = 64;
            conditionalFormattingObject1.ApplyOnSelectedRows = false;
            conditionalFormattingObject1.ApplyToRow = true;
            conditionalFormattingObject1.CellBackColor = System.Drawing.Color.Empty;
            conditionalFormattingObject1.CellFont = new System.Drawing.Font("Tahoma", 8.25F);
            conditionalFormattingObject1.CellForeColor = System.Drawing.Color.Empty;
            conditionalFormattingObject1.Name = "Recieved";
            conditionalFormattingObject1.RowBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(147)))), ((int)(((byte)(255)))), ((int)(((byte)(150)))));
            conditionalFormattingObject1.RowFont = new System.Drawing.Font("Tahoma", 8.25F);
            conditionalFormattingObject1.RowForeColor = System.Drawing.Color.Empty;
            conditionalFormattingObject1.TValue1 = "دریافت شده";
            conditionalFormattingObject2.ApplyOnSelectedRows = false;
            conditionalFormattingObject2.ApplyToRow = true;
            conditionalFormattingObject2.CellBackColor = System.Drawing.Color.Empty;
            conditionalFormattingObject2.CellFont = new System.Drawing.Font("Tahoma", 8.25F);
            conditionalFormattingObject2.CellForeColor = System.Drawing.Color.Empty;
            conditionalFormattingObject2.Name = "Sended";
            conditionalFormattingObject2.RowBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(147)))), ((int)(((byte)(147)))));
            conditionalFormattingObject2.RowFont = new System.Drawing.Font("Tahoma", 8.25F);
            conditionalFormattingObject2.RowForeColor = System.Drawing.Color.Empty;
            conditionalFormattingObject2.TValue1 = "صادر شده";
            conditionalFormattingObject3.ApplyOnSelectedRows = false;
            conditionalFormattingObject3.ApplyToRow = true;
            conditionalFormattingObject3.CellBackColor = System.Drawing.Color.Empty;
            conditionalFormattingObject3.CellFont = new System.Drawing.Font("Tahoma", 8.25F);
            conditionalFormattingObject3.CellForeColor = System.Drawing.Color.Empty;
            conditionalFormattingObject3.Name = "Created";
            conditionalFormattingObject3.RowBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(251)))), ((int)(((byte)(147)))));
            conditionalFormattingObject3.RowFont = new System.Drawing.Font("Tahoma", 8.25F);
            conditionalFormattingObject3.RowForeColor = System.Drawing.Color.Empty;
            conditionalFormattingObject3.TValue1 = "ايجاد چک";
            gridViewTextBoxColumn9.ConditionalFormattingObjectList.Add(conditionalFormattingObject1);
            gridViewTextBoxColumn9.ConditionalFormattingObjectList.Add(conditionalFormattingObject2);
            gridViewTextBoxColumn9.ConditionalFormattingObjectList.Add(conditionalFormattingObject3);
            gridViewTextBoxColumn9.EnableExpressionEditor = false;
            gridViewTextBoxColumn9.FieldName = "Status";
            gridViewTextBoxColumn9.HeaderText = "وضعیت";
            gridViewTextBoxColumn9.IsAutoGenerated = true;
            gridViewTextBoxColumn9.Name = "Status";
            gridViewTextBoxColumn9.Width = 101;
            this.radGridView1.MasterTemplate.Columns.AddRange(new Telerik.WinControls.UI.GridViewDataColumn[] {
            gridViewDecimalColumn1,
            gridViewCheckBoxColumn1,
            gridViewTextBoxColumn1,
            gridViewTextBoxColumn2,
            gridViewTextBoxColumn3,
            gridViewDecimalColumn2,
            gridViewTextBoxColumn4,
            gridViewTextBoxColumn5,
            gridViewTextBoxColumn6,
            gridViewTextBoxColumn7,
            gridViewTextBoxColumn8,
            gridViewTextBoxColumn9});
            this.radGridView1.MasterTemplate.DataSource = this.cb;
            sortDescriptor1.PropertyName = "date";
            this.radGridView1.MasterTemplate.SortDescriptors.AddRange(new Telerik.WinControls.Data.SortDescriptor[] {
            sortDescriptor1});
            this.radGridView1.MasterTemplate.ViewDefinition = tableViewDefinition1;
            this.radGridView1.Name = "radGridView1";
            this.radGridView1.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
            this.radGridView1.Size = new System.Drawing.Size(874, 360);
            this.radGridView1.TabIndex = 9;
            this.radGridView1.Text = "radGridView1";
            // 
            // ChequeSelection
            // 
            this.AcceptButton = this.selectBtn;
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.ClientSize = new System.Drawing.Size(904, 497);
            this.Controls.Add(this.radGridView1);
            this.Controls.Add(this.selectBtn);
            this.Name = "ChequeSelection";
            // 
            // 
            // 
            this.RootElement.ApplyShapeToControl = true;
            this.Text = "انتخاب چک";
            ((System.ComponentModel.ISupportInitialize)(this.cb)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.selectBtn)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radGridView1.MasterTemplate)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radGridView1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this)).EndInit();
            this.ResumeLayout(false);

        }
コード例 #27
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();
     Telerik.WinControls.UI.GridViewDecimalColumn  gridViewDecimalColumn1  = new Telerik.WinControls.UI.GridViewDecimalColumn();
     Telerik.WinControls.UI.GridViewTextBoxColumn  gridViewTextBoxColumn1  = new Telerik.WinControls.UI.GridViewTextBoxColumn();
     Telerik.WinControls.UI.GridViewTextBoxColumn  gridViewTextBoxColumn2  = new Telerik.WinControls.UI.GridViewTextBoxColumn();
     Telerik.WinControls.UI.GridViewTextBoxColumn  gridViewTextBoxColumn3  = new Telerik.WinControls.UI.GridViewTextBoxColumn();
     Telerik.WinControls.UI.GridViewTextBoxColumn  gridViewTextBoxColumn4  = new Telerik.WinControls.UI.GridViewTextBoxColumn();
     Telerik.WinControls.UI.GridViewCheckBoxColumn gridViewCheckBoxColumn1 = new Telerik.WinControls.UI.GridViewCheckBoxColumn();
     Telerik.WinControls.UI.GridViewDateTimeColumn gridViewDateTimeColumn1 = new Telerik.WinControls.UI.GridViewDateTimeColumn();
     Telerik.WinControls.UI.GridViewTextBoxColumn  gridViewTextBoxColumn5  = new Telerik.WinControls.UI.GridViewTextBoxColumn();
     Telerik.WinControls.Data.SortDescriptor       sortDescriptor1         = new Telerik.WinControls.Data.SortDescriptor();
     this.gridCoType          = new Telerik.WinControls.UI.RadGridView();
     this.coTypeBindingSource = new System.Windows.Forms.BindingSource(this.components);
     ((System.ComponentModel.ISupportInitialize)(this.gridCoType)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridCoType.MasterTemplate)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.coTypeBindingSource)).BeginInit();
     this.SuspendLayout();
     //
     // gridCoType
     //
     this.gridCoType.AutoSizeRows = true;
     this.gridCoType.BackColor    = System.Drawing.SystemColors.Control;
     this.gridCoType.Cursor       = System.Windows.Forms.Cursors.Default;
     this.gridCoType.Dock         = System.Windows.Forms.DockStyle.Fill;
     this.gridCoType.Font         = new System.Drawing.Font("Segoe UI", 8.25F);
     this.gridCoType.ForeColor    = System.Drawing.SystemColors.ControlText;
     this.gridCoType.ImeMode      = System.Windows.Forms.ImeMode.NoControl;
     this.gridCoType.Location     = new System.Drawing.Point(0, 0);
     //
     // gridCoType
     //
     gridViewDecimalColumn1.DataType            = typeof(int);
     gridViewDecimalColumn1.FieldName           = "CoType_ID";
     gridViewDecimalColumn1.FormatInfo          = new System.Globalization.CultureInfo("");
     gridViewDecimalColumn1.HeaderText          = "CoType_ID";
     gridViewDecimalColumn1.IsAutoGenerated     = true;
     gridViewDecimalColumn1.IsVisible           = false;
     gridViewDecimalColumn1.Name                = "CoType_ID";
     gridViewDecimalColumn1.TextAlignment       = System.Drawing.ContentAlignment.MiddleRight;
     gridViewTextBoxColumn1.FormatInfo          = new System.Globalization.CultureInfo("");
     gridViewTextBoxColumn1.FormatString        = "";
     gridViewTextBoxColumn1.HeaderText          = "No";
     gridViewTextBoxColumn1.Name                = "No";
     gridViewTextBoxColumn1.ReadOnly            = true;
     gridViewTextBoxColumn1.TextAlignment       = System.Drawing.ContentAlignment.MiddleCenter;
     gridViewTextBoxColumn1.Width               = 26;
     gridViewTextBoxColumn2.FieldName           = "CoCode";
     gridViewTextBoxColumn2.FormatInfo          = new System.Globalization.CultureInfo("");
     gridViewTextBoxColumn2.FormatString        = "";
     gridViewTextBoxColumn2.HeaderText          = "Code";
     gridViewTextBoxColumn2.IsAutoGenerated     = true;
     gridViewTextBoxColumn2.Name                = "CoCode";
     gridViewTextBoxColumn2.Width               = 100;
     gridViewTextBoxColumn3.FieldName           = "CoName";
     gridViewTextBoxColumn3.FormatInfo          = new System.Globalization.CultureInfo("");
     gridViewTextBoxColumn3.FormatString        = "";
     gridViewTextBoxColumn3.HeaderText          = "Name";
     gridViewTextBoxColumn3.HeaderTextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
     gridViewTextBoxColumn3.IsAutoGenerated     = true;
     gridViewTextBoxColumn3.Name                = "CoName";
     gridViewTextBoxColumn3.Width               = 150;
     gridViewTextBoxColumn4.FieldName           = "CoNotes";
     gridViewTextBoxColumn4.FormatInfo          = new System.Globalization.CultureInfo("");
     gridViewTextBoxColumn4.FormatString        = "";
     gridViewTextBoxColumn4.HeaderText          = "Notes";
     gridViewTextBoxColumn4.HeaderTextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
     gridViewTextBoxColumn4.IsAutoGenerated     = true;
     gridViewTextBoxColumn4.Multiline           = true;
     gridViewTextBoxColumn4.Name                = "CoNotes";
     gridViewTextBoxColumn4.Width               = 250;
     gridViewTextBoxColumn4.WrapText            = true;
     gridViewCheckBoxColumn1.DataType           = typeof(System.Nullable <bool>);
     gridViewCheckBoxColumn1.FieldName          = "Active";
     gridViewCheckBoxColumn1.FormatInfo         = new System.Globalization.CultureInfo("");
     gridViewCheckBoxColumn1.FormatString       = "";
     gridViewCheckBoxColumn1.HeaderText         = "Active";
     gridViewCheckBoxColumn1.IsAutoGenerated    = true;
     gridViewCheckBoxColumn1.MinWidth           = 20;
     gridViewCheckBoxColumn1.Name               = "Active";
     gridViewCheckBoxColumn1.Width              = 56;
     gridViewDateTimeColumn1.DataType           = typeof(System.Nullable <System.DateTime>);
     gridViewDateTimeColumn1.FieldName          = "UpdatedDate";
     gridViewDateTimeColumn1.Format             = System.Windows.Forms.DateTimePickerFormat.Long;
     gridViewDateTimeColumn1.FormatInfo         = new System.Globalization.CultureInfo("");
     gridViewDateTimeColumn1.HeaderText         = "UpdatedDate";
     gridViewDateTimeColumn1.IsAutoGenerated    = true;
     gridViewDateTimeColumn1.IsVisible          = false;
     gridViewDateTimeColumn1.Name               = "UpdatedDate";
     gridViewTextBoxColumn5.DataType            = typeof(System.Collections.Generic.ICollection <PGS.Entity.Supplier>);
     gridViewTextBoxColumn5.FieldName           = "Suppliers";
     gridViewTextBoxColumn5.FormatInfo          = new System.Globalization.CultureInfo("");
     gridViewTextBoxColumn5.HeaderText          = "Suppliers";
     gridViewTextBoxColumn5.IsAutoGenerated     = true;
     gridViewTextBoxColumn5.IsVisible           = false;
     gridViewTextBoxColumn5.Name                = "Suppliers";
     this.gridCoType.MasterTemplate.Columns.AddRange(new Telerik.WinControls.UI.GridViewDataColumn[] {
         gridViewDecimalColumn1,
         gridViewTextBoxColumn1,
         gridViewTextBoxColumn2,
         gridViewTextBoxColumn3,
         gridViewTextBoxColumn4,
         gridViewCheckBoxColumn1,
         gridViewDateTimeColumn1,
         gridViewTextBoxColumn5
     });
     this.gridCoType.MasterTemplate.DataSource = this.coTypeBindingSource;
     sortDescriptor1.PropertyName = "CoCode";
     this.gridCoType.MasterTemplate.SortDescriptors.AddRange(new Telerik.WinControls.Data.SortDescriptor[] {
         sortDescriptor1
     });
     this.gridCoType.Name        = "gridCoType";
     this.gridCoType.Padding     = new System.Windows.Forms.Padding(0, 0, 0, 1);
     this.gridCoType.RightToLeft = System.Windows.Forms.RightToLeft.No;
     //
     //
     //
     this.gridCoType.RootElement.Padding = new System.Windows.Forms.Padding(0, 0, 0, 1);
     this.gridCoType.Size                 = new System.Drawing.Size(633, 427);
     this.gridCoType.TabIndex             = 0;
     this.gridCoType.CellFormatting      += new Telerik.WinControls.UI.CellFormattingEventHandler(this.gridCoType_CellFormatting);
     this.gridCoType.CellValidating      += new Telerik.WinControls.UI.CellValidatingEventHandler(this.gridCoType_CellValidating);
     this.gridCoType.UserAddingRow       += new Telerik.WinControls.UI.GridViewRowCancelEventHandler(this.gridCoType_UserAddingRow);
     this.gridCoType.UserAddedRow        += new Telerik.WinControls.UI.GridViewRowEventHandler(this.gridCoType_UserAddedRow);
     this.gridCoType.UserDeletingRow     += new Telerik.WinControls.UI.GridViewRowCancelEventHandler(this.gridCoType_UserDeletingRow);
     this.gridCoType.UserDeletedRow      += new Telerik.WinControls.UI.GridViewRowEventHandler(this.gridCoType_UserDeletedRow);
     this.gridCoType.CellValueChanged    += new Telerik.WinControls.UI.GridViewCellEventHandler(this.gridCoType_CellValueChanged);
     this.gridCoType.DataBindingComplete += new Telerik.WinControls.UI.GridViewBindingCompleteEventHandler(this.gridCoType_DataBindingComplete);
     //
     // coTypeBindingSource
     //
     this.coTypeBindingSource.DataSource = typeof(PGS.Entity.CoType);
     //
     // CompanyTypeList
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.Controls.Add(this.gridCoType);
     this.Name = "CompanyTypeList";
     this.Size = new System.Drawing.Size(633, 427);
     ((System.ComponentModel.ISupportInitialize)(this.gridCoType.MasterTemplate)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridCoType)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.coTypeBindingSource)).EndInit();
     this.ResumeLayout(false);
 }
コード例 #28
0
        /// <summary>
        /// Required method for Designer support - do not modify
        /// the contents of this method with the code editor.
        /// </summary>
        private void InitializeComponent()
        {
            Telerik.WinControls.UI.GridViewCheckBoxColumn gridViewCheckBoxColumn1 = new Telerik.WinControls.UI.GridViewCheckBoxColumn();
            this.dataGridView1 = new System.Windows.Forms.DataGridView();
            this.button1 = new System.Windows.Forms.Button();
            this.Choose = new System.Windows.Forms.DataGridViewCheckBoxColumn();
            this.label1 = new System.Windows.Forms.Label();
            this.label2 = new System.Windows.Forms.Label();
            this.button2 = new System.Windows.Forms.Button();
            this.radGridView1 = new Telerik.WinControls.UI.RadGridView();
            ((System.ComponentModel.ISupportInitialize)(this.dataGridView1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radGridView1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radGridView1.MasterTemplate)).BeginInit();
            this.SuspendLayout();
            // 
            // dataGridView1
            // 
            this.dataGridView1.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
            this.dataGridView1.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
            this.Choose});
            this.dataGridView1.Location = new System.Drawing.Point(2, -2);
            this.dataGridView1.Name = "dataGridView1";
            this.dataGridView1.Size = new System.Drawing.Size(185, 155);
            this.dataGridView1.TabIndex = 0;
            // 
            // button1
            // 
            this.button1.Location = new System.Drawing.Point(12, 368);
            this.button1.Name = "button1";
            this.button1.Size = new System.Drawing.Size(75, 23);
            this.button1.TabIndex = 1;
            this.button1.Text = "button1";
            this.button1.UseVisualStyleBackColor = true;
            this.button1.Click += new System.EventHandler(this.button1_Click);
            // 
            // Choose
            // 
            this.Choose.HeaderText = "Column1";
            this.Choose.Name = "Choose";
            // 
            // label1
            // 
            this.label1.AutoSize = true;
            this.label1.Location = new System.Drawing.Point(130, 377);
            this.label1.Name = "label1";
            this.label1.Size = new System.Drawing.Size(35, 13);
            this.label1.TabIndex = 2;
            this.label1.Text = "label1";
            // 
            // label2
            // 
            this.label2.AutoSize = true;
            this.label2.Location = new System.Drawing.Point(209, 380);
            this.label2.Name = "label2";
            this.label2.Size = new System.Drawing.Size(35, 13);
            this.label2.TabIndex = 3;
            this.label2.Text = "label2";
            // 
            // button2
            // 
            this.button2.Location = new System.Drawing.Point(296, 368);
            this.button2.Name = "button2";
            this.button2.Size = new System.Drawing.Size(75, 23);
            this.button2.TabIndex = 4;
            this.button2.Text = "button2";
            this.button2.UseVisualStyleBackColor = true;
            this.button2.Click += new System.EventHandler(this.button2_Click);
            // 
            // radGridView1
            // 
            this.radGridView1.Location = new System.Drawing.Point(225, 35);
            // 
            // radGridView1
            // 
            gridViewCheckBoxColumn1.HeaderText = "column1";
            gridViewCheckBoxColumn1.Name = "column1";
            this.radGridView1.MasterTemplate.Columns.AddRange(new Telerik.WinControls.UI.GridViewDataColumn[] {
            gridViewCheckBoxColumn1});
            this.radGridView1.Name = "radGridView1";
            this.radGridView1.Size = new System.Drawing.Size(240, 150);
            this.radGridView1.TabIndex = 5;
            this.radGridView1.Text = "radGridView1";
            // 
            // example
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.ClientSize = new System.Drawing.Size(604, 403);
            this.Controls.Add(this.radGridView1);
            this.Controls.Add(this.button2);
            this.Controls.Add(this.label2);
            this.Controls.Add(this.label1);
            this.Controls.Add(this.button1);
            this.Controls.Add(this.dataGridView1);
            this.Name = "example";
            this.Text = "example";
            ((System.ComponentModel.ISupportInitialize)(this.dataGridView1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radGridView1.MasterTemplate)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radGridView1)).EndInit();
            this.ResumeLayout(false);
            this.PerformLayout();

        }
コード例 #29
0
ファイル: frmInputKas.Designer.cs プロジェクト: m0ch4/Sinarek
 /// <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();
     Telerik.WinControls.UI.GridViewDecimalColumn    gridViewDecimalColumn9    = new Telerik.WinControls.UI.GridViewDecimalColumn();
     Telerik.WinControls.UI.GridViewDecimalColumn    gridViewDecimalColumn10   = new Telerik.WinControls.UI.GridViewDecimalColumn();
     Telerik.WinControls.UI.GridViewDecimalColumn    gridViewDecimalColumn11   = new Telerik.WinControls.UI.GridViewDecimalColumn();
     Telerik.WinControls.UI.GridViewDecimalColumn    gridViewDecimalColumn12   = new Telerik.WinControls.UI.GridViewDecimalColumn();
     Telerik.WinControls.UI.GridViewDecimalColumn    gridViewDecimalColumn13   = new Telerik.WinControls.UI.GridViewDecimalColumn();
     Telerik.WinControls.UI.GridViewDecimalColumn    gridViewDecimalColumn14   = new Telerik.WinControls.UI.GridViewDecimalColumn();
     Telerik.WinControls.UI.GridViewDateTimeColumn   gridViewDateTimeColumn3   = new Telerik.WinControls.UI.GridViewDateTimeColumn();
     Telerik.WinControls.UI.GridViewCheckBoxColumn   gridViewCheckBoxColumn2   = new Telerik.WinControls.UI.GridViewCheckBoxColumn();
     Telerik.WinControls.UI.GridViewDateTimeColumn   gridViewDateTimeColumn4   = new Telerik.WinControls.UI.GridViewDateTimeColumn();
     Telerik.WinControls.UI.GridViewComboBoxColumn   gridViewComboBoxColumn3   = new Telerik.WinControls.UI.GridViewComboBoxColumn();
     Telerik.WinControls.UI.GridViewComboBoxColumn   gridViewComboBoxColumn4   = new Telerik.WinControls.UI.GridViewComboBoxColumn();
     Telerik.WinControls.UI.GridViewDecimalColumn    gridViewDecimalColumn15   = new Telerik.WinControls.UI.GridViewDecimalColumn();
     Telerik.WinControls.UI.GridViewDecimalColumn    gridViewDecimalColumn16   = new Telerik.WinControls.UI.GridViewDecimalColumn();
     Telerik.WinControls.UI.GridViewCalculatorColumn gridViewCalculatorColumn2 = new Telerik.WinControls.UI.GridViewCalculatorColumn();
     Telerik.WinControls.UI.GridViewTextBoxColumn    gridViewTextBoxColumn5    = new Telerik.WinControls.UI.GridViewTextBoxColumn();
     Telerik.WinControls.UI.GridViewTextBoxColumn    gridViewTextBoxColumn6    = new Telerik.WinControls.UI.GridViewTextBoxColumn();
     Telerik.WinControls.UI.GridViewTextBoxColumn    gridViewTextBoxColumn7    = new Telerik.WinControls.UI.GridViewTextBoxColumn();
     Telerik.WinControls.UI.GridViewTextBoxColumn    gridViewTextBoxColumn8    = new Telerik.WinControls.UI.GridViewTextBoxColumn();
     Telerik.WinControls.UI.GridViewSummaryItem      gridViewSummaryItem3      = new Telerik.WinControls.UI.GridViewSummaryItem();
     Telerik.WinControls.UI.GridViewSummaryItem      gridViewSummaryItem4      = new Telerik.WinControls.UI.GridViewSummaryItem();
     Telerik.WinControls.UI.TableViewDefinition      tableViewDefinition2      = new Telerik.WinControls.UI.TableViewDefinition();
     this.tipeaccountBindingSource  = new System.Windows.Forms.BindingSource(this.components);
     this.sinarekDataSet            = new Cashier.sinarekDataSet();
     this.tipeaccountBindingSource1 = new System.Windows.Forms.BindingSource(this.components);
     this.btnSimpan               = new Telerik.WinControls.UI.RadButton();
     this.btnCancel               = new Telerik.WinControls.UI.RadButton();
     this.lblDari                 = new Telerik.WinControls.UI.RadLabel();
     this.radLabel3               = new Telerik.WinControls.UI.RadLabel();
     this.lblKeterangan           = new Telerik.WinControls.UI.RadLabel();
     this.rddName                 = new Telerik.WinControls.UI.RadDropDownList();
     this.vallsupBindingSource    = new System.Windows.Forms.BindingSource(this.components);
     this.txtPrice                = new Telerik.WinControls.UI.RadMaskedEditBox();
     this.txtKeterangan           = new Telerik.WinControls.UI.RadTextBox();
     this.radGridView1            = new Telerik.WinControls.UI.RadGridView();
     this.btnAddPayment           = new Telerik.WinControls.UI.RadButton();
     this.radGroupBox1            = new Telerik.WinControls.UI.RadGroupBox();
     this.lblIndicator            = new Telerik.WinControls.UI.RadLabel();
     this.txtAdjusted             = new Telerik.WinControls.UI.RadMaskedEditBox();
     this.radLabel1               = new Telerik.WinControls.UI.RadLabel();
     this.vallsupTableAdapter     = new Cashier.sinarekDataSetTableAdapters.vallsupTableAdapter();
     this.dtpTanggal              = new Telerik.WinControls.UI.RadDateTimePicker();
     this.radLabel2               = new Telerik.WinControls.UI.RadLabel();
     this.accpaymentBindingSource = new System.Windows.Forms.BindingSource(this.components);
     this.accpaymentTableAdapter  = new Cashier.sinarekDataSetTableAdapters.accpaymentTableAdapter();
     this.tipeaccountTableAdapter = new Cashier.sinarekDataSetTableAdapters.tipeaccountTableAdapter();
     this.txtTotal                = new Telerik.WinControls.UI.RadMaskedEditBox();
     this.radLabel5               = new Telerik.WinControls.UI.RadLabel();
     this.radGroupBox2            = new Telerik.WinControls.UI.RadGroupBox();
     this.radLabel6               = new Telerik.WinControls.UI.RadLabel();
     this.rbtnKeluar              = new Telerik.WinControls.UI.RadRadioButton();
     this.rbtnMasuk               = new Telerik.WinControls.UI.RadRadioButton();
     ((System.ComponentModel.ISupportInitialize)(this.tipeaccountBindingSource)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.sinarekDataSet)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.tipeaccountBindingSource1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.btnSimpan)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.btnCancel)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lblDari)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lblKeterangan)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.rddName)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.vallsupBindingSource)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtPrice)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtKeterangan)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radGridView1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radGridView1.MasterTemplate)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.btnAddPayment)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radGroupBox1)).BeginInit();
     this.radGroupBox1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.lblIndicator)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtAdjusted)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dtpTanggal)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.accpaymentBindingSource)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtTotal)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel5)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radGroupBox2)).BeginInit();
     this.radGroupBox2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel6)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.rbtnKeluar)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.rbtnMasuk)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
     this.SuspendLayout();
     //
     // tipeaccountBindingSource
     //
     this.tipeaccountBindingSource.DataMember = "tipeaccount";
     this.tipeaccountBindingSource.DataSource = this.sinarekDataSet;
     //
     // sinarekDataSet
     //
     this.sinarekDataSet.DataSetName             = "sinarekDataSet";
     this.sinarekDataSet.SchemaSerializationMode = System.Data.SchemaSerializationMode.IncludeSchema;
     //
     // tipeaccountBindingSource1
     //
     this.tipeaccountBindingSource1.DataMember = "tipeaccount";
     this.tipeaccountBindingSource1.DataSource = this.sinarekDataSet;
     //
     // btnSimpan
     //
     this.btnSimpan.Font     = new System.Drawing.Font("Segoe UI", 10F);
     this.btnSimpan.Location = new System.Drawing.Point(583, 29);
     this.btnSimpan.Name     = "btnSimpan";
     this.btnSimpan.Size     = new System.Drawing.Size(95, 38);
     this.btnSimpan.TabIndex = 20;
     this.btnSimpan.Text     = "&Simpan";
     this.btnSimpan.Click   += new System.EventHandler(this.btnSimpan_Click);
     //
     // btnCancel
     //
     this.btnCancel.Font     = new System.Drawing.Font("Segoe UI", 10F);
     this.btnCancel.Location = new System.Drawing.Point(713, 29);
     this.btnCancel.Name     = "btnCancel";
     this.btnCancel.Size     = new System.Drawing.Size(95, 38);
     this.btnCancel.TabIndex = 21;
     this.btnCancel.Text     = "&Batal";
     this.btnCancel.Click   += new System.EventHandler(this.btnCancel_Click);
     //
     // lblDari
     //
     this.lblDari.Location = new System.Drawing.Point(12, 41);
     this.lblDari.Name     = "lblDari";
     this.lblDari.Size     = new System.Drawing.Size(41, 18);
     this.lblDari.TabIndex = 4;
     this.lblDari.Text     = "Nama :";
     //
     // radLabel3
     //
     this.radLabel3.Location = new System.Drawing.Point(490, 10);
     this.radLabel3.Name     = "radLabel3";
     this.radLabel3.Size     = new System.Drawing.Size(104, 18);
     this.radLabel3.TabIndex = 7;
     this.radLabel3.Text     = "Harga :               Rp.";
     //
     // lblKeterangan
     //
     this.lblKeterangan.Location = new System.Drawing.Point(12, 71);
     this.lblKeterangan.Name     = "lblKeterangan";
     this.lblKeterangan.Size     = new System.Drawing.Size(69, 18);
     this.lblKeterangan.TabIndex = 8;
     this.lblKeterangan.Text     = "Keterangan :";
     //
     // rddName
     //
     this.rddName.AutoCompleteDisplayMember = "Nama";
     this.rddName.AutoCompleteMode          = System.Windows.Forms.AutoCompleteMode.SuggestAppend;
     this.rddName.AutoCompleteValueMember   = "ID";
     this.rddName.DataBindings.Add(new System.Windows.Forms.Binding("Tag", this.vallsupBindingSource, "CustTypeID", true));
     this.rddName.DataSource    = this.vallsupBindingSource;
     this.rddName.DisplayMember = "Nama";
     this.rddName.Font          = new System.Drawing.Font("Segoe UI", 10F);
     this.rddName.Location      = new System.Drawing.Point(146, 40);
     this.rddName.Name          = "rddName";
     this.rddName.Size          = new System.Drawing.Size(268, 23);
     this.rddName.SortStyle     = Telerik.WinControls.Enumerations.SortStyle.Ascending;
     this.rddName.TabIndex      = 2;
     this.rddName.ValueMember   = "ID";
     //
     // vallsupBindingSource
     //
     this.vallsupBindingSource.DataMember = "vallsup";
     this.vallsupBindingSource.DataSource = this.sinarekDataSet;
     this.vallsupBindingSource.Filter     = "sales = 0";
     //
     // txtPrice
     //
     this.txtPrice.Font         = new System.Drawing.Font("Segoe UI", 10F);
     this.txtPrice.Location     = new System.Drawing.Point(624, 9);
     this.txtPrice.Mask         = "n2";
     this.txtPrice.MaskType     = Telerik.WinControls.UI.MaskType.Numeric;
     this.txtPrice.Name         = "txtPrice";
     this.txtPrice.Size         = new System.Drawing.Size(139, 23);
     this.txtPrice.TabIndex     = 4;
     this.txtPrice.TabStop      = false;
     this.txtPrice.Text         = "0.00";
     this.txtPrice.TextAlign    = System.Windows.Forms.HorizontalAlignment.Right;
     this.txtPrice.TextChanged += new System.EventHandler(this.txtPrice_TextChanged);
     //
     // txtKeterangan
     //
     this.txtKeterangan.Font     = new System.Drawing.Font("Segoe UI", 10F);
     this.txtKeterangan.Location = new System.Drawing.Point(146, 70);
     this.txtKeterangan.Name     = "txtKeterangan";
     this.txtKeterangan.Size     = new System.Drawing.Size(720, 23);
     this.txtKeterangan.TabIndex = 3;
     this.txtKeterangan.TabStop  = false;
     //
     // radGridView1
     //
     this.radGridView1.Dock     = System.Windows.Forms.DockStyle.Bottom;
     this.radGridView1.Font     = new System.Drawing.Font("Segoe UI", 10F);
     this.radGridView1.Location = new System.Drawing.Point(2, 73);
     //
     //
     //
     this.radGridView1.MasterTemplate.AllowAddNewRow      = false;
     this.radGridView1.MasterTemplate.AllowColumnReorder  = false;
     this.radGridView1.MasterTemplate.AllowEditRow        = false;
     this.radGridView1.MasterTemplate.AutoGenerateColumns = false;
     gridViewDecimalColumn9.DataType         = typeof(int);
     gridViewDecimalColumn9.FieldName        = "paymentid";
     gridViewDecimalColumn9.HeaderText       = "paymentid";
     gridViewDecimalColumn9.IsAutoGenerated  = true;
     gridViewDecimalColumn9.IsVisible        = false;
     gridViewDecimalColumn9.Name             = "paymentid";
     gridViewDecimalColumn10.DataType        = typeof(int);
     gridViewDecimalColumn10.FieldName       = "transID";
     gridViewDecimalColumn10.HeaderText      = "transID";
     gridViewDecimalColumn10.IsAutoGenerated = true;
     gridViewDecimalColumn10.IsVisible       = false;
     gridViewDecimalColumn10.Name            = "transID";
     gridViewDecimalColumn11.DataType        = typeof(int);
     gridViewDecimalColumn11.FieldName       = "accID";
     gridViewDecimalColumn11.HeaderText      = "accID";
     gridViewDecimalColumn11.IsAutoGenerated = true;
     gridViewDecimalColumn11.IsVisible       = false;
     gridViewDecimalColumn11.Name            = "accID";
     gridViewDecimalColumn12.DataType        = typeof(short);
     gridViewDecimalColumn12.FieldName       = "typeid";
     gridViewDecimalColumn12.HeaderText      = "typeid";
     gridViewDecimalColumn12.IsAutoGenerated = true;
     gridViewDecimalColumn12.IsVisible       = false;
     gridViewDecimalColumn12.Name            = "typeid";
     gridViewDecimalColumn13.DataType        = typeof(int);
     gridViewDecimalColumn13.FieldName       = "statusid";
     gridViewDecimalColumn13.HeaderText      = "statusid";
     gridViewDecimalColumn13.IsAutoGenerated = true;
     gridViewDecimalColumn13.IsVisible       = false;
     gridViewDecimalColumn13.Name            = "statusid";
     gridViewDecimalColumn14.DataType        = typeof(int);
     gridViewDecimalColumn14.FieldName       = "linkid";
     gridViewDecimalColumn14.HeaderText      = "linkid";
     gridViewDecimalColumn14.IsAutoGenerated = true;
     gridViewDecimalColumn14.IsVisible       = false;
     gridViewDecimalColumn14.Name            = "linkid";
     gridViewDateTimeColumn3.FieldName       = "modified";
     gridViewDateTimeColumn3.HeaderText      = "modified";
     gridViewDateTimeColumn3.IsAutoGenerated = true;
     gridViewDateTimeColumn3.IsVisible       = false;
     gridViewDateTimeColumn3.Name            = "modified";
     gridViewCheckBoxColumn2.FieldName       = "category";
     gridViewCheckBoxColumn2.HeaderText      = "category";
     gridViewCheckBoxColumn2.IsAutoGenerated = true;
     gridViewCheckBoxColumn2.IsVisible       = false;
     gridViewCheckBoxColumn2.Name            = "category";
     gridViewDateTimeColumn4.FieldName       = "Tanggal";
     gridViewDateTimeColumn4.FormatString    = "{0:dd MMM yy}";
     gridViewDateTimeColumn4.HeaderText      = "Tanggal";
     gridViewDateTimeColumn4.IsAutoGenerated = true;
     gridViewDateTimeColumn4.Name            = "Tanggal";
     gridViewDateTimeColumn4.Width           = 100;
     gridViewComboBoxColumn3.DataSource      = this.tipeaccountBindingSource;
     gridViewComboBoxColumn3.DisplayMember   = "Nama";
     gridViewComboBoxColumn3.FieldName       = "accid";
     gridViewComboBoxColumn3.HeaderText      = "Tipe";
     gridViewComboBoxColumn3.Name            = "account";
     gridViewComboBoxColumn3.ValueMember     = "accountid";
     gridViewComboBoxColumn3.Width           = 150;
     gridViewComboBoxColumn4.DataSource      = this.tipeaccountBindingSource1;
     gridViewComboBoxColumn4.DisplayMember   = "Nama";
     gridViewComboBoxColumn4.FieldName       = "tipeid";
     gridViewComboBoxColumn4.HeaderText      = "Bayar";
     gridViewComboBoxColumn4.Name            = "tipe";
     gridViewComboBoxColumn4.ValueMember     = "accountid";
     gridViewComboBoxColumn4.Width           = 100;
     gridViewDecimalColumn15.FieldName       = "unit";
     gridViewDecimalColumn15.HeaderText      = "Unit";
     gridViewDecimalColumn15.Name            = "unit";
     gridViewDecimalColumn16.FieldName       = "VALUE";
     gridViewDecimalColumn16.HeaderText      = "Nilai";
     gridViewDecimalColumn16.IsAutoGenerated = true;
     gridViewDecimalColumn16.IsVisible       = false;
     gridViewDecimalColumn16.Name            = "VALUE";
     gridViewDecimalColumn16.Width           = 100;
     gridViewCalculatorColumn2.Expression    = "IIF(category =1,VALUE  , -1*VALUE ) ";
     gridViewCalculatorColumn2.FormatString  = "{0:Rp #,##0.00}";
     gridViewCalculatorColumn2.HeaderText    = "Nilai";
     gridViewCalculatorColumn2.Name          = "calculated";
     gridViewCalculatorColumn2.Width         = 100;
     gridViewTextBoxColumn5.FieldName        = "Keterangan1";
     gridViewTextBoxColumn5.HeaderText       = "Keterangan";
     gridViewTextBoxColumn5.IsAutoGenerated  = true;
     gridViewTextBoxColumn5.Name             = "Keterangan1";
     gridViewTextBoxColumn5.Width            = 100;
     gridViewTextBoxColumn6.FieldName        = "Keterangan2";
     gridViewTextBoxColumn6.HeaderText       = "";
     gridViewTextBoxColumn6.IsAutoGenerated  = true;
     gridViewTextBoxColumn6.Name             = "Keterangan2";
     gridViewTextBoxColumn6.Width            = 100;
     gridViewTextBoxColumn7.FieldName        = "keterangan3";
     gridViewTextBoxColumn7.HeaderText       = "";
     gridViewTextBoxColumn7.IsAutoGenerated  = true;
     gridViewTextBoxColumn7.Name             = "keterangan3";
     gridViewTextBoxColumn7.Width            = 100;
     gridViewTextBoxColumn8.FieldName        = "modifiedby";
     gridViewTextBoxColumn8.HeaderText       = "";
     gridViewTextBoxColumn8.IsAutoGenerated  = true;
     gridViewTextBoxColumn8.IsVisible        = false;
     gridViewTextBoxColumn8.Name             = "modifiedby";
     gridViewTextBoxColumn8.Width            = 100;
     this.radGridView1.MasterTemplate.Columns.AddRange(new Telerik.WinControls.UI.GridViewDataColumn[] {
         gridViewDecimalColumn9,
         gridViewDecimalColumn10,
         gridViewDecimalColumn11,
         gridViewDecimalColumn12,
         gridViewDecimalColumn13,
         gridViewDecimalColumn14,
         gridViewDateTimeColumn3,
         gridViewCheckBoxColumn2,
         gridViewDateTimeColumn4,
         gridViewComboBoxColumn3,
         gridViewComboBoxColumn4,
         gridViewDecimalColumn15,
         gridViewDecimalColumn16,
         gridViewCalculatorColumn2,
         gridViewTextBoxColumn5,
         gridViewTextBoxColumn6,
         gridViewTextBoxColumn7,
         gridViewTextBoxColumn8
     });
     gridViewSummaryItem3.Aggregate    = Telerik.WinControls.UI.GridAggregateFunction.Sum;
     gridViewSummaryItem3.FormatString = "Total :";
     gridViewSummaryItem3.Name         = "tipe";
     gridViewSummaryItem4.Aggregate    = Telerik.WinControls.UI.GridAggregateFunction.Sum;
     gridViewSummaryItem4.FormatString = "{0: Rp #,##0.00}";
     gridViewSummaryItem4.Name         = "Value";
     this.radGridView1.MasterTemplate.SummaryRowsTop.Add(new Telerik.WinControls.UI.GridViewSummaryRowItem(new Telerik.WinControls.UI.GridViewSummaryItem[] {
         gridViewSummaryItem3,
         gridViewSummaryItem4
     }));
     this.radGridView1.MasterTemplate.ViewDefinition = tableViewDefinition2;
     this.radGridView1.Name           = "radGridView1";
     this.radGridView1.ReadOnly       = true;
     this.radGridView1.ShowGroupPanel = false;
     this.radGridView1.Size           = new System.Drawing.Size(864, 261);
     this.radGridView1.TabIndex       = 26;
     this.radGridView1.Text           = "radGridView1";
     //
     // btnAddPayment
     //
     this.btnAddPayment.Font     = new System.Drawing.Font("Segoe UI", 10F);
     this.btnAddPayment.Location = new System.Drawing.Point(8, 32);
     this.btnAddPayment.Name     = "btnAddPayment";
     this.btnAddPayment.Size     = new System.Drawing.Size(134, 24);
     this.btnAddPayment.TabIndex = 8;
     this.btnAddPayment.Text     = "&Add Details";
     this.btnAddPayment.Click   += new System.EventHandler(this.btnAddPayment_Click);
     //
     // radGroupBox1
     //
     this.radGroupBox1.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
     this.radGroupBox1.Controls.Add(this.btnSimpan);
     this.radGroupBox1.Controls.Add(this.btnCancel);
     this.radGroupBox1.Controls.Add(this.lblIndicator);
     this.radGroupBox1.Controls.Add(this.btnAddPayment);
     this.radGroupBox1.Controls.Add(this.radGridView1);
     this.radGroupBox1.Dock          = System.Windows.Forms.DockStyle.Bottom;
     this.radGroupBox1.Font          = new System.Drawing.Font("Segoe UI", 10F);
     this.radGroupBox1.GroupBoxStyle = Telerik.WinControls.UI.RadGroupBoxStyle.Office;
     this.radGroupBox1.HeaderText    = "Details";
     this.radGroupBox1.Location      = new System.Drawing.Point(0, 159);
     this.radGroupBox1.Name          = "radGroupBox1";
     this.radGroupBox1.Size          = new System.Drawing.Size(868, 336);
     this.radGroupBox1.TabIndex      = 31;
     this.radGroupBox1.Text          = "Details";
     //
     // lblIndicator
     //
     this.lblIndicator.AutoSize = false;
     this.lblIndicator.Location = new System.Drawing.Point(281, 37);
     this.lblIndicator.Name     = "lblIndicator";
     this.lblIndicator.Size     = new System.Drawing.Size(196, 21);
     this.lblIndicator.TabIndex = 28;
     this.lblIndicator.Text     = "Sisa :";
     //
     // txtAdjusted
     //
     this.txtAdjusted.Font         = new System.Drawing.Font("Segoe UI", 10F);
     this.txtAdjusted.Location     = new System.Drawing.Point(624, 40);
     this.txtAdjusted.Mask         = "n2";
     this.txtAdjusted.MaskType     = Telerik.WinControls.UI.MaskType.Numeric;
     this.txtAdjusted.Name         = "txtAdjusted";
     this.txtAdjusted.Size         = new System.Drawing.Size(139, 23);
     this.txtAdjusted.TabIndex     = 5;
     this.txtAdjusted.TabStop      = false;
     this.txtAdjusted.Text         = "0.00";
     this.txtAdjusted.TextAlign    = System.Windows.Forms.HorizontalAlignment.Right;
     this.txtAdjusted.TextChanged += new System.EventHandler(this.txtAdjusted_TextChanged);
     this.txtAdjusted.Validating  += new System.ComponentModel.CancelEventHandler(this.txtAdjusted_Validating);
     //
     // radLabel1
     //
     this.radLabel1.Location = new System.Drawing.Point(490, 41);
     this.radLabel1.Name     = "radLabel1";
     this.radLabel1.Size     = new System.Drawing.Size(109, 18);
     this.radLabel1.TabIndex = 32;
     this.radLabel1.Text     = "Pembulatan :       Rp.";
     //
     // vallsupTableAdapter
     //
     this.vallsupTableAdapter.ClearBeforeFill = true;
     //
     // dtpTanggal
     //
     this.dtpTanggal.CustomFormat = "dd MMM yyyy";
     this.dtpTanggal.Font         = new System.Drawing.Font("Segoe UI", 10F);
     this.dtpTanggal.Format       = System.Windows.Forms.DateTimePickerFormat.Custom;
     this.dtpTanggal.Location     = new System.Drawing.Point(146, 9);
     this.dtpTanggal.Name         = "dtpTanggal";
     this.dtpTanggal.Size         = new System.Drawing.Size(162, 23);
     this.dtpTanggal.TabIndex     = 1;
     this.dtpTanggal.TabStop      = false;
     this.dtpTanggal.Text         = "22 Feb 2016";
     this.dtpTanggal.Value        = new System.DateTime(2016, 2, 22, 17, 44, 30, 0);
     //
     // radLabel2
     //
     this.radLabel2.Location = new System.Drawing.Point(12, 12);
     this.radLabel2.Name     = "radLabel2";
     this.radLabel2.Size     = new System.Drawing.Size(52, 18);
     this.radLabel2.TabIndex = 34;
     this.radLabel2.Text     = "Tanggal :";
     //
     // accpaymentBindingSource
     //
     this.accpaymentBindingSource.DataMember = "accpayment";
     this.accpaymentBindingSource.DataSource = this.sinarekDataSet;
     //
     // accpaymentTableAdapter
     //
     this.accpaymentTableAdapter.ClearBeforeFill = true;
     //
     // tipeaccountTableAdapter
     //
     this.tipeaccountTableAdapter.ClearBeforeFill = true;
     //
     // txtTotal
     //
     this.txtTotal.Font      = new System.Drawing.Font("Segoe UI", 18F);
     this.txtTotal.Location  = new System.Drawing.Point(624, 100);
     this.txtTotal.Mask      = "n2";
     this.txtTotal.MaskType  = Telerik.WinControls.UI.MaskType.Numeric;
     this.txtTotal.Name      = "txtTotal";
     this.txtTotal.ReadOnly  = true;
     this.txtTotal.Size      = new System.Drawing.Size(244, 37);
     this.txtTotal.TabIndex  = 50;
     this.txtTotal.TabStop   = false;
     this.txtTotal.Text      = "0.00";
     this.txtTotal.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     //
     // radLabel5
     //
     this.radLabel5.Font     = new System.Drawing.Font("Segoe UI", 18F);
     this.radLabel5.Location = new System.Drawing.Point(492, 100);
     this.radLabel5.Name     = "radLabel5";
     this.radLabel5.Size     = new System.Drawing.Size(132, 37);
     this.radLabel5.TabIndex = 39;
     this.radLabel5.Text     = "Total :   Rp.";
     //
     // radGroupBox2
     //
     this.radGroupBox2.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
     this.radGroupBox2.Controls.Add(this.radLabel6);
     this.radGroupBox2.Controls.Add(this.rbtnKeluar);
     this.radGroupBox2.Controls.Add(this.rbtnMasuk);
     this.radGroupBox2.Enabled              = false;
     this.radGroupBox2.Font                 = new System.Drawing.Font("Segoe UI", 10F);
     this.radGroupBox2.GroupBoxStyle        = Telerik.WinControls.UI.RadGroupBoxStyle.Office;
     this.radGroupBox2.HeaderImageAlignment = System.Drawing.ContentAlignment.MiddleCenter;
     this.radGroupBox2.HeaderPosition       = Telerik.WinControls.UI.HeaderPosition.Left;
     this.radGroupBox2.HeaderText           = "";
     this.radGroupBox2.Location             = new System.Drawing.Point(0, 98);
     this.radGroupBox2.Name                 = "radGroupBox2";
     this.radGroupBox2.Padding              = new System.Windows.Forms.Padding(0);
     this.radGroupBox2.Size                 = new System.Drawing.Size(477, 39);
     this.radGroupBox2.TabIndex             = 4;
     //
     // radLabel6
     //
     this.radLabel6.Location = new System.Drawing.Point(10, 9);
     this.radLabel6.Name     = "radLabel6";
     this.radLabel6.Size     = new System.Drawing.Size(82, 18);
     this.radLabel6.TabIndex = 41;
     this.radLabel6.Text     = "Tipe Transaksi :";
     //
     // rbtnKeluar
     //
     this.rbtnKeluar.Font     = new System.Drawing.Font("Segoe UI", 10F);
     this.rbtnKeluar.Location = new System.Drawing.Point(233, 9);
     this.rbtnKeluar.Name     = "rbtnKeluar";
     this.rbtnKeluar.Size     = new System.Drawing.Size(59, 21);
     this.rbtnKeluar.TabIndex = 4;
     this.rbtnKeluar.Text     = "Keluar";
     //
     // rbtnMasuk
     //
     this.rbtnMasuk.Font     = new System.Drawing.Font("Segoe UI", 10F);
     this.rbtnMasuk.Location = new System.Drawing.Point(146, 9);
     this.rbtnMasuk.Name     = "rbtnMasuk";
     this.rbtnMasuk.Size     = new System.Drawing.Size(61, 21);
     this.rbtnMasuk.TabIndex = 3;
     this.rbtnMasuk.Text     = "Masuk";
     //
     // frmInputKas
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize          = new System.Drawing.Size(868, 495);
     this.Controls.Add(this.radGroupBox2);
     this.Controls.Add(this.radLabel5);
     this.Controls.Add(this.dtpTanggal);
     this.Controls.Add(this.txtTotal);
     this.Controls.Add(this.radLabel2);
     this.Controls.Add(this.txtAdjusted);
     this.Controls.Add(this.radLabel1);
     this.Controls.Add(this.radGroupBox1);
     this.Controls.Add(this.txtKeterangan);
     this.Controls.Add(this.txtPrice);
     this.Controls.Add(this.rddName);
     this.Controls.Add(this.lblKeterangan);
     this.Controls.Add(this.radLabel3);
     this.Controls.Add(this.lblDari);
     this.Font            = new System.Drawing.Font("Segoe UI", 10F);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
     this.MaximizeBox     = false;
     this.MinimizeBox     = false;
     this.Name            = "frmInputKas";
     //
     //
     //
     this.RootElement.ApplyShapeToControl = true;
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text          = "Input Transaksi";
     this.ThemeName     = "Office2010Blue";
     this.Load         += new System.EventHandler(this.frmInputKas_Load);
     ((System.ComponentModel.ISupportInitialize)(this.tipeaccountBindingSource)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.sinarekDataSet)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.tipeaccountBindingSource1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.btnSimpan)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.btnCancel)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lblDari)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lblKeterangan)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.rddName)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.vallsupBindingSource)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtPrice)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtKeterangan)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radGridView1.MasterTemplate)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radGridView1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.btnAddPayment)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radGroupBox1)).EndInit();
     this.radGroupBox1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.lblIndicator)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtAdjusted)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dtpTanggal)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.accpaymentBindingSource)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtTotal)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel5)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radGroupBox2)).EndInit();
     this.radGroupBox2.ResumeLayout(false);
     this.radGroupBox2.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel6)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.rbtnKeluar)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.rbtnMasuk)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this)).EndInit();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
コード例 #30
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();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn1 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn2 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn3 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn4 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn5 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn6 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn7 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn8 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewCheckBoxColumn gridViewCheckBoxColumn1 = new Telerik.WinControls.UI.GridViewCheckBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn9 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn10 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn11 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn12 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn13 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn14 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn15 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewCheckBoxColumn gridViewCheckBoxColumn2 = new Telerik.WinControls.UI.GridViewCheckBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn16 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            this.PnlPagos = new Telerik.WinControls.UI.RadPanel();
            this.BtnCosas = new Telerik.WinControls.UI.RadButton();
            this.radLabel4 = new Telerik.WinControls.UI.RadLabel();
            this.DtpFechaPago = new Telerik.WinControls.UI.RadDateTimePicker();
            this.BtnGuardar = new Telerik.WinControls.UI.RadButton();
            this.ucTotalesCompraSeña1 = new LaPaz.Win.Forms.Compras.UcTotalesCompraSeña();
            this.ProveedoreCtaCtePager = new Framework.WinForm.Controls.MetroPager();
            this.RpvPagos = new Telerik.WinControls.UI.RadPageView();
            this.CuentaCorriente = new Telerik.WinControls.UI.RadPageViewPage();
            this.GridCtaCte = new Telerik.WinControls.UI.RadGridView();
            this.ChkSeleccionCtaCte = new System.Windows.Forms.CheckBox();
            this.Consignaciones = new Telerik.WinControls.UI.RadPageViewPage();
            this.ChkSeleccionarTodoConsignacion = new System.Windows.Forms.CheckBox();
            this.GridConsignaciones = new Telerik.WinControls.UI.RadGridView();
            this.PnlProveedor = new Telerik.WinControls.UI.RadPanel();
            this.LblConsignaVencida = new Telerik.WinControls.UI.RadLabel();
            this.lblDeudaVencida = new Telerik.WinControls.UI.RadLabel();
            this.ucProgressSpinner1 = new LaPaz.Win.Forms.Util.UcProgressSpinner();
            this.LblConsigna = new Telerik.WinControls.UI.RadLabel();
            this.lblDeuda = new Telerik.WinControls.UI.RadLabel();
            this.radLabel7 = new Telerik.WinControls.UI.RadLabel();
            this.radLabel3 = new Telerik.WinControls.UI.RadLabel();
            this.radLabel2 = new Telerik.WinControls.UI.RadLabel();
            this.radLabel9 = new Telerik.WinControls.UI.RadLabel();
            this.LblDeudas = new Telerik.WinControls.UI.RadLabel();
            this.radLabel1 = new Telerik.WinControls.UI.RadLabel();
            this.ucFiltroProveedor1 = new LaPaz.Win.Forms.Util.UcFiltroProveedor();
            ((System.ComponentModel.ISupportInitialize)(this.PnlPagos)).BeginInit();
            this.PnlPagos.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.BtnCosas)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel4)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.DtpFechaPago)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.BtnGuardar)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.RpvPagos)).BeginInit();
            this.RpvPagos.SuspendLayout();
            this.CuentaCorriente.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.GridCtaCte)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.GridCtaCte.MasterTemplate)).BeginInit();
            this.GridCtaCte.SuspendLayout();
            this.Consignaciones.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.GridConsignaciones)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.GridConsignaciones.MasterTemplate)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.PnlProveedor)).BeginInit();
            this.PnlProveedor.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.LblConsignaVencida)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.lblDeudaVencida)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.LblConsigna)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.lblDeuda)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel7)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel3)).BeginInit();
            this.radLabel3.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel2)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel9)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.LblDeudas)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
            this.SuspendLayout();
            // 
            // PnlPagos
            // 
            this.PnlPagos.Controls.Add(this.BtnCosas);
            this.PnlPagos.Controls.Add(this.radLabel4);
            this.PnlPagos.Controls.Add(this.DtpFechaPago);
            this.PnlPagos.Controls.Add(this.BtnGuardar);
            this.PnlPagos.Controls.Add(this.ucTotalesCompraSeña1);
            this.PnlPagos.Location = new System.Drawing.Point(849, 110);
            this.PnlPagos.Name = "PnlPagos";
            this.PnlPagos.Size = new System.Drawing.Size(344, 499);
            this.PnlPagos.TabIndex = 8;
            // 
            // BtnCosas
            // 
            this.BtnCosas.Font = new System.Drawing.Font("Segoe UI", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.BtnCosas.Location = new System.Drawing.Point(119, 458);
            this.BtnCosas.Name = "BtnCosas";
            this.BtnCosas.Size = new System.Drawing.Size(102, 29);
            this.BtnCosas.TabIndex = 9;
            this.BtnCosas.Text = "Guardar";
            this.BtnCosas.ThemeName = "TelerikMetroBlue";
            this.BtnCosas.Visible = false;
            this.BtnCosas.Click += new System.EventHandler(this.BtnCosas_Click);
            // 
            // radLabel4
            // 
            this.radLabel4.Font = new System.Drawing.Font("Segoe UI", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.radLabel4.Location = new System.Drawing.Point(12, 33);
            this.radLabel4.Name = "radLabel4";
            this.radLabel4.Size = new System.Drawing.Size(62, 29);
            this.radLabel4.TabIndex = 10;
            this.radLabel4.Text = "Fecha:";
            // 
            // DtpFechaPago
            // 
            this.DtpFechaPago.Font = new System.Drawing.Font("Segoe UI", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.DtpFechaPago.Format = System.Windows.Forms.DateTimePickerFormat.Short;
            this.DtpFechaPago.Location = new System.Drawing.Point(192, 28);
            this.DtpFechaPago.MaxDate = new System.DateTime(9998, 12, 31, 0, 0, 0, 0);
            this.DtpFechaPago.MinDate = new System.DateTime(((long)(0)));
            this.DtpFechaPago.Name = "DtpFechaPago";
            this.DtpFechaPago.NullableValue = new System.DateTime(2015, 6, 13, 17, 58, 26, 545);
            this.DtpFechaPago.NullDate = new System.DateTime(((long)(0)));
            this.DtpFechaPago.Size = new System.Drawing.Size(137, 34);
            this.DtpFechaPago.TabIndex = 9;
            this.DtpFechaPago.TabStop = false;
            this.DtpFechaPago.Text = "13/6/2015";
            this.DtpFechaPago.ThemeName = "TelerikMetroBlue";
            this.DtpFechaPago.Value = new System.DateTime(2015, 6, 13, 17, 58, 26, 545);
            // 
            // BtnGuardar
            // 
            this.BtnGuardar.Font = new System.Drawing.Font("Segoe UI", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.BtnGuardar.Location = new System.Drawing.Point(227, 458);
            this.BtnGuardar.Name = "BtnGuardar";
            this.BtnGuardar.Size = new System.Drawing.Size(102, 29);
            this.BtnGuardar.TabIndex = 8;
            this.BtnGuardar.Text = "Guardar";
            this.BtnGuardar.ThemeName = "TelerikMetroBlue";
            this.BtnGuardar.Click += new System.EventHandler(this.BtnGuardar_Click);
            // 
            // ucTotalesCompraSeña1
            // 
            this.ucTotalesCompraSeña1.Creditos = null;
            this.ucTotalesCompraSeña1.CreditosDisp = null;
            this.ucTotalesCompraSeña1.Egresos = null;
            this.ucTotalesCompraSeña1.EgresosDisp = null;
            this.ucTotalesCompraSeña1.FaltaPagar = null;
            this.ucTotalesCompraSeña1.Location = new System.Drawing.Point(3, 58);
            this.ucTotalesCompraSeña1.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
            this.ucTotalesCompraSeña1.Name = "ucTotalesCompraSeña1";
            this.ucTotalesCompraSeña1.Senas = null;
            this.ucTotalesCompraSeña1.SenasDisp = null;
            this.ucTotalesCompraSeña1.Size = new System.Drawing.Size(339, 416);
            this.ucTotalesCompraSeña1.SubTotal = null;
            this.ucTotalesCompraSeña1.TabIndex = 7;
            this.ucTotalesCompraSeña1.TotalPagar = null;
            // 
            // ProveedoreCtaCtePager
            // 
            this.ProveedoreCtaCtePager.CurrentPage = 1;
            this.ProveedoreCtaCtePager.Location = new System.Drawing.Point(446, 555);
            this.ProveedoreCtaCtePager.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
            this.ProveedoreCtaCtePager.Name = "ProveedoreCtaCtePager";
            this.ProveedoreCtaCtePager.PageSize = 50;
            this.ProveedoreCtaCtePager.PageTotal = 1;
            this.ProveedoreCtaCtePager.RefreshAction = null;
            this.ProveedoreCtaCtePager.RefreshActionAsync = null;
            this.ProveedoreCtaCtePager.Size = new System.Drawing.Size(386, 42);
            this.ProveedoreCtaCtePager.TabIndex = 5;
            // 
            // RpvPagos
            // 
            this.RpvPagos.Controls.Add(this.CuentaCorriente);
            this.RpvPagos.Controls.Add(this.Consignaciones);
            this.RpvPagos.Font = new System.Drawing.Font("Segoe UI", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.RpvPagos.Location = new System.Drawing.Point(12, 114);
            this.RpvPagos.Name = "RpvPagos";
            this.RpvPagos.SelectedPage = this.CuentaCorriente;
            this.RpvPagos.Size = new System.Drawing.Size(831, 402);
            this.RpvPagos.TabIndex = 4;
            this.RpvPagos.Text = "radPageView1";
            this.RpvPagos.ThemeName = "TelerikMetroBlue";
            ((Telerik.WinControls.UI.RadPageViewStripElement)(this.RpvPagos.GetChildAt(0))).StripButtons = Telerik.WinControls.UI.StripViewButtons.None;
            // 
            // CuentaCorriente
            // 
            this.CuentaCorriente.Controls.Add(this.GridCtaCte);
            this.CuentaCorriente.Location = new System.Drawing.Point(5, 41);
            this.CuentaCorriente.Name = "CuentaCorriente";
            this.CuentaCorriente.Size = new System.Drawing.Size(821, 356);
            this.CuentaCorriente.Text = "Cuenta Corriente";
            // 
            // GridCtaCte
            // 
            this.GridCtaCte.AutoSizeRows = true;
            this.GridCtaCte.Controls.Add(this.ChkSeleccionCtaCte);
            this.GridCtaCte.Font = new System.Drawing.Font("Segoe UI", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.GridCtaCte.Location = new System.Drawing.Point(0, 3);
            // 
            // GridCtaCte
            // 
            this.GridCtaCte.MasterTemplate.AllowAddNewRow = false;
            this.GridCtaCte.MasterTemplate.AllowColumnReorder = false;
            this.GridCtaCte.MasterTemplate.AllowDragToGroup = false;
            this.GridCtaCte.MasterTemplate.AutoGenerateColumns = false;
            this.GridCtaCte.MasterTemplate.AutoSizeColumnsMode = Telerik.WinControls.UI.GridViewAutoSizeColumnsMode.Fill;
            gridViewTextBoxColumn1.FieldName = "FechaVencimiento";
            gridViewTextBoxColumn1.FormatString = "";
            gridViewTextBoxColumn1.HeaderText = "Fecha Venc.";
            gridViewTextBoxColumn1.Name = "FechaVencimiento";
            gridViewTextBoxColumn1.ReadOnly = true;
            gridViewTextBoxColumn1.Width = 125;
            gridViewTextBoxColumn2.FieldName = "Fecha";
            gridViewTextBoxColumn2.FormatString = "";
            gridViewTextBoxColumn2.HeaderText = "Fecha Compra";
            gridViewTextBoxColumn2.Name = "Fecha";
            gridViewTextBoxColumn2.ReadOnly = true;
            gridViewTextBoxColumn2.Width = 125;
            gridViewTextBoxColumn3.FieldName = "CompraNumeroComprobante";
            gridViewTextBoxColumn3.FormatString = "";
            gridViewTextBoxColumn3.HeaderText = "Nro Factura";
            gridViewTextBoxColumn3.Name = "CompraId";
            gridViewTextBoxColumn3.ReadOnly = true;
            gridViewTextBoxColumn3.Width = 125;
            gridViewTextBoxColumn4.FormatString = "";
            gridViewTextBoxColumn4.HeaderText = "Total";
            gridViewTextBoxColumn4.IsVisible = false;
            gridViewTextBoxColumn4.Name = "TotalVenta";
            gridViewTextBoxColumn4.ReadOnly = true;
            gridViewTextBoxColumn4.Width = 89;
            gridViewTextBoxColumn5.FieldName = "Cuota";
            gridViewTextBoxColumn5.FormatString = "";
            gridViewTextBoxColumn5.HeaderText = "Cuota";
            gridViewTextBoxColumn5.Name = "Cuota";
            gridViewTextBoxColumn5.ReadOnly = true;
            gridViewTextBoxColumn5.Width = 57;
            gridViewTextBoxColumn6.FieldName = "Importe";
            gridViewTextBoxColumn6.FormatString = "";
            gridViewTextBoxColumn6.HeaderText = "Importe";
            gridViewTextBoxColumn6.Name = "Importe";
            gridViewTextBoxColumn6.ReadOnly = true;
            gridViewTextBoxColumn6.Width = 93;
            gridViewTextBoxColumn7.FieldName = "Pagado";
            gridViewTextBoxColumn7.FormatString = "";
            gridViewTextBoxColumn7.HeaderText = "Pagado";
            gridViewTextBoxColumn7.Name = "Pagado";
            gridViewTextBoxColumn7.ReadOnly = true;
            gridViewTextBoxColumn7.Width = 93;
            gridViewTextBoxColumn8.AllowGroup = false;
            gridViewTextBoxColumn8.AllowSort = false;
            gridViewTextBoxColumn8.FieldName = "Pago";
            gridViewTextBoxColumn8.HeaderText = "A pagar";
            gridViewTextBoxColumn8.Name = "Pago";
            gridViewTextBoxColumn8.Width = 93;
            gridViewCheckBoxColumn1.AllowGroup = false;
            gridViewCheckBoxColumn1.AllowHide = false;
            gridViewCheckBoxColumn1.AllowSort = false;
            gridViewCheckBoxColumn1.HeaderText = "Pagar";
            gridViewCheckBoxColumn1.Name = "Pagar";
            gridViewCheckBoxColumn1.Width = 89;
            gridViewTextBoxColumn9.FieldName = "Id";
            gridViewTextBoxColumn9.HeaderText = "Id";
            gridViewTextBoxColumn9.IsVisible = false;
            gridViewTextBoxColumn9.Name = "Id";
            gridViewTextBoxColumn9.Width = 45;
            this.GridCtaCte.MasterTemplate.Columns.AddRange(new Telerik.WinControls.UI.GridViewDataColumn[] {
            gridViewTextBoxColumn1,
            gridViewTextBoxColumn2,
            gridViewTextBoxColumn3,
            gridViewTextBoxColumn4,
            gridViewTextBoxColumn5,
            gridViewTextBoxColumn6,
            gridViewTextBoxColumn7,
            gridViewTextBoxColumn8,
            gridViewCheckBoxColumn1,
            gridViewTextBoxColumn9});
            this.GridCtaCte.Name = "GridCtaCte";
            this.GridCtaCte.Size = new System.Drawing.Size(815, 358);
            this.GridCtaCte.TabIndex = 0;
            this.GridCtaCte.Text = "radGridView1";
            this.GridCtaCte.ThemeName = "TelerikMetroBlue";
            this.GridCtaCte.ValueChanged += new System.EventHandler(this.GridCtaCte_ValueChanged);
            this.GridCtaCte.CellClick += new Telerik.WinControls.UI.GridViewCellEventHandler(this.GridCtaCte_CellClick);
            // 
            // ChkSeleccionCtaCte
            // 
            this.ChkSeleccionCtaCte.BackColor = System.Drawing.Color.Transparent;
            this.ChkSeleccionCtaCte.Location = new System.Drawing.Point(690, -3);
            this.ChkSeleccionCtaCte.Name = "ChkSeleccionCtaCte";
            this.ChkSeleccionCtaCte.Size = new System.Drawing.Size(122, 24);
            this.ChkSeleccionCtaCte.TabIndex = 0;
            this.ChkSeleccionCtaCte.Text = "Seleccionar";
            this.ChkSeleccionCtaCte.UseVisualStyleBackColor = false;
            this.ChkSeleccionCtaCte.Visible = false;
            this.ChkSeleccionCtaCte.CheckedChanged += new System.EventHandler(this.ChkSeleccionCtaCte_CheckedChanged);
            // 
            // Consignaciones
            // 
            this.Consignaciones.Controls.Add(this.ChkSeleccionarTodoConsignacion);
            this.Consignaciones.Controls.Add(this.GridConsignaciones);
            this.Consignaciones.Location = new System.Drawing.Point(5, 36);
            this.Consignaciones.Name = "Consignaciones";
            this.Consignaciones.Size = new System.Drawing.Size(821, 361);
            this.Consignaciones.Text = "Consignaciones";
            // 
            // ChkSeleccionarTodoConsignacion
            // 
            this.ChkSeleccionarTodoConsignacion.BackColor = System.Drawing.Color.Transparent;
            this.ChkSeleccionarTodoConsignacion.Location = new System.Drawing.Point(711, 3);
            this.ChkSeleccionarTodoConsignacion.Name = "ChkSeleccionarTodoConsignacion";
            this.ChkSeleccionarTodoConsignacion.Size = new System.Drawing.Size(104, 24);
            this.ChkSeleccionarTodoConsignacion.TabIndex = 1;
            this.ChkSeleccionarTodoConsignacion.Text = "Seleccionar";
            this.ChkSeleccionarTodoConsignacion.UseVisualStyleBackColor = false;
            this.ChkSeleccionarTodoConsignacion.Visible = false;
            // 
            // GridConsignaciones
            // 
            this.GridConsignaciones.AutoSizeRows = true;
            this.GridConsignaciones.Font = new System.Drawing.Font("Segoe UI", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.GridConsignaciones.Location = new System.Drawing.Point(0, 33);
            // 
            // 
            // 
            this.GridConsignaciones.MasterTemplate.AllowAddNewRow = false;
            this.GridConsignaciones.MasterTemplate.AllowColumnReorder = false;
            this.GridConsignaciones.MasterTemplate.AutoGenerateColumns = false;
            this.GridConsignaciones.MasterTemplate.AutoSizeColumnsMode = Telerik.WinControls.UI.GridViewAutoSizeColumnsMode.Fill;
            gridViewTextBoxColumn10.FieldName = "FechaConsignacion";
            gridViewTextBoxColumn10.FormatString = "";
            gridViewTextBoxColumn10.HeaderText = "Fecha Consig.";
            gridViewTextBoxColumn10.Name = "FechaConsignacion";
            gridViewTextBoxColumn10.ReadOnly = true;
            gridViewTextBoxColumn10.Width = 162;
            gridViewTextBoxColumn11.FieldName = "LCN";
            gridViewTextBoxColumn11.FormatString = "";
            gridViewTextBoxColumn11.HeaderText = "LCN";
            gridViewTextBoxColumn11.Name = "LCN";
            gridViewTextBoxColumn11.ReadOnly = true;
            gridViewTextBoxColumn11.Width = 162;
            gridViewTextBoxColumn12.FormatString = "";
            gridViewTextBoxColumn12.HeaderText = "Total";
            gridViewTextBoxColumn12.IsVisible = false;
            gridViewTextBoxColumn12.Name = "TotalVenta";
            gridViewTextBoxColumn12.ReadOnly = true;
            gridViewTextBoxColumn12.Width = 89;
            gridViewTextBoxColumn13.FieldName = "Importe";
            gridViewTextBoxColumn13.FormatString = "";
            gridViewTextBoxColumn13.HeaderText = "Importe";
            gridViewTextBoxColumn13.Name = "Importe";
            gridViewTextBoxColumn13.ReadOnly = true;
            gridViewTextBoxColumn13.Width = 121;
            gridViewTextBoxColumn14.FieldName = "Pagado";
            gridViewTextBoxColumn14.FormatString = "";
            gridViewTextBoxColumn14.HeaderText = "Pagado";
            gridViewTextBoxColumn14.Name = "Pagado";
            gridViewTextBoxColumn14.ReadOnly = true;
            gridViewTextBoxColumn14.Width = 121;
            gridViewTextBoxColumn15.AllowGroup = false;
            gridViewTextBoxColumn15.AllowSort = false;
            gridViewTextBoxColumn15.FieldName = "Pago";
            gridViewTextBoxColumn15.HeaderText = "A pagar";
            gridViewTextBoxColumn15.Name = "Pago";
            gridViewTextBoxColumn15.Width = 121;
            gridViewCheckBoxColumn2.AllowGroup = false;
            gridViewCheckBoxColumn2.AllowHide = false;
            gridViewCheckBoxColumn2.AllowSort = false;
            gridViewCheckBoxColumn2.HeaderText = "Pagar";
            gridViewCheckBoxColumn2.Name = "Pagar";
            gridViewCheckBoxColumn2.Width = 111;
            gridViewTextBoxColumn16.FieldName = "Id";
            gridViewTextBoxColumn16.HeaderText = "Id";
            gridViewTextBoxColumn16.IsVisible = false;
            gridViewTextBoxColumn16.Name = "Id";
            gridViewTextBoxColumn16.Width = 47;
            this.GridConsignaciones.MasterTemplate.Columns.AddRange(new Telerik.WinControls.UI.GridViewDataColumn[] {
            gridViewTextBoxColumn10,
            gridViewTextBoxColumn11,
            gridViewTextBoxColumn12,
            gridViewTextBoxColumn13,
            gridViewTextBoxColumn14,
            gridViewTextBoxColumn15,
            gridViewCheckBoxColumn2,
            gridViewTextBoxColumn16});
            this.GridConsignaciones.MasterTemplate.EnableGrouping = false;
            this.GridConsignaciones.Name = "GridConsignaciones";
            this.GridConsignaciones.Size = new System.Drawing.Size(815, 328);
            this.GridConsignaciones.TabIndex = 1;
            this.GridConsignaciones.Text = "radGridView1";
            this.GridConsignaciones.ThemeName = "TelerikMetroBlue";
            this.GridConsignaciones.ValueChanged += new System.EventHandler(this.GridConsignaciones_ValueChanged);
            // 
            // PnlProveedor
            // 
            this.PnlProveedor.Controls.Add(this.LblConsignaVencida);
            this.PnlProveedor.Controls.Add(this.lblDeudaVencida);
            this.PnlProveedor.Controls.Add(this.ucProgressSpinner1);
            this.PnlProveedor.Controls.Add(this.LblConsigna);
            this.PnlProveedor.Controls.Add(this.lblDeuda);
            this.PnlProveedor.Controls.Add(this.radLabel7);
            this.PnlProveedor.Controls.Add(this.radLabel3);
            this.PnlProveedor.Controls.Add(this.radLabel9);
            this.PnlProveedor.Controls.Add(this.LblDeudas);
            this.PnlProveedor.Controls.Add(this.radLabel1);
            this.PnlProveedor.Controls.Add(this.ucFiltroProveedor1);
            this.PnlProveedor.Location = new System.Drawing.Point(12, 12);
            this.PnlProveedor.Name = "PnlProveedor";
            this.PnlProveedor.Size = new System.Drawing.Size(1181, 96);
            this.PnlProveedor.TabIndex = 3;
            // 
            // LblConsignaVencida
            // 
            this.LblConsignaVencida.Font = new System.Drawing.Font("Segoe UI", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.LblConsignaVencida.Location = new System.Drawing.Point(298, 67);
            this.LblConsignaVencida.Name = "LblConsignaVencida";
            this.LblConsignaVencida.Size = new System.Drawing.Size(19, 29);
            this.LblConsignaVencida.TabIndex = 9;
            this.LblConsignaVencida.Text = "0";
            // 
            // lblDeudaVencida
            // 
            this.lblDeudaVencida.Font = new System.Drawing.Font("Segoe UI", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.lblDeudaVencida.Location = new System.Drawing.Point(122, 68);
            this.lblDeudaVencida.Name = "lblDeudaVencida";
            this.lblDeudaVencida.Size = new System.Drawing.Size(19, 29);
            this.lblDeudaVencida.TabIndex = 5;
            this.lblDeudaVencida.Text = "0";
            // 
            // ucProgressSpinner1
            // 
            this.ucProgressSpinner1.Location = new System.Drawing.Point(720, 13);
            this.ucProgressSpinner1.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
            this.ucProgressSpinner1.Name = "ucProgressSpinner1";
            this.ucProgressSpinner1.Size = new System.Drawing.Size(154, 27);
            this.ucProgressSpinner1.TabIndex = 0;
            // 
            // LblConsigna
            // 
            this.LblConsigna.Font = new System.Drawing.Font("Segoe UI", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.LblConsigna.Location = new System.Drawing.Point(260, 43);
            this.LblConsigna.Name = "LblConsigna";
            this.LblConsigna.Size = new System.Drawing.Size(19, 29);
            this.LblConsigna.TabIndex = 7;
            this.LblConsigna.Text = "0";
            // 
            // lblDeuda
            // 
            this.lblDeuda.Font = new System.Drawing.Font("Segoe UI", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.lblDeuda.Location = new System.Drawing.Point(64, 44);
            this.lblDeuda.Name = "lblDeuda";
            this.lblDeuda.Size = new System.Drawing.Size(19, 29);
            this.lblDeuda.TabIndex = 4;
            this.lblDeuda.Text = "0";
            // 
            // radLabel7
            // 
            this.radLabel7.Font = new System.Drawing.Font("Segoe UI", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.radLabel7.Location = new System.Drawing.Point(158, 67);
            this.radLabel7.Name = "radLabel7";
            this.radLabel7.Size = new System.Drawing.Size(165, 29);
            this.radLabel7.TabIndex = 8;
            this.radLabel7.Text = "Consigna Vencida:";
            // 
            // radLabel3
            // 
            this.radLabel3.Controls.Add(this.radLabel2);
            this.radLabel3.Font = new System.Drawing.Font("Segoe UI", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.radLabel3.Location = new System.Drawing.Point(5, 68);
            this.radLabel3.Name = "radLabel3";
            this.radLabel3.Size = new System.Drawing.Size(142, 29);
            this.radLabel3.TabIndex = 4;
            this.radLabel3.Text = "Deuda Vencida:";
            // 
            // radLabel2
            // 
            this.radLabel2.Font = new System.Drawing.Font("Segoe UI", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.radLabel2.Location = new System.Drawing.Point(120, 0);
            this.radLabel2.Name = "radLabel2";
            this.radLabel2.Size = new System.Drawing.Size(19, 29);
            this.radLabel2.TabIndex = 5;
            this.radLabel2.Text = "0";
            // 
            // radLabel9
            // 
            this.radLabel9.Font = new System.Drawing.Font("Segoe UI", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.radLabel9.Location = new System.Drawing.Point(158, 43);
            this.radLabel9.Name = "radLabel9";
            this.radLabel9.Size = new System.Drawing.Size(92, 29);
            this.radLabel9.TabIndex = 6;
            this.radLabel9.Text = "Consigna:";
            // 
            // LblDeudas
            // 
            this.LblDeudas.Font = new System.Drawing.Font("Segoe UI", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.LblDeudas.Location = new System.Drawing.Point(5, 44);
            this.LblDeudas.Name = "LblDeudas";
            this.LblDeudas.Size = new System.Drawing.Size(69, 29);
            this.LblDeudas.TabIndex = 3;
            this.LblDeudas.Text = "Deuda:";
            // 
            // radLabel1
            // 
            this.radLabel1.Font = new System.Drawing.Font("Segoe UI", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.radLabel1.Location = new System.Drawing.Point(3, 13);
            this.radLabel1.Name = "radLabel1";
            this.radLabel1.Size = new System.Drawing.Size(96, 29);
            this.radLabel1.TabIndex = 2;
            this.radLabel1.Text = "Proveedor";
            // 
            // ucFiltroProveedor1
            // 
            this.ucFiltroProveedor1.EsGasto = false;
            this.ucFiltroProveedor1.Location = new System.Drawing.Point(101, 10);
            this.ucFiltroProveedor1.Margin = new System.Windows.Forms.Padding(4);
            this.ucFiltroProveedor1.Name = "ucFiltroProveedor1";
            this.ucFiltroProveedor1.ProveedorId = null;
            this.ucFiltroProveedor1.Size = new System.Drawing.Size(351, 27);
            this.ucFiltroProveedor1.TabIndex = 0;
            // 
            // FrmProveedoresCtaCte
            // 
            this.ClientSize = new System.Drawing.Size(1281, 861);
            this.Controls.Add(this.PnlPagos);
            this.Controls.Add(this.ProveedoreCtaCtePager);
            this.Controls.Add(this.RpvPagos);
            this.Controls.Add(this.PnlProveedor);
            this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
            this.Name = "FrmProveedoresCtaCte";
            // 
            // 
            // 
            this.RootElement.ApplyShapeToControl = true;
            this.Text = "Proveedores Rendicion";
            this.Load += new System.EventHandler(this.FrmProveedoresCtaCte_Load);
            ((System.ComponentModel.ISupportInitialize)(this.PnlPagos)).EndInit();
            this.PnlPagos.ResumeLayout(false);
            this.PnlPagos.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.BtnCosas)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel4)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.DtpFechaPago)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.BtnGuardar)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.RpvPagos)).EndInit();
            this.RpvPagos.ResumeLayout(false);
            this.CuentaCorriente.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.GridCtaCte.MasterTemplate)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.GridCtaCte)).EndInit();
            this.GridCtaCte.ResumeLayout(false);
            this.Consignaciones.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.GridConsignaciones.MasterTemplate)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.GridConsignaciones)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.PnlProveedor)).EndInit();
            this.PnlProveedor.ResumeLayout(false);
            this.PnlProveedor.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.LblConsignaVencida)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.lblDeudaVencida)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.LblConsigna)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.lblDeuda)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel7)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel3)).EndInit();
            this.radLabel3.ResumeLayout(false);
            this.radLabel3.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel2)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel9)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.LblDeudas)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this)).EndInit();
            this.ResumeLayout(false);

        }
コード例 #31
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();
			Telerik.WinControls.UI.GridViewCheckBoxColumn gridViewCheckBoxColumn1 = new Telerik.WinControls.UI.GridViewCheckBoxColumn();
			Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn1 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
			Telerik.WinControls.UI.GridViewCommandColumn gridViewCommandColumn1 = new Telerik.WinControls.UI.GridViewCommandColumn();
			System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(MainForm));
			this.gridViewPlugins = new Telerik.WinControls.UI.RadGridView();
			this.groupBoxPlugins = new Telerik.WinControls.UI.RadGroupBox();
			this.groupBoxAddPlugin = new Telerik.WinControls.UI.RadGroupBox();
			this.textBoxPluginPath = new Telerik.WinControls.UI.RadTextBox();
			this.buttonBrowseForPlugin = new Telerik.WinControls.UI.RadButton();
			this.textBoxPluginName = new Telerik.WinControls.UI.RadTextBox();
			this.labelPluginName = new Telerik.WinControls.UI.RadLabel();
			this.buttonAddPlugin = new Telerik.WinControls.UI.RadButton();
			this.groupBoxStatus = new Telerik.WinControls.UI.RadGroupBox();
			this.labelStartStop = new Telerik.WinControls.UI.RadLabel();
			this.buttonStartStop = new Telerik.WinControls.UI.RadButton();
			this.menuItemFile = new Telerik.WinControls.UI.RadMenuItem();
			this.menuItemOpenFile = new Telerik.WinControls.UI.RadMenuItem();
			this.MenuItemSave = new Telerik.WinControls.UI.RadMenuItem();
			this.menuItemAdvanced = new Telerik.WinControls.UI.RadMenuItem();
			this.radMenuItemPluginWizard = new Telerik.WinControls.UI.RadMenuItem();
			this.menuItemMasterDictionary = new Telerik.WinControls.UI.RadMenuItem();
			this.menuItemMacroWizard = new Telerik.WinControls.UI.RadMenuItem();
			this.statusStrip = new Telerik.WinControls.UI.RadStatusStrip();
			this.labelStatusInStatusStrip = new Telerik.WinControls.UI.RadLabelElement();
			this.menuItemHelp = new Telerik.WinControls.UI.RadMenuItem();
			this.menuItemPluginCommands = new Telerik.WinControls.UI.RadMenuItem();
			this.menuMain = new Telerik.WinControls.UI.RadMenu();
			this.notifyIcon = new System.Windows.Forms.NotifyIcon(this.components);
			((System.ComponentModel.ISupportInitialize)(this.gridViewPlugins)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.groupBoxPlugins)).BeginInit();
			this.groupBoxPlugins.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.groupBoxAddPlugin)).BeginInit();
			this.groupBoxAddPlugin.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.textBoxPluginPath)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.buttonBrowseForPlugin)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.textBoxPluginName)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.labelPluginName)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.buttonAddPlugin)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.groupBoxStatus)).BeginInit();
			this.groupBoxStatus.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.labelStartStop)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.buttonStartStop)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.statusStrip)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.menuMain)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
			this.SuspendLayout();
			// 
			// gridViewPlugins
			// 
			this.gridViewPlugins.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(191)))), ((int)(((byte)(219)))), ((int)(((byte)(255)))));
			this.gridViewPlugins.Cursor = System.Windows.Forms.Cursors.Default;
			this.gridViewPlugins.Font = new System.Drawing.Font("Segoe UI", 8.25F);
			this.gridViewPlugins.ForeColor = System.Drawing.Color.Black;
			this.gridViewPlugins.ImeMode = System.Windows.Forms.ImeMode.NoControl;
			this.gridViewPlugins.Location = new System.Drawing.Point(7, 21);
			// 
			// gridViewPlugins
			// 
			this.gridViewPlugins.MasterTemplate.AllowAddNewRow = false;
			gridViewCheckBoxColumn1.FieldName = "Checkbox";
			gridViewCheckBoxColumn1.HeaderText = "";
			gridViewCheckBoxColumn1.MaxWidth = 20;
			gridViewCheckBoxColumn1.Name = "Checkbox";
			gridViewCheckBoxColumn1.ReadOnly = true;
			gridViewCheckBoxColumn1.Width = 20;
			gridViewTextBoxColumn1.EnableExpressionEditor = false;
			gridViewTextBoxColumn1.FieldName = "Name";
			gridViewTextBoxColumn1.HeaderText = "Name";
			gridViewTextBoxColumn1.Name = "Name";
			gridViewTextBoxColumn1.ReadOnly = true;
			gridViewCommandColumn1.EnableExpressionEditor = false;
			gridViewCommandColumn1.FieldName = "Button";
			gridViewCommandColumn1.MaxWidth = 130;
			gridViewCommandColumn1.MinWidth = 130;
			gridViewCommandColumn1.Name = "Button";
			gridViewCommandColumn1.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
			gridViewCommandColumn1.Width = 130;
			this.gridViewPlugins.MasterTemplate.Columns.AddRange(new Telerik.WinControls.UI.GridViewDataColumn[] {
            gridViewCheckBoxColumn1,
            gridViewTextBoxColumn1,
            gridViewCommandColumn1});
			this.gridViewPlugins.MasterTemplate.EnableGrouping = false;
			this.gridViewPlugins.MasterTemplate.ShowRowHeaderColumn = false;
			this.gridViewPlugins.Name = "gridViewPlugins";
			this.gridViewPlugins.ReadOnly = true;
			this.gridViewPlugins.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.gridViewPlugins.ShowGroupPanel = false;
			this.gridViewPlugins.Size = new System.Drawing.Size(661, 233);
			this.gridViewPlugins.TabIndex = 0;
			// 
			// groupBoxPlugins
			// 
			this.groupBoxPlugins.AccessibleName = "";
			this.groupBoxPlugins.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
			this.groupBoxPlugins.Controls.Add(this.gridViewPlugins);
			this.groupBoxPlugins.FooterImageIndex = -1;
			this.groupBoxPlugins.FooterImageKey = "";
			this.groupBoxPlugins.HeaderImageIndex = -1;
			this.groupBoxPlugins.HeaderImageKey = "";
			this.groupBoxPlugins.HeaderMargin = new System.Windows.Forms.Padding(0);
			this.groupBoxPlugins.HeaderText = "Added plugins";
			this.groupBoxPlugins.Location = new System.Drawing.Point(12, 26);
			this.groupBoxPlugins.Name = "groupBoxPlugins";
			this.groupBoxPlugins.Padding = new System.Windows.Forms.Padding(2, 18, 2, 2);
			// 
			// 
			// 
			this.groupBoxPlugins.RootElement.Padding = new System.Windows.Forms.Padding(2, 18, 2, 2);
			this.groupBoxPlugins.Size = new System.Drawing.Size(674, 261);
			this.groupBoxPlugins.TabIndex = 1;
			this.groupBoxPlugins.Text = "Added plugins";
			// 
			// groupBoxAddPlugin
			// 
			this.groupBoxAddPlugin.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
			this.groupBoxAddPlugin.Controls.Add(this.textBoxPluginPath);
			this.groupBoxAddPlugin.Controls.Add(this.buttonBrowseForPlugin);
			this.groupBoxAddPlugin.Controls.Add(this.textBoxPluginName);
			this.groupBoxAddPlugin.Controls.Add(this.labelPluginName);
			this.groupBoxAddPlugin.Controls.Add(this.buttonAddPlugin);
			this.groupBoxAddPlugin.FooterImageIndex = -1;
			this.groupBoxAddPlugin.FooterImageKey = "";
			this.groupBoxAddPlugin.HeaderImageIndex = -1;
			this.groupBoxAddPlugin.HeaderImageKey = "";
			this.groupBoxAddPlugin.HeaderMargin = new System.Windows.Forms.Padding(0);
			this.groupBoxAddPlugin.HeaderText = "Add plugin";
			this.groupBoxAddPlugin.Location = new System.Drawing.Point(12, 294);
			this.groupBoxAddPlugin.Name = "groupBoxAddPlugin";
			this.groupBoxAddPlugin.Padding = new System.Windows.Forms.Padding(2, 18, 2, 2);
			// 
			// 
			// 
			this.groupBoxAddPlugin.RootElement.Padding = new System.Windows.Forms.Padding(2, 18, 2, 2);
			this.groupBoxAddPlugin.Size = new System.Drawing.Size(334, 102);
			this.groupBoxAddPlugin.TabIndex = 2;
			this.groupBoxAddPlugin.Text = "Add plugin";
			// 
			// textBoxPluginPath
			// 
			this.textBoxPluginPath.Location = new System.Drawing.Point(7, 21);
			this.textBoxPluginPath.Name = "textBoxPluginPath";
			this.textBoxPluginPath.Size = new System.Drawing.Size(291, 20);
			this.textBoxPluginPath.TabIndex = 0;
			this.textBoxPluginPath.TabStop = false;
			// 
			// buttonBrowseForPlugin
			// 
			this.buttonBrowseForPlugin.Location = new System.Drawing.Point(304, 21);
			this.buttonBrowseForPlugin.Name = "buttonBrowseForPlugin";
			this.buttonBrowseForPlugin.Size = new System.Drawing.Size(24, 21);
			this.buttonBrowseForPlugin.TabIndex = 1;
			this.buttonBrowseForPlugin.Text = "...";
			this.buttonBrowseForPlugin.Click += new System.EventHandler(this.buttonBrowseForPlugin_Click);
			// 
			// textBoxPluginName
			// 
			this.textBoxPluginName.Location = new System.Drawing.Point(45, 46);
			this.textBoxPluginName.Name = "textBoxPluginName";
			this.textBoxPluginName.Size = new System.Drawing.Size(283, 20);
			this.textBoxPluginName.TabIndex = 3;
			this.textBoxPluginName.TabStop = false;
			this.textBoxPluginName.KeyUp += new System.Windows.Forms.KeyEventHandler(this.textBoxPluginName_KeyUp);
			// 
			// labelPluginName
			// 
			this.labelPluginName.Location = new System.Drawing.Point(7, 49);
			this.labelPluginName.Name = "labelPluginName";
			this.labelPluginName.Size = new System.Drawing.Size(39, 18);
			this.labelPluginName.TabIndex = 2;
			this.labelPluginName.Text = "Name:";
			// 
			// buttonAddPlugin
			// 
			this.buttonAddPlugin.Image = global::ModernSteward.Properties.Resources.pluginIcon;
			this.buttonAddPlugin.ImageAlignment = System.Drawing.ContentAlignment.MiddleRight;
			this.buttonAddPlugin.Location = new System.Drawing.Point(194, 72);
			this.buttonAddPlugin.Name = "buttonAddPlugin";
			this.buttonAddPlugin.Size = new System.Drawing.Size(135, 24);
			this.buttonAddPlugin.TabIndex = 4;
			this.buttonAddPlugin.Text = "Add plugin";
			this.buttonAddPlugin.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
			this.buttonAddPlugin.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageBeforeText;
			this.buttonAddPlugin.Click += new System.EventHandler(this.buttonAddPlugin_Click);
			// 
			// groupBoxStatus
			// 
			this.groupBoxStatus.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
			this.groupBoxStatus.Controls.Add(this.labelStartStop);
			this.groupBoxStatus.Controls.Add(this.buttonStartStop);
			this.groupBoxStatus.FooterImageIndex = -1;
			this.groupBoxStatus.FooterImageKey = "";
			this.groupBoxStatus.HeaderImageIndex = -1;
			this.groupBoxStatus.HeaderImageKey = "";
			this.groupBoxStatus.HeaderMargin = new System.Windows.Forms.Padding(0);
			this.groupBoxStatus.HeaderText = "Status";
			this.groupBoxStatus.Location = new System.Drawing.Point(352, 294);
			this.groupBoxStatus.Name = "groupBoxStatus";
			this.groupBoxStatus.Padding = new System.Windows.Forms.Padding(2, 18, 2, 2);
			// 
			// 
			// 
			this.groupBoxStatus.RootElement.Padding = new System.Windows.Forms.Padding(2, 18, 2, 2);
			this.groupBoxStatus.Size = new System.Drawing.Size(334, 102);
			this.groupBoxStatus.TabIndex = 3;
			this.groupBoxStatus.Text = "Status";
			// 
			// labelStartStop
			// 
			this.labelStartStop.Font = new System.Drawing.Font("Segoe UI", 18F);
			this.labelStartStop.ForeColor = System.Drawing.Color.Maroon;
			this.labelStartStop.Location = new System.Drawing.Point(19, 41);
			this.labelStartStop.Name = "labelStartStop";
			this.labelStartStop.Size = new System.Drawing.Size(153, 37);
			this.labelStartStop.TabIndex = 0;
			this.labelStartStop.Text = "TURNED OFF";
			// 
			// buttonStartStop
			// 
			this.buttonStartStop.Image = global::ModernSteward.Properties.Resources.iconRun;
			this.buttonStartStop.ImageAlignment = System.Drawing.ContentAlignment.MiddleRight;
			this.buttonStartStop.Location = new System.Drawing.Point(189, 21);
			this.buttonStartStop.Name = "buttonStartStop";
			this.buttonStartStop.Size = new System.Drawing.Size(139, 73);
			this.buttonStartStop.TabIndex = 1;
			this.buttonStartStop.Text = "Start";
			this.buttonStartStop.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
			this.buttonStartStop.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageBeforeText;
			this.buttonStartStop.Click += new System.EventHandler(this.buttonStartStop_Click);
			// 
			// menuItemFile
			// 
			this.menuItemFile.AccessibleDescription = "File";
			this.menuItemFile.AccessibleName = "File";
			this.menuItemFile.AutoSize = true;
			this.menuItemFile.Items.AddRange(new Telerik.WinControls.RadItem[] {
            this.menuItemOpenFile,
            this.MenuItemSave});
			this.menuItemFile.Name = "menuItemFile";
			this.menuItemFile.Text = "File";
			this.menuItemFile.Visibility = Telerik.WinControls.ElementVisibility.Visible;
			// 
			// menuItemOpenFile
			// 
			this.menuItemOpenFile.AccessibleDescription = "Open";
			this.menuItemOpenFile.AccessibleName = "Open";
			this.menuItemOpenFile.Image = global::ModernSteward.Properties.Resources.iconOpen;
			this.menuItemOpenFile.Name = "menuItemOpenFile";
			this.menuItemOpenFile.Text = "Open";
			this.menuItemOpenFile.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
			this.menuItemOpenFile.Visibility = Telerik.WinControls.ElementVisibility.Visible;
			this.menuItemOpenFile.Click += new System.EventHandler(this.menuItemOpenFile_Click);
			// 
			// MenuItemSave
			// 
			this.MenuItemSave.AccessibleDescription = "Save";
			this.MenuItemSave.AccessibleName = "Save";
			this.MenuItemSave.Image = global::ModernSteward.Properties.Resources.iconSave;
			this.MenuItemSave.Name = "MenuItemSave";
			this.MenuItemSave.Text = "Save";
			this.MenuItemSave.Visibility = Telerik.WinControls.ElementVisibility.Visible;
			this.MenuItemSave.Click += new System.EventHandler(this.MenuItemSave_Click);
			// 
			// menuItemAdvanced
			// 
			this.menuItemAdvanced.AccessibleDescription = "Advanced";
			this.menuItemAdvanced.AccessibleName = "Advanced";
			this.menuItemAdvanced.Items.AddRange(new Telerik.WinControls.RadItem[] {
            this.radMenuItemPluginWizard,
            this.menuItemMasterDictionary,
            this.menuItemMacroWizard});
			this.menuItemAdvanced.Name = "menuItemAdvanced";
			this.menuItemAdvanced.Text = "Advanced";
			this.menuItemAdvanced.Visibility = Telerik.WinControls.ElementVisibility.Visible;
			// 
			// radMenuItemPluginWizard
			// 
			this.radMenuItemPluginWizard.AccessibleDescription = "radMenuItem3";
			this.radMenuItemPluginWizard.AccessibleName = "radMenuItem3";
			this.radMenuItemPluginWizard.Image = global::ModernSteward.Properties.Resources.wizardIcon;
			this.radMenuItemPluginWizard.Name = "radMenuItemPluginWizard";
			this.radMenuItemPluginWizard.Text = "Plugin wizard";
			this.radMenuItemPluginWizard.Visibility = Telerik.WinControls.ElementVisibility.Visible;
			this.radMenuItemPluginWizard.Click += new System.EventHandler(this.radMenuItemPluginWizard_Click);
			// 
			// menuItemMasterDictionary
			// 
			this.menuItemMasterDictionary.AccessibleDescription = "Master dictionary";
			this.menuItemMasterDictionary.AccessibleName = "Master dictionary";
			this.menuItemMasterDictionary.Image = global::ModernSteward.Properties.Resources.iconDictionary;
			this.menuItemMasterDictionary.Name = "menuItemMasterDictionary";
			this.menuItemMasterDictionary.Text = "Master dictionary";
			this.menuItemMasterDictionary.Visibility = Telerik.WinControls.ElementVisibility.Visible;
			this.menuItemMasterDictionary.Click += new System.EventHandler(this.menuItemMasterDictionary_Click);
			// 
			// menuItemMacroWizard
			// 
			this.menuItemMacroWizard.AccessibleDescription = "MacroWizard";
			this.menuItemMacroWizard.AccessibleName = "MacroWizard";
			this.menuItemMacroWizard.Image = global::ModernSteward.Properties.Resources.iconMacro;
			this.menuItemMacroWizard.Name = "menuItemMacroWizard";
			this.menuItemMacroWizard.Text = "MacroWizard";
			this.menuItemMacroWizard.Visibility = Telerik.WinControls.ElementVisibility.Visible;
			this.menuItemMacroWizard.Click += new System.EventHandler(this.menuItemMacroWizard_Click);
			// 
			// statusStrip
			// 
			this.statusStrip.AutoSize = true;
			this.statusStrip.Items.AddRange(new Telerik.WinControls.RadItem[] {
            this.labelStatusInStatusStrip});
			this.statusStrip.LayoutStyle = Telerik.WinControls.UI.RadStatusBarLayoutStyle.Stack;
			this.statusStrip.Location = new System.Drawing.Point(0, 401);
			this.statusStrip.Name = "statusStrip";
			this.statusStrip.Size = new System.Drawing.Size(698, 24);
			this.statusStrip.TabIndex = 4;
			this.statusStrip.Text = "Status";
			// 
			// labelStatusInStatusStrip
			// 
			this.labelStatusInStatusStrip.AccessibleDescription = "status";
			this.labelStatusInStatusStrip.AccessibleName = "status";
			this.labelStatusInStatusStrip.Name = "labelStatusInStatusStrip";
			this.statusStrip.SetSpring(this.labelStatusInStatusStrip, false);
			this.labelStatusInStatusStrip.Text = "";
			this.labelStatusInStatusStrip.TextWrap = true;
			this.labelStatusInStatusStrip.Visibility = Telerik.WinControls.ElementVisibility.Visible;
			// 
			// menuItemHelp
			// 
			this.menuItemHelp.AccessibleDescription = "Help";
			this.menuItemHelp.AccessibleName = "Help";
			this.menuItemHelp.Items.AddRange(new Telerik.WinControls.RadItem[] {
            this.menuItemPluginCommands});
			this.menuItemHelp.Name = "menuItemHelp";
			this.menuItemHelp.Text = "Help";
			this.menuItemHelp.Visibility = Telerik.WinControls.ElementVisibility.Visible;
			// 
			// menuItemPluginCommands
			// 
			this.menuItemPluginCommands.AccessibleDescription = "Commands";
			this.menuItemPluginCommands.AccessibleName = "Commands";
			this.menuItemPluginCommands.Name = "menuItemPluginCommands";
			this.menuItemPluginCommands.Text = "Commands";
			this.menuItemPluginCommands.Visibility = Telerik.WinControls.ElementVisibility.Visible;
			this.menuItemPluginCommands.Click += new System.EventHandler(this.menuItemPluginCommands_Click);
			// 
			// menuMain
			// 
			this.menuMain.Items.AddRange(new Telerik.WinControls.RadItem[] {
            this.menuItemFile,
            this.menuItemAdvanced,
            this.menuItemHelp});
			this.menuMain.Location = new System.Drawing.Point(0, 0);
			this.menuMain.Name = "menuMain";
			this.menuMain.Size = new System.Drawing.Size(698, 20);
			this.menuMain.TabIndex = 0;
			this.menuMain.Text = "Main menu";
			// 
			// notifyIcon
			// 
			this.notifyIcon.Icon = ((System.Drawing.Icon)(resources.GetObject("notifyIcon.Icon")));
			this.notifyIcon.Text = "ModernSteward";
			this.notifyIcon.Visible = true;
			this.notifyIcon.MouseDoubleClick += new System.Windows.Forms.MouseEventHandler(this.notifyIcon_MouseDoubleClick);
			// 
			// MainForm
			// 
			this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
			this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
			this.ClientSize = new System.Drawing.Size(698, 425);
			this.Controls.Add(this.statusStrip);
			this.Controls.Add(this.menuMain);
			this.Controls.Add(this.groupBoxStatus);
			this.Controls.Add(this.groupBoxAddPlugin);
			this.Controls.Add(this.groupBoxPlugins);
			this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
			this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
			this.Name = "MainForm";
			// 
			// 
			// 
			this.RootElement.ApplyShapeToControl = true;
			this.Text = "ModernSteward";
			this.ThemeName = "ControlDefault";
			this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.MainForm_FormClosing);
			this.Resize += new System.EventHandler(this.MainForm_Resize);
			((System.ComponentModel.ISupportInitialize)(this.gridViewPlugins)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.groupBoxPlugins)).EndInit();
			this.groupBoxPlugins.ResumeLayout(false);
			((System.ComponentModel.ISupportInitialize)(this.groupBoxAddPlugin)).EndInit();
			this.groupBoxAddPlugin.ResumeLayout(false);
			this.groupBoxAddPlugin.PerformLayout();
			((System.ComponentModel.ISupportInitialize)(this.textBoxPluginPath)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.buttonBrowseForPlugin)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.textBoxPluginName)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.labelPluginName)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.buttonAddPlugin)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.groupBoxStatus)).EndInit();
			this.groupBoxStatus.ResumeLayout(false);
			this.groupBoxStatus.PerformLayout();
			((System.ComponentModel.ISupportInitialize)(this.labelStartStop)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.buttonStartStop)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.statusStrip)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.menuMain)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this)).EndInit();
			this.ResumeLayout(false);
			this.PerformLayout();

        }
コード例 #32
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();
     Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn5 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
     Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn6 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
     Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn7 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
     Telerik.WinControls.UI.GridViewCommandColumn gridViewCommandColumn2 = new Telerik.WinControls.UI.GridViewCommandColumn();
     Telerik.WinControls.UI.GridViewCheckBoxColumn gridViewCheckBoxColumn2 = new Telerik.WinControls.UI.GridViewCheckBoxColumn();
     Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn8 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
     this.patientListGroupBox = new Telerik.WinControls.UI.RadGroupBox();
     this.filteringPanel = new Telerik.WinControls.UI.RadPanel();
     this.ucFilter1 = new ShayanDental.UserControls.UCFilter();
     this.grdPatient = new Telerik.WinControls.UI.RadGridView();
     this.btnSave = new Telerik.WinControls.UI.RadButton();
     this.btnCancel = new Telerik.WinControls.UI.RadButton();
     this.lstIns = new Telerik.WinControls.UI.RadGridView();
     this.radLabel11 = new Telerik.WinControls.UI.RadLabel();
     this.dpBirthDate = new FarsiLibrary.Win.Controls.FADatePicker();
     this.patientBindingSource = new System.Windows.Forms.BindingSource(this.components);
     this.txtPhone1 = new Telerik.WinControls.UI.RadTextBox();
     this.txtPhone2 = new Telerik.WinControls.UI.RadTextBox();
     this.txtAge = new Telerik.WinControls.UI.RadMaskedEditBox();
     this.lblAge = new Telerik.WinControls.UI.RadLabel();
     this.btnAdd = new Telerik.WinControls.UI.RadButton();
     this.btnNew = new Telerik.WinControls.UI.RadButton();
     this.txtCode = new Telerik.WinControls.UI.RadTextBox();
     this.radLabel12 = new Telerik.WinControls.UI.RadLabel();
     this.radGroupBox1 = new Telerik.WinControls.UI.RadGroupBox();
     this.radCheckBox1 = new Telerik.WinControls.UI.RadCheckBox();
     this.radLabel6 = new Telerik.WinControls.UI.RadLabel();
     this.radLabel13 = new Telerik.WinControls.UI.RadLabel();
     this.radCheckBox12 = new Telerik.WinControls.UI.RadCheckBox();
     this.radCheckBox11 = new Telerik.WinControls.UI.RadCheckBox();
     this.radCheckBox13 = new Telerik.WinControls.UI.RadCheckBox();
     this.radCheckBox8 = new Telerik.WinControls.UI.RadCheckBox();
     this.radTextBox4 = new Telerik.WinControls.UI.RadTextBox();
     this.radCheckBox5 = new Telerik.WinControls.UI.RadCheckBox();
     this.radTextBox5 = new Telerik.WinControls.UI.RadTextBox();
     this.radCheckBox7 = new Telerik.WinControls.UI.RadCheckBox();
     this.radCheckBox3 = new Telerik.WinControls.UI.RadCheckBox();
     this.radCheckBox4 = new Telerik.WinControls.UI.RadCheckBox();
     this.radCheckBox9 = new Telerik.WinControls.UI.RadCheckBox();
     this.radCheckBox10 = new Telerik.WinControls.UI.RadCheckBox();
     this.radCheckBox6 = new Telerik.WinControls.UI.RadCheckBox();
     this.radCheckBox2 = new Telerik.WinControls.UI.RadCheckBox();
     this.patientHepatitCheckBox = new Telerik.WinControls.UI.RadCheckBox();
     this.patientPregnancyCheckBox = new Telerik.WinControls.UI.RadCheckBox();
     this.radLabel10 = new Telerik.WinControls.UI.RadLabel();
     this.radLabel9 = new Telerik.WinControls.UI.RadLabel();
     this.radLabel8 = new Telerik.WinControls.UI.RadLabel();
     this.radLabel2 = new Telerik.WinControls.UI.RadLabel();
     this.radLabel7 = new Telerik.WinControls.UI.RadLabel();
     this.txtLastName = new Telerik.WinControls.UI.RadTextBox();
     this.txtFirstName = new Telerik.WinControls.UI.RadTextBox();
     this.radLabel1 = new Telerik.WinControls.UI.RadLabel();
     this.txtDescription = new Telerik.WinControls.UI.RadTextBox();
     this.txtAddress = new Telerik.WinControls.UI.RadTextBox();
     this.radGroupBox2 = new Telerik.WinControls.UI.RadGroupBox();
     this.btnHistory = new Telerik.WinControls.UI.RadButton();
     this.btnDocs = new Telerik.WinControls.UI.RadButton();
     this.radGroupBox3 = new Telerik.WinControls.UI.RadGroupBox();
     this.radLabel4 = new Telerik.WinControls.UI.RadLabel();
     this.radCheckBox14 = new Telerik.WinControls.UI.RadCheckBox();
     this.radTextBox2 = new Telerik.WinControls.UI.RadTextBox();
     this.radTextBox1 = new Telerik.WinControls.UI.RadTextBox();
     this.radTextBox3 = new Telerik.WinControls.UI.RadTextBox();
     this.radLabel5 = new Telerik.WinControls.UI.RadLabel();
     this.radLabel3 = new Telerik.WinControls.UI.RadLabel();
     ((System.ComponentModel.ISupportInitialize)(this.patientListGroupBox)).BeginInit();
     this.patientListGroupBox.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.filteringPanel)).BeginInit();
     this.filteringPanel.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.grdPatient)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.grdPatient.MasterTemplate)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.btnSave)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.btnCancel)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lstIns)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lstIns.MasterTemplate)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel11)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.patientBindingSource)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtPhone1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtPhone2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtAge)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lblAge)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.btnAdd)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.btnNew)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtCode)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel12)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radGroupBox1)).BeginInit();
     this.radGroupBox1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.radCheckBox1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel6)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel13)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radCheckBox12)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radCheckBox11)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radCheckBox13)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radCheckBox8)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radTextBox4)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radCheckBox5)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radTextBox5)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radCheckBox7)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radCheckBox3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radCheckBox4)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radCheckBox9)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radCheckBox10)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radCheckBox6)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radCheckBox2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.patientHepatitCheckBox)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.patientPregnancyCheckBox)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel10)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel9)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel8)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel7)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtLastName)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtFirstName)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtDescription)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtAddress)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radGroupBox2)).BeginInit();
     this.radGroupBox2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.btnHistory)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.btnDocs)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radGroupBox3)).BeginInit();
     this.radGroupBox3.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel4)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radCheckBox14)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radTextBox2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radTextBox1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radTextBox3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel5)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
     this.SuspendLayout();
     //
     // patientListGroupBox
     //
     this.patientListGroupBox.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
     this.patientListGroupBox.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.patientListGroupBox.Controls.Add(this.filteringPanel);
     this.patientListGroupBox.Controls.Add(this.grdPatient);
     this.patientListGroupBox.Font = new System.Drawing.Font("B Titr", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
     this.patientListGroupBox.FooterImageIndex = -1;
     this.patientListGroupBox.FooterImageKey = "";
     this.patientListGroupBox.HeaderImageIndex = -1;
     this.patientListGroupBox.HeaderImageKey = "";
     this.patientListGroupBox.HeaderMargin = new System.Windows.Forms.Padding(0);
     this.patientListGroupBox.HeaderText = "پرونده های ذخیره شده";
     this.patientListGroupBox.Location = new System.Drawing.Point(13, 0);
     this.patientListGroupBox.Name = "patientListGroupBox";
     this.patientListGroupBox.Padding = new System.Windows.Forms.Padding(2, 17, 2, 2);
     this.patientListGroupBox.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
     //
     //
     //
     this.patientListGroupBox.RootElement.Padding = new System.Windows.Forms.Padding(2, 17, 2, 2);
     this.patientListGroupBox.Size = new System.Drawing.Size(249, 610);
     this.patientListGroupBox.TabIndex = 1;
     this.patientListGroupBox.Text = "پرونده های ذخیره شده";
     //
     // filteringPanel
     //
     this.filteringPanel.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.filteringPanel.Controls.Add(this.ucFilter1);
     this.filteringPanel.Location = new System.Drawing.Point(5, 25);
     this.filteringPanel.Name = "filteringPanel";
     this.filteringPanel.Size = new System.Drawing.Size(239, 32);
     this.filteringPanel.TabIndex = 0;
     //
     // ucFilter1
     //
     this.ucFilter1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.ucFilter1.Location = new System.Drawing.Point(0, 0);
     this.ucFilter1.Margin = new System.Windows.Forms.Padding(4);
     this.ucFilter1.Name = "ucFilter1";
     this.ucFilter1.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
     this.ucFilter1.Size = new System.Drawing.Size(239, 32);
     this.ucFilter1.TabIndex = 0;
     //
     // grdPatient
     //
     this.grdPatient.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.grdPatient.EnableHotTracking = false;
     this.grdPatient.Font = new System.Drawing.Font("B Lotus", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
     this.grdPatient.Location = new System.Drawing.Point(5, 66);
     //
     // grdPatient
     //
     this.grdPatient.MasterTemplate.AllowAddNewRow = false;
     this.grdPatient.MasterTemplate.AllowCellContextMenu = false;
     this.grdPatient.MasterTemplate.AllowColumnChooser = false;
     this.grdPatient.MasterTemplate.AllowColumnHeaderContextMenu = false;
     this.grdPatient.MasterTemplate.AllowDeleteRow = false;
     this.grdPatient.MasterTemplate.AllowDragToGroup = false;
     this.grdPatient.MasterTemplate.AllowEditRow = false;
     this.grdPatient.MasterTemplate.AutoSizeColumnsMode = Telerik.WinControls.UI.GridViewAutoSizeColumnsMode.Fill;
     gridViewTextBoxColumn5.FieldName = "FirstName";
     gridViewTextBoxColumn5.HeaderText = "نام";
     gridViewTextBoxColumn5.Name = "FirstName";
     gridViewTextBoxColumn5.Width = 57;
     gridViewTextBoxColumn6.FieldName = "LastName";
     gridViewTextBoxColumn6.HeaderText = "نام خانوادگی";
     gridViewTextBoxColumn6.Name = "LastName";
     gridViewTextBoxColumn6.Width = 84;
     gridViewTextBoxColumn7.FieldName = "AccountantCode";
     gridViewTextBoxColumn7.HeaderText = "شماره پرونده";
     gridViewTextBoxColumn7.Name = "Code";
     gridViewTextBoxColumn7.Width = 69;
     gridViewCommandColumn2.AllowResize = false;
     gridViewCommandColumn2.HeaderText = "حذف";
     gridViewCommandColumn2.ImageLayout = System.Windows.Forms.ImageLayout.Center;
     gridViewCommandColumn2.Name = "column1";
     gridViewCommandColumn2.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
     gridViewCommandColumn2.Width = 30;
     this.grdPatient.MasterTemplate.Columns.AddRange(new Telerik.WinControls.UI.GridViewDataColumn[] {
     gridViewTextBoxColumn5,
     gridViewTextBoxColumn6,
     gridViewTextBoxColumn7,
     gridViewCommandColumn2});
     this.grdPatient.MasterTemplate.EnableGrouping = false;
     this.grdPatient.MasterTemplate.ShowFilteringRow = false;
     this.grdPatient.MasterTemplate.ShowRowHeaderColumn = false;
     this.grdPatient.Name = "grdPatient";
     this.grdPatient.ReadOnly = true;
     this.grdPatient.Size = new System.Drawing.Size(239, 539);
     this.grdPatient.TabIndex = 0;
     this.grdPatient.CellFormatting += new Telerik.WinControls.UI.CellFormattingEventHandler(this.grdPatient_CellFormatting);
     this.grdPatient.CurrentRowChanging += new Telerik.WinControls.UI.CurrentRowChangingEventHandler(this.grdPatient_CurrentRowChanging);
     this.grdPatient.SelectionChanged += new System.EventHandler(this.grdPatient_SelectionChanged);
     this.grdPatient.CommandCellClick += new Telerik.WinControls.UI.CommandCellClickEventHandler(this.grdPatient_CommandCellClick);
     //
     // btnSave
     //
     this.btnSave.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.btnSave.Font = new System.Drawing.Font("B Nazanin", 10.5F, System.Drawing.FontStyle.Bold);
     this.btnSave.Location = new System.Drawing.Point(877, 577);
     this.btnSave.Name = "btnSave";
     this.btnSave.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.btnSave.Size = new System.Drawing.Size(110, 35);
     this.btnSave.TabIndex = 2;
     this.btnSave.Text = "ذخیره   ";
     this.btnSave.TextAlignment = System.Drawing.ContentAlignment.MiddleRight;
     this.btnSave.Click += new System.EventHandler(this.btnSave_Click);
     //
     // btnCancel
     //
     this.btnCancel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.btnCancel.Font = new System.Drawing.Font("B Nazanin", 10.5F, System.Drawing.FontStyle.Bold);
     this.btnCancel.Location = new System.Drawing.Point(761, 577);
     this.btnCancel.Name = "btnCancel";
     this.btnCancel.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.btnCancel.Size = new System.Drawing.Size(110, 35);
     this.btnCancel.TabIndex = 3;
     this.btnCancel.Text = "انصراف   ";
     this.btnCancel.TextAlignment = System.Drawing.ContentAlignment.MiddleRight;
     this.btnCancel.Click += new System.EventHandler(this.btnCancel_Click);
     //
     // lstIns
     //
     this.lstIns.Anchor = System.Windows.Forms.AnchorStyles.Top;
     this.lstIns.AutoScroll = true;
     this.lstIns.EnableHotTracking = false;
     this.lstIns.Font = new System.Drawing.Font("B Lotus", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
     this.lstIns.Location = new System.Drawing.Point(5, 217);
     //
     // lstIns
     //
     this.lstIns.MasterTemplate.AddNewRowPosition = Telerik.WinControls.UI.SystemRowPosition.Bottom;
     this.lstIns.MasterTemplate.AllowAddNewRow = false;
     this.lstIns.MasterTemplate.AllowCellContextMenu = false;
     this.lstIns.MasterTemplate.AllowColumnChooser = false;
     this.lstIns.MasterTemplate.AllowColumnHeaderContextMenu = false;
     this.lstIns.MasterTemplate.AllowColumnReorder = false;
     this.lstIns.MasterTemplate.AllowColumnResize = false;
     this.lstIns.MasterTemplate.AllowDeleteRow = false;
     this.lstIns.MasterTemplate.AllowDragToGroup = false;
     this.lstIns.MasterTemplate.AutoSizeColumnsMode = Telerik.WinControls.UI.GridViewAutoSizeColumnsMode.Fill;
     gridViewCheckBoxColumn2.FormatString = "";
     gridViewCheckBoxColumn2.HeaderText = "";
     gridViewCheckBoxColumn2.Name = "chkBox";
     gridViewCheckBoxColumn2.Width = 31;
     gridViewTextBoxColumn8.FieldName = "Title";
     gridViewTextBoxColumn8.HeaderText = "عنوان بیمه";
     gridViewTextBoxColumn8.Name = "Title";
     gridViewTextBoxColumn8.ReadOnly = true;
     gridViewTextBoxColumn8.Width = 212;
     this.lstIns.MasterTemplate.Columns.AddRange(new Telerik.WinControls.UI.GridViewDataColumn[] {
     gridViewCheckBoxColumn2,
     gridViewTextBoxColumn8});
     this.lstIns.MasterTemplate.EnableGrouping = false;
     this.lstIns.MasterTemplate.EnableSorting = false;
     this.lstIns.MasterTemplate.ShowRowHeaderColumn = false;
     this.lstIns.Name = "lstIns";
     this.lstIns.ShowGroupPanel = false;
     this.lstIns.Size = new System.Drawing.Size(243, 208);
     this.lstIns.TabIndex = 5;
     this.lstIns.Text = "radGridView1";
     this.lstIns.CellValueChanged += new Telerik.WinControls.UI.GridViewCellEventHandler(this.lstIns_CellValueChanged);
     //
     // radLabel11
     //
     this.radLabel11.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.radLabel11.Font = new System.Drawing.Font("B Koodak", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
     this.radLabel11.Location = new System.Drawing.Point(635, 11);
     this.radLabel11.Name = "radLabel11";
     this.radLabel11.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
     this.radLabel11.Size = new System.Drawing.Size(83, 30);
     this.radLabel11.TabIndex = 48;
     this.radLabel11.Text = "شماره پرونده :";
     this.radLabel11.TextAlignment = System.Drawing.ContentAlignment.TopRight;
     //
     // dpBirthDate
     //
     this.dpBirthDate.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.dpBirthDate.DataBindings.Add(new System.Windows.Forms.Binding("SelectedDateTime", this.patientBindingSource, "BirthDate", true));
     this.dpBirthDate.Font = new System.Drawing.Font("B Nazanin", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
     this.dpBirthDate.Location = new System.Drawing.Point(483, 121);
     this.dpBirthDate.Multiline = true;
     this.dpBirthDate.Name = "dpBirthDate";
     this.dpBirthDate.Size = new System.Drawing.Size(162, 27);
     this.dpBirthDate.TabIndex = 8;
     this.dpBirthDate.SelectedDateTimeChanged += new System.EventHandler(this.dpBirthDate_SelectedDateTimeChanged);
     //
     // patientBindingSource
     //
     this.patientBindingSource.DataSource = typeof(Shayan.Data.Patient);
     //
     // txtPhone1
     //
     this.txtPhone1.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.txtPhone1.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.patientBindingSource, "HomeNumber", true));
     this.txtPhone1.Font = new System.Drawing.Font("B Nazanin", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
     this.txtPhone1.Location = new System.Drawing.Point(10, 25);
     this.txtPhone1.MaxLength = 15;
     this.txtPhone1.Name = "txtPhone1";
     this.txtPhone1.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.txtPhone1.Size = new System.Drawing.Size(166, 28);
     this.txtPhone1.TabIndex = 5;
     this.txtPhone1.TabStop = false;
     this.txtPhone1.TextChanging += new Telerik.WinControls.TextChangingEventHandler(this.txtPhone1_TextChanging);
     //
     // txtPhone2
     //
     this.txtPhone2.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.txtPhone2.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.patientBindingSource, "CellNumber", true));
     this.txtPhone2.Font = new System.Drawing.Font("B Nazanin", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
     this.txtPhone2.Location = new System.Drawing.Point(10, 57);
     this.txtPhone2.MaxLength = 15;
     this.txtPhone2.Name = "txtPhone2";
     this.txtPhone2.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.txtPhone2.Size = new System.Drawing.Size(166, 28);
     this.txtPhone2.TabIndex = 6;
     this.txtPhone2.TabStop = false;
     this.txtPhone2.TextChanging += new Telerik.WinControls.TextChangingEventHandler(this.txtPhone1_TextChanging);
     //
     // txtAge
     //
     this.txtAge.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.txtAge.AutoSize = true;
     this.txtAge.Enabled = false;
     this.txtAge.Font = new System.Drawing.Font("B Nazanin", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
     this.txtAge.Location = new System.Drawing.Point(388, 122);
     this.txtAge.MaxLength = 3;
     this.txtAge.Name = "txtAge";
     this.txtAge.Size = new System.Drawing.Size(26, 28);
     this.txtAge.TabIndex = 9;
     this.txtAge.TabStop = false;
     //
     // lblAge
     //
     this.lblAge.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.lblAge.Font = new System.Drawing.Font("B Koodak", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
     this.lblAge.Location = new System.Drawing.Point(418, 121);
     this.lblAge.Name = "lblAge";
     this.lblAge.Size = new System.Drawing.Size(33, 30);
     this.lblAge.TabIndex = 6;
     this.lblAge.Text = "سن :";
     this.lblAge.TextAlignment = System.Drawing.ContentAlignment.TopRight;
     //
     // btnAdd
     //
     this.btnAdd.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.btnAdd.Font = new System.Drawing.Font("B Nazanin", 10.5F, System.Drawing.FontStyle.Bold);
     this.btnAdd.Location = new System.Drawing.Point(609, 524);
     this.btnAdd.Name = "btnAdd";
     this.btnAdd.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.btnAdd.Size = new System.Drawing.Size(110, 35);
     this.btnAdd.TabIndex = 7;
     this.btnAdd.Text = "افزودن   ";
     this.btnAdd.TextAlignment = System.Drawing.ContentAlignment.MiddleRight;
     this.btnAdd.Click += new System.EventHandler(this.btnAdd_Click);
     //
     // btnNew
     //
     this.btnNew.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.btnNew.Font = new System.Drawing.Font("B Nazanin", 10.5F, System.Drawing.FontStyle.Bold);
     this.btnNew.Location = new System.Drawing.Point(493, 524);
     this.btnNew.Name = "btnNew";
     this.btnNew.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.btnNew.Size = new System.Drawing.Size(110, 35);
     this.btnNew.TabIndex = 8;
     this.btnNew.Text = "جدید   ";
     this.btnNew.TextAlignment = System.Drawing.ContentAlignment.MiddleRight;
     this.btnNew.Click += new System.EventHandler(this.btnNew_Click);
     //
     // txtCode
     //
     this.txtCode.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.txtCode.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.patientBindingSource, "AccountantCode", true));
     this.txtCode.Enabled = false;
     this.txtCode.Font = new System.Drawing.Font("B Nazanin", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
     this.txtCode.Location = new System.Drawing.Point(489, 13);
     this.txtCode.Name = "txtCode";
     this.txtCode.NullText = "-بعد از ذخیره اختصاص می یابد-";
     this.txtCode.Size = new System.Drawing.Size(141, 25);
     this.txtCode.TabIndex = 0;
     this.txtCode.TabStop = false;
     //
     // radLabel12
     //
     this.radLabel12.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.radLabel12.Font = new System.Drawing.Font("B Koodak", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
     this.radLabel12.Location = new System.Drawing.Point(650, 25);
     this.radLabel12.Name = "radLabel12";
     this.radLabel12.Size = new System.Drawing.Size(28, 30);
     this.radLabel12.TabIndex = 41;
     this.radLabel12.Text = "نام :";
     this.radLabel12.TextAlignment = System.Drawing.ContentAlignment.TopRight;
     //
     // radGroupBox1
     //
     this.radGroupBox1.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
     this.radGroupBox1.Anchor = System.Windows.Forms.AnchorStyles.Top;
     this.radGroupBox1.Controls.Add(this.radCheckBox1);
     this.radGroupBox1.Controls.Add(this.radLabel6);
     this.radGroupBox1.Controls.Add(this.radLabel13);
     this.radGroupBox1.Controls.Add(this.radCheckBox12);
     this.radGroupBox1.Controls.Add(this.radCheckBox11);
     this.radGroupBox1.Controls.Add(this.radCheckBox13);
     this.radGroupBox1.Controls.Add(this.radCheckBox8);
     this.radGroupBox1.Controls.Add(this.radTextBox4);
     this.radGroupBox1.Controls.Add(this.radCheckBox5);
     this.radGroupBox1.Controls.Add(this.radTextBox5);
     this.radGroupBox1.Controls.Add(this.radCheckBox7);
     this.radGroupBox1.Controls.Add(this.radCheckBox3);
     this.radGroupBox1.Controls.Add(this.radCheckBox4);
     this.radGroupBox1.Controls.Add(this.radCheckBox9);
     this.radGroupBox1.Controls.Add(this.radCheckBox10);
     this.radGroupBox1.Controls.Add(this.radCheckBox6);
     this.radGroupBox1.Controls.Add(this.radCheckBox2);
     this.radGroupBox1.Controls.Add(this.patientHepatitCheckBox);
     this.radGroupBox1.Controls.Add(this.patientPregnancyCheckBox);
     this.radGroupBox1.Font = new System.Drawing.Font("B Titr", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
     this.radGroupBox1.FooterImageIndex = -1;
     this.radGroupBox1.FooterImageKey = "";
     this.radGroupBox1.HeaderImageIndex = -1;
     this.radGroupBox1.HeaderImageKey = "";
     this.radGroupBox1.HeaderMargin = new System.Windows.Forms.Padding(0);
     this.radGroupBox1.HeaderText = "شرایط ویژه:";
     this.radGroupBox1.Location = new System.Drawing.Point(254, 207);
     this.radGroupBox1.Name = "radGroupBox1";
     this.radGroupBox1.Padding = new System.Windows.Forms.Padding(2, 18, 2, 2);
     this.radGroupBox1.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
     //
     //
     //
     this.radGroupBox1.RootElement.Padding = new System.Windows.Forms.Padding(2, 18, 2, 2);
     this.radGroupBox1.Size = new System.Drawing.Size(466, 218);
     this.radGroupBox1.TabIndex = 4;
     this.radGroupBox1.Text = "شرایط ویژه:";
     //
     // radCheckBox1
     //
     this.radCheckBox1.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.radCheckBox1.DataBindings.Add(new System.Windows.Forms.Binding("Checked", this.patientBindingSource, "Alergy", true));
     this.radCheckBox1.Font = new System.Drawing.Font("B Koodak", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
     this.radCheckBox1.Location = new System.Drawing.Point(403, 84);
     this.radCheckBox1.Name = "radCheckBox1";
     this.radCheckBox1.Size = new System.Drawing.Size(55, 30);
     this.radCheckBox1.TabIndex = 8;
     this.radCheckBox1.Text = "آلرژی";
     //
     // radLabel6
     //
     this.radLabel6.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.radLabel6.Font = new System.Drawing.Font("B Koodak", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
     this.radLabel6.Location = new System.Drawing.Point(231, 178);
     this.radLabel6.Name = "radLabel6";
     this.radLabel6.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
     this.radLabel6.Size = new System.Drawing.Size(229, 30);
     this.radLabel6.TabIndex = 56;
     this.radLabel6.Text = "آیا در مراجعات قبلی مشکل خاصی داشتید؟";
     this.radLabel6.TextAlignment = System.Drawing.ContentAlignment.TopRight;
     //
     // radLabel13
     //
     this.radLabel13.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.radLabel13.Font = new System.Drawing.Font("B Koodak", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
     this.radLabel13.Location = new System.Drawing.Point(260, 150);
     this.radLabel13.Name = "radLabel13";
     this.radLabel13.Size = new System.Drawing.Size(209, 30);
     this.radLabel13.TabIndex = 54;
     this.radLabel13.Text = "آیا در حال حاضر دارو مصرف می کنید؟";
     this.radLabel13.TextAlignment = System.Drawing.ContentAlignment.TopRight;
     //
     // radCheckBox12
     //
     this.radCheckBox12.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.radCheckBox12.DataBindings.Add(new System.Windows.Forms.Binding("Checked", this.patientBindingSource, "SingcobAfterInjection", true));
     this.radCheckBox12.Font = new System.Drawing.Font("B Koodak", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
     this.radCheckBox12.Location = new System.Drawing.Point(70, 111);
     this.radCheckBox12.Name = "radCheckBox12";
     this.radCheckBox12.Size = new System.Drawing.Size(116, 30);
     this.radCheckBox12.TabIndex = 13;
     this.radCheckBox12.Text = "غش پس از تزریق";
     //
     // radCheckBox11
     //
     this.radCheckBox11.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.radCheckBox11.DataBindings.Add(new System.Windows.Forms.Binding("Checked", this.patientBindingSource, "KidneyDesease", true));
     this.radCheckBox11.Font = new System.Drawing.Font("B Koodak", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
     this.radCheckBox11.Location = new System.Drawing.Point(95, 84);
     this.radCheckBox11.Name = "radCheckBox11";
     this.radCheckBox11.Size = new System.Drawing.Size(91, 30);
     this.radCheckBox11.TabIndex = 11;
     this.radCheckBox11.Text = "بیماری کلیوی";
     //
     // radCheckBox13
     //
     this.radCheckBox13.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.radCheckBox13.DataBindings.Add(new System.Windows.Forms.Binding("Checked", this.patientBindingSource, "AsthmaAfterInjection", true));
     this.radCheckBox13.Font = new System.Drawing.Font("B Koodak", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
     this.radCheckBox13.Location = new System.Drawing.Point(245, 111);
     this.radCheckBox13.Name = "radCheckBox13";
     this.radCheckBox13.Size = new System.Drawing.Size(147, 30);
     this.radCheckBox13.TabIndex = 14;
     this.radCheckBox13.Text = "تنگی نفس پس از تزریق";
     //
     // radCheckBox8
     //
     this.radCheckBox8.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.radCheckBox8.DataBindings.Add(new System.Windows.Forms.Binding("Checked", this.patientBindingSource, "BloodPresure", true));
     this.radCheckBox8.Font = new System.Drawing.Font("B Koodak", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
     this.radCheckBox8.Location = new System.Drawing.Point(319, 84);
     this.radCheckBox8.Name = "radCheckBox8";
     this.radCheckBox8.Size = new System.Drawing.Size(73, 30);
     this.radCheckBox8.TabIndex = 9;
     this.radCheckBox8.Text = "فشار خون";
     //
     // radTextBox4
     //
     this.radTextBox4.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.radTextBox4.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.patientBindingSource, "VisitProblemsDescription", true));
     this.radTextBox4.Font = new System.Drawing.Font("B Nazanin", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
     this.radTextBox4.Location = new System.Drawing.Point(4, 180);
     this.radTextBox4.Name = "radTextBox4";
     this.radTextBox4.Size = new System.Drawing.Size(221, 28);
     this.radTextBox4.TabIndex = 16;
     this.radTextBox4.TabStop = false;
     this.radTextBox4.TextChanging += new Telerik.WinControls.TextChangingEventHandler(this.txtAddress_TextChanging);
     //
     // radCheckBox5
     //
     this.radCheckBox5.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.radCheckBox5.DataBindings.Add(new System.Windows.Forms.Binding("Checked", this.patientBindingSource, "TiroeedDesease", true));
     this.radCheckBox5.Font = new System.Drawing.Font("B Koodak", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
     this.radCheckBox5.Location = new System.Drawing.Point(198, 84);
     this.radCheckBox5.Name = "radCheckBox5";
     this.radCheckBox5.Size = new System.Drawing.Size(98, 30);
     this.radCheckBox5.TabIndex = 10;
     this.radCheckBox5.Text = "بیماری تیروئید";
     //
     // radTextBox5
     //
     this.radTextBox5.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.radTextBox5.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.patientBindingSource, "DrugDiscription", true));
     this.radTextBox5.Font = new System.Drawing.Font("B Nazanin", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
     this.radTextBox5.Location = new System.Drawing.Point(4, 151);
     this.radTextBox5.Name = "radTextBox5";
     this.radTextBox5.Size = new System.Drawing.Size(221, 28);
     this.radTextBox5.TabIndex = 15;
     this.radTextBox5.TabStop = false;
     this.radTextBox5.TextChanging += new Telerik.WinControls.TextChangingEventHandler(this.txtAddress_TextChanging);
     //
     // radCheckBox7
     //
     this.radCheckBox7.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.radCheckBox7.DataBindings.Add(new System.Windows.Forms.Binding("Checked", this.patientBindingSource, "Diabetic", true));
     this.radCheckBox7.Font = new System.Drawing.Font("B Koodak", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
     this.radCheckBox7.Location = new System.Drawing.Point(406, 112);
     this.radCheckBox7.Name = "radCheckBox7";
     this.radCheckBox7.Size = new System.Drawing.Size(52, 30);
     this.radCheckBox7.TabIndex = 12;
     this.radCheckBox7.Text = "دیابت";
     //
     // radCheckBox3
     //
     this.radCheckBox3.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.radCheckBox3.DataBindings.Add(new System.Windows.Forms.Binding("Checked", this.patientBindingSource, "BloodDesease", true));
     this.radCheckBox3.Font = new System.Drawing.Font("B Koodak", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
     this.radCheckBox3.Location = new System.Drawing.Point(96, 26);
     this.radCheckBox3.Name = "radCheckBox3";
     this.radCheckBox3.Size = new System.Drawing.Size(90, 30);
     this.radCheckBox3.TabIndex = 3;
     this.radCheckBox3.Text = "ناراحتی خونی";
     //
     // radCheckBox4
     //
     this.radCheckBox4.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.radCheckBox4.DataBindings.Add(new System.Windows.Forms.Binding("Checked", this.patientBindingSource, "RadioTeraphy", true));
     this.radCheckBox4.Font = new System.Drawing.Font("B Koodak", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
     this.radCheckBox4.Location = new System.Drawing.Point(189, 55);
     this.radCheckBox4.Name = "radCheckBox4";
     this.radCheckBox4.Size = new System.Drawing.Size(107, 30);
     this.radCheckBox4.TabIndex = 6;
     this.radCheckBox4.Text = "سابقه رادیوتراپی";
     //
     // radCheckBox9
     //
     this.radCheckBox9.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.radCheckBox9.DataBindings.Add(new System.Windows.Forms.Binding("Checked", this.patientBindingSource, "Hepatit", true));
     this.radCheckBox9.Font = new System.Drawing.Font("B Koodak", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
     this.radCheckBox9.Location = new System.Drawing.Point(400, 26);
     this.radCheckBox9.Name = "radCheckBox9";
     this.radCheckBox9.Size = new System.Drawing.Size(58, 30);
     this.radCheckBox9.TabIndex = 0;
     this.radCheckBox9.Text = "هپاتیت";
     //
     // radCheckBox10
     //
     this.radCheckBox10.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.radCheckBox10.DataBindings.Add(new System.Windows.Forms.Binding("Checked", this.patientBindingSource, "ChemicalCure", true));
     this.radCheckBox10.Font = new System.Drawing.Font("B Koodak", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
     this.radCheckBox10.Location = new System.Drawing.Point(98, 55);
     this.radCheckBox10.Name = "radCheckBox10";
     this.radCheckBox10.Size = new System.Drawing.Size(88, 30);
     this.radCheckBox10.TabIndex = 7;
     this.radCheckBox10.Text = "شیمی درمانی";
     //
     // radCheckBox6
     //
     this.radCheckBox6.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.radCheckBox6.DataBindings.Add(new System.Windows.Forms.Binding("Checked", this.patientBindingSource, "NeuroticDesease", true));
     this.radCheckBox6.Font = new System.Drawing.Font("B Koodak", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
     this.radCheckBox6.Location = new System.Drawing.Point(299, 55);
     this.radCheckBox6.Name = "radCheckBox6";
     this.radCheckBox6.Size = new System.Drawing.Size(93, 30);
     this.radCheckBox6.TabIndex = 5;
     this.radCheckBox6.Text = "ناراحتی عصبی";
     //
     // radCheckBox2
     //
     this.radCheckBox2.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.radCheckBox2.DataBindings.Add(new System.Windows.Forms.Binding("Checked", this.patientBindingSource, "Pregnancy", true));
     this.radCheckBox2.Font = new System.Drawing.Font("B Koodak", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
     this.radCheckBox2.Location = new System.Drawing.Point(397, 55);
     this.radCheckBox2.Name = "radCheckBox2";
     this.radCheckBox2.Size = new System.Drawing.Size(61, 30);
     this.radCheckBox2.TabIndex = 4;
     this.radCheckBox2.Text = "بارداری";
     //
     // patientHepatitCheckBox
     //
     this.patientHepatitCheckBox.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.patientHepatitCheckBox.DataBindings.Add(new System.Windows.Forms.Binding("Checked", this.patientBindingSource, "BreathDesease", true));
     this.patientHepatitCheckBox.Font = new System.Drawing.Font("B Koodak", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
     this.patientHepatitCheckBox.Location = new System.Drawing.Point(200, 26);
     this.patientHepatitCheckBox.Name = "patientHepatitCheckBox";
     this.patientHepatitCheckBox.Size = new System.Drawing.Size(96, 30);
     this.patientHepatitCheckBox.TabIndex = 2;
     this.patientHepatitCheckBox.Text = "ناراحتی تنفسی";
     //
     // patientPregnancyCheckBox
     //
     this.patientPregnancyCheckBox.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.patientPregnancyCheckBox.DataBindings.Add(new System.Windows.Forms.Binding("Checked", this.patientBindingSource, "HeartDesease", true));
     this.patientPregnancyCheckBox.Font = new System.Drawing.Font("B Koodak", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
     this.patientPregnancyCheckBox.Location = new System.Drawing.Point(307, 26);
     this.patientPregnancyCheckBox.Name = "patientPregnancyCheckBox";
     this.patientPregnancyCheckBox.Size = new System.Drawing.Size(85, 30);
     this.patientPregnancyCheckBox.TabIndex = 1;
     this.patientPregnancyCheckBox.Text = "ناراحتی قلبی";
     //
     // radLabel10
     //
     this.radLabel10.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.radLabel10.Font = new System.Drawing.Font("B Koodak", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
     this.radLabel10.Location = new System.Drawing.Point(178, 26);
     this.radLabel10.Name = "radLabel10";
     this.radLabel10.Size = new System.Drawing.Size(67, 30);
     this.radLabel10.TabIndex = 42;
     this.radLabel10.Text = "تلفن منزل :";
     this.radLabel10.TextAlignment = System.Drawing.ContentAlignment.TopRight;
     //
     // radLabel9
     //
     this.radLabel9.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.radLabel9.Font = new System.Drawing.Font("B Koodak", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
     this.radLabel9.Location = new System.Drawing.Point(177, 57);
     this.radLabel9.Name = "radLabel9";
     this.radLabel9.Size = new System.Drawing.Size(71, 30);
     this.radLabel9.TabIndex = 43;
     this.radLabel9.Text = "تلفن همراه :";
     this.radLabel9.TextAlignment = System.Drawing.ContentAlignment.TopRight;
     //
     // radLabel8
     //
     this.radLabel8.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.radLabel8.Font = new System.Drawing.Font("B Koodak", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
     this.radLabel8.Location = new System.Drawing.Point(649, 88);
     this.radLabel8.Name = "radLabel8";
     this.radLabel8.Size = new System.Drawing.Size(48, 30);
     this.radLabel8.TabIndex = 44;
     this.radLabel8.Text = "آدرس :";
     this.radLabel8.TextAlignment = System.Drawing.ContentAlignment.TopRight;
     //
     // radLabel2
     //
     this.radLabel2.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.radLabel2.Font = new System.Drawing.Font("B Koodak", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
     this.radLabel2.Location = new System.Drawing.Point(646, 119);
     this.radLabel2.Name = "radLabel2";
     this.radLabel2.Size = new System.Drawing.Size(67, 30);
     this.radLabel2.TabIndex = 55;
     this.radLabel2.Text = "تاریخ تولد :";
     this.radLabel2.TextAlignment = System.Drawing.ContentAlignment.TopRight;
     //
     // radLabel7
     //
     this.radLabel7.Anchor = System.Windows.Forms.AnchorStyles.Top;
     this.radLabel7.Font = new System.Drawing.Font("B Koodak", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
     this.radLabel7.Location = new System.Drawing.Point(655, 431);
     this.radLabel7.Name = "radLabel7";
     this.radLabel7.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
     this.radLabel7.Size = new System.Drawing.Size(65, 30);
     this.radLabel7.TabIndex = 45;
     this.radLabel7.Text = "توضیحات :";
     this.radLabel7.TextAlignment = System.Drawing.ContentAlignment.TopRight;
     //
     // txtLastName
     //
     this.txtLastName.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.txtLastName.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.patientBindingSource, "LastName", true));
     this.txtLastName.Font = new System.Drawing.Font("B Nazanin", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
     this.txtLastName.Location = new System.Drawing.Point(264, 25);
     this.txtLastName.Name = "txtLastName";
     this.txtLastName.Size = new System.Drawing.Size(150, 28);
     this.txtLastName.TabIndex = 1;
     this.txtLastName.TabStop = false;
     this.txtLastName.TextChanging += new Telerik.WinControls.TextChangingEventHandler(this.txtFirstName_TextChanging);
     //
     // txtFirstName
     //
     this.txtFirstName.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.txtFirstName.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.patientBindingSource, "FirstName", true));
     this.txtFirstName.Font = new System.Drawing.Font("B Nazanin", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
     this.txtFirstName.Location = new System.Drawing.Point(498, 25);
     this.txtFirstName.Name = "txtFirstName";
     this.txtFirstName.Size = new System.Drawing.Size(147, 28);
     this.txtFirstName.TabIndex = 0;
     this.txtFirstName.TabStop = false;
     this.txtFirstName.TextChanging += new Telerik.WinControls.TextChangingEventHandler(this.txtFirstName_TextChanging);
     //
     // radLabel1
     //
     this.radLabel1.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.radLabel1.Font = new System.Drawing.Font("B Koodak", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
     this.radLabel1.Location = new System.Drawing.Point(417, 27);
     this.radLabel1.Name = "radLabel1";
     this.radLabel1.Size = new System.Drawing.Size(79, 30);
     this.radLabel1.TabIndex = 49;
     this.radLabel1.Text = "نام خانوادگی :";
     this.radLabel1.TextAlignment = System.Drawing.ContentAlignment.TopRight;
     //
     // txtDescription
     //
     this.txtDescription.AcceptsReturn = true;
     this.txtDescription.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)));
     this.txtDescription.AutoScroll = true;
     this.txtDescription.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.patientBindingSource, "Description", true));
     this.txtDescription.Font = new System.Drawing.Font("B Nazanin", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
     this.txtDescription.Location = new System.Drawing.Point(6, 431);
     this.txtDescription.Multiline = true;
     this.txtDescription.Name = "txtDescription";
     //
     //
     //
     this.txtDescription.RootElement.StretchVertically = true;
     this.txtDescription.Size = new System.Drawing.Size(648, 84);
     this.txtDescription.TabIndex = 6;
     this.txtDescription.TabStop = false;
     this.txtDescription.TextChanging += new Telerik.WinControls.TextChangingEventHandler(this.txtAddress_TextChanging);
     //
     // txtAddress
     //
     this.txtAddress.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.txtAddress.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.patientBindingSource, "Address", true));
     this.txtAddress.Font = new System.Drawing.Font("B Nazanin", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
     this.txtAddress.Location = new System.Drawing.Point(262, 88);
     this.txtAddress.Multiline = true;
     this.txtAddress.Name = "txtAddress";
     //
     //
     //
     this.txtAddress.RootElement.StretchVertically = true;
     this.txtAddress.ScrollBars = System.Windows.Forms.ScrollBars.Horizontal;
     this.txtAddress.Size = new System.Drawing.Size(383, 30);
     this.txtAddress.TabIndex = 4;
     this.txtAddress.TabStop = false;
     this.txtAddress.TextChanging += new Telerik.WinControls.TextChangingEventHandler(this.txtAddress_TextChanging);
     //
     // radGroupBox2
     //
     this.radGroupBox2.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
     this.radGroupBox2.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.radGroupBox2.Controls.Add(this.btnHistory);
     this.radGroupBox2.Controls.Add(this.radLabel7);
     this.radGroupBox2.Controls.Add(this.btnDocs);
     this.radGroupBox2.Controls.Add(this.lstIns);
     this.radGroupBox2.Controls.Add(this.radGroupBox3);
     this.radGroupBox2.Controls.Add(this.btnAdd);
     this.radGroupBox2.Controls.Add(this.txtDescription);
     this.radGroupBox2.Controls.Add(this.btnNew);
     this.radGroupBox2.Controls.Add(this.radGroupBox1);
     this.radGroupBox2.Controls.Add(this.radLabel11);
     this.radGroupBox2.Controls.Add(this.txtCode);
     this.radGroupBox2.Font = new System.Drawing.Font("B Nazanin", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
     this.radGroupBox2.FooterImageIndex = -1;
     this.radGroupBox2.FooterImageKey = "";
     this.radGroupBox2.HeaderImageIndex = -1;
     this.radGroupBox2.HeaderImageKey = "";
     this.radGroupBox2.HeaderMargin = new System.Windows.Forms.Padding(0);
     this.radGroupBox2.HeaderText = "";
     this.radGroupBox2.Location = new System.Drawing.Point(268, 7);
     this.radGroupBox2.Name = "radGroupBox2";
     this.radGroupBox2.Padding = new System.Windows.Forms.Padding(2, 18, 2, 2);
     this.radGroupBox2.Size = new System.Drawing.Size(730, 564);
     this.radGroupBox2.TabIndex = 0;
     //
     // btnHistory
     //
     this.btnHistory.Font = new System.Drawing.Font("B Nazanin", 10.5F, System.Drawing.FontStyle.Bold);
     this.btnHistory.Location = new System.Drawing.Point(10, 11);
     this.btnHistory.Name = "btnHistory";
     this.btnHistory.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.btnHistory.Size = new System.Drawing.Size(110, 35);
     this.btnHistory.TabIndex = 2;
     this.btnHistory.Text = "سابقه بیمار   ";
     this.btnHistory.TextAlignment = System.Drawing.ContentAlignment.MiddleRight;
     this.btnHistory.Click += new System.EventHandler(this.radButton2_Click);
     //
     // btnDocs
     //
     this.btnDocs.Font = new System.Drawing.Font("B Nazanin", 10.5F, System.Drawing.FontStyle.Bold);
     this.btnDocs.Location = new System.Drawing.Point(126, 11);
     this.btnDocs.Name = "btnDocs";
     this.btnDocs.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.btnDocs.Size = new System.Drawing.Size(110, 35);
     this.btnDocs.TabIndex = 1;
     this.btnDocs.Text = "اسناد بیمار   ";
     this.btnDocs.TextAlignment = System.Drawing.ContentAlignment.MiddleRight;
     this.btnDocs.Click += new System.EventHandler(this.radButton1_Click);
     //
     // radGroupBox3
     //
     this.radGroupBox3.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
     this.radGroupBox3.Anchor = System.Windows.Forms.AnchorStyles.Top;
     this.radGroupBox3.Controls.Add(this.radLabel4);
     this.radGroupBox3.Controls.Add(this.radCheckBox14);
     this.radGroupBox3.Controls.Add(this.dpBirthDate);
     this.radGroupBox3.Controls.Add(this.radTextBox2);
     this.radGroupBox3.Controls.Add(this.radTextBox1);
     this.radGroupBox3.Controls.Add(this.txtFirstName);
     this.radGroupBox3.Controls.Add(this.radTextBox3);
     this.radGroupBox3.Controls.Add(this.radLabel5);
     this.radGroupBox3.Controls.Add(this.radLabel3);
     this.radGroupBox3.Controls.Add(this.txtAddress);
     this.radGroupBox3.Controls.Add(this.txtPhone1);
     this.radGroupBox3.Controls.Add(this.radLabel1);
     this.radGroupBox3.Controls.Add(this.txtPhone2);
     this.radGroupBox3.Controls.Add(this.txtLastName);
     this.radGroupBox3.Controls.Add(this.txtAge);
     this.radGroupBox3.Controls.Add(this.radLabel2);
     this.radGroupBox3.Controls.Add(this.lblAge);
     this.radGroupBox3.Controls.Add(this.radLabel8);
     this.radGroupBox3.Controls.Add(this.radLabel9);
     this.radGroupBox3.Controls.Add(this.radLabel10);
     this.radGroupBox3.Controls.Add(this.radLabel12);
     this.radGroupBox3.Font = new System.Drawing.Font("B Titr", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
     this.radGroupBox3.FooterImageIndex = -1;
     this.radGroupBox3.FooterImageKey = "";
     this.radGroupBox3.HeaderImageIndex = -1;
     this.radGroupBox3.HeaderImageKey = "";
     this.radGroupBox3.HeaderMargin = new System.Windows.Forms.Padding(0);
     this.radGroupBox3.HeaderText = "مشخصات بیمار";
     this.radGroupBox3.Location = new System.Drawing.Point(5, 42);
     this.radGroupBox3.Name = "radGroupBox3";
     this.radGroupBox3.Padding = new System.Windows.Forms.Padding(2, 18, 2, 2);
     this.radGroupBox3.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
     this.radGroupBox3.Size = new System.Drawing.Size(715, 159);
     this.radGroupBox3.TabIndex = 3;
     this.radGroupBox3.Text = "مشخصات بیمار";
     //
     // radLabel4
     //
     this.radLabel4.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.radLabel4.Font = new System.Drawing.Font("B Koodak", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
     this.radLabel4.Location = new System.Drawing.Point(417, 57);
     this.radLabel4.Name = "radLabel4";
     this.radLabel4.Size = new System.Drawing.Size(39, 30);
     this.radLabel4.TabIndex = 53;
     this.radLabel4.Text = "شغل :";
     this.radLabel4.TextAlignment = System.Drawing.ContentAlignment.TopRight;
     //
     // radCheckBox14
     //
     this.radCheckBox14.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.radCheckBox14.DataBindings.Add(new System.Windows.Forms.Binding("Checked", this.patientBindingSource, "IsChild", true));
     this.radCheckBox14.Font = new System.Drawing.Font("B Koodak", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
     this.radCheckBox14.Location = new System.Drawing.Point(8, 122);
     this.radCheckBox14.Name = "radCheckBox14";
     this.radCheckBox14.Size = new System.Drawing.Size(168, 30);
     this.radCheckBox14.TabIndex = 9;
     this.radCheckBox14.Text = "بیمار در گروه اطفال می باشد";
     //
     // radTextBox2
     //
     this.radTextBox2.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.radTextBox2.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.patientBindingSource, "Introducer", true));
     this.radTextBox2.Font = new System.Drawing.Font("B Nazanin", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
     this.radTextBox2.Location = new System.Drawing.Point(498, 57);
     this.radTextBox2.Name = "radTextBox2";
     this.radTextBox2.Size = new System.Drawing.Size(147, 28);
     this.radTextBox2.TabIndex = 2;
     this.radTextBox2.TabStop = false;
     this.radTextBox2.TextChanging += new Telerik.WinControls.TextChangingEventHandler(this.txtFirstName_TextChanging);
     //
     // radTextBox1
     //
     this.radTextBox1.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.radTextBox1.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.patientBindingSource, "WorkNumber", true));
     this.radTextBox1.Font = new System.Drawing.Font("B Nazanin", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
     this.radTextBox1.Location = new System.Drawing.Point(10, 88);
     this.radTextBox1.MaxLength = 15;
     this.radTextBox1.Name = "radTextBox1";
     this.radTextBox1.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.radTextBox1.Size = new System.Drawing.Size(166, 28);
     this.radTextBox1.TabIndex = 7;
     this.radTextBox1.TabStop = false;
     this.radTextBox1.TextChanging += new Telerik.WinControls.TextChangingEventHandler(this.txtPhone1_TextChanging);
     //
     // radTextBox3
     //
     this.radTextBox3.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.radTextBox3.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.patientBindingSource, "Job", true));
     this.radTextBox3.Font = new System.Drawing.Font("B Nazanin", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
     this.radTextBox3.Location = new System.Drawing.Point(264, 57);
     this.radTextBox3.Name = "radTextBox3";
     this.radTextBox3.Size = new System.Drawing.Size(150, 28);
     this.radTextBox3.TabIndex = 3;
     this.radTextBox3.TabStop = false;
     this.radTextBox3.TextChanging += new Telerik.WinControls.TextChangingEventHandler(this.txtFirstName_TextChanging);
     //
     // radLabel5
     //
     this.radLabel5.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.radLabel5.Font = new System.Drawing.Font("B Koodak", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
     this.radLabel5.Location = new System.Drawing.Point(649, 57);
     this.radLabel5.Name = "radLabel5";
     this.radLabel5.Size = new System.Drawing.Size(46, 30);
     this.radLabel5.TabIndex = 52;
     this.radLabel5.Text = "معرف :";
     this.radLabel5.TextAlignment = System.Drawing.ContentAlignment.TopRight;
     //
     // radLabel3
     //
     this.radLabel3.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.radLabel3.Font = new System.Drawing.Font("B Koodak", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
     this.radLabel3.Location = new System.Drawing.Point(177, 89);
     this.radLabel3.Name = "radLabel3";
     this.radLabel3.Size = new System.Drawing.Size(85, 30);
     this.radLabel3.TabIndex = 45;
     this.radLabel3.Text = "تلفن محل کار :";
     this.radLabel3.TextAlignment = System.Drawing.ContentAlignment.TopRight;
     //
     // FormDefinePatient
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(1000, 622);
     this.Controls.Add(this.btnSave);
     this.Controls.Add(this.radGroupBox2);
     this.Controls.Add(this.btnCancel);
     this.Controls.Add(this.patientListGroupBox);
     this.Font = new System.Drawing.Font("B Nazanin", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
     this.Margin = new System.Windows.Forms.Padding(4);
     this.MinimumSize = new System.Drawing.Size(1008, 540);
     this.Name = "FormDefinePatient";
     //
     //
     //
     this.RootElement.ApplyShapeToControl = true;
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "بیمار";
     this.ThemeName = "ControlDefault";
     this.WindowState = System.Windows.Forms.FormWindowState.Maximized;
     ((System.ComponentModel.ISupportInitialize)(this.patientListGroupBox)).EndInit();
     this.patientListGroupBox.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.filteringPanel)).EndInit();
     this.filteringPanel.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.grdPatient.MasterTemplate)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.grdPatient)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.btnSave)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.btnCancel)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lstIns.MasterTemplate)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lstIns)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel11)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.patientBindingSource)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtPhone1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtPhone2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtAge)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lblAge)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.btnAdd)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.btnNew)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtCode)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel12)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radGroupBox1)).EndInit();
     this.radGroupBox1.ResumeLayout(false);
     this.radGroupBox1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.radCheckBox1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel6)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel13)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radCheckBox12)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radCheckBox11)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radCheckBox13)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radCheckBox8)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radTextBox4)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radCheckBox5)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radTextBox5)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radCheckBox7)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radCheckBox3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radCheckBox4)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radCheckBox9)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radCheckBox10)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radCheckBox6)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radCheckBox2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.patientHepatitCheckBox)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.patientPregnancyCheckBox)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel10)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel9)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel8)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel7)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtLastName)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtFirstName)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtDescription)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtAddress)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radGroupBox2)).EndInit();
     this.radGroupBox2.ResumeLayout(false);
     this.radGroupBox2.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.btnHistory)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.btnDocs)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radGroupBox3)).EndInit();
     this.radGroupBox3.ResumeLayout(false);
     this.radGroupBox3.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel4)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radCheckBox14)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radTextBox2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radTextBox1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radTextBox3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel5)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this)).EndInit();
     this.ResumeLayout(false);
 }
コード例 #33
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();
     Telerik.WinControls.UI.GridViewTextBoxColumn  gridViewTextBoxColumn7  = new Telerik.WinControls.UI.GridViewTextBoxColumn();
     Telerik.WinControls.UI.GridViewTextBoxColumn  gridViewTextBoxColumn8  = new Telerik.WinControls.UI.GridViewTextBoxColumn();
     Telerik.WinControls.UI.GridViewDecimalColumn  gridViewDecimalColumn5  = new Telerik.WinControls.UI.GridViewDecimalColumn();
     Telerik.WinControls.UI.GridViewDecimalColumn  gridViewDecimalColumn6  = new Telerik.WinControls.UI.GridViewDecimalColumn();
     Telerik.WinControls.UI.GridViewTextBoxColumn  gridViewTextBoxColumn9  = new Telerik.WinControls.UI.GridViewTextBoxColumn();
     Telerik.WinControls.UI.GridViewCheckBoxColumn gridViewCheckBoxColumn3 = new Telerik.WinControls.UI.GridViewCheckBoxColumn();
     Telerik.WinControls.UI.TableViewDefinition    tableViewDefinition3    = new Telerik.WinControls.UI.TableViewDefinition();
     this.visualStudio2012LightTheme1 = new Telerik.WinControls.Themes.VisualStudio2012LightTheme();
     this.tableLayoutPanel1           = new System.Windows.Forms.TableLayoutPanel();
     this.btCancelar                 = new Telerik.WinControls.UI.RadButton();
     this.btImprimir                 = new Telerik.WinControls.UI.RadButton();
     this.btGuardar                  = new Telerik.WinControls.UI.RadButton();
     this.radGroupBox1               = new Telerik.WinControls.UI.RadGroupBox();
     this.dataPropietario            = new Telerik.WinControls.UI.RadGridView();
     this.radPanel1                  = new Telerik.WinControls.UI.RadPanel();
     this.cbbPropietario             = new Negocios.Componentes.CbbPersonal();
     this.txtObservacion             = new Negocios.Componentes.TextPersonal();
     this.txtCapacidad               = new Negocios.Componentes.TextPersonal();
     this.txtPlaca                   = new Negocios.Componentes.TextPersonal();
     this.txtDescripcion             = new Negocios.Componentes.TextPersonal();
     this.chEstado                   = new Telerik.WinControls.UI.RadToggleSwitch();
     this.radLabel5                  = new Telerik.WinControls.UI.RadLabel();
     this.radLabel3                  = new Telerik.WinControls.UI.RadLabel();
     this.radLabel2                  = new Telerik.WinControls.UI.RadLabel();
     this.radSeparator1              = new Telerik.WinControls.UI.RadSeparator();
     this.radLabel1                  = new Telerik.WinControls.UI.RadLabel();
     this.errorProvider1             = new System.Windows.Forms.ErrorProvider(this.components);
     this.despachoDataSet            = new Despacho.DespachoDataSet();
     this.vistaVehiculoBindingSource = new System.Windows.Forms.BindingSource(this.components);
     this.vistaVehiculoTableAdapter  = new Despacho.DespachoDataSetTableAdapters.VistaVehiculoTableAdapter();
     this.tableLayoutPanel1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.btCancelar)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.btImprimir)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.btGuardar)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radGroupBox1)).BeginInit();
     this.radGroupBox1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dataPropietario)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dataPropietario.MasterTemplate)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radPanel1)).BeginInit();
     this.radPanel1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.cbbPropietario)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtObservacion)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtCapacidad)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtPlaca)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtDescripcion)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.chEstado)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel5)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radSeparator1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.errorProvider1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.despachoDataSet)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.vistaVehiculoBindingSource)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
     this.SuspendLayout();
     //
     // tableLayoutPanel1
     //
     this.tableLayoutPanel1.ColumnCount = 1;
     this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F));
     this.tableLayoutPanel1.Controls.Add(this.btCancelar, 0, 2);
     this.tableLayoutPanel1.Controls.Add(this.btImprimir, 0, 1);
     this.tableLayoutPanel1.Controls.Add(this.btGuardar, 0, 0);
     this.tableLayoutPanel1.Location = new System.Drawing.Point(547, 16);
     this.tableLayoutPanel1.Name     = "tableLayoutPanel1";
     this.tableLayoutPanel1.RowCount = 3;
     this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 33.33333F));
     this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 33.33333F));
     this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 33.33333F));
     this.tableLayoutPanel1.Size     = new System.Drawing.Size(146, 186);
     this.tableLayoutPanel1.TabIndex = 11;
     //
     // btCancelar
     //
     this.btCancelar.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     this.btCancelar.Dock         = System.Windows.Forms.DockStyle.Fill;
     this.btCancelar.Location     = new System.Drawing.Point(3, 127);
     this.btCancelar.Name         = "btCancelar";
     this.btCancelar.Size         = new System.Drawing.Size(140, 56);
     this.btCancelar.TabIndex     = 2;
     this.btCancelar.Text         = "Cancelar";
     this.btCancelar.ThemeName    = "VisualStudio2012Light";
     //
     // btImprimir
     //
     this.btImprimir.Dock      = System.Windows.Forms.DockStyle.Fill;
     this.btImprimir.Location  = new System.Drawing.Point(3, 65);
     this.btImprimir.Name      = "btImprimir";
     this.btImprimir.Size      = new System.Drawing.Size(140, 56);
     this.btImprimir.TabIndex  = 1;
     this.btImprimir.Text      = "Imprimir";
     this.btImprimir.ThemeName = "VisualStudio2012Light";
     //
     // btGuardar
     //
     this.btGuardar.Dock      = System.Windows.Forms.DockStyle.Fill;
     this.btGuardar.Location  = new System.Drawing.Point(3, 3);
     this.btGuardar.Name      = "btGuardar";
     this.btGuardar.Size      = new System.Drawing.Size(140, 56);
     this.btGuardar.TabIndex  = 0;
     this.btGuardar.Text      = "Guardar";
     this.btGuardar.ThemeName = "VisualStudio2012Light";
     this.btGuardar.Click    += new System.EventHandler(this.btGuardar_Click);
     //
     // radGroupBox1
     //
     this.radGroupBox1.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
     this.radGroupBox1.Controls.Add(this.dataPropietario);
     this.radGroupBox1.Font       = new System.Drawing.Font("Segoe UI", 10F);
     this.radGroupBox1.HeaderText = "Lista de Vehiculos";
     this.radGroupBox1.Location   = new System.Drawing.Point(12, 218);
     this.radGroupBox1.Name       = "radGroupBox1";
     this.radGroupBox1.Size       = new System.Drawing.Size(681, 362);
     this.radGroupBox1.TabIndex   = 10;
     this.radGroupBox1.Text       = "Lista de Vehiculos";
     this.radGroupBox1.ThemeName  = "VisualStudio2012Light";
     //
     // dataPropietario
     //
     this.dataPropietario.BackColor         = System.Drawing.Color.FromArgb(((int)(((byte)(239)))), ((int)(((byte)(239)))), ((int)(((byte)(242)))));
     this.dataPropietario.Cursor            = System.Windows.Forms.Cursors.Default;
     this.dataPropietario.Dock              = System.Windows.Forms.DockStyle.Fill;
     this.dataPropietario.EnableHotTracking = false;
     this.dataPropietario.Font              = new System.Drawing.Font("Segoe UI", 10F);
     this.dataPropietario.ForeColor         = System.Drawing.SystemColors.ControlText;
     this.dataPropietario.ImeMode           = System.Windows.Forms.ImeMode.NoControl;
     this.dataPropietario.Location          = new System.Drawing.Point(2, 18);
     //
     //
     //
     this.dataPropietario.MasterTemplate.AllowAddNewRow      = false;
     this.dataPropietario.MasterTemplate.AllowColumnChooser  = false;
     this.dataPropietario.MasterTemplate.AllowColumnReorder  = false;
     this.dataPropietario.MasterTemplate.AutoSizeColumnsMode = Telerik.WinControls.UI.GridViewAutoSizeColumnsMode.Fill;
     gridViewTextBoxColumn7.EnableExpressionEditor           = false;
     gridViewTextBoxColumn7.FieldName               = "Placa";
     gridViewTextBoxColumn7.HeaderText              = "Placa";
     gridViewTextBoxColumn7.IsAutoGenerated         = true;
     gridViewTextBoxColumn7.Name                    = "Placa";
     gridViewTextBoxColumn7.Width                   = 136;
     gridViewTextBoxColumn8.EnableExpressionEditor  = false;
     gridViewTextBoxColumn8.FieldName               = "Descripcion";
     gridViewTextBoxColumn8.HeaderText              = "Descripcion";
     gridViewTextBoxColumn8.IsAutoGenerated         = true;
     gridViewTextBoxColumn8.Name                    = "Descripcion";
     gridViewTextBoxColumn8.Width                   = 136;
     gridViewDecimalColumn5.DataType                = typeof(double);
     gridViewDecimalColumn5.EnableExpressionEditor  = false;
     gridViewDecimalColumn5.FieldName               = "Capacidad";
     gridViewDecimalColumn5.HeaderText              = "Capacidad";
     gridViewDecimalColumn5.IsAutoGenerated         = true;
     gridViewDecimalColumn5.Name                    = "Capacidad";
     gridViewDecimalColumn5.Width                   = 136;
     gridViewDecimalColumn6.DataType                = typeof(int);
     gridViewDecimalColumn6.EnableExpressionEditor  = false;
     gridViewDecimalColumn6.FieldName               = "IdPropietario";
     gridViewDecimalColumn6.HeaderText              = "IdPropietario";
     gridViewDecimalColumn6.IsAutoGenerated         = true;
     gridViewDecimalColumn6.IsVisible               = false;
     gridViewDecimalColumn6.Name                    = "IdPropietario";
     gridViewDecimalColumn6.Width                   = 101;
     gridViewTextBoxColumn9.EnableExpressionEditor  = false;
     gridViewTextBoxColumn9.FieldName               = "Propietario";
     gridViewTextBoxColumn9.HeaderText              = "Propietario";
     gridViewTextBoxColumn9.IsAutoGenerated         = true;
     gridViewTextBoxColumn9.Name                    = "Propietario";
     gridViewTextBoxColumn9.ReadOnly                = true;
     gridViewTextBoxColumn9.Width                   = 168;
     gridViewCheckBoxColumn3.EnableExpressionEditor = false;
     gridViewCheckBoxColumn3.FieldName              = "Estado";
     gridViewCheckBoxColumn3.HeaderText             = "Estado";
     gridViewCheckBoxColumn3.IsAutoGenerated        = true;
     gridViewCheckBoxColumn3.MinWidth               = 20;
     gridViewCheckBoxColumn3.Name                   = "Estado";
     gridViewCheckBoxColumn3.Width                  = 106;
     this.dataPropietario.MasterTemplate.Columns.AddRange(new Telerik.WinControls.UI.GridViewDataColumn[] {
         gridViewTextBoxColumn7,
         gridViewTextBoxColumn8,
         gridViewDecimalColumn5,
         gridViewDecimalColumn6,
         gridViewTextBoxColumn9,
         gridViewCheckBoxColumn3
     });
     this.dataPropietario.MasterTemplate.DataSource = this.vistaVehiculoBindingSource;
     this.dataPropietario.MasterTemplate.EnableAlternatingRowColor = true;
     this.dataPropietario.MasterTemplate.EnableGrouping            = false;
     this.dataPropietario.MasterTemplate.EnableSorting             = false;
     this.dataPropietario.MasterTemplate.ShowRowHeaderColumn       = false;
     this.dataPropietario.MasterTemplate.ViewDefinition            = tableViewDefinition3;
     this.dataPropietario.Name        = "dataPropietario";
     this.dataPropietario.ReadOnly    = true;
     this.dataPropietario.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.dataPropietario.Size        = new System.Drawing.Size(677, 342);
     this.dataPropietario.TabIndex    = 0;
     this.dataPropietario.ThemeName   = "VisualStudio2012Light";
     //
     // radPanel1
     //
     this.radPanel1.Controls.Add(this.cbbPropietario);
     this.radPanel1.Controls.Add(this.txtObservacion);
     this.radPanel1.Controls.Add(this.txtCapacidad);
     this.radPanel1.Controls.Add(this.txtPlaca);
     this.radPanel1.Controls.Add(this.txtDescripcion);
     this.radPanel1.Controls.Add(this.chEstado);
     this.radPanel1.Controls.Add(this.radLabel5);
     this.radPanel1.Controls.Add(this.radLabel3);
     this.radPanel1.Controls.Add(this.radLabel2);
     this.radPanel1.Controls.Add(this.radSeparator1);
     this.radPanel1.Controls.Add(this.radLabel1);
     this.radPanel1.Location  = new System.Drawing.Point(12, 16);
     this.radPanel1.Name      = "radPanel1";
     this.radPanel1.Size      = new System.Drawing.Size(528, 186);
     this.radPanel1.TabIndex  = 9;
     this.radPanel1.ThemeName = "VisualStudio2012Light";
     //
     // cbbPropietario
     //
     this.cbbPropietario.Correo        = false;
     this.cbbPropietario.DisplayMember = "Descripcion";
     this.cbbPropietario.Font          = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.cbbPropietario.Limpiar       = true;
     this.cbbPropietario.Location      = new System.Drawing.Point(390, 54);
     this.cbbPropietario.Name          = "cbbPropietario";
     this.cbbPropietario.Size          = new System.Drawing.Size(125, 25);
     this.cbbPropietario.TabIndex      = 6;
     this.cbbPropietario.ThemeName     = "VisualStudio2012Light";
     this.cbbPropietario.Validar       = true;
     this.cbbPropietario.ValueMember   = "IdTipoTelefono";
     //
     // txtObservacion
     //
     this.txtObservacion.Correo    = false;
     this.txtObservacion.Font      = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtObservacion.Limpiar   = true;
     this.txtObservacion.Location  = new System.Drawing.Point(3, 114);
     this.txtObservacion.Multiline = true;
     this.txtObservacion.Name      = "txtObservacion";
     this.txtObservacion.NullText  = "Observación";
     //
     //
     //
     this.txtObservacion.RootElement.StretchVertically = true;
     this.txtObservacion.Size      = new System.Drawing.Size(209, 55);
     this.txtObservacion.TabIndex  = 5;
     this.txtObservacion.ThemeName = "VisualStudio2012Light";
     this.txtObservacion.Validar   = false;
     //
     // txtCapacidad
     //
     this.txtCapacidad.Correo    = false;
     this.txtCapacidad.Font      = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtCapacidad.Limpiar   = true;
     this.txtCapacidad.Location  = new System.Drawing.Point(87, 84);
     this.txtCapacidad.Name      = "txtCapacidad";
     this.txtCapacidad.Size      = new System.Drawing.Size(125, 24);
     this.txtCapacidad.TabIndex  = 5;
     this.txtCapacidad.ThemeName = "VisualStudio2012Light";
     this.txtCapacidad.Validar   = true;
     //
     // txtPlaca
     //
     this.txtPlaca.Correo    = false;
     this.txtPlaca.Font      = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtPlaca.Limpiar   = true;
     this.txtPlaca.Location  = new System.Drawing.Point(57, 12);
     this.txtPlaca.Name      = "txtPlaca";
     this.txtPlaca.Size      = new System.Drawing.Size(82, 24);
     this.txtPlaca.TabIndex  = 5;
     this.txtPlaca.ThemeName = "VisualStudio2012Light";
     this.txtPlaca.Validar   = true;
     //
     // txtDescripcion
     //
     this.txtDescripcion.Correo    = false;
     this.txtDescripcion.Font      = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtDescripcion.Limpiar   = true;
     this.txtDescripcion.Location  = new System.Drawing.Point(87, 54);
     this.txtDescripcion.Name      = "txtDescripcion";
     this.txtDescripcion.Size      = new System.Drawing.Size(125, 24);
     this.txtDescripcion.TabIndex  = 5;
     this.txtDescripcion.ThemeName = "VisualStudio2012Light";
     this.txtDescripcion.Validar   = true;
     //
     // chEstado
     //
     this.chEstado.Location      = new System.Drawing.Point(429, 89);
     this.chEstado.Name          = "chEstado";
     this.chEstado.OffText       = "Inactivo";
     this.chEstado.OnText        = "Activo";
     this.chEstado.Size          = new System.Drawing.Size(86, 20);
     this.chEstado.TabIndex      = 4;
     this.chEstado.ThemeName     = "VisualStudio2012Light";
     this.chEstado.ThumbTickness = 15;
     //
     // radLabel5
     //
     this.radLabel5.Font     = new System.Drawing.Font("Segoe UI", 10F);
     this.radLabel5.Location = new System.Drawing.Point(310, 58);
     this.radLabel5.Name     = "radLabel5";
     this.radLabel5.Size     = new System.Drawing.Size(74, 21);
     this.radLabel5.TabIndex = 1;
     this.radLabel5.Text     = "Propietario";
     //
     // radLabel3
     //
     this.radLabel3.Font     = new System.Drawing.Font("Segoe UI", 10F);
     this.radLabel3.Location = new System.Drawing.Point(11, 88);
     this.radLabel3.Name     = "radLabel3";
     this.radLabel3.Size     = new System.Drawing.Size(70, 21);
     this.radLabel3.TabIndex = 1;
     this.radLabel3.Text     = "Capacidad";
     //
     // radLabel2
     //
     this.radLabel2.Font     = new System.Drawing.Font("Segoe UI", 10F);
     this.radLabel2.Location = new System.Drawing.Point(3, 58);
     this.radLabel2.Name     = "radLabel2";
     this.radLabel2.Size     = new System.Drawing.Size(78, 21);
     this.radLabel2.TabIndex = 1;
     this.radLabel2.Text     = "Descripción";
     //
     // radSeparator1
     //
     this.radSeparator1.Location  = new System.Drawing.Point(3, 42);
     this.radSeparator1.Name      = "radSeparator1";
     this.radSeparator1.Size      = new System.Drawing.Size(522, 10);
     this.radSeparator1.TabIndex  = 2;
     this.radSeparator1.ThemeName = "VisualStudio2012Light";
     //
     // radLabel1
     //
     this.radLabel1.Font      = new System.Drawing.Font("Segoe UI", 10F);
     this.radLabel1.Location  = new System.Drawing.Point(13, 15);
     this.radLabel1.Name      = "radLabel1";
     this.radLabel1.Size      = new System.Drawing.Size(38, 21);
     this.radLabel1.TabIndex  = 1;
     this.radLabel1.Text      = "Placa";
     this.radLabel1.ThemeName = "VisualStudio2012Light";
     //
     // errorProvider1
     //
     this.errorProvider1.ContainerControl = this;
     //
     // despachoDataSet
     //
     this.despachoDataSet.DataSetName             = "DespachoDataSet";
     this.despachoDataSet.SchemaSerializationMode = System.Data.SchemaSerializationMode.IncludeSchema;
     //
     // vistaVehiculoBindingSource
     //
     this.vistaVehiculoBindingSource.DataMember = "VistaVehiculo";
     this.vistaVehiculoBindingSource.DataSource = this.despachoDataSet;
     //
     // vistaVehiculoTableAdapter
     //
     this.vistaVehiculoTableAdapter.ClearBeforeFill = true;
     //
     // Vehiculo
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize          = new System.Drawing.Size(705, 597);
     this.Controls.Add(this.tableLayoutPanel1);
     this.Controls.Add(this.radGroupBox1);
     this.Controls.Add(this.radPanel1);
     this.Name = "Vehiculo";
     //
     //
     //
     this.RootElement.ApplyShapeToControl = true;
     this.Text      = "Vehiculo";
     this.ThemeName = "VisualStudio2012Light";
     this.Load     += new System.EventHandler(this.Vehiculo_Load);
     this.tableLayoutPanel1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.btCancelar)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.btImprimir)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.btGuardar)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radGroupBox1)).EndInit();
     this.radGroupBox1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.dataPropietario.MasterTemplate)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dataPropietario)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radPanel1)).EndInit();
     this.radPanel1.ResumeLayout(false);
     this.radPanel1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.cbbPropietario)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtObservacion)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtCapacidad)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtPlaca)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtDescripcion)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chEstado)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel5)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radSeparator1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.errorProvider1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.despachoDataSet)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.vistaVehiculoBindingSource)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this)).EndInit();
     this.ResumeLayout(false);
 }
コード例 #34
0
ファイル: Pay_CheckPay.Designer.cs プロジェクト: SUPCDEV/HROS
        /// <summary>
        /// Required method for Designer support - do not modify
        /// the contents of this method with the code editor.
        /// </summary>
        private void InitializeComponent()
        {
            Telerik.WinControls.UI.GridViewCheckBoxColumn gridViewCheckBoxColumn1 = new Telerik.WinControls.UI.GridViewCheckBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn1 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn2 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn3 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn4 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn5 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            this.radSplitContainer1 = new Telerik.WinControls.UI.RadSplitContainer();
            this.splitPanel1 = new Telerik.WinControls.UI.SplitPanel();
            this.radGroupBox2 = new Telerik.WinControls.UI.RadGroupBox();
            this.rgv_GetData = new Telerik.WinControls.UI.RadGridView();
            this.radGroupBox1 = new Telerik.WinControls.UI.RadGroupBox();
            this.rdb_DocId = new Telerik.WinControls.UI.RadRadioButton();
            this.txtPay = new Telerik.WinControls.UI.RadTextBox();
            this.txtDate = new Telerik.WinControls.UI.RadTextBox();
            this.txtDocNo = new Telerik.WinControls.UI.RadTextBox();
            this.txtEmplId = new Telerik.WinControls.UI.RadTextBox();
            this.radLabel1 = new Telerik.WinControls.UI.RadLabel();
            this.dt_End = new Telerik.WinControls.UI.RadDateTimePicker();
            this.dt_Start = new Telerik.WinControls.UI.RadDateTimePicker();
            this.rdb_EmplId = new Telerik.WinControls.UI.RadRadioButton();
            this.rdb_Date = new Telerik.WinControls.UI.RadRadioButton();
            this.splitPanel4 = new Telerik.WinControls.UI.SplitPanel();
            this.btn_Search = new Telerik.WinControls.UI.RadButton();
            this.btn_Confirm = new Telerik.WinControls.UI.RadButton();
            this.printDialog1 = new System.Windows.Forms.PrintDialog();
            this.printDocument1 = new System.Drawing.Printing.PrintDocument();
            ((System.ComponentModel.ISupportInitialize)(this.radSplitContainer1)).BeginInit();
            this.radSplitContainer1.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.splitPanel1)).BeginInit();
            this.splitPanel1.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.radGroupBox2)).BeginInit();
            this.radGroupBox2.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.rgv_GetData)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.rgv_GetData.MasterTemplate)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radGroupBox1)).BeginInit();
            this.radGroupBox1.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.rdb_DocId)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.txtPay)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.txtDate)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.txtDocNo)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.txtEmplId)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.dt_End)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.dt_Start)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.rdb_EmplId)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.rdb_Date)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.splitPanel4)).BeginInit();
            this.splitPanel4.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.btn_Search)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.btn_Confirm)).BeginInit();
            this.SuspendLayout();
            // 
            // radSplitContainer1
            // 
            this.radSplitContainer1.Controls.Add(this.splitPanel1);
            this.radSplitContainer1.Controls.Add(this.splitPanel4);
            this.radSplitContainer1.Dock = System.Windows.Forms.DockStyle.Fill;
            this.radSplitContainer1.Location = new System.Drawing.Point(0, 0);
            this.radSplitContainer1.Name = "radSplitContainer1";
            // 
            // 
            // 
            this.radSplitContainer1.RootElement.MinSize = new System.Drawing.Size(25, 25);
            this.radSplitContainer1.Size = new System.Drawing.Size(784, 561);
            this.radSplitContainer1.SplitterWidth = 4;
            this.radSplitContainer1.TabIndex = 0;
            this.radSplitContainer1.TabStop = false;
            this.radSplitContainer1.Text = "radSplitContainer1";
            // 
            // splitPanel1
            // 
            this.splitPanel1.Controls.Add(this.radGroupBox2);
            this.splitPanel1.Controls.Add(this.radGroupBox1);
            this.splitPanel1.Location = new System.Drawing.Point(0, 0);
            this.splitPanel1.Name = "splitPanel1";
            // 
            // 
            // 
            this.splitPanel1.RootElement.MinSize = new System.Drawing.Size(25, 25);
            this.splitPanel1.Size = new System.Drawing.Size(641, 561);
            this.splitPanel1.SizeInfo.AutoSizeScale = new System.Drawing.SizeF(0.3223684F, -0.2140187F);
            this.splitPanel1.SizeInfo.SplitterCorrection = new System.Drawing.Size(242, -115);
            this.splitPanel1.TabIndex = 0;
            this.splitPanel1.TabStop = false;
            this.splitPanel1.Text = "splitPanel1";
            // 
            // radGroupBox2
            // 
            this.radGroupBox2.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
            this.radGroupBox2.Controls.Add(this.rgv_GetData);
            this.radGroupBox2.Dock = System.Windows.Forms.DockStyle.Fill;
            this.radGroupBox2.HeaderText = "ตารางแสดงข้อมูล";
            this.radGroupBox2.Location = new System.Drawing.Point(0, 164);
            this.radGroupBox2.Name = "radGroupBox2";
            // 
            // 
            // 
            this.radGroupBox2.RootElement.Padding = new System.Windows.Forms.Padding(2, 18, 2, 2);
            this.radGroupBox2.Size = new System.Drawing.Size(641, 397);
            this.radGroupBox2.TabIndex = 1;
            this.radGroupBox2.Text = "ตารางแสดงข้อมูล";
            // 
            // rgv_GetData
            // 
            this.rgv_GetData.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(222)));
            this.rgv_GetData.Location = new System.Drawing.Point(31, 22);
            this.rgv_GetData.Margin = new System.Windows.Forms.Padding(4);
            // 
            // rgv_GetData
            // 
            gridViewCheckBoxColumn1.FormatInfo = new System.Globalization.CultureInfo("");
            gridViewCheckBoxColumn1.HeaderText = "";
            gridViewCheckBoxColumn1.Name = "CHECK";
            gridViewCheckBoxColumn1.Width = 20;
            gridViewTextBoxColumn1.FieldName = "DOCID";
            gridViewTextBoxColumn1.HeaderText = "เลขที่เอกสาร";
            gridViewTextBoxColumn1.Name = "DOCID";
            gridViewTextBoxColumn1.ReadOnly = true;
            gridViewTextBoxColumn2.FieldName = "EMPLID";
            gridViewTextBoxColumn2.HeaderText = "รหัสพนักงาน";
            gridViewTextBoxColumn2.Name = "EMPLID";
            gridViewTextBoxColumn2.ReadOnly = true;
            gridViewTextBoxColumn3.FieldName = "EMPLNAME";
            gridViewTextBoxColumn3.HeaderText = "ชื่อ-สกุล";
            gridViewTextBoxColumn3.Name = "EMPLNAME";
            gridViewTextBoxColumn3.ReadOnly = true;
            gridViewTextBoxColumn4.FieldName = "SECTIONNAME";
            gridViewTextBoxColumn4.HeaderText = "แผนก";
            gridViewTextBoxColumn4.Name = "SECTIONNAME";
            gridViewTextBoxColumn4.ReadOnly = true;
            gridViewTextBoxColumn5.FieldName = "SUPC";
            gridViewTextBoxColumn5.HeaderText = "จำนวนเงิน";
            gridViewTextBoxColumn5.Name = "SUPC";
            gridViewTextBoxColumn5.ReadOnly = true;
            gridViewTextBoxColumn5.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
            gridViewTextBoxColumn5.Width = 30;
            this.rgv_GetData.MasterTemplate.Columns.AddRange(new Telerik.WinControls.UI.GridViewDataColumn[] {
            gridViewCheckBoxColumn1,
            gridViewTextBoxColumn1,
            gridViewTextBoxColumn2,
            gridViewTextBoxColumn3,
            gridViewTextBoxColumn4,
            gridViewTextBoxColumn5});
            this.rgv_GetData.MasterTemplate.ShowGroupedColumns = true;
            this.rgv_GetData.Name = "rgv_GetData";
            this.rgv_GetData.ShowGroupPanel = false;
            this.rgv_GetData.Size = new System.Drawing.Size(431, 263);
            this.rgv_GetData.TabIndex = 1;
            this.rgv_GetData.Text = "radGridView1";
            // 
            // radGroupBox1
            // 
            this.radGroupBox1.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
            this.radGroupBox1.Controls.Add(this.rdb_DocId);
            this.radGroupBox1.Controls.Add(this.txtPay);
            this.radGroupBox1.Controls.Add(this.txtDate);
            this.radGroupBox1.Controls.Add(this.txtDocNo);
            this.radGroupBox1.Controls.Add(this.txtEmplId);
            this.radGroupBox1.Controls.Add(this.radLabel1);
            this.radGroupBox1.Controls.Add(this.dt_End);
            this.radGroupBox1.Controls.Add(this.dt_Start);
            this.radGroupBox1.Controls.Add(this.rdb_EmplId);
            this.radGroupBox1.Controls.Add(this.rdb_Date);
            this.radGroupBox1.Dock = System.Windows.Forms.DockStyle.Top;
            this.radGroupBox1.HeaderText = "ค้นหาข้อมูล";
            this.radGroupBox1.Location = new System.Drawing.Point(0, 0);
            this.radGroupBox1.Name = "radGroupBox1";
            // 
            // 
            // 
            this.radGroupBox1.RootElement.Padding = new System.Windows.Forms.Padding(2, 18, 2, 2);
            this.radGroupBox1.Size = new System.Drawing.Size(641, 164);
            this.radGroupBox1.TabIndex = 0;
            this.radGroupBox1.Text = "ค้นหาข้อมูล";
            // 
            // rdb_DocId
            // 
            this.rdb_DocId.Font = new System.Drawing.Font("Tahoma", 9.75F);
            this.rdb_DocId.Location = new System.Drawing.Point(31, 116);
            this.rdb_DocId.Name = "rdb_DocId";
            this.rdb_DocId.Size = new System.Drawing.Size(92, 19);
            this.rdb_DocId.TabIndex = 15;
            this.rdb_DocId.Text = "เลขที่เอกสาร";
            // 
            // txtPay
            // 
            this.txtPay.Font = new System.Drawing.Font("Tahoma", 9.75F);
            this.txtPay.Location = new System.Drawing.Point(176, 116);
            this.txtPay.Name = "txtPay";
            this.txtPay.ReadOnly = true;
            this.txtPay.Size = new System.Drawing.Size(28, 21);
            this.txtPay.TabIndex = 13;
            this.txtPay.TabStop = false;
            // 
            // txtDate
            // 
            this.txtDate.Font = new System.Drawing.Font("Tahoma", 9.75F);
            this.txtDate.Location = new System.Drawing.Point(210, 116);
            this.txtDate.MaxLength = 6;
            this.txtDate.Name = "txtDate";
            this.txtDate.Size = new System.Drawing.Size(53, 21);
            this.txtDate.TabIndex = 14;
            this.txtDate.TabStop = false;
            // 
            // txtDocNo
            // 
            this.txtDocNo.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.txtDocNo.Location = new System.Drawing.Point(269, 116);
            this.txtDocNo.MaxLength = 4;
            this.txtDocNo.Name = "txtDocNo";
            this.txtDocNo.Size = new System.Drawing.Size(71, 21);
            this.txtDocNo.TabIndex = 12;
            this.txtDocNo.TabStop = false;
            // 
            // txtEmplId
            // 
            this.txtEmplId.Font = new System.Drawing.Font("Tahoma", 9.75F);
            this.txtEmplId.Location = new System.Drawing.Point(176, 77);
            this.txtEmplId.Name = "txtEmplId";
            this.txtEmplId.Size = new System.Drawing.Size(164, 21);
            this.txtEmplId.TabIndex = 10;
            this.txtEmplId.TabStop = false;
            // 
            // radLabel1
            // 
            this.radLabel1.Font = new System.Drawing.Font("Tahoma", 9.75F);
            this.radLabel1.Location = new System.Drawing.Point(354, 46);
            this.radLabel1.Name = "radLabel1";
            this.radLabel1.Size = new System.Drawing.Size(34, 19);
            this.radLabel1.TabIndex = 9;
            this.radLabel1.Text = "ถึง : ";
            // 
            // dt_End
            // 
            this.dt_End.CustomFormat = "yyyy-MM-dd";
            this.dt_End.Font = new System.Drawing.Font("Tahoma", 9.75F);
            this.dt_End.Format = System.Windows.Forms.DateTimePickerFormat.Custom;
            this.dt_End.Location = new System.Drawing.Point(394, 44);
            this.dt_End.Name = "dt_End";
            this.dt_End.Size = new System.Drawing.Size(164, 21);
            this.dt_End.TabIndex = 8;
            this.dt_End.TabStop = false;
            this.dt_End.Text = "2014-10-15";
            this.dt_End.Value = new System.DateTime(2014, 10, 15, 14, 14, 42, 118);
            // 
            // dt_Start
            // 
            this.dt_Start.CustomFormat = "yyyy-MM-dd";
            this.dt_Start.Font = new System.Drawing.Font("Tahoma", 9.75F);
            this.dt_Start.Format = System.Windows.Forms.DateTimePickerFormat.Custom;
            this.dt_Start.Location = new System.Drawing.Point(176, 44);
            this.dt_Start.Name = "dt_Start";
            this.dt_Start.Size = new System.Drawing.Size(164, 21);
            this.dt_Start.TabIndex = 7;
            this.dt_Start.TabStop = false;
            this.dt_Start.Text = "2014-10-15";
            this.dt_Start.Value = new System.DateTime(2014, 10, 15, 14, 14, 35, 234);
            // 
            // rdb_EmplId
            // 
            this.rdb_EmplId.Font = new System.Drawing.Font("Tahoma", 9.75F);
            this.rdb_EmplId.Location = new System.Drawing.Point(31, 79);
            this.rdb_EmplId.Name = "rdb_EmplId";
            this.rdb_EmplId.Size = new System.Drawing.Size(91, 19);
            this.rdb_EmplId.TabIndex = 1;
            this.rdb_EmplId.Text = "รหัสพนักงาน";
            // 
            // rdb_Date
            // 
            this.rdb_Date.Location = new System.Drawing.Point(31, 44);
            this.rdb_Date.Name = "rdb_Date";
            this.rdb_Date.Size = new System.Drawing.Size(41, 18);
            this.rdb_Date.TabIndex = 0;
            this.rdb_Date.TabStop = true;
            this.rdb_Date.Text = "วันที่";
            this.rdb_Date.ToggleState = Telerik.WinControls.Enumerations.ToggleState.On;
            // 
            // splitPanel4
            // 
            this.splitPanel4.Controls.Add(this.btn_Search);
            this.splitPanel4.Controls.Add(this.btn_Confirm);
            this.splitPanel4.Location = new System.Drawing.Point(645, 0);
            this.splitPanel4.Name = "splitPanel4";
            // 
            // 
            // 
            this.splitPanel4.RootElement.MinSize = new System.Drawing.Size(25, 25);
            this.splitPanel4.Size = new System.Drawing.Size(139, 561);
            this.splitPanel4.SizeInfo.AutoSizeScale = new System.Drawing.SizeF(-0.3223684F, 0.2140187F);
            this.splitPanel4.SizeInfo.SplitterCorrection = new System.Drawing.Size(-242, 56);
            this.splitPanel4.TabIndex = 1;
            this.splitPanel4.TabStop = false;
            this.splitPanel4.Text = "splitPanel4";
            // 
            // btn_Search
            // 
            this.btn_Search.Font = new System.Drawing.Font("Tahoma", 9.75F);
            this.btn_Search.Location = new System.Drawing.Point(17, 44);
            this.btn_Search.Name = "btn_Search";
            this.btn_Search.Size = new System.Drawing.Size(110, 24);
            this.btn_Search.TabIndex = 16;
            this.btn_Search.Text = "ค้นหา";
            // 
            // btn_Confirm
            // 
            this.btn_Confirm.Location = new System.Drawing.Point(17, 91);
            this.btn_Confirm.Name = "btn_Confirm";
            this.btn_Confirm.Size = new System.Drawing.Size(110, 24);
            this.btn_Confirm.TabIndex = 17;
            this.btn_Confirm.Text = "ปริ้น";
            // 
            // printDialog1
            // 
            this.printDialog1.UseEXDialog = true;
            // 
            // printDocument1
            // 
            this.printDocument1.PrintPage += new System.Drawing.Printing.PrintPageEventHandler(this.printDocument1_PrintPage);
            // 
            // Pay_CheckPay
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.ClientSize = new System.Drawing.Size(784, 561);
            this.Controls.Add(this.radSplitContainer1);
            this.Name = "Pay_CheckPay";
            this.Text = "พริ้นบาร์โค๊ตเพื่อนำจ่าย";
           
            ((System.ComponentModel.ISupportInitialize)(this.radSplitContainer1)).EndInit();
            this.radSplitContainer1.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.splitPanel1)).EndInit();
            this.splitPanel1.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.radGroupBox2)).EndInit();
            this.radGroupBox2.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.rgv_GetData.MasterTemplate)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.rgv_GetData)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radGroupBox1)).EndInit();
            this.radGroupBox1.ResumeLayout(false);
            this.radGroupBox1.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.rdb_DocId)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.txtPay)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.txtDate)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.txtDocNo)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.txtEmplId)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.dt_End)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.dt_Start)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.rdb_EmplId)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.rdb_Date)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.splitPanel4)).EndInit();
            this.splitPanel4.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.btn_Search)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.btn_Confirm)).EndInit();
            this.ResumeLayout(false);

        }
コード例 #35
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(frm_operators));
     Telerik.WinControls.UI.GridViewTextBoxColumn   gridViewTextBoxColumn1  = new Telerik.WinControls.UI.GridViewTextBoxColumn();
     Telerik.WinControls.UI.GridViewTextBoxColumn   gridViewTextBoxColumn2  = new Telerik.WinControls.UI.GridViewTextBoxColumn();
     Telerik.WinControls.UI.GridViewTextBoxColumn   gridViewTextBoxColumn3  = new Telerik.WinControls.UI.GridViewTextBoxColumn();
     Telerik.WinControls.UI.GridViewTextBoxColumn   gridViewTextBoxColumn4  = new Telerik.WinControls.UI.GridViewTextBoxColumn();
     Telerik.WinControls.UI.GridViewCheckBoxColumn  gridViewCheckBoxColumn1 = new Telerik.WinControls.UI.GridViewCheckBoxColumn();
     Telerik.WinControls.UI.GridViewTextBoxColumn   gridViewTextBoxColumn5  = new Telerik.WinControls.UI.GridViewTextBoxColumn();
     Telerik.WinControls.UI.GridViewTextBoxColumn   gridViewTextBoxColumn6  = new Telerik.WinControls.UI.GridViewTextBoxColumn();
     Telerik.WinControls.UI.GridViewTextBoxColumn   gridViewTextBoxColumn7  = new Telerik.WinControls.UI.GridViewTextBoxColumn();
     Telerik.WinControls.UI.GridViewCheckBoxColumn  gridViewCheckBoxColumn2 = new Telerik.WinControls.UI.GridViewCheckBoxColumn();
     Telerik.WinControls.UI.GridViewTextBoxColumn   gridViewTextBoxColumn8  = new Telerik.WinControls.UI.GridViewTextBoxColumn();
     Telerik.WinControls.UI.GridViewTextBoxColumn   gridViewTextBoxColumn9  = new Telerik.WinControls.UI.GridViewTextBoxColumn();
     Telerik.WinControls.UI.GridViewTextBoxColumn   gridViewTextBoxColumn10 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
     Telerik.WinControls.UI.GridViewTextBoxColumn   gridViewTextBoxColumn11 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
     Telerik.WinControls.UI.GridViewDateTimeColumn  gridViewDateTimeColumn1 = new Telerik.WinControls.UI.GridViewDateTimeColumn();
     Telerik.WinControls.UI.GridViewCheckBoxColumn  gridViewCheckBoxColumn3 = new Telerik.WinControls.UI.GridViewCheckBoxColumn();
     Telerik.WinControls.UI.GridViewImageColumn     gridViewImageColumn1    = new Telerik.WinControls.UI.GridViewImageColumn();
     Telerik.WinControls.UI.GridViewTextBoxColumn   gridViewTextBoxColumn12 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
     Telerik.WinControls.UI.GridViewDateTimeColumn  gridViewDateTimeColumn2 = new Telerik.WinControls.UI.GridViewDateTimeColumn();
     this.radDock1 = new Telerik.WinControls.UI.Docking.RadDock();
     this.documentWindowOperators = new Telerik.WinControls.UI.Docking.DocumentWindow();
     this.radGridViewOperators    = new Telerik.WinControls.UI.RadGridView();
     this.documentContainer1      = new Telerik.WinControls.UI.Docking.DocumentContainer();
     this.documentTabStrip1       = new Telerik.WinControls.UI.Docking.DocumentTabStrip();
     this.toolTabStrip2           = new Telerik.WinControls.UI.Docking.ToolTabStrip();
     this.toolWindowProperties    = new Telerik.WinControls.UI.Docking.ToolWindow();
     this.excel = new System.Windows.Forms.Button();
     this.uC_OperatorDetailGp21 = new aorc.gatepass.UC_OperatorDetailGp2();
     this.uC_Sign1 = new aorc.gatepass.UC_Sign();
     this.commandBarRowElement1   = new Telerik.WinControls.UI.CommandBarRowElement();
     this.commandBarStripElement1 = new Telerik.WinControls.UI.CommandBarStripElement();
     this.commandBarRowElement2   = new Telerik.WinControls.UI.CommandBarRowElement();
     this.commandBarStripElement2 = new Telerik.WinControls.UI.CommandBarStripElement();
     this.commandBarRowElement3   = new Telerik.WinControls.UI.CommandBarRowElement();
     this.commandBarRowElement4   = new Telerik.WinControls.UI.CommandBarRowElement();
     this.commandBarRowElement5   = new Telerik.WinControls.UI.CommandBarRowElement();
     this.commandBarStripElement3 = new Telerik.WinControls.UI.CommandBarStripElement();
     this.commandBarButton1       = new Telerik.WinControls.UI.CommandBarButton();
     this.commandBarButton2       = new Telerik.WinControls.UI.CommandBarButton();
     this.commandBarStripElement4 = new Telerik.WinControls.UI.CommandBarStripElement();
     this.radCheckBoxElement1     = new Telerik.WinControls.UI.RadCheckBoxElement();
     this.rmiProperty             = new Telerik.WinControls.UI.RadMenuItem();
     this.rmiOperators            = new Telerik.WinControls.UI.RadMenuItem();
     ((System.ComponentModel.ISupportInitialize)(this.contextMenu)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radDock1)).BeginInit();
     this.radDock1.SuspendLayout();
     this.documentWindowOperators.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.radGridViewOperators)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radGridViewOperators.MasterTemplate)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.documentContainer1)).BeginInit();
     this.documentContainer1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.documentTabStrip1)).BeginInit();
     this.documentTabStrip1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.toolTabStrip2)).BeginInit();
     this.toolTabStrip2.SuspendLayout();
     this.toolWindowProperties.SuspendLayout();
     this.SuspendLayout();
     //
     // rmiStatus
     //
     this.rmiStatus.BackColor               = System.Drawing.SystemColors.Control;
     this.rmiStatus.Bounds                  = new System.Drawing.Rectangle(0, 0, 61, 19);
     this.rmiStatus.ForeColor               = System.Drawing.Color.Black;
     this.rmiStatus.Padding                 = new System.Windows.Forms.Padding(8, 1, 8, 1);
     this.rmiStatus.RightToLeft             = true;
     this.rmiStatus.ShowArrow               = false;
     this.rmiStatus.TextImageRelation       = System.Windows.Forms.TextImageRelation.ImageBeforeText;
     this.rmiStatus.UseDefaultDisabledPaint = false;
     //
     // rmiStatusDelete
     //
     this.rmiStatusDelete.BackColor         = System.Drawing.SystemColors.Window;
     this.rmiStatusDelete.Class             = "RadMenuItem";
     this.rmiStatusDelete.RightToLeft       = true;
     this.rmiStatusDelete.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageBeforeText;
     //
     // rmiView
     //
     this.rmiView.BackColor = System.Drawing.SystemColors.Control;
     this.rmiView.Bounds    = new System.Drawing.Rectangle(0, 0, 67, 19);
     this.rmiView.Class     = "RadMenuItem";
     this.rmiView.ForeColor = System.Drawing.Color.Black;
     this.rmiView.Items.AddRange(new Telerik.WinControls.RadItem[] {
         this.rmiProperty,
         this.rmiOperators
     });
     this.rmiView.Padding                 = new System.Windows.Forms.Padding(8, 1, 8, 1);
     this.rmiView.RightToLeft             = true;
     this.rmiView.ShowArrow               = false;
     this.rmiView.TextImageRelation       = System.Windows.Forms.TextImageRelation.ImageBeforeText;
     this.rmiView.UseDefaultDisabledPaint = false;
     //
     // radLabelElementStatus
     //
     this.radLabelElementStatus.BackColor     = System.Drawing.SystemColors.Control;
     this.radLabelElementStatus.Bounds        = new System.Drawing.Rectangle(0, 0, 974, 18);
     this.radLabelElementStatus.CanFocus      = true;
     this.radLabelElementStatus.ForeColor     = System.Drawing.Color.FromArgb(((int)(((byte)(21)))), ((int)(((byte)(66)))), ((int)(((byte)(139)))));
     this.radLabelElementStatus.RightToLeft   = true;
     this.radLabelElementStatus.SmoothingMode = System.Drawing.Drawing2D.SmoothingMode.AntiAlias;
     //
     // commandBarStripElement1MainF
     //
     this.commandBarStripElement1MainF.BackColor           = System.Drawing.Color.FromArgb(((int)(((byte)(230)))), ((int)(((byte)(240)))), ((int)(((byte)(251)))));
     this.commandBarStripElement1MainF.BackColor2          = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(235)))), ((int)(((byte)(248)))));
     this.commandBarStripElement1MainF.BackColor3          = System.Drawing.Color.FromArgb(((int)(((byte)(211)))), ((int)(((byte)(226)))), ((int)(((byte)(244)))));
     this.commandBarStripElement1MainF.BackColor4          = System.Drawing.Color.FromArgb(((int)(((byte)(211)))), ((int)(((byte)(226)))), ((int)(((byte)(244)))));
     this.commandBarStripElement1MainF.BorderBottomColor   = System.Drawing.Color.FromArgb(((int)(((byte)(211)))), ((int)(((byte)(226)))), ((int)(((byte)(244)))));
     this.commandBarStripElement1MainF.BorderBoxStyle      = Telerik.WinControls.BorderBoxStyle.OuterInnerBorders;
     this.commandBarStripElement1MainF.BorderColor         = System.Drawing.Color.FromArgb(((int)(((byte)(156)))), ((int)(((byte)(189)))), ((int)(((byte)(232)))));
     this.commandBarStripElement1MainF.BorderColor2        = System.Drawing.Color.FromArgb(((int)(((byte)(156)))), ((int)(((byte)(189)))), ((int)(((byte)(232)))));
     this.commandBarStripElement1MainF.BorderColor3        = System.Drawing.Color.FromArgb(((int)(((byte)(156)))), ((int)(((byte)(189)))), ((int)(((byte)(232)))));
     this.commandBarStripElement1MainF.BorderColor4        = System.Drawing.Color.FromArgb(((int)(((byte)(156)))), ((int)(((byte)(189)))), ((int)(((byte)(232)))));
     this.commandBarStripElement1MainF.BorderInnerColor    = System.Drawing.Color.FromArgb(((int)(((byte)(248)))), ((int)(((byte)(250)))), ((int)(((byte)(252)))));
     this.commandBarStripElement1MainF.BorderInnerColor2   = System.Drawing.Color.FromArgb(((int)(((byte)(248)))), ((int)(((byte)(250)))), ((int)(((byte)(252)))));
     this.commandBarStripElement1MainF.BorderInnerColor3   = System.Drawing.Color.FromArgb(((int)(((byte)(248)))), ((int)(((byte)(250)))), ((int)(((byte)(252)))));
     this.commandBarStripElement1MainF.BorderInnerColor4   = System.Drawing.Color.FromArgb(((int)(((byte)(248)))), ((int)(((byte)(250)))), ((int)(((byte)(252)))));
     this.commandBarStripElement1MainF.BorderLeftColor     = System.Drawing.Color.FromArgb(((int)(((byte)(211)))), ((int)(((byte)(226)))), ((int)(((byte)(244)))));
     this.commandBarStripElement1MainF.BorderRightColor    = System.Drawing.Color.FromArgb(((int)(((byte)(211)))), ((int)(((byte)(226)))), ((int)(((byte)(244)))));
     this.commandBarStripElement1MainF.BorderTopColor      = System.Drawing.Color.FromArgb(((int)(((byte)(211)))), ((int)(((byte)(226)))), ((int)(((byte)(244)))));
     this.commandBarStripElement1MainF.Bounds              = new System.Drawing.Rectangle(0, 0, 358, 55);
     this.commandBarStripElement1MainF.DesiredLocation     = ((System.Drawing.PointF)(resources.GetObject("commandBarStripElement1MainF.DesiredLocation")));
     this.commandBarStripElement1MainF.DisplayName         = "commandBarStripElement1MainF";
     this.commandBarStripElement1MainF.DrawBorder          = true;
     this.commandBarStripElement1MainF.DrawFill            = true;
     this.commandBarStripElement1MainF.DrawText            = false;
     this.commandBarStripElement1MainF.GradientPercentage2 = 0.5F;
     this.commandBarStripElement1MainF.MinSize             = new System.Drawing.Size(30, 30);
     this.commandBarStripElement1MainF.NumberOfColors      = 4;
     this.commandBarStripElement1MainF.RightToLeft         = true;
     this.commandBarStripElement1MainF.StretchHorizontally = false;
     //
     // cbbNew
     //
     this.cbbNew.Alignment           = System.Drawing.ContentAlignment.MiddleCenter;
     this.cbbNew.BackColor           = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
     this.cbbNew.BackColor2          = System.Drawing.Color.Transparent;
     this.cbbNew.BackColor3          = System.Drawing.Color.Transparent;
     this.cbbNew.BackColor4          = System.Drawing.Color.Transparent;
     this.cbbNew.BorderBoxStyle      = Telerik.WinControls.BorderBoxStyle.OuterInnerBorders;
     this.cbbNew.BorderColor         = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(255)))), ((int)(((byte)(190)))), ((int)(((byte)(106)))));
     this.cbbNew.BorderColor2        = System.Drawing.Color.FromArgb(((int)(((byte)(160)))), ((int)(((byte)(160)))), ((int)(((byte)(160)))));
     this.cbbNew.BorderColor3        = System.Drawing.Color.FromArgb(((int)(((byte)(156)))), ((int)(((byte)(189)))), ((int)(((byte)(232)))));
     this.cbbNew.BorderColor4        = System.Drawing.Color.FromArgb(((int)(((byte)(156)))), ((int)(((byte)(189)))), ((int)(((byte)(232)))));
     this.cbbNew.BorderGradientStyle = Telerik.WinControls.GradientStyles.Solid;
     this.cbbNew.BorderInnerColor    = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(254)))), ((int)(((byte)(245)))), ((int)(((byte)(195)))));
     this.cbbNew.BorderInnerColor2   = System.Drawing.Color.FromArgb(((int)(((byte)(248)))), ((int)(((byte)(250)))), ((int)(((byte)(252)))));
     this.cbbNew.BorderInnerColor3   = System.Drawing.Color.FromArgb(((int)(((byte)(248)))), ((int)(((byte)(250)))), ((int)(((byte)(252)))));
     this.cbbNew.BorderInnerColor4   = System.Drawing.Color.FromArgb(((int)(((byte)(248)))), ((int)(((byte)(250)))), ((int)(((byte)(252)))));
     this.cbbNew.BorderLeftWidth     = 3F;
     this.cbbNew.BorderWidth         = 2F;
     this.cbbNew.Bounds              = new System.Drawing.Rectangle(0, 0, 31, 51);
     this.cbbNew.DrawBorder          = true;
     this.cbbNew.DrawFill            = true;
     this.cbbNew.ForeColor           = System.Drawing.Color.Black;
     this.cbbNew.GradientPercentage  = 0.498861F;
     this.cbbNew.GradientPercentage2 = 0.5102506F;
     this.cbbNew.NumberOfColors      = 4;
     this.cbbNew.RightToLeft         = true;
     this.cbbNew.StretchHorizontally = false;
     //
     // cbbEdit
     //
     this.cbbEdit.Alignment           = System.Drawing.ContentAlignment.MiddleCenter;
     this.cbbEdit.BackColor           = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
     this.cbbEdit.BackColor2          = System.Drawing.Color.Transparent;
     this.cbbEdit.BackColor3          = System.Drawing.Color.Transparent;
     this.cbbEdit.BackColor4          = System.Drawing.Color.Transparent;
     this.cbbEdit.BorderBoxStyle      = Telerik.WinControls.BorderBoxStyle.OuterInnerBorders;
     this.cbbEdit.BorderColor         = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(255)))), ((int)(((byte)(190)))), ((int)(((byte)(106)))));
     this.cbbEdit.BorderColor2        = System.Drawing.Color.FromArgb(((int)(((byte)(160)))), ((int)(((byte)(160)))), ((int)(((byte)(160)))));
     this.cbbEdit.BorderColor3        = System.Drawing.Color.FromArgb(((int)(((byte)(156)))), ((int)(((byte)(189)))), ((int)(((byte)(232)))));
     this.cbbEdit.BorderColor4        = System.Drawing.Color.FromArgb(((int)(((byte)(156)))), ((int)(((byte)(189)))), ((int)(((byte)(232)))));
     this.cbbEdit.BorderGradientStyle = Telerik.WinControls.GradientStyles.Solid;
     this.cbbEdit.BorderInnerColor    = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(254)))), ((int)(((byte)(245)))), ((int)(((byte)(195)))));
     this.cbbEdit.BorderInnerColor2   = System.Drawing.Color.FromArgb(((int)(((byte)(248)))), ((int)(((byte)(250)))), ((int)(((byte)(252)))));
     this.cbbEdit.BorderInnerColor3   = System.Drawing.Color.FromArgb(((int)(((byte)(248)))), ((int)(((byte)(250)))), ((int)(((byte)(252)))));
     this.cbbEdit.BorderInnerColor4   = System.Drawing.Color.FromArgb(((int)(((byte)(248)))), ((int)(((byte)(250)))), ((int)(((byte)(252)))));
     this.cbbEdit.BorderLeftWidth     = 3F;
     this.cbbEdit.BorderWidth         = 2F;
     this.cbbEdit.Bounds              = new System.Drawing.Rectangle(0, 0, 41, 51);
     this.cbbEdit.DrawBorder          = true;
     this.cbbEdit.DrawFill            = true;
     this.cbbEdit.ForeColor           = System.Drawing.Color.Black;
     this.cbbEdit.GradientPercentage  = 0.498861F;
     this.cbbEdit.GradientPercentage2 = 0.5102506F;
     this.cbbEdit.NumberOfColors      = 4;
     this.cbbEdit.RightToLeft         = true;
     this.cbbEdit.StretchHorizontally = false;
     //
     // contextMenu
     //
     //
     //
     //
     this.contextMenu.RootElement.StretchHorizontally = false;
     this.contextMenu.RootElement.StretchVertically   = false;
     //
     // radDock1
     //
     this.radDock1.ActiveWindow     = this.documentWindowOperators;
     this.radDock1.CausesValidation = false;
     this.radDock1.Controls.Add(this.documentContainer1);
     this.radDock1.Controls.Add(this.toolTabStrip2);
     this.radDock1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.radDock1.DocumentManager.DocumentInsertOrder = Telerik.WinControls.UI.Docking.DockWindowInsertOrder.InFront;
     this.radDock1.Font                  = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
     this.radDock1.IsCleanUpTarget       = true;
     this.radDock1.Location              = new System.Drawing.Point(0, 74);
     this.radDock1.MainDocumentContainer = this.documentContainer1;
     this.radDock1.Name                  = "radDock1";
     this.radDock1.Padding               = new System.Windows.Forms.Padding(5);
     this.radDock1.RightToLeft           = System.Windows.Forms.RightToLeft.Yes;
     //
     //
     //
     this.radDock1.RootElement.MinSize = new System.Drawing.Size(25, 25);
     this.radDock1.RootElement.Padding = new System.Windows.Forms.Padding(5);
     this.radDock1.Size              = new System.Drawing.Size(974, 614);
     this.radDock1.SplitterWidth     = 4;
     this.radDock1.TabIndex          = 90;
     this.radDock1.TabStop           = false;
     this.radDock1.Text              = "radDock1";
     this.radDock1.DockWindowClosed += new Telerik.WinControls.UI.Docking.DockWindowEventHandler(this.radDock1_DockWindowClosed);
     //
     // documentWindowOperators
     //
     this.documentWindowOperators.CloseAction = Telerik.WinControls.UI.Docking.DockWindowCloseAction.Hide;
     this.documentWindowOperators.Controls.Add(this.radGridViewOperators);
     this.documentWindowOperators.Font              = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
     this.documentWindowOperators.Location          = new System.Drawing.Point(6, 28);
     this.documentWindowOperators.Name              = "documentWindowOperators";
     this.documentWindowOperators.PreviousDockState = Telerik.WinControls.UI.Docking.DockState.TabbedDocument;
     this.documentWindowOperators.Size              = new System.Drawing.Size(596, 570);
     this.documentWindowOperators.Text              = "کاربران";
     //
     // radGridViewOperators
     //
     this.radGridViewOperators.BackColor        = System.Drawing.Color.FromArgb(((int)(((byte)(233)))), ((int)(((byte)(240)))), ((int)(((byte)(249)))));
     this.radGridViewOperators.CausesValidation = false;
     this.radGridViewOperators.Cursor           = System.Windows.Forms.Cursors.Default;
     this.radGridViewOperators.Dock             = System.Windows.Forms.DockStyle.Fill;
     this.radGridViewOperators.Font             = new System.Drawing.Font("Tahoma", 8.25F);
     this.radGridViewOperators.ForeColor        = System.Drawing.Color.Black;
     this.radGridViewOperators.ImeMode          = System.Windows.Forms.ImeMode.NoControl;
     this.radGridViewOperators.Location         = new System.Drawing.Point(0, 0);
     //
     // radGridViewOperators
     //
     this.radGridViewOperators.MasterTemplate.AllowAddNewRow = false;
     gridViewTextBoxColumn1.EnableExpressionEditor           = false;
     gridViewTextBoxColumn1.FieldName               = "OfficeOperators_Id";
     gridViewTextBoxColumn1.HeaderText              = "ردیف";
     gridViewTextBoxColumn1.IsVisible               = false;
     gridViewTextBoxColumn1.Name                    = "OfficeOperators_Id";
     gridViewTextBoxColumn1.Width                   = 71;
     gridViewTextBoxColumn2.EnableExpressionEditor  = false;
     gridViewTextBoxColumn2.FieldName               = "BaridName";
     gridViewTextBoxColumn2.HeaderText              = "نام خانوادگی و نام";
     gridViewTextBoxColumn2.Name                    = "BaridName";
     gridViewTextBoxColumn2.Width                   = 259;
     gridViewTextBoxColumn3.EnableExpressionEditor  = false;
     gridViewTextBoxColumn3.FieldName               = "Group_Name";
     gridViewTextBoxColumn3.HeaderText              = "گروه";
     gridViewTextBoxColumn3.IsVisible               = false;
     gridViewTextBoxColumn3.Name                    = "Group_Name";
     gridViewTextBoxColumn3.Width                   = 134;
     gridViewTextBoxColumn4.EnableExpressionEditor  = false;
     gridViewTextBoxColumn4.FieldName               = "Office_Name";
     gridViewTextBoxColumn4.HeaderText              = "اداره";
     gridViewTextBoxColumn4.Name                    = "Office_Name";
     gridViewTextBoxColumn4.Width                   = 243;
     gridViewCheckBoxColumn1.EnableExpressionEditor = false;
     gridViewCheckBoxColumn1.FieldName              = "Operator_Active";
     gridViewCheckBoxColumn1.HeaderText             = "وضعیت فعال";
     gridViewCheckBoxColumn1.MinWidth               = 20;
     gridViewCheckBoxColumn1.Name                   = "Operator_Active";
     gridViewCheckBoxColumn1.Width                  = 66;
     gridViewTextBoxColumn5.EnableExpressionEditor  = false;
     gridViewTextBoxColumn5.FieldName               = "Operator_BaridId";
     gridViewTextBoxColumn5.HeaderText              = "شماره برید";
     gridViewTextBoxColumn5.IsVisible               = false;
     gridViewTextBoxColumn5.Name                    = "Operator_BaridId";
     gridViewTextBoxColumn5.Width                   = 220;
     gridViewTextBoxColumn6.EnableExpressionEditor  = false;
     gridViewTextBoxColumn6.FieldName               = "Operator_Tellphone2";
     gridViewTextBoxColumn6.HeaderText              = "شماره تماس 2";
     gridViewTextBoxColumn6.IsVisible               = false;
     gridViewTextBoxColumn6.Name                    = "Operator_Tellphone2";
     gridViewTextBoxColumn6.Width                   = 87;
     gridViewTextBoxColumn7.EnableExpressionEditor  = false;
     gridViewTextBoxColumn7.FieldName               = "Operator_Tellphone1";
     gridViewTextBoxColumn7.HeaderText              = "شماره تماس 1";
     gridViewTextBoxColumn7.IsVisible               = false;
     gridViewTextBoxColumn7.Name                    = "Operator_Tellphone1";
     gridViewTextBoxColumn7.Width                   = 86;
     gridViewCheckBoxColumn2.EnableExpressionEditor = false;
     gridViewCheckBoxColumn2.FieldName              = "Operator_Hidden";
     gridViewCheckBoxColumn2.HeaderText             = "مخفی";
     gridViewCheckBoxColumn2.IsVisible              = false;
     gridViewCheckBoxColumn2.MinWidth               = 20;
     gridViewCheckBoxColumn2.Name                   = "Operator_Hidden";
     gridViewTextBoxColumn8.EnableExpressionEditor  = false;
     gridViewTextBoxColumn8.FieldName               = "Office_ID";
     gridViewTextBoxColumn8.HeaderText              = "شماره اداره";
     gridViewTextBoxColumn8.IsVisible               = false;
     gridViewTextBoxColumn8.Name                    = "Office_ID";
     gridViewTextBoxColumn9.EnableExpressionEditor  = false;
     gridViewTextBoxColumn9.FieldName               = "Group_ID";
     gridViewTextBoxColumn9.HeaderText              = "شماره گروه";
     gridViewTextBoxColumn9.IsVisible               = false;
     gridViewTextBoxColumn9.Name                    = "Group_ID";
     gridViewTextBoxColumn10.EnableExpressionEditor = false;
     gridViewTextBoxColumn10.FieldName              = "Operator_ID";
     gridViewTextBoxColumn10.HeaderText             = "شماره اپراتور";
     gridViewTextBoxColumn10.IsVisible              = false;
     gridViewTextBoxColumn10.Name                   = "Operator_ID";
     gridViewTextBoxColumn11.EnableExpressionEditor = false;
     gridViewTextBoxColumn11.FieldName              = "BaridJob";
     gridViewTextBoxColumn11.HeaderText             = "سمت";
     gridViewTextBoxColumn11.IsVisible              = false;
     gridViewTextBoxColumn11.Name                   = "BaridJob";
     gridViewDateTimeColumn1.EnableExpressionEditor = false;
     gridViewDateTimeColumn1.FieldName              = "Sign_DateStart";
     gridViewDateTimeColumn1.Format                 = System.Windows.Forms.DateTimePickerFormat.Short;
     gridViewDateTimeColumn1.HeaderText             = "تاریخ شروع اعتبار امضا";
     gridViewDateTimeColumn1.IsVisible              = false;
     gridViewDateTimeColumn1.Name                   = "Sign_DateStart";
     gridViewCheckBoxColumn3.EnableExpressionEditor = false;
     gridViewCheckBoxColumn3.FieldName              = "Sign_Allowed";
     gridViewCheckBoxColumn3.HeaderText             = "حق امضا";
     gridViewCheckBoxColumn3.IsVisible              = false;
     gridViewCheckBoxColumn3.MinWidth               = 20;
     gridViewCheckBoxColumn3.Name                   = "Sign_Allowed";
     gridViewImageColumn1.EnableExpressionEditor    = false;
     gridViewImageColumn1.FieldName                 = "Sign_Shape";
     gridViewImageColumn1.HeaderText                = "تصویر امضا";
     gridViewImageColumn1.IsVisible                 = false;
     gridViewImageColumn1.Name = "Sign_Shape";
     gridViewTextBoxColumn12.EnableExpressionEditor = false;
     gridViewTextBoxColumn12.FieldName              = "BaridUserCode";
     gridViewTextBoxColumn12.HeaderText             = "کد کاربری";
     gridViewTextBoxColumn12.IsVisible              = false;
     gridViewTextBoxColumn12.Name                   = "BaridUserCode";
     gridViewDateTimeColumn2.EnableExpressionEditor = false;
     gridViewDateTimeColumn2.FieldName              = "Sign_DateExpire";
     gridViewDateTimeColumn2.Format                 = System.Windows.Forms.DateTimePickerFormat.Short;
     gridViewDateTimeColumn2.HeaderText             = "تاریخ پایان اعتبار امضا";
     gridViewDateTimeColumn2.IsVisible              = false;
     gridViewDateTimeColumn2.Name                   = "Sign_DateExpire";
     this.radGridViewOperators.MasterTemplate.Columns.AddRange(new Telerik.WinControls.UI.GridViewDataColumn[] {
         gridViewTextBoxColumn1,
         gridViewTextBoxColumn2,
         gridViewTextBoxColumn3,
         gridViewTextBoxColumn4,
         gridViewCheckBoxColumn1,
         gridViewTextBoxColumn5,
         gridViewTextBoxColumn6,
         gridViewTextBoxColumn7,
         gridViewCheckBoxColumn2,
         gridViewTextBoxColumn8,
         gridViewTextBoxColumn9,
         gridViewTextBoxColumn10,
         gridViewTextBoxColumn11,
         gridViewDateTimeColumn1,
         gridViewCheckBoxColumn3,
         gridViewImageColumn1,
         gridViewTextBoxColumn12,
         gridViewDateTimeColumn2
     });
     this.radGridViewOperators.MasterTemplate.ShowRowHeaderColumn = false;
     this.radGridViewOperators.Name              = "radGridViewOperators";
     this.radGridViewOperators.ReadOnly          = true;
     this.radGridViewOperators.RightToLeft       = System.Windows.Forms.RightToLeft.Yes;
     this.radGridViewOperators.Size              = new System.Drawing.Size(596, 570);
     this.radGridViewOperators.TabIndex          = 0;
     this.radGridViewOperators.Text              = "radGridView1";
     this.radGridViewOperators.SelectionChanged += new System.EventHandler(this.radGridViewOperators_SelectionChanged);
     //
     // documentContainer1
     //
     this.documentContainer1.CausesValidation = false;
     this.documentContainer1.Controls.Add(this.documentTabStrip1);
     this.documentContainer1.Font     = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
     this.documentContainer1.Location = new System.Drawing.Point(5, 5);
     this.documentContainer1.Name     = "documentContainer1";
     this.documentContainer1.Padding  = new System.Windows.Forms.Padding(5);
     //
     //
     //
     this.documentContainer1.RootElement.MinSize = new System.Drawing.Size(25, 25);
     this.documentContainer1.RootElement.Padding = new System.Windows.Forms.Padding(5);
     this.documentContainer1.Size = new System.Drawing.Size(608, 604);
     this.documentContainer1.SizeInfo.AbsoluteSize       = new System.Drawing.Size(673, 216);
     this.documentContainer1.SizeInfo.SizeMode           = Telerik.WinControls.UI.Docking.SplitPanelSizeMode.Fill;
     this.documentContainer1.SizeInfo.SplitterCorrection = new System.Drawing.Size(-53, 66);
     this.documentContainer1.SplitterWidth = 4;
     this.documentContainer1.TabIndex      = 0;
     this.documentContainer1.TabStop       = false;
     //
     // documentTabStrip1
     //
     this.documentTabStrip1.CausesValidation = false;
     this.documentTabStrip1.Controls.Add(this.documentWindowOperators);
     this.documentTabStrip1.Font     = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
     this.documentTabStrip1.Location = new System.Drawing.Point(0, 0);
     this.documentTabStrip1.Name     = "documentTabStrip1";
     //
     //
     //
     this.documentTabStrip1.RootElement.MinSize = new System.Drawing.Size(25, 25);
     this.documentTabStrip1.SelectedIndex       = 0;
     this.documentTabStrip1.Size     = new System.Drawing.Size(608, 604);
     this.documentTabStrip1.TabIndex = 0;
     this.documentTabStrip1.TabStop  = false;
     //
     // toolTabStrip2
     //
     this.toolTabStrip2.Controls.Add(this.toolWindowProperties);
     this.toolTabStrip2.Font     = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
     this.toolTabStrip2.Location = new System.Drawing.Point(617, 5);
     this.toolTabStrip2.Name     = "toolTabStrip2";
     //
     //
     //
     this.toolTabStrip2.RootElement.MinSize = new System.Drawing.Size(25, 25);
     this.toolTabStrip2.SelectedIndex       = 0;
     this.toolTabStrip2.Size = new System.Drawing.Size(352, 604);
     this.toolTabStrip2.SizeInfo.AbsoluteSize       = new System.Drawing.Size(352, 200);
     this.toolTabStrip2.SizeInfo.SplitterCorrection = new System.Drawing.Size(152, 0);
     this.toolTabStrip2.TabIndex = 1;
     this.toolTabStrip2.TabStop  = false;
     //
     // toolWindowProperties
     //
     this.toolWindowProperties.AutoScroll = true;
     this.toolWindowProperties.Caption    = null;
     this.toolWindowProperties.Controls.Add(this.excel);
     this.toolWindowProperties.Controls.Add(this.uC_OperatorDetailGp21);
     this.toolWindowProperties.Controls.Add(this.uC_Sign1);
     this.toolWindowProperties.Font              = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
     this.toolWindowProperties.Location          = new System.Drawing.Point(1, 24);
     this.toolWindowProperties.Name              = "toolWindowProperties";
     this.toolWindowProperties.PreviousDockState = Telerik.WinControls.UI.Docking.DockState.Docked;
     this.toolWindowProperties.Size              = new System.Drawing.Size(350, 578);
     this.toolWindowProperties.Text              = "خصوصیات";
     //
     // excel
     //
     this.excel.Location = new System.Drawing.Point(0, 464);
     this.excel.Name     = "excel";
     this.excel.Size     = new System.Drawing.Size(75, 23);
     this.excel.TabIndex = 3;
     this.excel.Text     = "button1";
     this.excel.UseVisualStyleBackColor = true;
     this.excel.Visible = false;
     this.excel.Click  += new System.EventHandler(this.excel_Click);
     //
     // uC_OperatorDetailGp21
     //
     this.uC_OperatorDetailGp21.CurrentBaridId  = null;
     this.uC_OperatorDetailGp21.CurrentGroups   = null;
     this.uC_OperatorDetailGp21.CurrentOfficeId = null;
     this.uC_OperatorDetailGp21.Location        = new System.Drawing.Point(16, 3);
     this.uC_OperatorDetailGp21.Name            = "uC_OperatorDetailGp21";
     this.uC_OperatorDetailGp21.Size            = new System.Drawing.Size(307, 305);
     this.uC_OperatorDetailGp21.TabIndex        = 2;
     //
     // uC_Sign1
     //
     this.uC_Sign1.ImgData  = new byte[0];
     this.uC_Sign1.Location = new System.Drawing.Point(77, 314);
     this.uC_Sign1.Name     = "uC_Sign1";
     this.uC_Sign1.Size     = new System.Drawing.Size(236, 256);
     this.uC_Sign1.TabIndex = 1;
     //
     // commandBarRowElement1
     //
     this.commandBarRowElement1.DisplayName = null;
     this.commandBarRowElement1.Font        = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
     this.commandBarRowElement1.MinSize     = new System.Drawing.Size(25, 25);
     this.commandBarRowElement1.Strips.AddRange(new Telerik.WinControls.UI.CommandBarStripElement[] {
         this.commandBarStripElement1
     });
     //
     // commandBarStripElement1
     //
     this.commandBarStripElement1.DisplayName  = "commandBarStripElement1";
     this.commandBarStripElement1.FloatingForm = null;
     this.commandBarStripElement1.Font         = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
     this.commandBarStripElement1.Name         = "commandBarStripElement1";
     this.commandBarStripElement1.Text         = "";
     //
     // commandBarRowElement2
     //
     this.commandBarRowElement2.DisplayName = null;
     this.commandBarRowElement2.Font        = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
     this.commandBarRowElement2.MinSize     = new System.Drawing.Size(25, 25);
     this.commandBarRowElement2.Strips.AddRange(new Telerik.WinControls.UI.CommandBarStripElement[] {
         this.commandBarStripElement2
     });
     //
     // commandBarStripElement2
     //
     this.commandBarStripElement2.DisplayName  = "commandBarStripElement2";
     this.commandBarStripElement2.FloatingForm = null;
     this.commandBarStripElement2.Font         = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
     this.commandBarStripElement2.Name         = "commandBarStripElement2";
     this.commandBarStripElement2.Text         = "";
     //
     // commandBarRowElement3
     //
     this.commandBarRowElement3.DisplayName = null;
     this.commandBarRowElement3.Font        = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
     this.commandBarRowElement3.MinSize     = new System.Drawing.Size(25, 25);
     //
     // commandBarRowElement4
     //
     this.commandBarRowElement4.DisplayName = null;
     this.commandBarRowElement4.Font        = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
     this.commandBarRowElement4.MinSize     = new System.Drawing.Size(25, 25);
     //
     // commandBarRowElement5
     //
     this.commandBarRowElement5.DisplayName = null;
     this.commandBarRowElement5.Font        = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
     this.commandBarRowElement5.MinSize     = new System.Drawing.Size(25, 25);
     this.commandBarRowElement5.Strips.AddRange(new Telerik.WinControls.UI.CommandBarStripElement[] {
         this.commandBarStripElement3,
         this.commandBarStripElement4
     });
     //
     // commandBarStripElement3
     //
     this.commandBarStripElement3.DisplayName  = "commandBarStripElement3";
     this.commandBarStripElement3.FloatingForm = null;
     this.commandBarStripElement3.Font         = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
     this.commandBarStripElement3.Items.AddRange(new Telerik.WinControls.UI.RadCommandBarBaseItem[] {
         this.commandBarButton1,
         this.commandBarButton2
     });
     this.commandBarStripElement3.Name = "commandBarStripElement3";
     this.commandBarStripElement3.Text = "";
     //
     // commandBarButton1
     //
     this.commandBarButton1.AccessibleDescription = "commandBarButton1";
     this.commandBarButton1.AccessibleName        = "commandBarButton1";
     this.commandBarButton1.DisplayName           = "commandBarButton1";
     this.commandBarButton1.Font       = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
     this.commandBarButton1.Image      = ((System.Drawing.Image)(resources.GetObject("commandBarButton1.Image")));
     this.commandBarButton1.Name       = "commandBarButton1";
     this.commandBarButton1.Text       = "commandBarButton1";
     this.commandBarButton1.Visibility = Telerik.WinControls.ElementVisibility.Visible;
     //
     // commandBarButton2
     //
     this.commandBarButton2.AccessibleDescription = "commandBarButton2";
     this.commandBarButton2.AccessibleName        = "commandBarButton2";
     this.commandBarButton2.DisplayName           = "commandBarButton2";
     this.commandBarButton2.Font       = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
     this.commandBarButton2.Image      = ((System.Drawing.Image)(resources.GetObject("commandBarButton2.Image")));
     this.commandBarButton2.Name       = "commandBarButton2";
     this.commandBarButton2.Text       = "commandBarButton2";
     this.commandBarButton2.Visibility = Telerik.WinControls.ElementVisibility.Visible;
     //
     // commandBarStripElement4
     //
     this.commandBarStripElement4.DisplayName  = "commandBarStripElement4";
     this.commandBarStripElement4.FloatingForm = null;
     this.commandBarStripElement4.Font         = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
     this.commandBarStripElement4.Name         = "commandBarStripElement4";
     this.commandBarStripElement4.Text         = "";
     //
     // radCheckBoxElement1
     //
     this.radCheckBoxElement1.AccessibleDescription = "radCheckBoxElement1";
     this.radCheckBoxElement1.AccessibleName        = "radCheckBoxElement1";
     this.radCheckBoxElement1.Checked    = false;
     this.radCheckBoxElement1.Font       = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
     this.radCheckBoxElement1.Name       = "radCheckBoxElement1";
     this.radCheckBoxElement1.Text       = "radCheckBoxElement1";
     this.radCheckBoxElement1.Visibility = Telerik.WinControls.ElementVisibility.Visible;
     //
     // rmiProperty
     //
     this.rmiProperty.AccessibleDescription = "خصوصیات";
     this.rmiProperty.AccessibleName        = "خصوصیات";
     this.rmiProperty.Name       = "rmiProperty";
     this.rmiProperty.Text       = "خصوصیات";
     this.rmiProperty.Visibility = Telerik.WinControls.ElementVisibility.Visible;
     this.rmiProperty.Click     += new System.EventHandler(this.rmiProperty_Click);
     //
     // rmiOperators
     //
     this.rmiOperators.AccessibleDescription = "لیست کاربران";
     this.rmiOperators.AccessibleName        = "لیست کاربران";
     this.rmiOperators.Name       = "rmiOperators";
     this.rmiOperators.Text       = "لیست کاربران";
     this.rmiOperators.Visibility = Telerik.WinControls.ElementVisibility.Visible;
     this.rmiOperators.Click     += new System.EventHandler(this.rmiOperators_Click);
     //
     // frm_operators
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.ClientSize          = new System.Drawing.Size(974, 712);
     this.Controls.Add(this.radDock1);
     this.Font               = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
     this.Location           = new System.Drawing.Point(0, 0);
     this.MainRadGridView    = this.radGridViewOperators;
     this.Name               = "frm_operators";
     this.Text               = "کاربران";
     this.eventStatusNew    += new aorc.gatepass.mainForm.DelegateStatusAction(this.frm_operators_eventStatusNew);
     this.eventStatusEdit   += new aorc.gatepass.mainForm.DelegateStatusAction(this.frm_operators_eventStatusEdit);
     this.eventStatusSearch += new aorc.gatepass.mainForm.DelegateStatusAction(this.frm_operators_eventStatusSearch);
     this.eventStatusView   += new aorc.gatepass.mainForm.DelegateStatusAction(this.frm_operators_eventStatusView);
     this.eventStatusDelete += new aorc.gatepass.mainForm.DelegateStatusAction(this.frm_operators_eventStatusDelete);
     this.eventSaveToDelete += new aorc.gatepass.mainForm.DelegateStatusAction(this.frm_operators_eventSaveToDelete);
     this.eventSaveToEdit   += new aorc.gatepass.mainForm.DelegateStatusAction(this.frm_operators_eventSaveToEdit);
     this.eventSaveToNew    += new aorc.gatepass.mainForm.DelegateStatusAction(this.frm_operators_eventSaveToNew);
     this.eventSaveToView   += new aorc.gatepass.mainForm.DelegateStatusAction(this.frm_operators_eventSaveToView);
     this.eventAfterSave    += new aorc.gatepass.mainForm.DelegateStatusAction(this.frm_operators_eventAfterSave);
     this.eventSaveToSearch += new aorc.gatepass.mainForm.DelegateStatusAction(this.frm_operators_eventSaveToSearch);
     this.Load              += new System.EventHandler(this.frm_operators_Load);
     this.Controls.SetChildIndex(this.radDock1, 0);
     ((System.ComponentModel.ISupportInitialize)(this.contextMenu)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radDock1)).EndInit();
     this.radDock1.ResumeLayout(false);
     this.documentWindowOperators.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.radGridViewOperators.MasterTemplate)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radGridViewOperators)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.documentContainer1)).EndInit();
     this.documentContainer1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.documentTabStrip1)).EndInit();
     this.documentTabStrip1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.toolTabStrip2)).EndInit();
     this.toolTabStrip2.ResumeLayout(false);
     this.toolWindowProperties.ResumeLayout(false);
     this.ResumeLayout(false);
     this.PerformLayout();
 }
コード例 #36
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();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn1 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn2 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn3 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewCheckBoxColumn gridViewCheckBoxColumn1 = new Telerik.WinControls.UI.GridViewCheckBoxColumn();
            this.panel1 = new System.Windows.Forms.Panel();
            this.BtnAceptar = new System.Windows.Forms.Button();
            this.BtnCancelar = new System.Windows.Forms.Button();
            this.PnlNuevoTipo = new System.Windows.Forms.Panel();
            this.radLabel5 = new Telerik.WinControls.UI.RadLabel();
            this.radLabel1 = new Telerik.WinControls.UI.RadLabel();
            this.DtpFin = new Telerik.WinControls.UI.RadDateTimePicker();
            this.radLabel4 = new Telerik.WinControls.UI.RadLabel();
            this.DtpDesde = new Telerik.WinControls.UI.RadDateTimePicker();
            this.DdlTipo = new Telerik.WinControls.UI.RadDropDownList();
            this.radLabel2 = new Telerik.WinControls.UI.RadLabel();
            this.DdlMovil = new Telerik.WinControls.UI.RadDropDownList();
            this.EpvTalleres = new System.Windows.Forms.ErrorProvider(this.components);
            this.ChkListBox = new System.Windows.Forms.CheckedListBox();
            this.TxtObservaciones = new Telerik.WinControls.UI.RadTextBox();
            this.radLabel3 = new Telerik.WinControls.UI.RadLabel();
            this.panel2 = new System.Windows.Forms.Panel();
            this.DgvTalleres = new Telerik.WinControls.UI.RadGridView();
            this.panel1.SuspendLayout();
            this.PnlNuevoTipo.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel5)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.DtpFin)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel4)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.DtpDesde)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.DdlTipo)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel2)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.DdlMovil)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.EpvTalleres)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.TxtObservaciones)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel3)).BeginInit();
            this.panel2.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.DgvTalleres)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.DgvTalleres.MasterTemplate)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
            this.SuspendLayout();
            // 
            // panel1
            // 
            this.panel1.Controls.Add(this.BtnAceptar);
            this.panel1.Controls.Add(this.BtnCancelar);
            this.panel1.Location = new System.Drawing.Point(893, 395);
            this.panel1.Name = "panel1";
            this.panel1.Size = new System.Drawing.Size(231, 46);
            this.panel1.TabIndex = 26;
            // 
            // BtnAceptar
            // 
            this.BtnAceptar.DialogResult = System.Windows.Forms.DialogResult.OK;
            this.BtnAceptar.Font = new System.Drawing.Font("Consolas", 10.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.BtnAceptar.Location = new System.Drawing.Point(3, 3);
            this.BtnAceptar.Name = "BtnAceptar";
            this.BtnAceptar.Size = new System.Drawing.Size(103, 41);
            this.BtnAceptar.TabIndex = 21;
            this.BtnAceptar.Text = "Aceptar";
            this.BtnAceptar.UseVisualStyleBackColor = true;
            this.BtnAceptar.Click += new System.EventHandler(this.BtnAceptar_Click);
            // 
            // BtnCancelar
            // 
            this.BtnCancelar.DialogResult = System.Windows.Forms.DialogResult.Cancel;
            this.BtnCancelar.Font = new System.Drawing.Font("Consolas", 10.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.BtnCancelar.Location = new System.Drawing.Point(110, 3);
            this.BtnCancelar.Name = "BtnCancelar";
            this.BtnCancelar.Size = new System.Drawing.Size(114, 41);
            this.BtnCancelar.TabIndex = 25;
            this.BtnCancelar.Text = "Cerrar";
            this.BtnCancelar.UseVisualStyleBackColor = true;
            // 
            // PnlNuevoTipo
            // 
            this.PnlNuevoTipo.Controls.Add(this.radLabel5);
            this.PnlNuevoTipo.Controls.Add(this.radLabel1);
            this.PnlNuevoTipo.Controls.Add(this.DtpFin);
            this.PnlNuevoTipo.Controls.Add(this.radLabel4);
            this.PnlNuevoTipo.Controls.Add(this.DtpDesde);
            this.PnlNuevoTipo.Controls.Add(this.DdlTipo);
            this.PnlNuevoTipo.Controls.Add(this.radLabel2);
            this.PnlNuevoTipo.Controls.Add(this.DdlMovil);
            this.PnlNuevoTipo.Location = new System.Drawing.Point(12, 26);
            this.PnlNuevoTipo.Name = "PnlNuevoTipo";
            this.PnlNuevoTipo.Size = new System.Drawing.Size(526, 157);
            this.PnlNuevoTipo.TabIndex = 24;
            // 
            // radLabel5
            // 
            this.radLabel5.Font = new System.Drawing.Font("Consolas", 10.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.radLabel5.Location = new System.Drawing.Point(3, 46);
            this.radLabel5.Name = "radLabel5";
            this.radLabel5.Size = new System.Drawing.Size(59, 25);
            this.radLabel5.TabIndex = 20;
            this.radLabel5.Text = "Tipo:";
            // 
            // radLabel1
            // 
            this.radLabel1.Font = new System.Drawing.Font("Consolas", 10.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.radLabel1.Location = new System.Drawing.Point(3, 114);
            this.radLabel1.Name = "radLabel1";
            this.radLabel1.Size = new System.Drawing.Size(49, 25);
            this.radLabel1.TabIndex = 29;
            this.radLabel1.Text = "Fin:";
            // 
            // DtpFin
            // 
            this.DtpFin.Font = new System.Drawing.Font("Consolas", 10.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.DtpFin.Format = System.Windows.Forms.DateTimePickerFormat.Short;
            this.DtpFin.Location = new System.Drawing.Point(190, 114);
            this.DtpFin.MaxDate = new System.DateTime(9998, 12, 31, 0, 0, 0, 0);
            this.DtpFin.MinDate = new System.DateTime(1753, 1, 1, 0, 0, 0, 0);
            this.DtpFin.Name = "DtpFin";
            this.DtpFin.NullableValue = new System.DateTime(2015, 12, 1, 19, 30, 46, 0);
            this.DtpFin.NullDate = new System.DateTime(((long)(0)));
            this.DtpFin.Size = new System.Drawing.Size(292, 31);
            this.DtpFin.TabIndex = 28;
            this.DtpFin.TabStop = false;
            this.DtpFin.Text = "01/12/2015";
            this.DtpFin.ThemeName = "TelerikMetro";
            this.DtpFin.Value = new System.DateTime(2015, 12, 1, 19, 30, 46, 0);
            // 
            // radLabel4
            // 
            this.radLabel4.Font = new System.Drawing.Font("Consolas", 10.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.radLabel4.Location = new System.Drawing.Point(3, 77);
            this.radLabel4.Name = "radLabel4";
            this.radLabel4.Size = new System.Drawing.Size(70, 25);
            this.radLabel4.TabIndex = 25;
            this.radLabel4.Text = "Desde:";
            // 
            // DtpDesde
            // 
            this.DtpDesde.Font = new System.Drawing.Font("Consolas", 10.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.DtpDesde.Format = System.Windows.Forms.DateTimePickerFormat.Short;
            this.DtpDesde.Location = new System.Drawing.Point(190, 77);
            this.DtpDesde.MaxDate = new System.DateTime(9998, 12, 31, 0, 0, 0, 0);
            this.DtpDesde.MinDate = new System.DateTime(1753, 1, 1, 0, 0, 0, 0);
            this.DtpDesde.Name = "DtpDesde";
            this.DtpDesde.NullableValue = new System.DateTime(2015, 12, 1, 19, 30, 46, 0);
            this.DtpDesde.NullDate = new System.DateTime(((long)(0)));
            this.DtpDesde.Size = new System.Drawing.Size(292, 31);
            this.DtpDesde.TabIndex = 24;
            this.DtpDesde.TabStop = false;
            this.DtpDesde.Text = "01/12/2015";
            this.DtpDesde.ThemeName = "TelerikMetro";
            this.DtpDesde.Value = new System.DateTime(2015, 12, 1, 19, 30, 46, 0);
            // 
            // DdlTipo
            // 
            this.DdlTipo.DropDownAnimationEnabled = true;
            this.DdlTipo.Location = new System.Drawing.Point(190, 40);
            this.DdlTipo.MaxDropDownItems = 0;
            this.DdlTipo.Name = "DdlTipo";
            this.DdlTipo.ShowImageInEditorArea = true;
            this.DdlTipo.Size = new System.Drawing.Size(292, 31);
            this.DdlTipo.TabIndex = 23;
            this.DdlTipo.ThemeName = "TelerikMetro";
            // 
            // radLabel2
            // 
            this.radLabel2.Font = new System.Drawing.Font("Consolas", 10.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.radLabel2.Location = new System.Drawing.Point(3, 9);
            this.radLabel2.Name = "radLabel2";
            this.radLabel2.Size = new System.Drawing.Size(70, 25);
            this.radLabel2.TabIndex = 22;
            this.radLabel2.Text = "Movil:";
            // 
            // DdlMovil
            // 
            this.DdlMovil.DropDownAnimationEnabled = true;
            this.DdlMovil.Location = new System.Drawing.Point(190, 3);
            this.DdlMovil.MaxDropDownItems = 0;
            this.DdlMovil.Name = "DdlMovil";
            this.DdlMovil.ShowImageInEditorArea = true;
            this.DdlMovil.Size = new System.Drawing.Size(292, 31);
            this.DdlMovil.TabIndex = 21;
            this.DdlMovil.ThemeName = "TelerikMetro";
            this.DdlMovil.SelectedValueChanged += new System.EventHandler(this.DdlMovil_SelectedValueChanged);
            // 
            // EpvTalleres
            // 
            this.EpvTalleres.ContainerControl = this;
            // 
            // ChkListBox
            // 
            this.ChkListBox.FormattingEnabled = true;
            this.ChkListBox.Location = new System.Drawing.Point(544, 26);
            this.ChkListBox.Name = "ChkListBox";
            this.ChkListBox.Size = new System.Drawing.Size(560, 160);
            this.ChkListBox.TabIndex = 27;
            // 
            // TxtObservaciones
            // 
            this.TxtObservaciones.Location = new System.Drawing.Point(12, 39);
            this.TxtObservaciones.Multiline = true;
            this.TxtObservaciones.Name = "TxtObservaciones";
            // 
            // 
            // 
            this.TxtObservaciones.RootElement.StretchVertically = true;
            this.TxtObservaciones.Size = new System.Drawing.Size(466, 124);
            this.TxtObservaciones.TabIndex = 28;
            this.TxtObservaciones.TabStop = false;
            // 
            // radLabel3
            // 
            this.radLabel3.Font = new System.Drawing.Font("Consolas", 10.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.radLabel3.Location = new System.Drawing.Point(12, 8);
            this.radLabel3.Name = "radLabel3";
            this.radLabel3.Size = new System.Drawing.Size(151, 25);
            this.radLabel3.TabIndex = 30;
            this.radLabel3.Text = "Observaciones:";
            // 
            // panel2
            // 
            this.panel2.Controls.Add(this.TxtObservaciones);
            this.panel2.Controls.Add(this.radLabel3);
            this.panel2.Location = new System.Drawing.Point(12, 218);
            this.panel2.Name = "panel2";
            this.panel2.Size = new System.Drawing.Size(526, 195);
            this.panel2.TabIndex = 31;
            // 
            // DgvTalleres
            // 
            this.DgvTalleres.Location = new System.Drawing.Point(544, 192);
            // 
            // DgvTalleres
            // 
            this.DgvTalleres.MasterTemplate.AllowAddNewRow = false;
            gridViewTextBoxColumn1.AllowHide = false;
            gridViewTextBoxColumn1.FieldName = "FechaDesde";
            gridViewTextBoxColumn1.HeaderText = "Desde";
            gridViewTextBoxColumn1.Name = "FechaDesde";
            gridViewTextBoxColumn1.ReadOnly = true;
            gridViewTextBoxColumn1.Width = 100;
            gridViewTextBoxColumn2.FieldName = "FechaHasta";
            gridViewTextBoxColumn2.HeaderText = "Hasta";
            gridViewTextBoxColumn2.Name = "FechaHasta";
            gridViewTextBoxColumn2.ReadOnly = true;
            gridViewTextBoxColumn2.Width = 100;
            gridViewTextBoxColumn3.FieldName = "Observaciones";
            gridViewTextBoxColumn3.FormatString = "";
            gridViewTextBoxColumn3.HeaderText = "Observaciones";
            gridViewTextBoxColumn3.Name = "Observaciones";
            gridViewTextBoxColumn3.ReadOnly = true;
            gridViewTextBoxColumn3.Width = 150;
            gridViewCheckBoxColumn1.FieldName = "Activo";
            gridViewCheckBoxColumn1.HeaderText = "Activo";
            gridViewCheckBoxColumn1.Name = "Activo";
            gridViewCheckBoxColumn1.ReadOnly = true;
            this.DgvTalleres.MasterTemplate.Columns.AddRange(new Telerik.WinControls.UI.GridViewDataColumn[] {
            gridViewTextBoxColumn1,
            gridViewTextBoxColumn2,
            gridViewTextBoxColumn3,
            gridViewCheckBoxColumn1});
            this.DgvTalleres.Name = "DgvTalleres";
            this.DgvTalleres.Size = new System.Drawing.Size(560, 197);
            this.DgvTalleres.TabIndex = 32;
            this.DgvTalleres.Text = "radGridView1";
            this.DgvTalleres.ThemeName = "TelerikMetro";
            // 
            // FrmTalleres
            // 
            this.AcceptButton = this.BtnAceptar;
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.None;
            this.CancelButton = this.BtnCancelar;
            this.ClientSize = new System.Drawing.Size(1131, 445);
            this.Controls.Add(this.DgvTalleres);
            this.Controls.Add(this.ChkListBox);
            this.Controls.Add(this.panel1);
            this.Controls.Add(this.PnlNuevoTipo);
            this.Controls.Add(this.panel2);
            this.Margin = new System.Windows.Forms.Padding(4);
            this.Name = "FrmTalleres";
            // 
            // 
            // 
            this.RootElement.ApplyShapeToControl = true;
            this.Text = "FrmTalleres";
            this.Load += new System.EventHandler(this.FrmTalleres_Load);
            this.panel1.ResumeLayout(false);
            this.PnlNuevoTipo.ResumeLayout(false);
            this.PnlNuevoTipo.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel5)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.DtpFin)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel4)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.DtpDesde)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.DdlTipo)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel2)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.DdlMovil)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.EpvTalleres)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.TxtObservaciones)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel3)).EndInit();
            this.panel2.ResumeLayout(false);
            this.panel2.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.DgvTalleres.MasterTemplate)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.DgvTalleres)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this)).EndInit();
            this.ResumeLayout(false);

        }
コード例 #37
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmEvaluacionInduccion));
     Telerik.WinControls.UI.GridViewTextBoxColumn   gridViewTextBoxColumn1  = new Telerik.WinControls.UI.GridViewTextBoxColumn();
     Telerik.WinControls.UI.GridViewTextBoxColumn   gridViewTextBoxColumn2  = new Telerik.WinControls.UI.GridViewTextBoxColumn();
     Telerik.WinControls.UI.GridViewCheckBoxColumn  gridViewCheckBoxColumn1 = new Telerik.WinControls.UI.GridViewCheckBoxColumn();
     Telerik.WinControls.UI.GridViewCheckBoxColumn  gridViewCheckBoxColumn2 = new Telerik.WinControls.UI.GridViewCheckBoxColumn();
     Telerik.WinControls.UI.GridViewCheckBoxColumn  gridViewCheckBoxColumn3 = new Telerik.WinControls.UI.GridViewCheckBoxColumn();
     Telerik.WinControls.UI.GridViewCheckBoxColumn  gridViewCheckBoxColumn4 = new Telerik.WinControls.UI.GridViewCheckBoxColumn();
     Telerik.WinControls.UI.TableViewDefinition     tableViewDefinition1    = new Telerik.WinControls.UI.TableViewDefinition();
     this.radCommandBar1          = new Telerik.WinControls.UI.RadCommandBar();
     this.commandBarRowElement1   = new Telerik.WinControls.UI.CommandBarRowElement();
     this.commandBarStripElement1 = new Telerik.WinControls.UI.CommandBarStripElement();
     this.btnBuscar             = new Telerik.WinControls.UI.CommandBarButton();
     this.commandBarSeparator7  = new Telerik.WinControls.UI.CommandBarSeparator();
     this.btnNuevo              = new Telerik.WinControls.UI.CommandBarButton();
     this.commandBarSeparator1  = new Telerik.WinControls.UI.CommandBarSeparator();
     this.btnGuardar            = new Telerik.WinControls.UI.CommandBarButton();
     this.commandBarSeparator2  = new Telerik.WinControls.UI.CommandBarSeparator();
     this.btnReporte            = new Telerik.WinControls.UI.CommandBarButton();
     this.commandBarSeparator4  = new Telerik.WinControls.UI.CommandBarSeparator();
     this.btnSalir              = new Telerik.WinControls.UI.CommandBarButton();
     this.commandBarSeparator6  = new Telerik.WinControls.UI.CommandBarSeparator();
     this.commandBarLabel1      = new Telerik.WinControls.UI.CommandBarLabel();
     this.commandBarRowElement2 = new Telerik.WinControls.UI.CommandBarRowElement();
     this.radGroupBox2          = new Telerik.WinControls.UI.RadGroupBox();
     this.label21            = new System.Windows.Forms.Label();
     this.label20            = new System.Windows.Forms.Label();
     this.label19            = new System.Windows.Forms.Label();
     this.label18            = new System.Windows.Forms.Label();
     this.radGroupBox1       = new Telerik.WinControls.UI.RadGroupBox();
     this.label17            = new System.Windows.Forms.Label();
     this.label16            = new System.Windows.Forms.Label();
     this.label15            = new System.Windows.Forms.Label();
     this.label14            = new System.Windows.Forms.Label();
     this.label13            = new System.Windows.Forms.Label();
     this.label12            = new System.Windows.Forms.Label();
     this.label11            = new System.Windows.Forms.Label();
     this.label10            = new System.Windows.Forms.Label();
     this.label1             = new System.Windows.Forms.Label();
     this.txtObservaciones   = new System.Windows.Forms.TextBox();
     this.label8             = new System.Windows.Forms.Label();
     this.radDock2           = new Telerik.WinControls.UI.Docking.RadDock();
     this.documentWindow2    = new Telerik.WinControls.UI.Docking.DocumentWindow();
     this.gvDatos            = new Telerik.WinControls.UI.RadGridView();
     this.documentContainer1 = new Telerik.WinControls.UI.Docking.DocumentContainer();
     this.documentTabStrip2  = new Telerik.WinControls.UI.Docking.DocumentTabStrip();
     this.label7             = new System.Windows.Forms.Label();
     this.txtId          = new System.Windows.Forms.TextBox();
     this.txtCalif       = new Telerik.WinControls.UI.RadTextBox();
     this.radPanel1      = new Telerik.WinControls.UI.RadPanel();
     this.txtIdd         = new System.Windows.Forms.TextBox();
     this.txtIdExp       = new System.Windows.Forms.TextBox();
     this.lblFecha       = new System.Windows.Forms.Label();
     this.label4         = new System.Windows.Forms.Label();
     this.label5         = new System.Windows.Forms.Label();
     this.label6         = new System.Windows.Forms.Label();
     this.txtNombres     = new System.Windows.Forms.TextBox();
     this.txtApellidos   = new System.Windows.Forms.TextBox();
     this.picFoto        = new System.Windows.Forms.PictureBox();
     this.errorProvider1 = new System.Windows.Forms.ErrorProvider(this.components);
     ((System.ComponentModel.ISupportInitialize)(this.radCommandBar1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radGroupBox2)).BeginInit();
     this.radGroupBox2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.radGroupBox1)).BeginInit();
     this.radGroupBox1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.radDock2)).BeginInit();
     this.radDock2.SuspendLayout();
     this.documentWindow2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gvDatos)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvDatos.MasterTemplate)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.documentContainer1)).BeginInit();
     this.documentContainer1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.documentTabStrip2)).BeginInit();
     this.documentTabStrip2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.txtCalif)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radPanel1)).BeginInit();
     this.radPanel1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.picFoto)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.errorProvider1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
     this.SuspendLayout();
     //
     // radCommandBar1
     //
     this.radCommandBar1.Dock     = System.Windows.Forms.DockStyle.Top;
     this.radCommandBar1.Location = new System.Drawing.Point(0, 0);
     this.radCommandBar1.Name     = "radCommandBar1";
     this.radCommandBar1.Rows.AddRange(new Telerik.WinControls.UI.CommandBarRowElement[] {
         this.commandBarRowElement1,
         this.commandBarRowElement2
     });
     this.radCommandBar1.Size     = new System.Drawing.Size(1075, 81);
     this.radCommandBar1.TabIndex = 7;
     //
     // commandBarRowElement1
     //
     this.commandBarRowElement1.MinSize = new System.Drawing.Size(25, 25);
     this.commandBarRowElement1.Name    = "commandBarRowElement1";
     this.commandBarRowElement1.Strips.AddRange(new Telerik.WinControls.UI.CommandBarStripElement[] {
         this.commandBarStripElement1
     });
     //
     // commandBarStripElement1
     //
     this.commandBarStripElement1.DisplayName = "commandBarStripElement1";
     this.commandBarStripElement1.Items.AddRange(new Telerik.WinControls.UI.RadCommandBarBaseItem[] {
         this.btnBuscar,
         this.commandBarSeparator7,
         this.btnNuevo,
         this.commandBarSeparator1,
         this.btnGuardar,
         this.commandBarSeparator2,
         this.btnReporte,
         this.commandBarSeparator4,
         this.btnSalir,
         this.commandBarSeparator6,
         this.commandBarLabel1
     });
     this.commandBarStripElement1.Name = "commandBarStripElement1";
     //
     //
     //
     this.commandBarStripElement1.OverflowButton.Visibility = Telerik.WinControls.ElementVisibility.Hidden;
     this.commandBarStripElement1.StretchHorizontally       = true;
     this.commandBarStripElement1.Visibility = Telerik.WinControls.ElementVisibility.Visible;
     ((Telerik.WinControls.UI.RadCommandBarOverflowButton)(this.commandBarStripElement1.GetChildAt(2))).Visibility = Telerik.WinControls.ElementVisibility.Hidden;
     //
     // btnBuscar
     //
     this.btnBuscar.DisplayName       = "commandBarButton1";
     this.btnBuscar.DrawText          = true;
     this.btnBuscar.Image             = ((System.Drawing.Image)(resources.GetObject("btnBuscar.Image")));
     this.btnBuscar.Name              = "btnBuscar";
     this.btnBuscar.Text              = "Buscar";
     this.btnBuscar.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
     this.btnBuscar.Click            += new System.EventHandler(this.btnBuscar_Click);
     //
     // commandBarSeparator7
     //
     this.commandBarSeparator7.DisplayName           = "commandBarSeparator7";
     this.commandBarSeparator7.Name                  = "commandBarSeparator7";
     this.commandBarSeparator7.VisibleInOverflowMenu = false;
     //
     // btnNuevo
     //
     this.btnNuevo.DisplayName       = "commandBarButton1";
     this.btnNuevo.DrawText          = true;
     this.btnNuevo.Image             = ((System.Drawing.Image)(resources.GetObject("btnNuevo.Image")));
     this.btnNuevo.Name              = "btnNuevo";
     this.btnNuevo.Text              = "Nuevo";
     this.btnNuevo.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
     this.btnNuevo.Click            += new System.EventHandler(this.btnNuevo_Click);
     //
     // commandBarSeparator1
     //
     this.commandBarSeparator1.DisplayName           = "commandBarSeparator1";
     this.commandBarSeparator1.Name                  = "commandBarSeparator1";
     this.commandBarSeparator1.VisibleInOverflowMenu = false;
     //
     // btnGuardar
     //
     this.btnGuardar.DisplayName       = "commandBarButton2";
     this.btnGuardar.DrawText          = true;
     this.btnGuardar.Image             = ((System.Drawing.Image)(resources.GetObject("btnGuardar.Image")));
     this.btnGuardar.Name              = "btnGuardar";
     this.btnGuardar.Text              = "Guardar";
     this.btnGuardar.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
     this.btnGuardar.Click            += new System.EventHandler(this.btnGuardar_Click);
     //
     // commandBarSeparator2
     //
     this.commandBarSeparator2.DisplayName           = "commandBarSeparator2";
     this.commandBarSeparator2.Name                  = "commandBarSeparator2";
     this.commandBarSeparator2.VisibleInOverflowMenu = false;
     //
     // btnReporte
     //
     this.btnReporte.DisplayName       = "commandBarButton1";
     this.btnReporte.DrawText          = true;
     this.btnReporte.Image             = ((System.Drawing.Image)(resources.GetObject("btnReporte.Image")));
     this.btnReporte.Name              = "btnReporte";
     this.btnReporte.Text              = "Reporte";
     this.btnReporte.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
     this.btnReporte.Click            += new System.EventHandler(this.btnReporte_Click);
     //
     // commandBarSeparator4
     //
     this.commandBarSeparator4.DisplayName           = "commandBarSeparator4";
     this.commandBarSeparator4.Name                  = "commandBarSeparator4";
     this.commandBarSeparator4.VisibleInOverflowMenu = false;
     //
     // btnSalir
     //
     this.btnSalir.DisplayName       = "commandBarButton4";
     this.btnSalir.DrawText          = true;
     this.btnSalir.Image             = ((System.Drawing.Image)(resources.GetObject("btnSalir.Image")));
     this.btnSalir.Name              = "btnSalir";
     this.btnSalir.Text              = "Salir";
     this.btnSalir.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
     this.btnSalir.Click            += new System.EventHandler(this.btnSalir_Click);
     //
     // commandBarSeparator6
     //
     this.commandBarSeparator6.DisplayName           = "commandBarSeparator6";
     this.commandBarSeparator6.Name                  = "commandBarSeparator6";
     this.commandBarSeparator6.VisibleInOverflowMenu = false;
     //
     // commandBarLabel1
     //
     this.commandBarLabel1.DisplayName         = "commandBarLabel1";
     this.commandBarLabel1.Font                = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold);
     this.commandBarLabel1.ForeColor           = System.Drawing.Color.Navy;
     this.commandBarLabel1.Name                = "commandBarLabel1";
     this.commandBarLabel1.StretchHorizontally = true;
     this.commandBarLabel1.Text                = "EVALUACION DE INDUCCION DE EMPLEADOS";
     //
     // commandBarRowElement2
     //
     this.commandBarRowElement2.MinSize = new System.Drawing.Size(25, 25);
     this.commandBarRowElement2.Name    = "commandBarRowElement2";
     //
     // radGroupBox2
     //
     this.radGroupBox2.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
     this.radGroupBox2.Controls.Add(this.label21);
     this.radGroupBox2.Controls.Add(this.label20);
     this.radGroupBox2.Controls.Add(this.label19);
     this.radGroupBox2.Controls.Add(this.label18);
     this.radGroupBox2.HeaderText = "";
     this.radGroupBox2.Location   = new System.Drawing.Point(0, 511);
     this.radGroupBox2.Name       = "radGroupBox2";
     this.radGroupBox2.Size       = new System.Drawing.Size(389, 87);
     this.radGroupBox2.TabIndex   = 13;
     //
     // label21
     //
     this.label21.AutoSize = true;
     this.label21.Location = new System.Drawing.Point(478, 63);
     this.label21.Name     = "label21";
     this.label21.Size     = new System.Drawing.Size(242, 13);
     this.label21.TabIndex = 2;
     this.label21.Text     = "_______________________________________________";
     //
     // label20
     //
     this.label20.AutoSize = true;
     this.label20.Location = new System.Drawing.Point(136, 63);
     this.label20.Name     = "label20";
     this.label20.Size     = new System.Drawing.Size(242, 13);
     this.label20.TabIndex = 2;
     this.label20.Text     = "_______________________________________________";
     //
     // label19
     //
     this.label19.AutoSize = true;
     this.label19.Location = new System.Drawing.Point(514, 18);
     this.label19.Name     = "label19";
     this.label19.Size     = new System.Drawing.Size(96, 13);
     this.label19.TabIndex = 1;
     this.label19.Text     = "Firma (facilitador)";
     //
     // label18
     //
     this.label18.AutoSize = true;
     this.label18.Location = new System.Drawing.Point(209, 18);
     this.label18.Name     = "label18";
     this.label18.Size     = new System.Drawing.Size(93, 13);
     this.label18.TabIndex = 0;
     this.label18.Text     = "Firma (Operario):";
     //
     // radGroupBox1
     //
     this.radGroupBox1.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
     this.radGroupBox1.Controls.Add(this.label17);
     this.radGroupBox1.Controls.Add(this.label16);
     this.radGroupBox1.Controls.Add(this.label15);
     this.radGroupBox1.Controls.Add(this.label14);
     this.radGroupBox1.Controls.Add(this.label13);
     this.radGroupBox1.Controls.Add(this.label12);
     this.radGroupBox1.Controls.Add(this.label11);
     this.radGroupBox1.Controls.Add(this.label10);
     this.radGroupBox1.Controls.Add(this.label1);
     this.radGroupBox1.Controls.Add(this.txtObservaciones);
     this.radGroupBox1.Controls.Add(this.label8);
     this.radGroupBox1.Dock       = System.Windows.Forms.DockStyle.Left;
     this.radGroupBox1.HeaderText = "";
     this.radGroupBox1.Location   = new System.Drawing.Point(0, 199);
     this.radGroupBox1.Name       = "radGroupBox1";
     this.radGroupBox1.Size       = new System.Drawing.Size(391, 401);
     this.radGroupBox1.TabIndex   = 15;
     //
     // label17
     //
     this.label17.AutoSize = true;
     this.label17.Location = new System.Drawing.Point(25, 160);
     this.label17.Name     = "label17";
     this.label17.Size     = new System.Drawing.Size(232, 13);
     this.label17.TabIndex = 62;
     this.label17.Text     = "No obtuve ninguna información al respecto";
     //
     // label16
     //
     this.label16.AutoSize = true;
     this.label16.Location = new System.Drawing.Point(25, 131);
     this.label16.Name     = "label16";
     this.label16.Size     = new System.Drawing.Size(238, 13);
     this.label16.TabIndex = 61;
     this.label16.Text     = "La información fue muy general e incompleta";
     //
     // label15
     //
     this.label15.AutoSize = true;
     this.label15.Location = new System.Drawing.Point(25, 101);
     this.label15.Name     = "label15";
     this.label15.Size     = new System.Drawing.Size(156, 13);
     this.label15.TabIndex = 60;
     this.label15.Text     = "La información fue suficiente";
     //
     // label14
     //
     this.label14.AutoSize = true;
     this.label14.Location = new System.Drawing.Point(25, 75);
     this.label14.Name     = "label14";
     this.label14.Size     = new System.Drawing.Size(212, 13);
     this.label14.TabIndex = 59;
     this.label14.Text     = "La información fue completa y detallada";
     //
     // label13
     //
     this.label13.AutoSize = true;
     this.label13.Font     = new System.Drawing.Font("Segoe UI", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label13.Location = new System.Drawing.Point(5, 160);
     this.label13.Name     = "label13";
     this.label13.Size     = new System.Drawing.Size(16, 13);
     this.label13.TabIndex = 58;
     this.label13.Text     = "1:";
     //
     // label12
     //
     this.label12.AutoSize = true;
     this.label12.Font     = new System.Drawing.Font("Segoe UI", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label12.Location = new System.Drawing.Point(6, 131);
     this.label12.Name     = "label12";
     this.label12.Size     = new System.Drawing.Size(16, 13);
     this.label12.TabIndex = 57;
     this.label12.Text     = "2:";
     //
     // label11
     //
     this.label11.AutoSize = true;
     this.label11.Font     = new System.Drawing.Font("Segoe UI", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label11.Location = new System.Drawing.Point(6, 101);
     this.label11.Name     = "label11";
     this.label11.Size     = new System.Drawing.Size(16, 13);
     this.label11.TabIndex = 56;
     this.label11.Text     = "3:";
     //
     // label10
     //
     this.label10.AutoSize = true;
     this.label10.Font     = new System.Drawing.Font("Segoe UI", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label10.Location = new System.Drawing.Point(6, 75);
     this.label10.Name     = "label10";
     this.label10.Size     = new System.Drawing.Size(16, 13);
     this.label10.TabIndex = 55;
     this.label10.Text     = "4:";
     //
     // label1
     //
     this.label1.AutoSize = true;
     this.label1.Location = new System.Drawing.Point(14, 200);
     this.label1.Name     = "label1";
     this.label1.Size     = new System.Drawing.Size(82, 13);
     this.label1.TabIndex = 54;
     this.label1.Text     = "Observaciones";
     //
     // txtObservaciones
     //
     this.txtObservaciones.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
     this.txtObservaciones.Location        = new System.Drawing.Point(102, 197);
     this.txtObservaciones.Multiline       = true;
     this.txtObservaciones.Name            = "txtObservaciones";
     this.txtObservaciones.Size            = new System.Drawing.Size(271, 141);
     this.txtObservaciones.TabIndex        = 53;
     //
     // label8
     //
     this.label8.AutoSize  = true;
     this.label8.BackColor = System.Drawing.SystemColors.ButtonHighlight;
     this.label8.Dock      = System.Windows.Forms.DockStyle.Left;
     this.label8.Font      = new System.Drawing.Font("Segoe UI", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label8.ForeColor = System.Drawing.Color.DarkRed;
     this.label8.Location  = new System.Drawing.Point(2, 18);
     this.label8.Name      = "label8";
     this.label8.Size      = new System.Drawing.Size(371, 51);
     this.label8.TabIndex  = 52;
     this.label8.Text      = "Tu retroalimentación es muy importante para el mejoramiento\r\ncontinuo de la induc" +
                             "ción que se realiza a las personas que se\r\nvinculan a Hersan.";
     //
     // radDock2
     //
     this.radDock2.ActiveWindow = this.documentWindow2;
     this.radDock2.Controls.Add(this.documentContainer1);
     this.radDock2.Dock                  = System.Windows.Forms.DockStyle.Fill;
     this.radDock2.IsCleanUpTarget       = true;
     this.radDock2.Location              = new System.Drawing.Point(391, 199);
     this.radDock2.MainDocumentContainer = this.documentContainer1;
     this.radDock2.Name                  = "radDock2";
     //
     //
     //
     this.radDock2.RootElement.MinSize = new System.Drawing.Size(25, 25);
     this.radDock2.ShowItemToolTips    = false;
     this.radDock2.Size     = new System.Drawing.Size(684, 401);
     this.radDock2.TabIndex = 23;
     this.radDock2.TabStop  = false;
     //
     // documentWindow2
     //
     this.documentWindow2.Controls.Add(this.gvDatos);
     this.documentWindow2.DocumentButtons   = Telerik.WinControls.UI.Docking.DocumentStripButtons.None;
     this.documentWindow2.Font              = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.documentWindow2.Location          = new System.Drawing.Point(6, 29);
     this.documentWindow2.Name              = "documentWindow2";
     this.documentWindow2.PreviousDockState = Telerik.WinControls.UI.Docking.DockState.TabbedDocument;
     this.documentWindow2.Size              = new System.Drawing.Size(662, 356);
     this.documentWindow2.Text              = "PREGUNTAS DE INDUCCION";
     //
     // gvDatos
     //
     this.gvDatos.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.gvDatos.Font     = new System.Drawing.Font("Segoe UI", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.gvDatos.Location = new System.Drawing.Point(0, 0);
     //
     //
     //
     this.gvDatos.MasterTemplate.AllowAddNewRow     = false;
     this.gvDatos.MasterTemplate.AllowColumnReorder = false;
     this.gvDatos.MasterTemplate.AllowDeleteRow     = false;
     this.gvDatos.MasterTemplate.AllowDragToGroup   = false;
     gridViewTextBoxColumn1.FieldName   = "Id";
     gridViewTextBoxColumn1.HeaderText  = "Id_Pregunta";
     gridViewTextBoxColumn1.IsVisible   = false;
     gridViewTextBoxColumn1.Name        = "Id";
     gridViewTextBoxColumn2.FieldName   = "Pregunta";
     gridViewTextBoxColumn2.HeaderText  = "Preguntas";
     gridViewTextBoxColumn2.Name        = "Pregunta";
     gridViewTextBoxColumn2.ReadOnly    = true;
     gridViewTextBoxColumn2.Width       = 290;
     gridViewCheckBoxColumn1.EditMode   = Telerik.WinControls.UI.EditMode.OnValueChange;
     gridViewCheckBoxColumn1.FieldName  = "Valor4";
     gridViewCheckBoxColumn1.HeaderText = "4";
     gridViewCheckBoxColumn1.Name       = "Valor4";
     gridViewCheckBoxColumn1.Width      = 35;
     gridViewCheckBoxColumn2.EditMode   = Telerik.WinControls.UI.EditMode.OnValueChange;
     gridViewCheckBoxColumn2.FieldName  = "Valor3";
     gridViewCheckBoxColumn2.HeaderText = "3";
     gridViewCheckBoxColumn2.Name       = "Valor3";
     gridViewCheckBoxColumn2.Width      = 35;
     gridViewCheckBoxColumn3.EditMode   = Telerik.WinControls.UI.EditMode.OnValueChange;
     gridViewCheckBoxColumn3.FieldName  = "Valor2";
     gridViewCheckBoxColumn3.HeaderText = "2";
     gridViewCheckBoxColumn3.Name       = "Valor2";
     gridViewCheckBoxColumn3.Width      = 35;
     gridViewCheckBoxColumn4.EditMode   = Telerik.WinControls.UI.EditMode.OnValueChange;
     gridViewCheckBoxColumn4.FieldName  = "Valor1";
     gridViewCheckBoxColumn4.HeaderText = "1";
     gridViewCheckBoxColumn4.Name       = "Valor1";
     gridViewCheckBoxColumn4.Width      = 35;
     this.gvDatos.MasterTemplate.Columns.AddRange(new Telerik.WinControls.UI.GridViewDataColumn[] {
         gridViewTextBoxColumn1,
         gridViewTextBoxColumn2,
         gridViewCheckBoxColumn1,
         gridViewCheckBoxColumn2,
         gridViewCheckBoxColumn3,
         gridViewCheckBoxColumn4
     });
     this.gvDatos.MasterTemplate.ShowRowHeaderColumn = false;
     this.gvDatos.MasterTemplate.ViewDefinition      = tableViewDefinition1;
     this.gvDatos.Name              = "gvDatos";
     this.gvDatos.ShowGroupPanel    = false;
     this.gvDatos.ShowNoDataText    = false;
     this.gvDatos.ShowRowErrors     = false;
     this.gvDatos.Size              = new System.Drawing.Size(662, 356);
     this.gvDatos.TabIndex          = 22;
     this.gvDatos.CellValueChanged += new Telerik.WinControls.UI.GridViewCellEventHandler(this.gvDatos_CellValueChanged_1);
     //
     // documentContainer1
     //
     this.documentContainer1.Controls.Add(this.documentTabStrip2);
     this.documentContainer1.Name = "documentContainer1";
     //
     //
     //
     this.documentContainer1.RootElement.MinSize = new System.Drawing.Size(25, 25);
     this.documentContainer1.SizeInfo.SizeMode   = Telerik.WinControls.UI.Docking.SplitPanelSizeMode.Fill;
     //
     // documentTabStrip2
     //
     this.documentTabStrip2.CanUpdateChildIndex = true;
     this.documentTabStrip2.Controls.Add(this.documentWindow2);
     this.documentTabStrip2.Location = new System.Drawing.Point(0, 0);
     this.documentTabStrip2.Name     = "documentTabStrip2";
     //
     //
     //
     this.documentTabStrip2.RootElement.MinSize = new System.Drawing.Size(25, 25);
     this.documentTabStrip2.SelectedIndex       = 0;
     this.documentTabStrip2.Size     = new System.Drawing.Size(674, 391);
     this.documentTabStrip2.TabIndex = 0;
     this.documentTabStrip2.TabStop  = false;
     //
     // label7
     //
     this.label7.AutoSize = true;
     this.label7.Font     = new System.Drawing.Font("Segoe UI Semibold", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label7.Location = new System.Drawing.Point(169, 86);
     this.label7.Name     = "label7";
     this.label7.Size     = new System.Drawing.Size(68, 13);
     this.label7.TabIndex = 51;
     this.label7.Text     = "Calificación:";
     //
     // txtId
     //
     this.txtId.Location = new System.Drawing.Point(413, 86);
     this.txtId.Name     = "txtId";
     this.txtId.ReadOnly = true;
     this.txtId.Size     = new System.Drawing.Size(45, 20);
     this.txtId.TabIndex = 56;
     this.txtId.Visible  = false;
     //
     // txtCalif
     //
     this.txtCalif.Location    = new System.Drawing.Point(242, 84);
     this.txtCalif.MaxLength   = 2;
     this.txtCalif.Name        = "txtCalif";
     this.txtCalif.Size        = new System.Drawing.Size(60, 20);
     this.txtCalif.TabIndex    = 57;
     this.txtCalif.TextAlign   = System.Windows.Forms.HorizontalAlignment.Right;
     this.txtCalif.KeyPress   += new System.Windows.Forms.KeyPressEventHandler(this.Entero_KeyPress);
     this.txtCalif.Validating += new System.ComponentModel.CancelEventHandler(this.txtCalif_Validating);
     //
     // radPanel1
     //
     this.radPanel1.Controls.Add(this.txtIdd);
     this.radPanel1.Controls.Add(this.txtIdExp);
     this.radPanel1.Controls.Add(this.lblFecha);
     this.radPanel1.Controls.Add(this.label4);
     this.radPanel1.Controls.Add(this.label5);
     this.radPanel1.Controls.Add(this.label6);
     this.radPanel1.Controls.Add(this.txtNombres);
     this.radPanel1.Controls.Add(this.txtApellidos);
     this.radPanel1.Controls.Add(this.txtCalif);
     this.radPanel1.Controls.Add(this.txtId);
     this.radPanel1.Controls.Add(this.label7);
     this.radPanel1.Controls.Add(this.picFoto);
     this.radPanel1.Dock     = System.Windows.Forms.DockStyle.Top;
     this.radPanel1.Location = new System.Drawing.Point(0, 81);
     this.radPanel1.Name     = "radPanel1";
     this.radPanel1.Size     = new System.Drawing.Size(1075, 118);
     this.radPanel1.TabIndex = 8;
     //
     // txtIdd
     //
     this.txtIdd.Location = new System.Drawing.Point(508, 83);
     this.txtIdd.Name     = "txtIdd";
     this.txtIdd.Size     = new System.Drawing.Size(63, 20);
     this.txtIdd.TabIndex = 66;
     this.txtIdd.Visible  = false;
     //
     // txtIdExp
     //
     this.txtIdExp.Location  = new System.Drawing.Point(242, 7);
     this.txtIdExp.Name      = "txtIdExp";
     this.txtIdExp.ReadOnly  = true;
     this.txtIdExp.Size      = new System.Drawing.Size(43, 20);
     this.txtIdExp.TabIndex  = 65;
     this.txtIdExp.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     //
     // lblFecha
     //
     this.lblFecha.AutoSize = true;
     this.lblFecha.Font     = new System.Drawing.Font("Segoe UI Semibold", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblFecha.Location = new System.Drawing.Point(657, 6);
     this.lblFecha.Name     = "lblFecha";
     this.lblFecha.Size     = new System.Drawing.Size(19, 13);
     this.lblFecha.TabIndex = 64;
     this.lblFecha.Text     = "---";
     //
     // label4
     //
     this.label4.AutoSize = true;
     this.label4.Location = new System.Drawing.Point(187, 7);
     this.label4.Name     = "label4";
     this.label4.Size     = new System.Drawing.Size(46, 13);
     this.label4.TabIndex = 61;
     this.label4.Text     = "No. Exp";
     //
     // label5
     //
     this.label5.AutoSize = true;
     this.label5.Location = new System.Drawing.Point(184, 59);
     this.label5.Name     = "label5";
     this.label5.Size     = new System.Drawing.Size(53, 13);
     this.label5.TabIndex = 62;
     this.label5.Text     = "Nombres";
     //
     // label6
     //
     this.label6.AutoSize = true;
     this.label6.Location = new System.Drawing.Point(179, 33);
     this.label6.Name     = "label6";
     this.label6.Size     = new System.Drawing.Size(58, 13);
     this.label6.TabIndex = 63;
     this.label6.Text     = "Apellidos ";
     //
     // txtNombres
     //
     this.txtNombres.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
     this.txtNombres.Location        = new System.Drawing.Point(242, 59);
     this.txtNombres.Name            = "txtNombres";
     this.txtNombres.ReadOnly        = true;
     this.txtNombres.Size            = new System.Drawing.Size(193, 20);
     this.txtNombres.TabIndex        = 58;
     //
     // txtApellidos
     //
     this.txtApellidos.Location = new System.Drawing.Point(242, 33);
     this.txtApellidos.Name     = "txtApellidos";
     this.txtApellidos.ReadOnly = true;
     this.txtApellidos.Size     = new System.Drawing.Size(193, 20);
     this.txtApellidos.TabIndex = 60;
     //
     // picFoto
     //
     this.picFoto.Image      = ((System.Drawing.Image)(resources.GetObject("picFoto.Image")));
     this.picFoto.Location   = new System.Drawing.Point(43, 6);
     this.picFoto.Name       = "picFoto";
     this.picFoto.Size       = new System.Drawing.Size(105, 100);
     this.picFoto.SizeMode   = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
     this.picFoto.TabIndex   = 12;
     this.picFoto.TabStop    = false;
     this.picFoto.WaitOnLoad = true;
     //
     // errorProvider1
     //
     this.errorProvider1.ContainerControl = this;
     //
     // frmEvaluacionInduccion
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize          = new System.Drawing.Size(1075, 600);
     this.Controls.Add(this.radDock2);
     this.Controls.Add(this.radGroupBox1);
     this.Controls.Add(this.radGroupBox2);
     this.Controls.Add(this.radPanel1);
     this.Controls.Add(this.radCommandBar1);
     this.Name = "frmEvaluacionInduccion";
     //
     //
     //
     this.RootElement.ApplyShapeToControl = true;
     this.ShowIcon  = false;
     this.Text      = "Evaluación de Inducción";
     this.ThemeName = "Material";
     this.Load     += new System.EventHandler(this.frmEvaluacionInduccion_Load);
     ((System.ComponentModel.ISupportInitialize)(this.radCommandBar1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radGroupBox2)).EndInit();
     this.radGroupBox2.ResumeLayout(false);
     this.radGroupBox2.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.radGroupBox1)).EndInit();
     this.radGroupBox1.ResumeLayout(false);
     this.radGroupBox1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.radDock2)).EndInit();
     this.radDock2.ResumeLayout(false);
     this.documentWindow2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gvDatos.MasterTemplate)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvDatos)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.documentContainer1)).EndInit();
     this.documentContainer1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.documentTabStrip2)).EndInit();
     this.documentTabStrip2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.txtCalif)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radPanel1)).EndInit();
     this.radPanel1.ResumeLayout(false);
     this.radPanel1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.picFoto)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.errorProvider1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this)).EndInit();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
コード例 #38
0
        /// <summary>
        /// Required method for Designer support - do not modify
        /// the contents of this method with the code editor.
        /// </summary>
        private void InitializeComponent()
        {
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn1 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn2 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn3 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewCheckBoxColumn gridViewCheckBoxColumn1 = new Telerik.WinControls.UI.GridViewCheckBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn4 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewCommandColumn gridViewCommandColumn1 = new Telerik.WinControls.UI.GridViewCommandColumn();
            this.radLabel2 = new Telerik.WinControls.UI.RadLabel();
            this.TxtMovil = new Telerik.WinControls.UI.RadTextBox();
            this.BtnCrear = new System.Windows.Forms.Button();
            this.DgvTalleresMoviles = new Telerik.WinControls.UI.RadGridView();
            this.BtnLimpiar = new Telerik.WinControls.UI.RadButton();
            this.panel1 = new System.Windows.Forms.Panel();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel2)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.TxtMovil)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.DgvTalleresMoviles)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.DgvTalleresMoviles.MasterTemplate)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.BtnLimpiar)).BeginInit();
            this.panel1.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
            this.SuspendLayout();
            // 
            // radLabel2
            // 
            this.radLabel2.Font = new System.Drawing.Font("Consolas", 10.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.radLabel2.Location = new System.Drawing.Point(3, 15);
            this.radLabel2.Name = "radLabel2";
            this.radLabel2.Size = new System.Drawing.Size(70, 25);
            this.radLabel2.TabIndex = 23;
            this.radLabel2.Text = "Movil:";
            // 
            // TxtMovil
            // 
            this.TxtMovil.Font = new System.Drawing.Font("Consolas", 10.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.TxtMovil.Location = new System.Drawing.Point(79, 12);
            this.TxtMovil.Name = "TxtMovil";
            this.TxtMovil.Size = new System.Drawing.Size(357, 28);
            this.TxtMovil.TabIndex = 17;
            this.TxtMovil.TabStop = false;
            this.TxtMovil.ThemeName = "TelerikMetro";
            this.TxtMovil.TextChanged += new System.EventHandler(this.TxtMovil_TextChanged);
            // 
            // BtnCrear
            // 
            this.BtnCrear.BackColor = System.Drawing.Color.Yellow;
            this.BtnCrear.FlatAppearance.BorderSize = 0;
            this.BtnCrear.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
            this.BtnCrear.Location = new System.Drawing.Point(12, -6);
            this.BtnCrear.Name = "BtnCrear";
            this.BtnCrear.Size = new System.Drawing.Size(153, 41);
            this.BtnCrear.TabIndex = 11;
            this.BtnCrear.Text = "Crear";
            this.BtnCrear.UseVisualStyleBackColor = false;
            this.BtnCrear.Click += new System.EventHandler(this.BtnCrear_Click);
            // 
            // DgvTalleresMoviles
            // 
            this.DgvTalleresMoviles.Location = new System.Drawing.Point(12, 96);
            // 
            // DgvTalleresMoviles
            // 
            this.DgvTalleresMoviles.MasterTemplate.AllowAddNewRow = false;
            this.DgvTalleresMoviles.MasterTemplate.AllowDeleteRow = false;
            this.DgvTalleresMoviles.MasterTemplate.AllowDragToGroup = false;
            gridViewTextBoxColumn1.FieldName = "MovilNumero";
            gridViewTextBoxColumn1.FormatString = "";
            gridViewTextBoxColumn1.HeaderText = "Movil";
            gridViewTextBoxColumn1.Name = "Movil";
            gridViewTextBoxColumn1.ReadOnly = true;
            gridViewTextBoxColumn1.Width = 70;
            gridViewTextBoxColumn2.FieldName = "FechaDesde";
            gridViewTextBoxColumn2.FormatString = "";
            gridViewTextBoxColumn2.HeaderText = "Fecha Desde";
            gridViewTextBoxColumn2.Name = "FechaDesde";
            gridViewTextBoxColumn2.ReadOnly = true;
            gridViewTextBoxColumn2.Width = 150;
            gridViewTextBoxColumn3.FieldName = "FechaHasta";
            gridViewTextBoxColumn3.FormatString = "";
            gridViewTextBoxColumn3.HeaderText = "Fecha Hasta";
            gridViewTextBoxColumn3.Name = "FechaHasta";
            gridViewTextBoxColumn3.ReadOnly = true;
            gridViewTextBoxColumn3.Width = 150;
            gridViewCheckBoxColumn1.FieldName = "Activo";
            gridViewCheckBoxColumn1.HeaderText = "Activo";
            gridViewCheckBoxColumn1.Name = "Activo";
            gridViewCheckBoxColumn1.ReadOnly = true;
            gridViewCheckBoxColumn1.Width = 80;
            gridViewTextBoxColumn4.FieldName = "Observaciones";
            gridViewTextBoxColumn4.HeaderText = "Observaciones";
            gridViewTextBoxColumn4.MinWidth = 350;
            gridViewTextBoxColumn4.Name = "Observaciones";
            gridViewTextBoxColumn4.ReadOnly = true;
            gridViewTextBoxColumn4.Width = 350;
            gridViewCommandColumn1.HeaderText = "";
            gridViewCommandColumn1.Image = global::GestionAdministrativa.Win.Properties.Resources.Reload_16x16;
            gridViewCommandColumn1.MaxWidth = 25;
            gridViewCommandColumn1.MinWidth = 25;
            gridViewCommandColumn1.Name = "Fin";
            gridViewCommandColumn1.RowSpan = 16;
            gridViewCommandColumn1.Width = 25;
            this.DgvTalleresMoviles.MasterTemplate.Columns.AddRange(new Telerik.WinControls.UI.GridViewDataColumn[] {
            gridViewTextBoxColumn1,
            gridViewTextBoxColumn2,
            gridViewTextBoxColumn3,
            gridViewCheckBoxColumn1,
            gridViewTextBoxColumn4,
            gridViewCommandColumn1});
            this.DgvTalleresMoviles.Name = "DgvTalleresMoviles";
            this.DgvTalleresMoviles.Size = new System.Drawing.Size(1254, 607);
            this.DgvTalleresMoviles.TabIndex = 0;
            this.DgvTalleresMoviles.Text = "radGridView1";
            this.DgvTalleresMoviles.ThemeName = "TelerikMetro";
            this.DgvTalleresMoviles.CommandCellClick += new Telerik.WinControls.UI.CommandCellClickEventHandler(this.DgvTalleresMoviles_CommandCellClick);
            // 
            // BtnLimpiar
            // 
            this.BtnLimpiar.Font = new System.Drawing.Font("Consolas", 10.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.BtnLimpiar.Location = new System.Drawing.Point(1045, 4);
            this.BtnLimpiar.Margin = new System.Windows.Forms.Padding(4);
            this.BtnLimpiar.Name = "BtnLimpiar";
            this.BtnLimpiar.Size = new System.Drawing.Size(205, 41);
            this.BtnLimpiar.TabIndex = 24;
            this.BtnLimpiar.Text = "Limpiar Filtros";
            this.BtnLimpiar.ThemeName = "TelerikMetro";
            this.BtnLimpiar.Click += new System.EventHandler(this.BtnLimpiar_Click);
            // 
            // panel1
            // 
            this.panel1.Controls.Add(this.radLabel2);
            this.panel1.Controls.Add(this.BtnLimpiar);
            this.panel1.Controls.Add(this.TxtMovil);
            this.panel1.Location = new System.Drawing.Point(12, 41);
            this.panel1.Name = "panel1";
            this.panel1.Size = new System.Drawing.Size(1254, 49);
            this.panel1.TabIndex = 25;
            // 
            // FrmTalleresListado
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 16F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.ClientSize = new System.Drawing.Size(1268, 705);
            this.ControlBox = false;
            this.Controls.Add(this.panel1);
            this.Controls.Add(this.BtnCrear);
            this.Controls.Add(this.DgvTalleresMoviles);
            this.Margin = new System.Windows.Forms.Padding(4);
            this.Name = "FrmTalleresListado";
            // 
            // 
            // 
            this.RootElement.ApplyShapeToControl = true;
            this.Text = "Listado Talleres";
            this.Load += new System.EventHandler(this.FrmTalleresListado_Load);
            ((System.ComponentModel.ISupportInitialize)(this.radLabel2)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.TxtMovil)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.DgvTalleresMoviles.MasterTemplate)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.DgvTalleresMoviles)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.BtnLimpiar)).EndInit();
            this.panel1.ResumeLayout(false);
            this.panel1.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this)).EndInit();
            this.ResumeLayout(false);

        }
コード例 #39
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     Telerik.WinControls.UI.GridViewTextBoxColumn  gridViewTextBoxColumn1  = new Telerik.WinControls.UI.GridViewTextBoxColumn();
     Telerik.WinControls.UI.GridViewCheckBoxColumn gridViewCheckBoxColumn1 = new Telerik.WinControls.UI.GridViewCheckBoxColumn();
     this.radPanel1 = new Telerik.WinControls.UI.RadPanel();
     this.btnCancel = new Telerik.WinControls.UI.RadButton();
     this.btnDelete = new Telerik.WinControls.UI.RadButton();
     this.gvSY      = new Telerik.WinControls.UI.RadGridView();
     this.radPanel2 = new Telerik.WinControls.UI.RadPanel();
     this.txtSY     = new Telerik.WinControls.UI.RadTextBox();
     this.radLabel1 = new Telerik.WinControls.UI.RadLabel();
     this.btnAdd    = new Telerik.WinControls.UI.RadButton();
     ((System.ComponentModel.ISupportInitialize)(this.radPanel1)).BeginInit();
     this.radPanel1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.btnCancel)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.btnDelete)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvSY)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvSY.MasterTemplate)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radPanel2)).BeginInit();
     this.radPanel2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.txtSY)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.btnAdd)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
     this.SuspendLayout();
     //
     // radPanel1
     //
     this.radPanel1.Controls.Add(this.btnCancel);
     this.radPanel1.Controls.Add(this.btnDelete);
     this.radPanel1.Dock     = System.Windows.Forms.DockStyle.Bottom;
     this.radPanel1.Location = new System.Drawing.Point(0, 375);
     this.radPanel1.Name     = "radPanel1";
     this.radPanel1.Size     = new System.Drawing.Size(281, 50);
     this.radPanel1.TabIndex = 4;
     //
     // btnCancel
     //
     this.btnCancel.Anchor       = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.btnCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     this.btnCancel.Location     = new System.Drawing.Point(12, 14);
     this.btnCancel.Name         = "btnCancel";
     this.btnCancel.Size         = new System.Drawing.Size(83, 24);
     this.btnCancel.TabIndex     = 4;
     this.btnCancel.Text         = "Close";
     this.btnCancel.Click       += new System.EventHandler(this.btnCancel_Click);
     //
     // btnDelete
     //
     this.btnDelete.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.btnDelete.Location = new System.Drawing.Point(182, 14);
     this.btnDelete.Name     = "btnDelete";
     this.btnDelete.Size     = new System.Drawing.Size(83, 24);
     this.btnDelete.TabIndex = 3;
     this.btnDelete.Text     = "Delete";
     this.btnDelete.Visible  = false;
     this.btnDelete.Click   += new System.EventHandler(this.btnDelete_Click);
     //
     // gvSY
     //
     this.gvSY.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.gvSY.Location = new System.Drawing.Point(0, 69);
     //
     //
     //
     this.gvSY.MasterTemplate.AllowAddNewRow   = false;
     this.gvSY.MasterTemplate.AllowDragToGroup = false;
     gridViewTextBoxColumn1.FieldName          = "SY";
     gridViewTextBoxColumn1.HeaderText         = "School Year";
     gridViewTextBoxColumn1.Name          = "SY";
     gridViewTextBoxColumn1.ReadOnly      = true;
     gridViewTextBoxColumn1.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
     gridViewTextBoxColumn1.Width         = 150;
     gridViewCheckBoxColumn1.FieldName    = "CurrentSY";
     gridViewCheckBoxColumn1.HeaderText   = "Current";
     gridViewCheckBoxColumn1.Name         = "CurrentSY";
     this.gvSY.MasterTemplate.Columns.AddRange(new Telerik.WinControls.UI.GridViewDataColumn[] {
         gridViewTextBoxColumn1,
         gridViewCheckBoxColumn1
     });
     this.gvSY.MasterTemplate.EnableGrouping = false;
     this.gvSY.Name              = "gvSY";
     this.gvSY.Size              = new System.Drawing.Size(281, 306);
     this.gvSY.TabIndex          = 2;
     this.gvSY.ValueChanging    += new Telerik.WinControls.UI.ValueChangingEventHandler(this.gvSY_ValueChanging);
     this.gvSY.SelectionChanged += new System.EventHandler(this.gvSY_SelectionChanged);
     this.gvSY.CellValueChanged += new Telerik.WinControls.UI.GridViewCellEventHandler(this.gvSY_CellValueChanged);
     //
     // radPanel2
     //
     this.radPanel2.Controls.Add(this.txtSY);
     this.radPanel2.Controls.Add(this.radLabel1);
     this.radPanel2.Controls.Add(this.btnAdd);
     this.radPanel2.Dock     = System.Windows.Forms.DockStyle.Top;
     this.radPanel2.Location = new System.Drawing.Point(0, 0);
     this.radPanel2.Name     = "radPanel2";
     this.radPanel2.Size     = new System.Drawing.Size(281, 69);
     this.radPanel2.TabIndex = 5;
     //
     // txtSY
     //
     this.txtSY.Location  = new System.Drawing.Point(32, 28);
     this.txtSY.MaxLength = 4;
     this.txtSY.Name      = "txtSY";
     this.txtSY.Size      = new System.Drawing.Size(100, 20);
     this.txtSY.TabIndex  = 0;
     this.txtSY.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.txtSY_KeyPress);
     //
     // radLabel1
     //
     this.radLabel1.Location = new System.Drawing.Point(8, 29);
     this.radLabel1.Name     = "radLabel1";
     this.radLabel1.Size     = new System.Drawing.Size(18, 18);
     this.radLabel1.TabIndex = 15;
     this.radLabel1.Text     = "SY";
     //
     // btnAdd
     //
     this.btnAdd.Location = new System.Drawing.Point(138, 26);
     this.btnAdd.Name     = "btnAdd";
     this.btnAdd.Size     = new System.Drawing.Size(65, 24);
     this.btnAdd.TabIndex = 1;
     this.btnAdd.Text     = "Add";
     this.btnAdd.Click   += new System.EventHandler(this.btnAdd_Click);
     //
     // frmSYList
     //
     this.AcceptButton        = this.btnAdd;
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.CancelButton        = this.btnCancel;
     this.ClientSize          = new System.Drawing.Size(281, 425);
     this.ControlBox          = false;
     this.Controls.Add(this.gvSY);
     this.Controls.Add(this.radPanel2);
     this.Controls.Add(this.radPanel1);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
     this.Name            = "frmSYList";
     //
     //
     //
     this.RootElement.ApplyShapeToControl = true;
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text          = "Manage School Year";
     this.ThemeName     = "ControlDefault";
     this.Load         += new System.EventHandler(this.frmSYList_Load);
     ((System.ComponentModel.ISupportInitialize)(this.radPanel1)).EndInit();
     this.radPanel1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.btnCancel)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.btnDelete)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvSY.MasterTemplate)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvSY)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radPanel2)).EndInit();
     this.radPanel2.ResumeLayout(false);
     this.radPanel2.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.txtSY)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.btnAdd)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this)).EndInit();
     this.ResumeLayout(false);
 }
コード例 #40
0
        /// <summary>
        /// Required method for Designer support - do not modify
        /// the contents of this method with the code editor.
        /// </summary>
        private void InitializeComponent()
        {
            Telerik.WinControls.UI.GridViewCheckBoxColumn gridViewCheckBoxColumn1 = new Telerik.WinControls.UI.GridViewCheckBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn1 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewHyperlinkColumn gridViewHyperlinkColumn1 = new Telerik.WinControls.UI.GridViewHyperlinkColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn2 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn3 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn4 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn5 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn6 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn7 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn8 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn9 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn10 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn11 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            this.radPanel1 = new Telerik.WinControls.UI.RadPanel();
            this.radGroupBox3 = new Telerik.WinControls.UI.RadGroupBox();
            this.radGroupBox4 = new Telerik.WinControls.UI.RadGroupBox();
            this.rgv_ApproveMN = new Telerik.WinControls.UI.RadGridView();
            this.radPanel2 = new Telerik.WinControls.UI.RadPanel();
            this.radButtonUnChechAll = new Telerik.WinControls.UI.RadButton();
            this.radButtonCheckAll = new Telerik.WinControls.UI.RadButton();
            this.radGroupBox2 = new Telerik.WinControls.UI.RadGroupBox();
            this.radButtonSave = new Telerik.WinControls.UI.RadButton();
            this.radGroupBox1 = new Telerik.WinControls.UI.RadGroupBox();
            this.txtDocNumber = new Telerik.WinControls.UI.RadTextBox();
            this.txt_DocDate = new Telerik.WinControls.UI.RadTextBox();
            this.txt_DocId = new Telerik.WinControls.UI.RadTextBox();
            this.txt_EmpId = new Telerik.WinControls.UI.RadTextBox();
            this.rdb_EmpId = new Telerik.WinControls.UI.RadRadioButton();
            this.rdb_DocId = new Telerik.WinControls.UI.RadRadioButton();
            this.rdb_Section = new Telerik.WinControls.UI.RadRadioButton();
            this.radButtonserch = new Telerik.WinControls.UI.RadButton();
            this.dt_To = new Telerik.WinControls.UI.RadDateTimePicker();
            this.ddl_Section = new Telerik.WinControls.UI.RadDropDownList();
            this.label4 = new System.Windows.Forms.Label();
            this.dt_From = new Telerik.WinControls.UI.RadDateTimePicker();
            this.label3 = new System.Windows.Forms.Label();
            ((System.ComponentModel.ISupportInitialize)(this.radPanel1)).BeginInit();
            this.radPanel1.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.radGroupBox3)).BeginInit();
            this.radGroupBox3.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.radGroupBox4)).BeginInit();
            this.radGroupBox4.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.rgv_ApproveMN)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.rgv_ApproveMN.MasterTemplate)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radPanel2)).BeginInit();
            this.radPanel2.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.radButtonUnChechAll)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radButtonCheckAll)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radGroupBox2)).BeginInit();
            this.radGroupBox2.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.radButtonSave)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radGroupBox1)).BeginInit();
            this.radGroupBox1.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.txtDocNumber)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.txt_DocDate)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.txt_DocId)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.txt_EmpId)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.rdb_EmpId)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.rdb_DocId)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.rdb_Section)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radButtonserch)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.dt_To)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.ddl_Section)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.dt_From)).BeginInit();
            this.SuspendLayout();
            // 
            // radPanel1
            // 
            this.radPanel1.Controls.Add(this.radGroupBox3);
            this.radPanel1.Controls.Add(this.radGroupBox2);
            this.radPanel1.Controls.Add(this.radGroupBox1);
            this.radPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
            this.radPanel1.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(222)));
            this.radPanel1.Location = new System.Drawing.Point(0, 0);
            this.radPanel1.Margin = new System.Windows.Forms.Padding(4);
            this.radPanel1.Name = "radPanel1";
            this.radPanel1.Size = new System.Drawing.Size(784, 561);
            this.radPanel1.TabIndex = 0;
            // 
            // radGroupBox3
            // 
            this.radGroupBox3.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
            this.radGroupBox3.Controls.Add(this.radGroupBox4);
            this.radGroupBox3.Controls.Add(this.radPanel2);
            this.radGroupBox3.Dock = System.Windows.Forms.DockStyle.Fill;
            this.radGroupBox3.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(222)));
            this.radGroupBox3.HeaderText = "แสดงข้อมูล";
            this.radGroupBox3.Location = new System.Drawing.Point(0, 139);
            this.radGroupBox3.Margin = new System.Windows.Forms.Padding(4);
            this.radGroupBox3.Name = "radGroupBox3";
            this.radGroupBox3.Padding = new System.Windows.Forms.Padding(3, 22, 3, 2);
            // 
            // 
            // 
            this.radGroupBox3.RootElement.Padding = new System.Windows.Forms.Padding(3, 22, 3, 2);
            this.radGroupBox3.Size = new System.Drawing.Size(674, 422);
            this.radGroupBox3.TabIndex = 2;
            this.radGroupBox3.Text = "แสดงข้อมูล";
            // 
            // radGroupBox4
            // 
            this.radGroupBox4.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
            this.radGroupBox4.Controls.Add(this.rgv_ApproveMN);
            this.radGroupBox4.Dock = System.Windows.Forms.DockStyle.Fill;
            this.radGroupBox4.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(222)));
            this.radGroupBox4.HeaderText = "";
            this.radGroupBox4.Location = new System.Drawing.Point(3, 59);
            this.radGroupBox4.Name = "radGroupBox4";
            // 
            // 
            // 
            this.radGroupBox4.RootElement.Padding = new System.Windows.Forms.Padding(2, 18, 2, 2);
            this.radGroupBox4.Size = new System.Drawing.Size(668, 361);
            this.radGroupBox4.TabIndex = 17;
            // 
            // rgv_ApproveMN
            // 
            this.rgv_ApproveMN.Dock = System.Windows.Forms.DockStyle.Fill;
            this.rgv_ApproveMN.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(222)));
            this.rgv_ApproveMN.Location = new System.Drawing.Point(2, 18);
            this.rgv_ApproveMN.Margin = new System.Windows.Forms.Padding(4);
            // 
            // rgv_ApproveMN
            // 
            gridViewCheckBoxColumn1.HeaderText = "";
            gridViewCheckBoxColumn1.Name = "CHECK";
            gridViewCheckBoxColumn1.Width = 20;
            gridViewTextBoxColumn1.FieldName = "DocId";
            gridViewTextBoxColumn1.HeaderText = "เลขที่เอกสาร";
            gridViewTextBoxColumn1.Name = "DocId";
            gridViewTextBoxColumn1.ReadOnly = true;
            gridViewHyperlinkColumn1.FieldName = "OutOfficeId";
            gridViewHyperlinkColumn1.HeaderText = "ลำดับ";
            gridViewHyperlinkColumn1.Name = "OutOfficeId";
            gridViewHyperlinkColumn1.Width = 20;
            gridViewTextBoxColumn2.FieldName = "EmplId";
            gridViewTextBoxColumn2.HeaderText = "รหัสพนักงาน";
            gridViewTextBoxColumn2.Name = "EmplId";
            gridViewTextBoxColumn2.ReadOnly = true;
            gridViewTextBoxColumn3.FieldName = "EmplFullName";
            gridViewTextBoxColumn3.HeaderText = "ชื่อ-สกุล";
            gridViewTextBoxColumn3.Name = "EmplFullName";
            gridViewTextBoxColumn3.ReadOnly = true;
            gridViewTextBoxColumn4.FieldName = "Dimention";
            gridViewTextBoxColumn4.HeaderText = "แผนก";
            gridViewTextBoxColumn4.Name = "Dimention";
            gridViewTextBoxColumn4.ReadOnly = true;
            gridViewTextBoxColumn5.FieldName = "Dept";
            gridViewTextBoxColumn5.HeaderText = "ตำแหน่ง";
            gridViewTextBoxColumn5.Name = "Dept";
            gridViewTextBoxColumn5.ReadOnly = true;
            gridViewTextBoxColumn6.FieldName = "ShiftId";
            gridViewTextBoxColumn6.HeaderText = "รหัสกะ";
            gridViewTextBoxColumn6.Name = "ShiftId";
            gridViewTextBoxColumn7.FieldName = "StartTime";
            gridViewTextBoxColumn7.HeaderText = "เริ่มทำ";
            gridViewTextBoxColumn7.Name = "StartTime";
            gridViewTextBoxColumn7.ReadOnly = true;
            gridViewTextBoxColumn8.FieldName = "EndTime";
            gridViewTextBoxColumn8.HeaderText = "สิ้นสุด";
            gridViewTextBoxColumn8.Name = "EndTime";
            gridViewTextBoxColumn8.ReadOnly = true;
            gridViewTextBoxColumn9.FieldName = "OutType";
            gridViewTextBoxColumn9.HeaderText = "ออกนอก";
            gridViewTextBoxColumn9.Name = "OutType";
            gridViewTextBoxColumn9.ReadOnly = true;
            gridViewTextBoxColumn10.FieldName = "Reason";
            gridViewTextBoxColumn10.HeaderText = "เหตุผล";
            gridViewTextBoxColumn10.Name = "Reason";
            gridViewTextBoxColumn10.ReadOnly = true;
            gridViewTextBoxColumn11.FieldName = "CombackType";
            gridViewTextBoxColumn11.HeaderText = "กลับเข้ามา";
            gridViewTextBoxColumn11.Name = "CombackType";
            gridViewTextBoxColumn11.ReadOnly = true;
            this.rgv_ApproveMN.MasterTemplate.Columns.AddRange(new Telerik.WinControls.UI.GridViewDataColumn[] {
            gridViewCheckBoxColumn1,
            gridViewTextBoxColumn1,
            gridViewHyperlinkColumn1,
            gridViewTextBoxColumn2,
            gridViewTextBoxColumn3,
            gridViewTextBoxColumn4,
            gridViewTextBoxColumn5,
            gridViewTextBoxColumn6,
            gridViewTextBoxColumn7,
            gridViewTextBoxColumn8,
            gridViewTextBoxColumn9,
            gridViewTextBoxColumn10,
            gridViewTextBoxColumn11});
            this.rgv_ApproveMN.Name = "rgv_ApproveMN";
            this.rgv_ApproveMN.ShowGroupPanel = false;
            this.rgv_ApproveMN.Size = new System.Drawing.Size(664, 341);
            this.rgv_ApproveMN.TabIndex = 1;
            this.rgv_ApproveMN.Text = "radGridView1";
            // 
            // radPanel2
            // 
            this.radPanel2.Controls.Add(this.radButtonUnChechAll);
            this.radPanel2.Controls.Add(this.radButtonCheckAll);
            this.radPanel2.Dock = System.Windows.Forms.DockStyle.Top;
            this.radPanel2.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(222)));
            this.radPanel2.Location = new System.Drawing.Point(3, 22);
            this.radPanel2.Name = "radPanel2";
            this.radPanel2.Size = new System.Drawing.Size(668, 37);
            this.radPanel2.TabIndex = 16;
            // 
            // radButtonUnChechAll
            // 
            this.radButtonUnChechAll.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(222)));
            this.radButtonUnChechAll.Location = new System.Drawing.Point(109, 7);
            this.radButtonUnChechAll.Margin = new System.Windows.Forms.Padding(4);
            this.radButtonUnChechAll.Name = "radButtonUnChechAll";
            this.radButtonUnChechAll.Size = new System.Drawing.Size(92, 23);
            this.radButtonUnChechAll.TabIndex = 4;
            this.radButtonUnChechAll.Text = "UnCheckAll";
            this.radButtonUnChechAll.Click += new System.EventHandler(this.radButtonUnChechAll_Click);
            // 
            // radButtonCheckAll
            // 
            this.radButtonCheckAll.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(222)));
            this.radButtonCheckAll.Location = new System.Drawing.Point(17, 7);
            this.radButtonCheckAll.Margin = new System.Windows.Forms.Padding(4);
            this.radButtonCheckAll.Name = "radButtonCheckAll";
            this.radButtonCheckAll.Size = new System.Drawing.Size(84, 23);
            this.radButtonCheckAll.TabIndex = 3;
            this.radButtonCheckAll.Text = "CheckAll";
            this.radButtonCheckAll.Click += new System.EventHandler(this.radButtonCheckAll_Click);
            // 
            // radGroupBox2
            // 
            this.radGroupBox2.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
            this.radGroupBox2.Controls.Add(this.radButtonSave);
            this.radGroupBox2.Dock = System.Windows.Forms.DockStyle.Right;
            this.radGroupBox2.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(222)));
            this.radGroupBox2.HeaderText = "";
            this.radGroupBox2.Location = new System.Drawing.Point(674, 139);
            this.radGroupBox2.Margin = new System.Windows.Forms.Padding(4);
            this.radGroupBox2.Name = "radGroupBox2";
            this.radGroupBox2.Padding = new System.Windows.Forms.Padding(3, 22, 3, 2);
            // 
            // 
            // 
            this.radGroupBox2.RootElement.Padding = new System.Windows.Forms.Padding(3, 22, 3, 2);
            this.radGroupBox2.Size = new System.Drawing.Size(110, 422);
            this.radGroupBox2.TabIndex = 1;
            // 
            // radButtonSave
            // 
            this.radButtonSave.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(222)));
            this.radButtonSave.Location = new System.Drawing.Point(5, 30);
            this.radButtonSave.Margin = new System.Windows.Forms.Padding(4);
            this.radButtonSave.Name = "radButtonSave";
            this.radButtonSave.Size = new System.Drawing.Size(100, 25);
            this.radButtonSave.TabIndex = 15;
            this.radButtonSave.Text = "อนุมัติ";
            // 
            // radGroupBox1
            // 
            this.radGroupBox1.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
            this.radGroupBox1.Controls.Add(this.txtDocNumber);
            this.radGroupBox1.Controls.Add(this.txt_DocDate);
            this.radGroupBox1.Controls.Add(this.txt_DocId);
            this.radGroupBox1.Controls.Add(this.txt_EmpId);
            this.radGroupBox1.Controls.Add(this.rdb_EmpId);
            this.radGroupBox1.Controls.Add(this.rdb_DocId);
            this.radGroupBox1.Controls.Add(this.rdb_Section);
            this.radGroupBox1.Controls.Add(this.radButtonserch);
            this.radGroupBox1.Controls.Add(this.dt_To);
            this.radGroupBox1.Controls.Add(this.ddl_Section);
            this.radGroupBox1.Controls.Add(this.label4);
            this.radGroupBox1.Controls.Add(this.dt_From);
            this.radGroupBox1.Controls.Add(this.label3);
            this.radGroupBox1.Dock = System.Windows.Forms.DockStyle.Top;
            this.radGroupBox1.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(222)));
            this.radGroupBox1.HeaderText = "ค้นหาข้อมูล";
            this.radGroupBox1.Location = new System.Drawing.Point(0, 0);
            this.radGroupBox1.Margin = new System.Windows.Forms.Padding(4);
            this.radGroupBox1.Name = "radGroupBox1";
            this.radGroupBox1.Padding = new System.Windows.Forms.Padding(3, 22, 3, 2);
            // 
            // 
            // 
            this.radGroupBox1.RootElement.Padding = new System.Windows.Forms.Padding(3, 22, 3, 2);
            this.radGroupBox1.Size = new System.Drawing.Size(784, 139);
            this.radGroupBox1.TabIndex = 0;
            this.radGroupBox1.Text = "ค้นหาข้อมูล";
            // 
            // txtDocNumber
            // 
            this.txtDocNumber.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(222)));
            this.txtDocNumber.Location = new System.Drawing.Point(230, 76);
            this.txtDocNumber.Margin = new System.Windows.Forms.Padding(4);
            this.txtDocNumber.MaxLength = 4;
            this.txtDocNumber.Name = "txtDocNumber";
            this.txtDocNumber.Size = new System.Drawing.Size(47, 20);
            this.txtDocNumber.TabIndex = 44;
            this.txtDocNumber.TabStop = false;
            // 
            // txt_DocDate
            // 
            this.txt_DocDate.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(222)));
            this.txt_DocDate.Location = new System.Drawing.Point(162, 76);
            this.txt_DocDate.Margin = new System.Windows.Forms.Padding(4);
            this.txt_DocDate.MaxLength = 6;
            this.txt_DocDate.Name = "txt_DocDate";
            this.txt_DocDate.Size = new System.Drawing.Size(60, 20);
            this.txt_DocDate.TabIndex = 43;
            this.txt_DocDate.TabStop = false;
            // 
            // txt_DocId
            // 
            this.txt_DocId.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(222)));
            this.txt_DocId.Location = new System.Drawing.Point(114, 76);
            this.txt_DocId.Margin = new System.Windows.Forms.Padding(4);
            this.txt_DocId.MaxLength = 3;
            this.txt_DocId.Name = "txt_DocId";
            this.txt_DocId.ReadOnly = true;
            this.txt_DocId.Size = new System.Drawing.Size(40, 20);
            this.txt_DocId.TabIndex = 42;
            this.txt_DocId.TabStop = false;
            this.txt_DocId.Text = "OUT";
            // 
            // txt_EmpId
            // 
            this.txt_EmpId.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(222)));
            this.txt_EmpId.Location = new System.Drawing.Point(116, 50);
            this.txt_EmpId.Margin = new System.Windows.Forms.Padding(4);
            this.txt_EmpId.Name = "txt_EmpId";
            this.txt_EmpId.Size = new System.Drawing.Size(250, 20);
            this.txt_EmpId.TabIndex = 38;
            this.txt_EmpId.TabStop = false;
            // 
            // rdb_EmpId
            // 
            this.rdb_EmpId.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(222)));
            this.rdb_EmpId.Location = new System.Drawing.Point(20, 52);
            this.rdb_EmpId.Margin = new System.Windows.Forms.Padding(4);
            this.rdb_EmpId.Name = "rdb_EmpId";
            this.rdb_EmpId.Size = new System.Drawing.Size(85, 18);
            this.rdb_EmpId.TabIndex = 37;
            this.rdb_EmpId.Text = "รหัสพนักงาน";
            // 
            // rdb_DocId
            // 
            this.rdb_DocId.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(222)));
            this.rdb_DocId.Location = new System.Drawing.Point(20, 78);
            this.rdb_DocId.Margin = new System.Windows.Forms.Padding(4);
            this.rdb_DocId.Name = "rdb_DocId";
            this.rdb_DocId.Size = new System.Drawing.Size(86, 18);
            this.rdb_DocId.TabIndex = 41;
            this.rdb_DocId.Text = "เลขที่เอกสาร";
            // 
            // rdb_Section
            // 
            this.rdb_Section.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(222)));
            this.rdb_Section.Location = new System.Drawing.Point(20, 26);
            this.rdb_Section.Margin = new System.Windows.Forms.Padding(4);
            this.rdb_Section.Name = "rdb_Section";
            this.rdb_Section.Size = new System.Drawing.Size(51, 18);
            this.rdb_Section.TabIndex = 33;
            this.rdb_Section.TabStop = true;
            this.rdb_Section.Text = "แผนก";
            this.rdb_Section.ToggleState = Telerik.WinControls.Enumerations.ToggleState.On;
            // 
            // radButtonserch
            // 
            this.radButtonserch.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(222)));
            this.radButtonserch.Location = new System.Drawing.Point(20, 104);
            this.radButtonserch.Margin = new System.Windows.Forms.Padding(4);
            this.radButtonserch.Name = "radButtonserch";
            this.radButtonserch.Size = new System.Drawing.Size(100, 25);
            this.radButtonserch.TabIndex = 45;
            this.radButtonserch.Text = "ค้นหา";
            // 
            // dt_To
            // 
            this.dt_To.CustomFormat = "yyyy-MM-dd";
            this.dt_To.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(222)));
            this.dt_To.Format = System.Windows.Forms.DateTimePickerFormat.Custom;
            this.dt_To.Location = new System.Drawing.Point(543, 24);
            this.dt_To.Margin = new System.Windows.Forms.Padding(4);
            this.dt_To.Name = "dt_To";
            this.dt_To.Size = new System.Drawing.Size(88, 20);
            this.dt_To.TabIndex = 36;
            this.dt_To.TabStop = false;
            this.dt_To.Text = "2014-02-12";
            this.dt_To.Value = new System.DateTime(2014, 2, 12, 16, 33, 8, 281);
            // 
            // ddl_Section
            // 
            this.ddl_Section.DefaultItemsCountInDropDown = 15;
            this.ddl_Section.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(222)));
            this.ddl_Section.Location = new System.Drawing.Point(116, 24);
            this.ddl_Section.Margin = new System.Windows.Forms.Padding(4);
            this.ddl_Section.Name = "ddl_Section";
            this.ddl_Section.Size = new System.Drawing.Size(250, 20);
            this.ddl_Section.TabIndex = 34;
            // 
            // label4
            // 
            this.label4.AutoSize = true;
            this.label4.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(222)));
            this.label4.Location = new System.Drawing.Point(515, 26);
            this.label4.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
            this.label4.Name = "label4";
            this.label4.Size = new System.Drawing.Size(20, 14);
            this.label4.TabIndex = 47;
            this.label4.Text = "ถึง";
            // 
            // dt_From
            // 
            this.dt_From.CustomFormat = "yyyy-MM-dd";
            this.dt_From.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(222)));
            this.dt_From.Format = System.Windows.Forms.DateTimePickerFormat.Custom;
            this.dt_From.Location = new System.Drawing.Point(405, 24);
            this.dt_From.Margin = new System.Windows.Forms.Padding(4);
            this.dt_From.Name = "dt_From";
            this.dt_From.Size = new System.Drawing.Size(104, 20);
            this.dt_From.TabIndex = 35;
            this.dt_From.TabStop = false;
            this.dt_From.Text = "2014-02-12";
            this.dt_From.Value = new System.DateTime(2014, 2, 12, 16, 33, 8, 281);
            // 
            // label3
            // 
            this.label3.AutoSize = true;
            this.label3.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(222)));
            this.label3.Location = new System.Drawing.Point(374, 26);
            this.label3.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
            this.label3.Name = "label3";
            this.label3.Size = new System.Drawing.Size(23, 14);
            this.label3.TabIndex = 46;
            this.label3.Text = "เริ่ม";
            // 
            // FormMNApproveOut
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 16F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.AutoScroll = true;
            this.ClientSize = new System.Drawing.Size(784, 561);
            this.Controls.Add(this.radPanel1);
            this.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(222)));
            this.Margin = new System.Windows.Forms.Padding(4);
            this.Name = "FormMNApproveOut";
            this.Text = "ลงเวลาออกนอก(มินิมาร์ท)";
            ((System.ComponentModel.ISupportInitialize)(this.radPanel1)).EndInit();
            this.radPanel1.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.radGroupBox3)).EndInit();
            this.radGroupBox3.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.radGroupBox4)).EndInit();
            this.radGroupBox4.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.rgv_ApproveMN.MasterTemplate)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.rgv_ApproveMN)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radPanel2)).EndInit();
            this.radPanel2.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.radButtonUnChechAll)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radButtonCheckAll)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radGroupBox2)).EndInit();
            this.radGroupBox2.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.radButtonSave)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radGroupBox1)).EndInit();
            this.radGroupBox1.ResumeLayout(false);
            this.radGroupBox1.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.txtDocNumber)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.txt_DocDate)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.txt_DocId)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.txt_EmpId)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.rdb_EmpId)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.rdb_DocId)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.rdb_Section)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radButtonserch)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.dt_To)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.ddl_Section)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.dt_From)).EndInit();
            this.ResumeLayout(false);

        }
コード例 #41
0
        /// <summary>
        /// Required method for Designer support - do not modify
        /// the contents of this method with the code editor.
        /// </summary>
        private void InitializeComponent()
        {
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn1 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn2 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn3 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn4 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn5 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewCheckBoxColumn gridViewCheckBoxColumn1 = new Telerik.WinControls.UI.GridViewCheckBoxColumn();
            this.radGroupBox1 = new Telerik.WinControls.UI.RadGroupBox();
            this.btnVerify = new Telerik.WinControls.UI.RadButton();
            this.gvRules = new Telerik.WinControls.UI.RadGridView();
            ((System.ComponentModel.ISupportInitialize)(this.radGroupBox1)).BeginInit();
            this.radGroupBox1.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.btnVerify)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.gvRules)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
            this.SuspendLayout();
            // 
            // radGroupBox1
            // 
            this.radGroupBox1.Controls.Add(this.btnVerify);
            this.radGroupBox1.Controls.Add(this.gvRules);
            this.radGroupBox1.FooterImageIndex = -1;
            this.radGroupBox1.FooterImageKey = "";
            this.radGroupBox1.HeaderImageIndex = -1;
            this.radGroupBox1.HeaderImageKey = "";
            this.radGroupBox1.HeaderMargin = new System.Windows.Forms.Padding(0);
            this.radGroupBox1.HeaderText = "Weryfikacja";
            this.radGroupBox1.Location = new System.Drawing.Point(13, 13);
            this.radGroupBox1.Name = "radGroupBox1";
            this.radGroupBox1.Padding = new System.Windows.Forms.Padding(10, 20, 10, 10);
            // 
            // 
            // 
            this.radGroupBox1.RootElement.Padding = new System.Windows.Forms.Padding(10, 20, 10, 10);
            this.radGroupBox1.Size = new System.Drawing.Size(836, 331);
            this.radGroupBox1.TabIndex = 0;
            this.radGroupBox1.Text = "Weryfikacja";
            ((Telerik.WinControls.Primitives.FillPrimitive)(this.radGroupBox1.GetChildAt(0).GetChildAt(0).GetChildAt(0))).BackColor = System.Drawing.Color.Transparent;
            // 
            // btnVerify
            // 
            this.btnVerify.ForeColor = System.Drawing.Color.Black;
            this.btnVerify.Location = new System.Drawing.Point(724, 24);
            this.btnVerify.Name = "btnVerify";
            // 
            // 
            // 
            this.btnVerify.RootElement.ForeColor = System.Drawing.Color.Black;
            this.btnVerify.Size = new System.Drawing.Size(99, 24);
            this.btnVerify.TabIndex = 1;
            this.btnVerify.Text = "Weryfikuj";
            this.btnVerify.Click += new System.EventHandler(this.BtnVerifyClick);
            // 
            // gvRules
            // 
            this.gvRules.Location = new System.Drawing.Point(14, 24);
            // 
            // gvRules
            // 
            this.gvRules.MasterTemplate.AddNewRowPosition = Telerik.WinControls.UI.SystemRowPosition.Bottom;
            this.gvRules.MasterTemplate.AllowAddNewRow = false;
            this.gvRules.MasterTemplate.AllowColumnReorder = false;
            this.gvRules.MasterTemplate.AllowColumnResize = false;
            this.gvRules.MasterTemplate.AllowDeleteRow = false;
            this.gvRules.MasterTemplate.AllowDragToGroup = false;
            this.gvRules.MasterTemplate.AllowEditRow = false;
            this.gvRules.MasterTemplate.AllowRowResize = false;
            gridViewTextBoxColumn1.FormatString = "";
            gridViewTextBoxColumn1.HeaderText = "Reguła";
            gridViewTextBoxColumn1.Name = "rule";
            gridViewTextBoxColumn1.Width = 180;
            gridViewTextBoxColumn2.HeaderText = "Semestr";
            gridViewTextBoxColumn2.Name = "semester";
            gridViewTextBoxColumn2.Width = 100;
            gridViewTextBoxColumn3.HeaderText = "Przedmiot";
            gridViewTextBoxColumn3.Name = "subject";
            gridViewTextBoxColumn3.Width = 150;
            gridViewTextBoxColumn4.HeaderText = "Typ Przedmiotu";
            gridViewTextBoxColumn4.Name = "subjectType";
            gridViewTextBoxColumn4.Width = 120;
            gridViewTextBoxColumn5.HeaderText = "Wartość";
            gridViewTextBoxColumn5.Name = "value";
            gridViewTextBoxColumn5.Width = 75;
            gridViewCheckBoxColumn1.FormatString = "";
            gridViewCheckBoxColumn1.HeaderText = "Spełniona";
            gridViewCheckBoxColumn1.MinWidth = 40;
            gridViewCheckBoxColumn1.Name = "passed";
            gridViewCheckBoxColumn1.Width = 60;
            this.gvRules.MasterTemplate.Columns.AddRange(new Telerik.WinControls.UI.GridViewDataColumn[] {
            gridViewTextBoxColumn1,
            gridViewTextBoxColumn2,
            gridViewTextBoxColumn3,
            gridViewTextBoxColumn4,
            gridViewTextBoxColumn5,
            gridViewCheckBoxColumn1});
            this.gvRules.MasterTemplate.ShowFilteringRow = false;
            this.gvRules.Name = "gvRules";
            this.gvRules.Padding = new System.Windows.Forms.Padding(0, 0, 0, 1);
            // 
            // 
            // 
            this.gvRules.RootElement.Padding = new System.Windows.Forms.Padding(0, 0, 0, 1);
            this.gvRules.ShowGroupPanel = false;
            this.gvRules.Size = new System.Drawing.Size(702, 294);
            this.gvRules.TabIndex = 0;
            this.gvRules.Text = "radGridView1";
            // 
            // ValidateRules
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.ClientSize = new System.Drawing.Size(861, 356);
            this.Controls.Add(this.radGroupBox1);
            this.MaximizeBox = false;
            this.MinimizeBox = false;
            this.Name = "ValidateRules";
            // 
            // 
            // 
            this.RootElement.ApplyShapeToControl = true;
            this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
            this.Text = "Weryfikacja planu";
            ((System.ComponentModel.ISupportInitialize)(this.radGroupBox1)).EndInit();
            this.radGroupBox1.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.btnVerify)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.gvRules)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this)).EndInit();
            this.ResumeLayout(false);

        }
コード例 #42
0
        /// <summary>
        /// Required method for Designer support - do not modify
        /// the contents of this method with the code editor.
        /// </summary>
        private void InitializeComponent()
        {
            Telerik.WinControls.UI.GridViewCheckBoxColumn gridViewCheckBoxColumn1 = new Telerik.WinControls.UI.GridViewCheckBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn1 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn2 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn3 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewCheckBoxColumn gridViewCheckBoxColumn2 = new Telerik.WinControls.UI.GridViewCheckBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn4 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn5 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            this.radPanel1 = new Telerik.WinControls.UI.RadPanel();
            this.radGroupBox2 = new Telerik.WinControls.UI.RadGroupBox();
            this.cmbGradeLevel = new Telerik.WinControls.UI.RadDropDownList();
            this.radLabel3 = new Telerik.WinControls.UI.RadLabel();
            this.gvSubjects = new Telerik.WinControls.UI.RadGridView();
            this.radGroupBox1 = new Telerik.WinControls.UI.RadGroupBox();
            this.chkCurrent = new Telerik.WinControls.UI.RadCheckBox();
            this.txtDescription = new Telerik.WinControls.UI.RadTextBox();
            this.txtCurrCode = new Telerik.WinControls.UI.RadTextBox();
            this.radLabel2 = new Telerik.WinControls.UI.RadLabel();
            this.radLabel1 = new Telerik.WinControls.UI.RadLabel();
            this.btnCancel = new Telerik.WinControls.UI.RadButton();
            this.btnSave = new Telerik.WinControls.UI.RadButton();
            ((System.ComponentModel.ISupportInitialize)(this.radPanel1)).BeginInit();
            this.radPanel1.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.radGroupBox2)).BeginInit();
            this.radGroupBox2.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.cmbGradeLevel)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel3)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.gvSubjects)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.gvSubjects.MasterTemplate)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radGroupBox1)).BeginInit();
            this.radGroupBox1.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.chkCurrent)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.txtDescription)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.txtCurrCode)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel2)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.btnCancel)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.btnSave)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
            this.SuspendLayout();
            // 
            // radPanel1
            // 
            this.radPanel1.Controls.Add(this.radGroupBox2);
            this.radPanel1.Controls.Add(this.radGroupBox1);
            this.radPanel1.Controls.Add(this.btnCancel);
            this.radPanel1.Controls.Add(this.btnSave);
            this.radPanel1.Location = new System.Drawing.Point(-3, -1);
            this.radPanel1.Name = "radPanel1";
            this.radPanel1.Size = new System.Drawing.Size(834, 464);
            this.radPanel1.TabIndex = 1;
            // 
            // radGroupBox2
            // 
            this.radGroupBox2.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
            this.radGroupBox2.Controls.Add(this.cmbGradeLevel);
            this.radGroupBox2.Controls.Add(this.radLabel3);
            this.radGroupBox2.Controls.Add(this.gvSubjects);
            this.radGroupBox2.HeaderText = "Subjects";
            this.radGroupBox2.Location = new System.Drawing.Point(16, 107);
            this.radGroupBox2.Name = "radGroupBox2";
            this.radGroupBox2.Size = new System.Drawing.Size(800, 318);
            this.radGroupBox2.TabIndex = 36;
            this.radGroupBox2.Text = "Subjects";
            // 
            // cmbGradeLevel
            // 
            this.cmbGradeLevel.Location = new System.Drawing.Point(122, 20);
            this.cmbGradeLevel.Name = "cmbGradeLevel";
            this.cmbGradeLevel.Size = new System.Drawing.Size(125, 20);
            this.cmbGradeLevel.TabIndex = 2;
            this.cmbGradeLevel.SelectedIndexChanged += new Telerik.WinControls.UI.Data.PositionChangedEventHandler(this.cmbGradeLevel_SelectedIndexChanged);
            // 
            // radLabel3
            // 
            this.radLabel3.Location = new System.Drawing.Point(18, 22);
            this.radLabel3.Name = "radLabel3";
            this.radLabel3.Size = new System.Drawing.Size(97, 18);
            this.radLabel3.TabIndex = 1;
            this.radLabel3.Text = "Select Grade Level";
            // 
            // gvSubjects
            // 
            this.gvSubjects.Location = new System.Drawing.Point(16, 51);
            // 
            // 
            // 
            this.gvSubjects.MasterTemplate.AllowAddNewRow = false;
            this.gvSubjects.MasterTemplate.AllowDragToGroup = false;
            gridViewCheckBoxColumn1.FieldName = "Added";
            gridViewCheckBoxColumn1.HeaderText = "Tick to Add";
            gridViewCheckBoxColumn1.Name = "Added";
            gridViewCheckBoxColumn1.Width = 100;
            gridViewTextBoxColumn1.FieldName = "SubjectCode";
            gridViewTextBoxColumn1.HeaderText = "Subject Code";
            gridViewTextBoxColumn1.Name = "SubjectCode";
            gridViewTextBoxColumn1.ReadOnly = true;
            gridViewTextBoxColumn1.Width = 100;
            gridViewTextBoxColumn2.AllowFiltering = false;
            gridViewTextBoxColumn2.FieldName = "SubjectDescription";
            gridViewTextBoxColumn2.HeaderText = "Description";
            gridViewTextBoxColumn2.Name = "SubjectDescription";
            gridViewTextBoxColumn2.ReadOnly = true;
            gridViewTextBoxColumn2.Width = 200;
            gridViewTextBoxColumn3.AllowFiltering = false;
            gridViewTextBoxColumn3.FieldName = "Units";
            gridViewTextBoxColumn3.HeaderText = "Number Of Units";
            gridViewTextBoxColumn3.Name = "Units";
            gridViewTextBoxColumn3.ReadOnly = true;
            gridViewTextBoxColumn3.Width = 125;
            gridViewCheckBoxColumn2.FieldName = "Academic";
            gridViewCheckBoxColumn2.HeaderText = "Acad";
            gridViewCheckBoxColumn2.Name = "Academic";
            gridViewCheckBoxColumn2.ReadOnly = true;
            gridViewTextBoxColumn4.FieldName = "GradeLevel";
            gridViewTextBoxColumn4.HeaderText = "GradeLevel";
            gridViewTextBoxColumn4.Name = "GradeLevel";
            gridViewTextBoxColumn4.ReadOnly = true;
            gridViewTextBoxColumn4.Width = 100;
            gridViewTextBoxColumn5.FieldName = "CurrSub";
            gridViewTextBoxColumn5.HeaderText = "CurrSub";
            gridViewTextBoxColumn5.IsVisible = false;
            gridViewTextBoxColumn5.Name = "CurrSub";
            gridViewTextBoxColumn5.ReadOnly = true;
            this.gvSubjects.MasterTemplate.Columns.AddRange(new Telerik.WinControls.UI.GridViewDataColumn[] {
            gridViewCheckBoxColumn1,
            gridViewTextBoxColumn1,
            gridViewTextBoxColumn2,
            gridViewTextBoxColumn3,
            gridViewCheckBoxColumn2,
            gridViewTextBoxColumn4,
            gridViewTextBoxColumn5});
            this.gvSubjects.MasterTemplate.EnableFiltering = true;
            this.gvSubjects.MasterTemplate.EnableGrouping = false;
            this.gvSubjects.Name = "gvSubjects";
            this.gvSubjects.Size = new System.Drawing.Size(768, 259);
            this.gvSubjects.TabIndex = 0;
            this.gvSubjects.CellEditorInitialized += new Telerik.WinControls.UI.GridViewCellEventHandler(this.gvSubjects_CellEditorInitialized);
            // 
            // radGroupBox1
            // 
            this.radGroupBox1.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
            this.radGroupBox1.Controls.Add(this.chkCurrent);
            this.radGroupBox1.Controls.Add(this.txtDescription);
            this.radGroupBox1.Controls.Add(this.txtCurrCode);
            this.radGroupBox1.Controls.Add(this.radLabel2);
            this.radGroupBox1.Controls.Add(this.radLabel1);
            this.radGroupBox1.HeaderText = "Curriculum Information";
            this.radGroupBox1.Location = new System.Drawing.Point(16, 14);
            this.radGroupBox1.Name = "radGroupBox1";
            this.radGroupBox1.Size = new System.Drawing.Size(800, 87);
            this.radGroupBox1.TabIndex = 35;
            this.radGroupBox1.Text = "Curriculum Information";
            // 
            // chkCurrent
            // 
            this.chkCurrent.Font = new System.Drawing.Font("Segoe UI", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.chkCurrent.Location = new System.Drawing.Point(18, 60);
            this.chkCurrent.Name = "chkCurrent";
            this.chkCurrent.Size = new System.Drawing.Size(61, 19);
            this.chkCurrent.TabIndex = 40;
            this.chkCurrent.Text = "Current";
            // 
            // txtDescription
            // 
            this.txtDescription.AutoSize = false;
            this.txtDescription.Location = new System.Drawing.Point(291, 21);
            this.txtDescription.Multiline = true;
            this.txtDescription.Name = "txtDescription";
            this.txtDescription.Size = new System.Drawing.Size(493, 52);
            this.txtDescription.TabIndex = 38;
            // 
            // txtCurrCode
            // 
            this.txtCurrCode.AutoSize = false;
            this.txtCurrCode.Location = new System.Drawing.Point(60, 22);
            this.txtCurrCode.Name = "txtCurrCode";
            this.txtCurrCode.Size = new System.Drawing.Size(133, 27);
            this.txtCurrCode.TabIndex = 36;
            // 
            // radLabel2
            // 
            this.radLabel2.Font = new System.Drawing.Font("Segoe UI", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.radLabel2.Location = new System.Drawing.Point(214, 30);
            this.radLabel2.Name = "radLabel2";
            this.radLabel2.Size = new System.Drawing.Size(71, 19);
            this.radLabel2.TabIndex = 39;
            this.radLabel2.Text = "Description:";
            // 
            // radLabel1
            // 
            this.radLabel1.Font = new System.Drawing.Font("Segoe UI", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.radLabel1.Location = new System.Drawing.Point(16, 30);
            this.radLabel1.Name = "radLabel1";
            this.radLabel1.Size = new System.Drawing.Size(38, 19);
            this.radLabel1.TabIndex = 37;
            this.radLabel1.Text = "Code:";
            // 
            // btnCancel
            // 
            this.btnCancel.Location = new System.Drawing.Point(706, 431);
            this.btnCancel.Name = "btnCancel";
            this.btnCancel.Size = new System.Drawing.Size(110, 24);
            this.btnCancel.TabIndex = 34;
            this.btnCancel.Text = "Cancel";
            this.btnCancel.Click += new System.EventHandler(this.btnCancel_Click);
            // 
            // btnSave
            // 
            this.btnSave.Location = new System.Drawing.Point(573, 431);
            this.btnSave.Name = "btnSave";
            this.btnSave.Size = new System.Drawing.Size(110, 24);
            this.btnSave.TabIndex = 33;
            this.btnSave.Text = "Save";
            this.btnSave.Click += new System.EventHandler(this.btnSave_Click);
            // 
            // frmCurriculumDetails
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.ClientSize = new System.Drawing.Size(843, 475);
            this.Controls.Add(this.radPanel1);
            this.Name = "frmCurriculumDetails";
            // 
            // 
            // 
            this.RootElement.ApplyShapeToControl = true;
            this.Text = "Manage Curriculum";
            this.ThemeName = "ControlDefault";
            this.Load += new System.EventHandler(this.frmCurriculumDetails_Load);
            ((System.ComponentModel.ISupportInitialize)(this.radPanel1)).EndInit();
            this.radPanel1.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.radGroupBox2)).EndInit();
            this.radGroupBox2.ResumeLayout(false);
            this.radGroupBox2.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.cmbGradeLevel)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel3)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.gvSubjects.MasterTemplate)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.gvSubjects)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radGroupBox1)).EndInit();
            this.radGroupBox1.ResumeLayout(false);
            this.radGroupBox1.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.chkCurrent)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.txtDescription)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.txtCurrCode)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel2)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.btnCancel)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.btnSave)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this)).EndInit();
            this.ResumeLayout(false);

        }
コード例 #43
0
        /// <summary>
        /// Required method for Designer support - do not modify
        /// the contents of this method with the code editor.
        /// </summary>
        private void InitializeComponent()
        {
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn1 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn2 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn3 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn4 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn5 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewDateTimeColumn gridViewDateTimeColumn1 = new Telerik.WinControls.UI.GridViewDateTimeColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn6 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn7 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn8 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn9 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn10 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn11 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn12 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewDateTimeColumn gridViewDateTimeColumn2 = new Telerik.WinControls.UI.GridViewDateTimeColumn();
            Telerik.WinControls.UI.GridViewCheckBoxColumn gridViewCheckBoxColumn1 = new Telerik.WinControls.UI.GridViewCheckBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn13 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            this.radTitleBar1 = new Telerik.WinControls.UI.RadTitleBar();
            this.panel1 = new System.Windows.Forms.Panel();
            this.bPhotoManager = new System.Windows.Forms.Button();
            this.bEditInfo = new System.Windows.Forms.Button();
            this.bNewContract = new System.Windows.Forms.Button();
            this.lDescription = new System.Windows.Forms.Label();
            this.lCreatedDate = new System.Windows.Forms.Label();
            this.lPhoneNumber = new System.Windows.Forms.Label();
            this.lName = new System.Windows.Forms.Label();
            this.panel2 = new System.Windows.Forms.Panel();
            this.tableLayoutPanel1 = new System.Windows.Forms.TableLayoutPanel();
            this.radGridView2 = new Telerik.WinControls.UI.RadGridView();
            this.radGridView3 = new Telerik.WinControls.UI.RadGridView();
            this.tableLayoutPanel2 = new System.Windows.Forms.TableLayoutPanel();
            this.bNewPayment = new System.Windows.Forms.Button();
            this.bNewAppointment = new System.Windows.Forms.Button();
            this.radGridView1 = new Telerik.WinControls.UI.RadGridView();
            this.fileSystemWatcher1 = new System.IO.FileSystemWatcher();
            this.visualStudio2012LightTheme1 = new Telerik.WinControls.Themes.VisualStudio2012LightTheme();
            ((System.ComponentModel.ISupportInitialize)(this.radTitleBar1)).BeginInit();
            this.panel1.SuspendLayout();
            this.panel2.SuspendLayout();
            this.tableLayoutPanel1.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.radGridView2)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radGridView2.MasterTemplate)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radGridView3)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radGridView3.MasterTemplate)).BeginInit();
            this.tableLayoutPanel2.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.radGridView1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radGridView1.MasterTemplate)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.fileSystemWatcher1)).BeginInit();
            this.SuspendLayout();
            // 
            // radTitleBar1
            // 
            this.radTitleBar1.BackColor = System.Drawing.SystemColors.ButtonHighlight;
            this.radTitleBar1.Dock = System.Windows.Forms.DockStyle.Top;
            this.radTitleBar1.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.radTitleBar1.Location = new System.Drawing.Point(3, 3);
            this.radTitleBar1.Name = "radTitleBar1";
            this.radTitleBar1.Size = new System.Drawing.Size(808, 41);
            this.radTitleBar1.TabIndex = 8;
            this.radTitleBar1.TabStop = false;
            this.radTitleBar1.Text = "اطلاعات مشتری";
            this.radTitleBar1.ThemeName = "VisualStudio2012Light";
            ((Telerik.WinControls.UI.RadTitleBarElement)(this.radTitleBar1.GetChildAt(0))).Text = "اطلاعات مشتری";
            ((Telerik.WinControls.UI.RadTitleBarElement)(this.radTitleBar1.GetChildAt(0))).ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(120)))), ((int)(((byte)(120)))), ((int)(((byte)(120)))));
            ((Telerik.WinControls.UI.RadTitleBarElement)(this.radTitleBar1.GetChildAt(0))).Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            // 
            // panel1
            // 
            this.panel1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(253)))), ((int)(((byte)(253)))), ((int)(((byte)(253)))));
            this.panel1.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None;
            this.panel1.Controls.Add(this.bPhotoManager);
            this.panel1.Controls.Add(this.bEditInfo);
            this.panel1.Controls.Add(this.bNewContract);
            this.panel1.Controls.Add(this.lDescription);
            this.panel1.Controls.Add(this.lCreatedDate);
            this.panel1.Controls.Add(this.lPhoneNumber);
            this.panel1.Controls.Add(this.lName);
            this.panel1.Dock = System.Windows.Forms.DockStyle.Right;
            this.panel1.Location = new System.Drawing.Point(597, 44);
            this.panel1.Name = "panel1";
            this.panel1.Padding = new System.Windows.Forms.Padding(5);
            this.panel1.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
            this.panel1.Size = new System.Drawing.Size(214, 494);
            this.panel1.TabIndex = 9;
            // 
            // bPhotoManager
            // 
            this.bPhotoManager.Location = new System.Drawing.Point(8, 39);
            this.bPhotoManager.Name = "bPhotoManager";
            this.bPhotoManager.Size = new System.Drawing.Size(192, 23);
            this.bPhotoManager.TabIndex = 7;
            this.bPhotoManager.Text = "مدیریت تصاویر";
            this.bPhotoManager.UseVisualStyleBackColor = true;
            this.bPhotoManager.Click += new System.EventHandler(this.bPhotoManager_Click);
            // 
            // bEditInfo
            // 
            this.bEditInfo.Location = new System.Drawing.Point(105, 8);
            this.bEditInfo.Name = "bEditInfo";
            this.bEditInfo.Size = new System.Drawing.Size(95, 23);
            this.bEditInfo.TabIndex = 6;
            this.bEditInfo.Text = "ویرایش اطلاعات";
            this.bEditInfo.UseVisualStyleBackColor = true;
            this.bEditInfo.Click += new System.EventHandler(this.bEditInfo_Click);
            // 
            // bNewContract
            // 
            this.bNewContract.Location = new System.Drawing.Point(6, 8);
            this.bNewContract.Name = "bNewContract";
            this.bNewContract.Size = new System.Drawing.Size(93, 23);
            this.bNewContract.TabIndex = 5;
            this.bNewContract.Text = "قرارداد جدید";
            this.bNewContract.UseVisualStyleBackColor = true;
            this.bNewContract.Click += new System.EventHandler(this.bNewContract_Click);
            // 
            // lDescription
            // 
            this.lDescription.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
            this.lDescription.Location = new System.Drawing.Point(20, 161);
            this.lDescription.Name = "lDescription";
            this.lDescription.Size = new System.Drawing.Size(179, 129);
            this.lDescription.TabIndex = 4;
            this.lDescription.Text = "ll";
            // 
            // lCreatedDate
            // 
            this.lCreatedDate.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
            this.lCreatedDate.Location = new System.Drawing.Point(20, 132);
            this.lCreatedDate.Name = "lCreatedDate";
            this.lCreatedDate.Size = new System.Drawing.Size(179, 17);
            this.lCreatedDate.TabIndex = 2;
            this.lCreatedDate.Text = "label1";
            // 
            // lPhoneNumber
            // 
            this.lPhoneNumber.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
            this.lPhoneNumber.Location = new System.Drawing.Point(20, 106);
            this.lPhoneNumber.Name = "lPhoneNumber";
            this.lPhoneNumber.Size = new System.Drawing.Size(179, 17);
            this.lPhoneNumber.TabIndex = 1;
            this.lPhoneNumber.Text = "label1";
            // 
            // lName
            // 
            this.lName.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
            this.lName.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.lName.ForeColor = System.Drawing.Color.SteelBlue;
            this.lName.Location = new System.Drawing.Point(20, 76);
            this.lName.Name = "lName";
            this.lName.Size = new System.Drawing.Size(183, 26);
            this.lName.TabIndex = 0;
            this.lName.Text = "label1";
            // 
            // panel2
            // 
            this.panel2.BackColor = System.Drawing.SystemColors.Control;
            this.panel2.Controls.Add(this.tableLayoutPanel1);
            this.panel2.Controls.Add(this.tableLayoutPanel2);
            this.panel2.Controls.Add(this.radGridView1);
            this.panel2.Dock = System.Windows.Forms.DockStyle.Fill;
            this.panel2.Location = new System.Drawing.Point(3, 44);
            this.panel2.Name = "panel2";
            this.panel2.Padding = new System.Windows.Forms.Padding(5);
            this.panel2.Size = new System.Drawing.Size(594, 494);
            this.panel2.TabIndex = 10;
            // 
            // tableLayoutPanel1
            // 
            this.tableLayoutPanel1.ColumnCount = 2;
            this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50F));
            this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50F));
            this.tableLayoutPanel1.Controls.Add(this.radGridView2, 0, 0);
            this.tableLayoutPanel1.Controls.Add(this.radGridView3, 0, 0);
            this.tableLayoutPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
            this.tableLayoutPanel1.Location = new System.Drawing.Point(5, 233);
            this.tableLayoutPanel1.Name = "tableLayoutPanel1";
            this.tableLayoutPanel1.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
            this.tableLayoutPanel1.RowCount = 1;
            this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 100F));
            this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 256F));
            this.tableLayoutPanel1.Size = new System.Drawing.Size(584, 256);
            this.tableLayoutPanel1.TabIndex = 7;
            // 
            // radGridView2
            // 
            this.radGridView2.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(238)))), ((int)(((byte)(238)))), ((int)(((byte)(238)))));
            this.radGridView2.Cursor = System.Windows.Forms.Cursors.Default;
            this.radGridView2.Dock = System.Windows.Forms.DockStyle.Fill;
            this.radGridView2.Font = new System.Drawing.Font("Tahoma", 8.25F);
            this.radGridView2.ForeColor = System.Drawing.SystemColors.ControlText;
            this.radGridView2.ImeMode = System.Windows.Forms.ImeMode.NoControl;
            this.radGridView2.Location = new System.Drawing.Point(3, 3);
            // 
            // radGridView2
            // 
            this.radGridView2.MasterTemplate.AllowAddNewRow = false;
            this.radGridView2.MasterTemplate.AllowEditRow = false;
            this.radGridView2.MasterTemplate.AutoSizeColumnsMode = Telerik.WinControls.UI.GridViewAutoSizeColumnsMode.Fill;
            gridViewTextBoxColumn1.EnableExpressionEditor = false;
            gridViewTextBoxColumn1.FieldName = "Id";
            gridViewTextBoxColumn1.HeaderText = "شناسه";
            gridViewTextBoxColumn1.IsVisible = false;
            gridViewTextBoxColumn1.MaxWidth = 100;
            gridViewTextBoxColumn1.MinWidth = 100;
            gridViewTextBoxColumn1.Name = "column1";
            gridViewTextBoxColumn1.ReadOnly = true;
            gridViewTextBoxColumn1.Width = 100;
            gridViewTextBoxColumn2.EnableExpressionEditor = false;
            gridViewTextBoxColumn2.FieldName = "AmountOfPayment";
            gridViewTextBoxColumn2.FormatString = "{0:#,#}";
            gridViewTextBoxColumn2.HeaderText = "مبلغ";
            gridViewTextBoxColumn2.MaxWidth = 100;
            gridViewTextBoxColumn2.MinWidth = 100;
            gridViewTextBoxColumn2.Name = "column2";
            gridViewTextBoxColumn2.Width = 100;
            gridViewTextBoxColumn3.EnableExpressionEditor = false;
            gridViewTextBoxColumn3.FieldName = "DateOfPayment";
            gridViewTextBoxColumn3.FormatString = "{0:####/##/##}";
            gridViewTextBoxColumn3.HeaderText = "تاریخ";
            gridViewTextBoxColumn3.MaxWidth = 2000;
            gridViewTextBoxColumn3.Multiline = true;
            gridViewTextBoxColumn3.Name = "column6";
            gridViewTextBoxColumn3.Width = 169;
            this.radGridView2.MasterTemplate.Columns.AddRange(new Telerik.WinControls.UI.GridViewDataColumn[] {
            gridViewTextBoxColumn1,
            gridViewTextBoxColumn2,
            gridViewTextBoxColumn3});
            this.radGridView2.MasterTemplate.EnableAlternatingRowColor = true;
            this.radGridView2.MasterTemplate.EnableGrouping = false;
            this.radGridView2.MasterTemplate.PageSize = 25;
            this.radGridView2.Name = "radGridView2";
            this.radGridView2.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
            this.radGridView2.Size = new System.Drawing.Size(286, 250);
            this.radGridView2.TabIndex = 7;
            this.radGridView2.Text = "radGridView2";
            this.radGridView2.ThemeName = "VisualStudio2012Light";
            this.radGridView2.UserDeletingRow += new Telerik.WinControls.UI.GridViewRowCancelEventHandler(this.radGridView2_UserDeletingRow);
            // 
            // radGridView3
            // 
            this.radGridView3.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(238)))), ((int)(((byte)(238)))), ((int)(((byte)(238)))));
            this.radGridView3.Cursor = System.Windows.Forms.Cursors.Default;
            this.radGridView3.Dock = System.Windows.Forms.DockStyle.Fill;
            this.radGridView3.Font = new System.Drawing.Font("Tahoma", 8.25F);
            this.radGridView3.ForeColor = System.Drawing.SystemColors.ControlText;
            this.radGridView3.ImeMode = System.Windows.Forms.ImeMode.NoControl;
            this.radGridView3.Location = new System.Drawing.Point(295, 3);
            // 
            // radGridView3
            // 
            this.radGridView3.MasterTemplate.AllowAddNewRow = false;
            this.radGridView3.MasterTemplate.AllowEditRow = false;
            this.radGridView3.MasterTemplate.AutoSizeColumnsMode = Telerik.WinControls.UI.GridViewAutoSizeColumnsMode.Fill;
            gridViewTextBoxColumn4.EnableExpressionEditor = false;
            gridViewTextBoxColumn4.FieldName = "Id";
            gridViewTextBoxColumn4.HeaderText = "شناسه";
            gridViewTextBoxColumn4.IsVisible = false;
            gridViewTextBoxColumn4.MaxWidth = 100;
            gridViewTextBoxColumn4.MinWidth = 100;
            gridViewTextBoxColumn4.Name = "column1";
            gridViewTextBoxColumn4.ReadOnly = true;
            gridViewTextBoxColumn4.Width = 100;
            gridViewTextBoxColumn5.EnableExpressionEditor = false;
            gridViewTextBoxColumn5.FieldName = "AppointmentDate";
            gridViewTextBoxColumn5.FormatString = "{0:####/##/##}";
            gridViewTextBoxColumn5.HeaderText = "تاریخ";
            gridViewTextBoxColumn5.MaxWidth = 100;
            gridViewTextBoxColumn5.MinWidth = 100;
            gridViewTextBoxColumn5.Name = "column2";
            gridViewTextBoxColumn5.Width = 100;
            gridViewDateTimeColumn1.ExcelExportType = Telerik.WinControls.UI.Export.DisplayFormatType.MediumTime;
            gridViewDateTimeColumn1.FieldName = "AppointmentTime";
            gridViewDateTimeColumn1.Format = System.Windows.Forms.DateTimePickerFormat.Time;
            gridViewDateTimeColumn1.FormatString = "{0:%h}:{0:%m}";
            gridViewDateTimeColumn1.HeaderText = "ساعت";
            gridViewDateTimeColumn1.MaxWidth = 100;
            gridViewDateTimeColumn1.MinWidth = 100;
            gridViewDateTimeColumn1.Name = "column4";
            gridViewDateTimeColumn1.Width = 100;
            gridViewTextBoxColumn6.FieldName = "Description";
            gridViewTextBoxColumn6.HeaderText = "توضیحات";
            gridViewTextBoxColumn6.MaxWidth = 2000;
            gridViewTextBoxColumn6.Name = "column3";
            gridViewTextBoxColumn6.Width = 70;
            this.radGridView3.MasterTemplate.Columns.AddRange(new Telerik.WinControls.UI.GridViewDataColumn[] {
            gridViewTextBoxColumn4,
            gridViewTextBoxColumn5,
            gridViewDateTimeColumn1,
            gridViewTextBoxColumn6});
            this.radGridView3.MasterTemplate.EnableAlternatingRowColor = true;
            this.radGridView3.MasterTemplate.EnableGrouping = false;
            this.radGridView3.MasterTemplate.PageSize = 25;
            this.radGridView3.Name = "radGridView3";
            this.radGridView3.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
            this.radGridView3.Size = new System.Drawing.Size(286, 250);
            this.radGridView3.TabIndex = 8;
            this.radGridView3.Text = "radGridView3";
            this.radGridView3.ThemeName = "VisualStudio2012Light";
            this.radGridView3.UserDeletingRow += new Telerik.WinControls.UI.GridViewRowCancelEventHandler(this.radGridView3_UserDeletingRow);
            this.radGridView3.CellDoubleClick += new Telerik.WinControls.UI.GridViewCellEventHandler(this.radGridView3_CellDoubleClick);
            // 
            // tableLayoutPanel2
            // 
            this.tableLayoutPanel2.ColumnCount = 2;
            this.tableLayoutPanel2.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50F));
            this.tableLayoutPanel2.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50F));
            this.tableLayoutPanel2.Controls.Add(this.bNewPayment, 1, 0);
            this.tableLayoutPanel2.Controls.Add(this.bNewAppointment, 0, 0);
            this.tableLayoutPanel2.Dock = System.Windows.Forms.DockStyle.Top;
            this.tableLayoutPanel2.Location = new System.Drawing.Point(5, 203);
            this.tableLayoutPanel2.Name = "tableLayoutPanel2";
            this.tableLayoutPanel2.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
            this.tableLayoutPanel2.RowCount = 1;
            this.tableLayoutPanel2.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 100F));
            this.tableLayoutPanel2.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 20F));
            this.tableLayoutPanel2.Size = new System.Drawing.Size(584, 30);
            this.tableLayoutPanel2.TabIndex = 8;
            // 
            // bNewPayment
            // 
            this.bNewPayment.Location = new System.Drawing.Point(214, 3);
            this.bNewPayment.Name = "bNewPayment";
            this.bNewPayment.Size = new System.Drawing.Size(75, 23);
            this.bNewPayment.TabIndex = 0;
            this.bNewPayment.Text = "پرداخت جدید";
            this.bNewPayment.UseVisualStyleBackColor = true;
            this.bNewPayment.Click += new System.EventHandler(this.bNewPayment_Click);
            // 
            // bNewAppointment
            // 
            this.bNewAppointment.Location = new System.Drawing.Point(506, 3);
            this.bNewAppointment.Name = "bNewAppointment";
            this.bNewAppointment.Size = new System.Drawing.Size(75, 23);
            this.bNewAppointment.TabIndex = 1;
            this.bNewAppointment.Text = "جلسه جدید";
            this.bNewAppointment.UseVisualStyleBackColor = true;
            this.bNewAppointment.Click += new System.EventHandler(this.bNewAppointment_Click);
            // 
            // radGridView1
            // 
            this.radGridView1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(238)))), ((int)(((byte)(238)))), ((int)(((byte)(238)))));
            this.radGridView1.Cursor = System.Windows.Forms.Cursors.Default;
            this.radGridView1.Dock = System.Windows.Forms.DockStyle.Top;
            this.radGridView1.Font = new System.Drawing.Font("Tahoma", 8.25F);
            this.radGridView1.ForeColor = System.Drawing.SystemColors.ControlText;
            this.radGridView1.ImeMode = System.Windows.Forms.ImeMode.NoControl;
            this.radGridView1.Location = new System.Drawing.Point(5, 5);
            // 
            // radGridView1
            // 
            this.radGridView1.MasterTemplate.AllowAddNewRow = false;
            this.radGridView1.MasterTemplate.AllowEditRow = false;
            this.radGridView1.MasterTemplate.AutoSizeColumnsMode = Telerik.WinControls.UI.GridViewAutoSizeColumnsMode.Fill;
            gridViewTextBoxColumn7.EnableExpressionEditor = false;
            gridViewTextBoxColumn7.FieldName = "Id";
            gridViewTextBoxColumn7.HeaderText = "شناسه";
            gridViewTextBoxColumn7.IsVisible = false;
            gridViewTextBoxColumn7.MaxWidth = 100;
            gridViewTextBoxColumn7.MinWidth = 100;
            gridViewTextBoxColumn7.Name = "column1";
            gridViewTextBoxColumn7.ReadOnly = true;
            gridViewTextBoxColumn7.Width = 100;
            gridViewTextBoxColumn8.EnableExpressionEditor = false;
            gridViewTextBoxColumn8.FieldName = "ContractPayment";
            gridViewTextBoxColumn8.FormatInfo = new System.Globalization.CultureInfo("fa-IR");
            gridViewTextBoxColumn8.FormatString = "{0:#,#}";
            gridViewTextBoxColumn8.HeaderText = "مبلغ قرارداد";
            gridViewTextBoxColumn8.MaxWidth = 90;
            gridViewTextBoxColumn8.MinWidth = 90;
            gridViewTextBoxColumn8.Name = "column2";
            gridViewTextBoxColumn8.Width = 90;
            gridViewTextBoxColumn9.FieldName = "Payment";
            gridViewTextBoxColumn9.FormatString = "{0:#,#}";
            gridViewTextBoxColumn9.HeaderText = "پرداختی";
            gridViewTextBoxColumn9.MaxWidth = 90;
            gridViewTextBoxColumn9.MinWidth = 90;
            gridViewTextBoxColumn9.Name = "column30";
            gridViewTextBoxColumn9.Width = 90;
            gridViewTextBoxColumn10.EnableExpressionEditor = true;
            gridViewTextBoxColumn10.Expression = "column2 - column30 ";
            gridViewTextBoxColumn10.FormatString = "{0:#,#}";
            gridViewTextBoxColumn10.HeaderText = "مانده";
            gridViewTextBoxColumn10.MaxWidth = 100;
            gridViewTextBoxColumn10.MinWidth = 100;
            gridViewTextBoxColumn10.Name = "column5";
            gridViewTextBoxColumn10.Width = 100;
            gridViewTextBoxColumn11.EnableExpressionEditor = false;
            gridViewTextBoxColumn11.FieldName = "ContractStartDate";
            gridViewTextBoxColumn11.FormatString = "{0:####/##/##}";
            gridViewTextBoxColumn11.HeaderText = "تاریخ شروع قرارداد";
            gridViewTextBoxColumn11.MaxWidth = 100;
            gridViewTextBoxColumn11.MinWidth = 100;
            gridViewTextBoxColumn11.Name = "column3";
            gridViewTextBoxColumn11.Width = 100;
            gridViewTextBoxColumn12.EnableExpressionEditor = false;
            gridViewTextBoxColumn12.FieldName = "NextAppointmentDate";
            gridViewTextBoxColumn12.FormatString = "{0:####/##/##}";
            gridViewTextBoxColumn12.HeaderText = "تاریخ مراجعه بعدی";
            gridViewTextBoxColumn12.MaxWidth = 100;
            gridViewTextBoxColumn12.MinWidth = 100;
            gridViewTextBoxColumn12.Name = "column4";
            gridViewTextBoxColumn12.Width = 100;
            gridViewDateTimeColumn2.CustomFormat = "";
            gridViewDateTimeColumn2.EditorType = Telerik.WinControls.UI.GridViewDateTimeEditorType.TimePicker;
            gridViewDateTimeColumn2.ExcelExportType = Telerik.WinControls.UI.Export.DisplayFormatType.ShortTime;
            gridViewDateTimeColumn2.FieldName = "NextAppointmentTime";
            gridViewDateTimeColumn2.Format = System.Windows.Forms.DateTimePickerFormat.Time;
            gridViewDateTimeColumn2.FormatString = "{0:%h}:{0:%m}";
            gridViewDateTimeColumn2.HeaderText = "زمان مراجعه بعدی";
            gridViewDateTimeColumn2.MaxWidth = 100;
            gridViewDateTimeColumn2.MinWidth = 100;
            gridViewDateTimeColumn2.Name = "column8";
            gridViewDateTimeColumn2.Width = 100;
            gridViewCheckBoxColumn1.FieldName = "IsAppointmentFinished";
            gridViewCheckBoxColumn1.HeaderText = "اتمام قرارداد";
            gridViewCheckBoxColumn1.MaxWidth = 90;
            gridViewCheckBoxColumn1.MinWidth = 90;
            gridViewCheckBoxColumn1.Name = "column7";
            gridViewCheckBoxColumn1.Width = 90;
            gridViewTextBoxColumn13.EnableExpressionEditor = false;
            gridViewTextBoxColumn13.FieldName = "Description";
            gridViewTextBoxColumn13.HeaderText = "توضیحات";
            gridViewTextBoxColumn13.MaxWidth = 2000;
            gridViewTextBoxColumn13.Multiline = true;
            gridViewTextBoxColumn13.Name = "column6";
            gridViewTextBoxColumn13.Width = 5;
            this.radGridView1.MasterTemplate.Columns.AddRange(new Telerik.WinControls.UI.GridViewDataColumn[] {
            gridViewTextBoxColumn7,
            gridViewTextBoxColumn8,
            gridViewTextBoxColumn9,
            gridViewTextBoxColumn10,
            gridViewTextBoxColumn11,
            gridViewTextBoxColumn12,
            gridViewDateTimeColumn2,
            gridViewCheckBoxColumn1,
            gridViewTextBoxColumn13});
            this.radGridView1.MasterTemplate.EnableAlternatingRowColor = true;
            this.radGridView1.MasterTemplate.EnableGrouping = false;
            this.radGridView1.MasterTemplate.PageSize = 25;
            this.radGridView1.Name = "radGridView1";
            this.radGridView1.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
            this.radGridView1.Size = new System.Drawing.Size(584, 198);
            this.radGridView1.TabIndex = 6;
            this.radGridView1.Text = "radGridView1";
            this.radGridView1.ThemeName = "VisualStudio2012Light";
            this.radGridView1.SelectionChanged += new System.EventHandler(this.radGridView1_SelectionChanged);
            this.radGridView1.UserDeletingRow += new Telerik.WinControls.UI.GridViewRowCancelEventHandler(this.radGridView1_UserDeletingRow);
            this.radGridView1.CellDoubleClick += new Telerik.WinControls.UI.GridViewCellEventHandler(this.radGridView1_CellDoubleClick);
            // 
            // fileSystemWatcher1
            // 
            this.fileSystemWatcher1.EnableRaisingEvents = true;
            this.fileSystemWatcher1.SynchronizingObject = this;
            // 
            // CustomerInfoForm
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.ClientSize = new System.Drawing.Size(814, 541);
            this.Controls.Add(this.panel2);
            this.Controls.Add(this.panel1);
            this.Controls.Add(this.radTitleBar1);
            this.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
            this.Name = "CustomerInfoForm";
            this.Padding = new System.Windows.Forms.Padding(3);
            this.ShowIcon = false;
            this.ShowInTaskbar = false;
            this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
            this.Text = "اطلاعات مشتری";
            this.Load += new System.EventHandler(this.CustomerInfoForm_Load);
            ((System.ComponentModel.ISupportInitialize)(this.radTitleBar1)).EndInit();
            this.panel1.ResumeLayout(false);
            this.panel2.ResumeLayout(false);
            this.tableLayoutPanel1.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.radGridView2.MasterTemplate)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radGridView2)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radGridView3.MasterTemplate)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radGridView3)).EndInit();
            this.tableLayoutPanel2.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.radGridView1.MasterTemplate)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radGridView1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.fileSystemWatcher1)).EndInit();
            this.ResumeLayout(false);

        }
コード例 #44
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();
            Telerik.WinControls.UI.GridViewDecimalColumn gridViewDecimalColumn3 = new Telerik.WinControls.UI.GridViewDecimalColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn9 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewDecimalColumn gridViewDecimalColumn4 = new Telerik.WinControls.UI.GridViewDecimalColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn10 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn11 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn12 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn13 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn14 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn15 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn16 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewCheckBoxColumn gridViewCheckBoxColumn2 = new Telerik.WinControls.UI.GridViewCheckBoxColumn();
            Telerik.WinControls.Data.SortDescriptor sortDescriptor2 = new Telerik.WinControls.Data.SortDescriptor();
            Telerik.WinControls.UI.TableViewDefinition tableViewDefinition2 = new Telerik.WinControls.UI.TableViewDefinition();
            this.marketGrid = new Telerik.WinControls.UI.RadGridView();
            this.mbs = new System.Windows.Forms.BindingSource(this.components);
            this.newMarketing = new Telerik.WinControls.UI.RadButton();
            this.showdone = new Telerik.WinControls.UI.RadCheckBox();
            this.mm = new Telerik.WinControls.UI.RadLabel();
            ((System.ComponentModel.ISupportInitialize)(this.marketGrid)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.marketGrid.MasterTemplate)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.mbs)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.newMarketing)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.showdone)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.mm)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
            this.SuspendLayout();
            // 
            // marketGrid
            // 
            this.marketGrid.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.marketGrid.AutoScroll = true;
            this.marketGrid.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(191)))), ((int)(((byte)(219)))), ((int)(((byte)(255)))));
            this.marketGrid.Cursor = System.Windows.Forms.Cursors.Default;
            this.marketGrid.Font = new System.Drawing.Font("Tahoma", 10F);
            this.marketGrid.ForeColor = System.Drawing.Color.Black;
            this.marketGrid.ImeMode = System.Windows.Forms.ImeMode.NoControl;
            this.marketGrid.Location = new System.Drawing.Point(50, 95);
            // 
            // 
            // 
            this.marketGrid.MasterTemplate.AllowAddNewRow = false;
            this.marketGrid.MasterTemplate.AllowCellContextMenu = false;
            this.marketGrid.MasterTemplate.AllowColumnChooser = false;
            this.marketGrid.MasterTemplate.AllowDeleteRow = false;
            this.marketGrid.MasterTemplate.AllowEditRow = false;
            this.marketGrid.MasterTemplate.AutoSizeColumnsMode = Telerik.WinControls.UI.GridViewAutoSizeColumnsMode.Fill;
            gridViewDecimalColumn3.DataType = typeof(int);
            gridViewDecimalColumn3.EnableExpressionEditor = false;
            gridViewDecimalColumn3.FieldName = "ID";
            gridViewDecimalColumn3.HeaderText = "ID";
            gridViewDecimalColumn3.IsAutoGenerated = true;
            gridViewDecimalColumn3.IsVisible = false;
            gridViewDecimalColumn3.Name = "ID";
            gridViewTextBoxColumn9.EnableExpressionEditor = false;
            gridViewTextBoxColumn9.FieldName = "followDate";
            gridViewTextBoxColumn9.HeaderText = "تاریخ پیگیری";
            gridViewTextBoxColumn9.IsAutoGenerated = true;
            gridViewTextBoxColumn9.Name = "followDate";
            gridViewTextBoxColumn9.Width = 122;
            gridViewDecimalColumn4.DataType = typeof(System.Nullable<int>);
            gridViewDecimalColumn4.EnableExpressionEditor = false;
            gridViewDecimalColumn4.FieldName = "marketer";
            gridViewDecimalColumn4.HeaderText = "بازاریاب";
            gridViewDecimalColumn4.IsAutoGenerated = true;
            gridViewDecimalColumn4.IsVisible = false;
            gridViewDecimalColumn4.Name = "marketer";
            gridViewTextBoxColumn10.EnableExpressionEditor = false;
            gridViewTextBoxColumn10.FieldName = "doingDate";
            gridViewTextBoxColumn10.HeaderText = "تاریخ انجام";
            gridViewTextBoxColumn10.IsAutoGenerated = true;
            gridViewTextBoxColumn10.Name = "doingDate";
            gridViewTextBoxColumn10.Width = 115;
            gridViewTextBoxColumn11.EnableExpressionEditor = false;
            gridViewTextBoxColumn11.FieldName = "client";
            gridViewTextBoxColumn11.HeaderText = "مشتری";
            gridViewTextBoxColumn11.IsAutoGenerated = true;
            gridViewTextBoxColumn11.Name = "client";
            gridViewTextBoxColumn11.Width = 176;
            gridViewTextBoxColumn12.EnableExpressionEditor = false;
            gridViewTextBoxColumn12.FieldName = "result";
            gridViewTextBoxColumn12.HeaderText = "نتیجه";
            gridViewTextBoxColumn12.IsAutoGenerated = true;
            gridViewTextBoxColumn12.Name = "result";
            gridViewTextBoxColumn12.Width = 177;
            gridViewTextBoxColumn13.EnableExpressionEditor = false;
            gridViewTextBoxColumn13.FieldName = "nextFollowDate";
            gridViewTextBoxColumn13.HeaderText = "تاریخ پیگیری بعدی";
            gridViewTextBoxColumn13.IsAutoGenerated = true;
            gridViewTextBoxColumn13.Name = "nextFollowDate";
            gridViewTextBoxColumn13.Width = 115;
            gridViewTextBoxColumn14.EnableExpressionEditor = false;
            gridViewTextBoxColumn14.FieldName = "comment";
            gridViewTextBoxColumn14.HeaderText = "comment";
            gridViewTextBoxColumn14.IsAutoGenerated = true;
            gridViewTextBoxColumn14.IsVisible = false;
            gridViewTextBoxColumn14.Name = "comment";
            gridViewTextBoxColumn15.DataType = typeof(tiraxco.User);
            gridViewTextBoxColumn15.EnableExpressionEditor = false;
            gridViewTextBoxColumn15.FieldName = "User";
            gridViewTextBoxColumn15.HeaderText = "User";
            gridViewTextBoxColumn15.IsAutoGenerated = true;
            gridViewTextBoxColumn15.IsVisible = false;
            gridViewTextBoxColumn15.Name = "User";
            gridViewTextBoxColumn15.SortOrder = Telerik.WinControls.UI.RadSortOrder.Descending;
            gridViewTextBoxColumn16.EnableExpressionEditor = false;
            gridViewTextBoxColumn16.FieldName = "User.name";
            gridViewTextBoxColumn16.HeaderText = "بازاریاب";
            gridViewTextBoxColumn16.Name = "column1";
            gridViewTextBoxColumn16.Width = 70;
            gridViewCheckBoxColumn2.DataType = typeof(System.Nullable<bool>);
            gridViewCheckBoxColumn2.EnableExpressionEditor = false;
            gridViewCheckBoxColumn2.FieldName = "done";
            gridViewCheckBoxColumn2.HeaderText = "انجام شده";
            gridViewCheckBoxColumn2.IsAutoGenerated = true;
            gridViewCheckBoxColumn2.MinWidth = 20;
            gridViewCheckBoxColumn2.Name = "done";
            gridViewCheckBoxColumn2.Width = 106;
            this.marketGrid.MasterTemplate.Columns.AddRange(new Telerik.WinControls.UI.GridViewDataColumn[] {
            gridViewDecimalColumn3,
            gridViewTextBoxColumn9,
            gridViewDecimalColumn4,
            gridViewTextBoxColumn10,
            gridViewTextBoxColumn11,
            gridViewTextBoxColumn12,
            gridViewTextBoxColumn13,
            gridViewTextBoxColumn14,
            gridViewTextBoxColumn15,
            gridViewTextBoxColumn16,
            gridViewCheckBoxColumn2});
            this.marketGrid.MasterTemplate.DataSource = this.mbs;
            this.marketGrid.MasterTemplate.EnableFiltering = true;
            sortDescriptor2.Direction = System.ComponentModel.ListSortDirection.Descending;
            sortDescriptor2.PropertyName = "User";
            this.marketGrid.MasterTemplate.SortDescriptors.AddRange(new Telerik.WinControls.Data.SortDescriptor[] {
            sortDescriptor2});
            this.marketGrid.MasterTemplate.ViewDefinition = tableViewDefinition2;
            this.marketGrid.Name = "marketGrid";
            this.marketGrid.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
            this.marketGrid.Size = new System.Drawing.Size(896, 331);
            this.marketGrid.TabIndex = 0;
            this.marketGrid.Text = "radGridView1";
            this.marketGrid.CellClick += new Telerik.WinControls.UI.GridViewCellEventHandler(this.marketGrid_CellClick);
            // 
            // mbs
            // 
            this.mbs.DataSource = typeof(tiraxco.Marketing);
            // 
            // newMarketing
            // 
            this.newMarketing.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.newMarketing.Font = new System.Drawing.Font("Tahoma", 10F, System.Drawing.FontStyle.Bold);
            this.newMarketing.Location = new System.Drawing.Point(50, 441);
            this.newMarketing.Name = "newMarketing";
            this.newMarketing.Size = new System.Drawing.Size(120, 41);
            this.newMarketing.TabIndex = 6;
            this.newMarketing.Text = "ایجاد";
            this.newMarketing.Click += new System.EventHandler(this.newUser_Click);
            // 
            // showdone
            // 
            this.showdone.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
            this.showdone.Font = new System.Drawing.Font("Tahoma", 10F);
            this.showdone.Location = new System.Drawing.Point(931, 61);
            this.showdone.Name = "showdone";
            this.showdone.Size = new System.Drawing.Size(15, 15);
            this.showdone.TabIndex = 7;
            this.showdone.ToggleStateChanged += new Telerik.WinControls.UI.StateChangedEventHandler(this.showdone_ToggleStateChanged);
            // 
            // mm
            // 
            this.mm.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
            this.mm.Font = new System.Drawing.Font("Tahoma", 10F);
            this.mm.Location = new System.Drawing.Point(734, 56);
            this.mm.Name = "mm";
            this.mm.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
            this.mm.Size = new System.Drawing.Size(191, 20);
            this.mm.TabIndex = 13;
            this.mm.Text = "نمایش پیگیری های انجام نشده.";
            this.mm.TextAlignment = System.Drawing.ContentAlignment.TopRight;
            // 
            // MarketingManagement
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.ClientSize = new System.Drawing.Size(998, 512);
            this.Controls.Add(this.mm);
            this.Controls.Add(this.showdone);
            this.Controls.Add(this.newMarketing);
            this.Controls.Add(this.marketGrid);
            this.Name = "MarketingManagement";
            // 
            // 
            // 
            this.RootElement.ApplyShapeToControl = true;
            this.Text = "بازاریابی";
            this.ThemeName = "ControlDefault";
            this.WindowState = System.Windows.Forms.FormWindowState.Maximized;
            ((System.ComponentModel.ISupportInitialize)(this.marketGrid.MasterTemplate)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.marketGrid)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.mbs)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.newMarketing)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.showdone)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.mm)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this)).EndInit();
            this.ResumeLayout(false);
            this.PerformLayout();

        }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     Telerik.WinControls.UI.GridViewTextBoxColumn  gridViewTextBoxColumn1  = new Telerik.WinControls.UI.GridViewTextBoxColumn();
     Telerik.WinControls.UI.GridViewTextBoxColumn  gridViewTextBoxColumn2  = new Telerik.WinControls.UI.GridViewTextBoxColumn();
     Telerik.WinControls.UI.GridViewTextBoxColumn  gridViewTextBoxColumn3  = new Telerik.WinControls.UI.GridViewTextBoxColumn();
     Telerik.WinControls.UI.GridViewTextBoxColumn  gridViewTextBoxColumn4  = new Telerik.WinControls.UI.GridViewTextBoxColumn();
     Telerik.WinControls.UI.GridViewTextBoxColumn  gridViewTextBoxColumn5  = new Telerik.WinControls.UI.GridViewTextBoxColumn();
     Telerik.WinControls.UI.GridViewTextBoxColumn  gridViewTextBoxColumn6  = new Telerik.WinControls.UI.GridViewTextBoxColumn();
     Telerik.WinControls.UI.GridViewTextBoxColumn  gridViewTextBoxColumn7  = new Telerik.WinControls.UI.GridViewTextBoxColumn();
     Telerik.WinControls.UI.GridViewTextBoxColumn  gridViewTextBoxColumn8  = new Telerik.WinControls.UI.GridViewTextBoxColumn();
     Telerik.WinControls.UI.GridViewDateTimeColumn gridViewDateTimeColumn1 = new Telerik.WinControls.UI.GridViewDateTimeColumn();
     Telerik.WinControls.UI.GridViewDateTimeColumn gridViewDateTimeColumn2 = new Telerik.WinControls.UI.GridViewDateTimeColumn();
     Telerik.WinControls.UI.GridViewCheckBoxColumn gridViewCheckBoxColumn1 = new Telerik.WinControls.UI.GridViewCheckBoxColumn();
     Telerik.WinControls.UI.GridViewTextBoxColumn  gridViewTextBoxColumn9  = new Telerik.WinControls.UI.GridViewTextBoxColumn();
     Telerik.WinControls.UI.GridViewTextBoxColumn  gridViewTextBoxColumn10 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
     Telerik.WinControls.UI.GridViewCheckBoxColumn gridViewCheckBoxColumn2 = new Telerik.WinControls.UI.GridViewCheckBoxColumn();
     Telerik.WinControls.UI.GridViewTextBoxColumn  gridViewTextBoxColumn11 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
     Telerik.WinControls.UI.GridViewTextBoxColumn  gridViewTextBoxColumn12 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
     this.commandBarRowElement2MainF = new Telerik.WinControls.UI.CommandBarRowElement();
     this.radStatusStrip1            = new Telerik.WinControls.UI.RadStatusStrip();
     this.radLabelElementStatus      = new Telerik.WinControls.UI.RadLabelElement();
     this.office2010BlackTheme1      = new Telerik.WinControls.Themes.Office2010BlackTheme();
     this.radPanel1                    = new Telerik.WinControls.UI.RadPanel();
     this.RadCommandBar1MainF          = new Telerik.WinControls.UI.RadCommandBar();
     this.commandBarRowElement1MainF   = new Telerik.WinControls.UI.CommandBarRowElement();
     this.commandBarStripElement1MainF = new Telerik.WinControls.UI.CommandBarStripElement();
     this.cbbSave           = new Telerik.WinControls.UI.CommandBarButton();
     this.cbbCancel         = new Telerik.WinControls.UI.CommandBarButton();
     this.rgbDescriptions   = new Telerik.WinControls.UI.RadGroupBox();
     this.rbtnSearch        = new Telerik.WinControls.UI.RadButton();
     this.rtbSearch         = new Telerik.WinControls.UI.RadTextBox();
     this.radGridViewSearch = new Telerik.WinControls.UI.RadGridView();
     ((System.ComponentModel.ISupportInitialize)(this.radStatusStrip1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radPanel1)).BeginInit();
     this.radPanel1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.RadCommandBar1MainF)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.rgbDescriptions)).BeginInit();
     this.rgbDescriptions.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.rbtnSearch)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.rtbSearch)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radGridViewSearch)).BeginInit();
     this.SuspendLayout();
     //
     // commandBarRowElement2MainF
     //
     this.commandBarRowElement2MainF.DisplayName = null;
     this.commandBarRowElement2MainF.Font        = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
     this.commandBarRowElement2MainF.MinSize     = new System.Drawing.Size(25, 25);
     this.commandBarRowElement2MainF.Text        = "";
     //
     // radStatusStrip1
     //
     this.radStatusStrip1.AutoSize = true;
     this.radStatusStrip1.Font     = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
     this.radStatusStrip1.Items.AddRange(new Telerik.WinControls.RadItem[] {
         this.radLabelElementStatus
     });
     this.radStatusStrip1.LayoutStyle = Telerik.WinControls.UI.RadStatusBarLayoutStyle.Stack;
     this.radStatusStrip1.Location    = new System.Drawing.Point(0, 178);
     this.radStatusStrip1.Name        = "radStatusStrip1";
     this.radStatusStrip1.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
     this.radStatusStrip1.Size        = new System.Drawing.Size(405, 24);
     this.radStatusStrip1.TabIndex    = 4;
     this.radStatusStrip1.Text        = "radStatusStrip1";
     //
     // radLabelElementStatus
     //
     this.radLabelElementStatus.AccessibleDescription = "مشاهده، جستجو و مدیریت قرارداد ها";
     this.radLabelElementStatus.AccessibleName        = "مشاهده، جستجو و مدیریت قرارداد ها";
     this.radLabelElementStatus.AutoSize = false;
     this.radLabelElementStatus.Bounds   = new System.Drawing.Rectangle(0, 0, 231, 18);
     this.radLabelElementStatus.Font     = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
     this.radLabelElementStatus.Name     = "radLabelElementStatus";
     this.radStatusStrip1.SetSpring(this.radLabelElementStatus, false);
     this.radLabelElementStatus.Text          = "جستجوی یک قرارداد ثبت شده در سامانه";
     this.radLabelElementStatus.TextAlignment = System.Drawing.ContentAlignment.TopRight;
     this.radLabelElementStatus.TextWrap      = true;
     this.radLabelElementStatus.Visibility    = Telerik.WinControls.ElementVisibility.Visible;
     //
     // radPanel1
     //
     this.radPanel1.BackColor = System.Drawing.Color.CornflowerBlue;
     this.radPanel1.Controls.Add(this.RadCommandBar1MainF);
     this.radPanel1.Dock     = System.Windows.Forms.DockStyle.Top;
     this.radPanel1.Location = new System.Drawing.Point(0, 0);
     this.radPanel1.Name     = "radPanel1";
     this.radPanel1.Size     = new System.Drawing.Size(405, 50);
     this.radPanel1.TabIndex = 5;
     this.radPanel1.Text     = "radPanel1";
     //
     // RadCommandBar1MainF
     //
     this.RadCommandBar1MainF.AutoSize = true;
     this.RadCommandBar1MainF.Dock     = System.Windows.Forms.DockStyle.Top;
     this.RadCommandBar1MainF.Font     = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
     this.RadCommandBar1MainF.Location = new System.Drawing.Point(0, 0);
     this.RadCommandBar1MainF.Name     = "RadCommandBar1MainF";
     this.RadCommandBar1MainF.Rows.AddRange(new Telerik.WinControls.UI.CommandBarRowElement[] {
         this.commandBarRowElement1MainF
     });
     this.RadCommandBar1MainF.Size     = new System.Drawing.Size(405, 47);
     this.RadCommandBar1MainF.TabIndex = 2;
     this.RadCommandBar1MainF.Tag      = "";
     this.RadCommandBar1MainF.Text     = "radCommandBar1";
     //
     // commandBarRowElement1MainF
     //
     this.commandBarRowElement1MainF.DisplayName = null;
     this.commandBarRowElement1MainF.Font        = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
     this.commandBarRowElement1MainF.MinSize     = new System.Drawing.Size(25, 25);
     this.commandBarRowElement1MainF.RightToLeft = true;
     this.commandBarRowElement1MainF.Strips.AddRange(new Telerik.WinControls.UI.CommandBarStripElement[] {
         this.commandBarStripElement1MainF
     });
     this.commandBarRowElement1MainF.Text = "";
     //
     // commandBarStripElement1MainF
     //
     this.commandBarStripElement1MainF.DisplayName  = "commandBarStripElement1";
     this.commandBarStripElement1MainF.FloatingForm = null;
     this.commandBarStripElement1MainF.Font         = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
     this.commandBarStripElement1MainF.Items.AddRange(new Telerik.WinControls.UI.RadCommandBarBaseItem[] {
         this.cbbSave,
         this.cbbCancel
     });
     this.commandBarStripElement1MainF.Name = "commandBarStripElement1";
     this.commandBarStripElement1MainF.Text = "";
     //
     // cbbSave
     //
     this.cbbSave.AccessibleDescription = "تایید";
     this.cbbSave.AccessibleName        = "تایید";
     this.cbbSave.DisplayName           = "تایید";
     this.cbbSave.DrawText          = true;
     this.cbbSave.Font              = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
     this.cbbSave.Image             = global::aorc.gatepass.Properties.Resources.pass3;
     this.cbbSave.Name              = "cbbSave";
     this.cbbSave.Tag               = "asned";
     this.cbbSave.Text              = "تایید";
     this.cbbSave.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
     this.cbbSave.Visibility        = Telerik.WinControls.ElementVisibility.Visible;
     this.cbbSave.Click            += new System.EventHandler(this.cbbSave_Click);
     //
     // cbbCancel
     //
     this.cbbCancel.AccessibleDescription = "انصراف";
     this.cbbCancel.AccessibleName        = "انصراف";
     this.cbbCancel.DisplayName           = "انصراف";
     this.cbbCancel.DrawText          = true;
     this.cbbCancel.Font              = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
     this.cbbCancel.Image             = global::aorc.gatepass.Properties.Resources.cancel;
     this.cbbCancel.Name              = "cbbCancel";
     this.cbbCancel.Tag               = "asned";
     this.cbbCancel.Text              = "انصراف";
     this.cbbCancel.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
     this.cbbCancel.Visibility        = Telerik.WinControls.ElementVisibility.Visible;
     this.cbbCancel.Click            += new System.EventHandler(this.cbbCancel_Click);
     //
     // rgbDescriptions
     //
     this.rgbDescriptions.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
     this.rgbDescriptions.BackColor      = System.Drawing.Color.FromArgb(((int)(((byte)(191)))), ((int)(((byte)(219)))), ((int)(((byte)(255)))));
     this.rgbDescriptions.Controls.Add(this.rbtnSearch);
     this.rgbDescriptions.Controls.Add(this.rtbSearch);
     this.rgbDescriptions.Dock                = System.Windows.Forms.DockStyle.Top;
     this.rgbDescriptions.Font                = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.rgbDescriptions.FooterImageIndex    = -1;
     this.rgbDescriptions.FooterImageKey      = "";
     this.rgbDescriptions.HeaderAlignment     = Telerik.WinControls.UI.HeaderAlignment.Far;
     this.rgbDescriptions.HeaderImageIndex    = -1;
     this.rgbDescriptions.HeaderImageKey      = "";
     this.rgbDescriptions.HeaderMargin        = new System.Windows.Forms.Padding(0);
     this.rgbDescriptions.HeaderText          = "بر اساس شماره قرارداد";
     this.rgbDescriptions.HeaderTextAlignment = System.Drawing.ContentAlignment.MiddleRight;
     this.rgbDescriptions.Location            = new System.Drawing.Point(0, 50);
     this.rgbDescriptions.Name                = "rgbDescriptions";
     this.rgbDescriptions.Padding             = new System.Windows.Forms.Padding(2, 18, 2, 2);
     //
     //
     //
     this.rgbDescriptions.RootElement.Padding = new System.Windows.Forms.Padding(2, 18, 2, 2);
     this.rgbDescriptions.Size     = new System.Drawing.Size(405, 43);
     this.rgbDescriptions.TabIndex = 8;
     this.rgbDescriptions.Text     = "بر اساس شماره قرارداد";
     //
     // rbtnSearch
     //
     this.rbtnSearch.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.rbtnSearch.AutoSize = true;
     this.rbtnSearch.Image    = global::aorc.gatepass.Properties.Resources.search;
     this.rbtnSearch.Location = new System.Drawing.Point(30, 12);
     this.rbtnSearch.Name     = "rbtnSearch";
     this.rbtnSearch.Size     = new System.Drawing.Size(26, 26);
     this.rbtnSearch.TabIndex = 5;
     this.rbtnSearch.Click   += new System.EventHandler(this.rbtnSearch_Click);
     //
     // rtbSearch
     //
     this.rtbSearch.Font        = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.rtbSearch.Location    = new System.Drawing.Point(107, 19);
     this.rtbSearch.Name        = "rtbSearch";
     this.rtbSearch.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
     this.rtbSearch.Size        = new System.Drawing.Size(278, 19);
     this.rtbSearch.TabIndex    = 3;
     this.rtbSearch.TabStop     = false;
     this.rtbSearch.Tag         = "aens";
     this.rtbSearch.KeyDown    += new System.Windows.Forms.KeyEventHandler(this.rtbSearch_KeyDown);
     //
     // radGridViewSearch
     //
     this.radGridViewSearch.BackColor        = System.Drawing.Color.FromArgb(((int)(((byte)(233)))), ((int)(((byte)(240)))), ((int)(((byte)(249)))));
     this.radGridViewSearch.CausesValidation = false;
     this.radGridViewSearch.Cursor           = System.Windows.Forms.Cursors.Default;
     this.radGridViewSearch.Dock             = System.Windows.Forms.DockStyle.Fill;
     this.radGridViewSearch.Font             = new System.Drawing.Font("Tahoma", 8.25F);
     this.radGridViewSearch.ForeColor        = System.Drawing.Color.Black;
     this.radGridViewSearch.ImeMode          = System.Windows.Forms.ImeMode.NoControl;
     this.radGridViewSearch.Location         = new System.Drawing.Point(0, 93);
     //
     // radGridViewSearch
     //
     this.radGridViewSearch.MasterTemplate.AllowAddNewRow = false;
     gridViewTextBoxColumn1.EnableExpressionEditor        = false;
     gridViewTextBoxColumn1.FieldName               = "Agreement_ID";
     gridViewTextBoxColumn1.HeaderText              = "ردیف";
     gridViewTextBoxColumn1.IsVisible               = false;
     gridViewTextBoxColumn1.Name                    = "Agreement_ID";
     gridViewTextBoxColumn1.Width                   = 71;
     gridViewTextBoxColumn2.EnableExpressionEditor  = false;
     gridViewTextBoxColumn2.FieldName               = "Agreement_Number";
     gridViewTextBoxColumn2.HeaderText              = "شماره قرارداد";
     gridViewTextBoxColumn2.Name                    = "Agreement_Number";
     gridViewTextBoxColumn2.Width                   = 134;
     gridViewTextBoxColumn3.EnableExpressionEditor  = false;
     gridViewTextBoxColumn3.FieldName               = "Agreement_Title";
     gridViewTextBoxColumn3.HeaderText              = "عنوان ";
     gridViewTextBoxColumn3.IsVisible               = false;
     gridViewTextBoxColumn3.Name                    = "Agreement_Title";
     gridViewTextBoxColumn3.Width                   = 265;
     gridViewTextBoxColumn4.EnableExpressionEditor  = false;
     gridViewTextBoxColumn4.FieldName               = "Agreement_Company";
     gridViewTextBoxColumn4.HeaderText              = "شرکت/پیمانکاری";
     gridViewTextBoxColumn4.Name                    = "Agreement_Company";
     gridViewTextBoxColumn4.Width                   = 220;
     gridViewTextBoxColumn5.EnableExpressionEditor  = false;
     gridViewTextBoxColumn5.FieldName               = "Agreement_ManagerName";
     gridViewTextBoxColumn5.HeaderText              = "مدیر عامل";
     gridViewTextBoxColumn5.IsVisible               = false;
     gridViewTextBoxColumn5.Name                    = "Agreement_ManagerName";
     gridViewTextBoxColumn5.Width                   = 86;
     gridViewTextBoxColumn6.EnableExpressionEditor  = false;
     gridViewTextBoxColumn6.FieldName               = "Agreement_AgentName";
     gridViewTextBoxColumn6.HeaderText              = "نماینده";
     gridViewTextBoxColumn6.IsVisible               = false;
     gridViewTextBoxColumn6.Name                    = "Agreement_AgentName";
     gridViewTextBoxColumn7.EnableExpressionEditor  = false;
     gridViewTextBoxColumn7.FieldName               = "Agreement_AgentPhone";
     gridViewTextBoxColumn7.HeaderText              = "تلفن نماینده";
     gridViewTextBoxColumn7.IsVisible               = false;
     gridViewTextBoxColumn7.Name                    = "Agreement_AgentPhone";
     gridViewTextBoxColumn8.EnableExpressionEditor  = false;
     gridViewTextBoxColumn8.FieldName               = "Agreement_Description";
     gridViewTextBoxColumn8.HeaderText              = "توضیحات";
     gridViewTextBoxColumn8.IsVisible               = false;
     gridViewTextBoxColumn8.Name                    = "Agreement_Description";
     gridViewDateTimeColumn1.EnableExpressionEditor = false;
     gridViewDateTimeColumn1.FieldName              = "Agreement_StartDate";
     gridViewDateTimeColumn1.Format                 = System.Windows.Forms.DateTimePickerFormat.Long;
     gridViewDateTimeColumn1.HeaderText             = "تاریخ شروع";
     gridViewDateTimeColumn1.IsVisible              = false;
     gridViewDateTimeColumn1.Name                   = "Agreement_StartDate";
     gridViewDateTimeColumn2.EnableExpressionEditor = false;
     gridViewDateTimeColumn2.FieldName              = "Agreement_EndDate";
     gridViewDateTimeColumn2.Format                 = System.Windows.Forms.DateTimePickerFormat.Long;
     gridViewDateTimeColumn2.HeaderText             = "تاریخ پایان";
     gridViewDateTimeColumn2.IsVisible              = false;
     gridViewDateTimeColumn2.Name                   = "Agreement_EndDate";
     gridViewCheckBoxColumn1.EnableExpressionEditor = false;
     gridViewCheckBoxColumn1.FieldName              = "Agreement_IsActive";
     gridViewCheckBoxColumn1.HeaderText             = "وضعیت فعال";
     gridViewCheckBoxColumn1.MinWidth               = 20;
     gridViewCheckBoxColumn1.Name                   = "Agreement_IsActive";
     gridViewCheckBoxColumn1.Width                  = 76;
     gridViewTextBoxColumn9.EnableExpressionEditor  = false;
     gridViewTextBoxColumn9.FieldName               = "Agreement_ManagerTell";
     gridViewTextBoxColumn9.HeaderText              = "تلفن شرکت";
     gridViewTextBoxColumn9.IsVisible               = false;
     gridViewTextBoxColumn9.Name                    = "Agreement_ManagerTell";
     gridViewTextBoxColumn10.EnableExpressionEditor = false;
     gridViewTextBoxColumn10.FieldName              = "Agreement_Adress";
     gridViewTextBoxColumn10.HeaderText             = "آدرس";
     gridViewTextBoxColumn10.IsVisible              = false;
     gridViewTextBoxColumn10.Name                   = "Agreement_Adress";
     gridViewCheckBoxColumn2.EnableExpressionEditor = false;
     gridViewCheckBoxColumn2.FieldName              = "Agreement_IsIndustrial";
     gridViewCheckBoxColumn2.HeaderText             = " قرارداد صنعتی";
     gridViewCheckBoxColumn2.IsVisible              = false;
     gridViewCheckBoxColumn2.MinWidth               = 20;
     gridViewCheckBoxColumn2.Name                   = "Agreement_IsIndustrial";
     gridViewTextBoxColumn11.EnableExpressionEditor = false;
     gridViewTextBoxColumn11.FieldName              = "Agreement_LabelIsIndustrial";
     gridViewTextBoxColumn11.HeaderText             = "نوع قرارداد";
     gridViewTextBoxColumn11.IsVisible              = false;
     gridViewTextBoxColumn11.Name                   = "Agreement_LabelIsIndustrial";
     gridViewTextBoxColumn11.Width                  = 67;
     gridViewTextBoxColumn12.EnableExpressionEditor = false;
     gridViewTextBoxColumn12.FieldName              = "Agreement_CountCars";
     gridViewTextBoxColumn12.HeaderText             = "تعداد خودرو";
     gridViewTextBoxColumn12.IsVisible              = false;
     gridViewTextBoxColumn12.Name                   = "Agreement_CountCars";
     gridViewTextBoxColumn12.Width                  = 68;
     this.radGridViewSearch.MasterTemplate.Columns.AddRange(new Telerik.WinControls.UI.GridViewDataColumn[] {
         gridViewTextBoxColumn1,
         gridViewTextBoxColumn2,
         gridViewTextBoxColumn3,
         gridViewTextBoxColumn4,
         gridViewTextBoxColumn5,
         gridViewTextBoxColumn6,
         gridViewTextBoxColumn7,
         gridViewTextBoxColumn8,
         gridViewDateTimeColumn1,
         gridViewDateTimeColumn2,
         gridViewCheckBoxColumn1,
         gridViewTextBoxColumn9,
         gridViewTextBoxColumn10,
         gridViewCheckBoxColumn2,
         gridViewTextBoxColumn11,
         gridViewTextBoxColumn12
     });
     this.radGridViewSearch.MasterTemplate.EnableGrouping      = false;
     this.radGridViewSearch.MasterTemplate.EnableSorting       = false;
     this.radGridViewSearch.MasterTemplate.ShowRowHeaderColumn = false;
     this.radGridViewSearch.Name         = "radGridViewSearch";
     this.radGridViewSearch.ReadOnly     = true;
     this.radGridViewSearch.RightToLeft  = System.Windows.Forms.RightToLeft.Yes;
     this.radGridViewSearch.Size         = new System.Drawing.Size(405, 85);
     this.radGridViewSearch.TabIndex     = 9;
     this.radGridViewSearch.Text         = "radGridView1";
     this.radGridViewSearch.DoubleClick += new System.EventHandler(this.radGridViewSearch_DoubleClick);
     //
     // frm_SelectAgree
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize          = new System.Drawing.Size(405, 202);
     this.Controls.Add(this.radGridViewSearch);
     this.Controls.Add(this.rgbDescriptions);
     this.Controls.Add(this.radPanel1);
     this.Controls.Add(this.radStatusStrip1);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedToolWindow;
     this.Name            = "frm_SelectAgree";
     this.StartPosition   = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text            = "انتخاب قرارداد";
     this.Load           += new System.EventHandler(this.frm_SelectAgree_Load);
     this.Shown          += new System.EventHandler(this.frm_SelectAgree_Shown);
     ((System.ComponentModel.ISupportInitialize)(this.radStatusStrip1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radPanel1)).EndInit();
     this.radPanel1.ResumeLayout(false);
     this.radPanel1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.RadCommandBar1MainF)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.rgbDescriptions)).EndInit();
     this.rgbDescriptions.ResumeLayout(false);
     this.rgbDescriptions.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.rbtnSearch)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.rtbSearch)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radGridViewSearch)).EndInit();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
コード例 #46
0
        /// <summary>
        /// Required method for Designer support - do not modify
        /// the contents of this method with the code editor.
        /// </summary>
        private void InitializeComponent()
        {
            Telerik.WinControls.UI.GridViewCheckBoxColumn gridViewCheckBoxColumn3 = new Telerik.WinControls.UI.GridViewCheckBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn35 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn36 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn37 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn38 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn39 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn40 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn41 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn42 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn43 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn44 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn45 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn46 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn47 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn48 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn49 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn50 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn51 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.Data.SortDescriptor sortDescriptor3 = new Telerik.WinControls.Data.SortDescriptor();
            this.radSplitContainer1 = new Telerik.WinControls.UI.RadSplitContainer();
            this.splitPanel1 = new Telerik.WinControls.UI.SplitPanel();
            this.radGroupBox1 = new Telerik.WinControls.UI.RadGroupBox();
            this.splitPanel2 = new Telerik.WinControls.UI.SplitPanel();
            this.radGroupBox2 = new Telerik.WinControls.UI.RadGroupBox();
            this.rgv_StatusDoc = new Telerik.WinControls.UI.RadGridView();
            this.txt_Remark = new Telerik.WinControls.UI.RadTextBox();
            this.btn_Save = new Telerik.WinControls.UI.RadButton();
            this.radLabel1 = new Telerik.WinControls.UI.RadLabel();
            ((System.ComponentModel.ISupportInitialize)(this.radSplitContainer1)).BeginInit();
            this.radSplitContainer1.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.splitPanel1)).BeginInit();
            this.splitPanel1.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.radGroupBox1)).BeginInit();
            this.radGroupBox1.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.splitPanel2)).BeginInit();
            this.splitPanel2.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.radGroupBox2)).BeginInit();
            this.radGroupBox2.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.rgv_StatusDoc)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.rgv_StatusDoc.MasterTemplate)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.txt_Remark)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.btn_Save)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel1)).BeginInit();
            this.SuspendLayout();
            // 
            // radSplitContainer1
            // 
            this.radSplitContainer1.Controls.Add(this.splitPanel1);
            this.radSplitContainer1.Controls.Add(this.splitPanel2);
            this.radSplitContainer1.Dock = System.Windows.Forms.DockStyle.Fill;
            this.radSplitContainer1.Location = new System.Drawing.Point(0, 0);
            this.radSplitContainer1.Name = "radSplitContainer1";
            this.radSplitContainer1.Orientation = System.Windows.Forms.Orientation.Horizontal;
            // 
            // 
            // 
            this.radSplitContainer1.RootElement.MinSize = new System.Drawing.Size(25, 25);
            this.radSplitContainer1.Size = new System.Drawing.Size(784, 561);
            this.radSplitContainer1.SplitterWidth = 4;
            this.radSplitContainer1.TabIndex = 0;
            this.radSplitContainer1.TabStop = false;
            this.radSplitContainer1.Text = "radSplitContainer1";
            // 
            // splitPanel1
            // 
            this.splitPanel1.Controls.Add(this.radGroupBox1);
            this.splitPanel1.Location = new System.Drawing.Point(0, 0);
            this.splitPanel1.Name = "splitPanel1";
            // 
            // 
            // 
            this.splitPanel1.RootElement.MinSize = new System.Drawing.Size(25, 25);
            this.splitPanel1.Size = new System.Drawing.Size(784, 221);
            this.splitPanel1.SizeInfo.AutoSizeScale = new System.Drawing.SizeF(0F, -0.1032316F);
            this.splitPanel1.SizeInfo.SplitterCorrection = new System.Drawing.Size(0, -57);
            this.splitPanel1.TabIndex = 0;
            this.splitPanel1.TabStop = false;
            this.splitPanel1.Text = "splitPanel1";
            // 
            // radGroupBox1
            // 
            this.radGroupBox1.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
            this.radGroupBox1.Controls.Add(this.rgv_StatusDoc);
            this.radGroupBox1.Dock = System.Windows.Forms.DockStyle.Fill;
            this.radGroupBox1.HeaderText = "";
            this.radGroupBox1.Location = new System.Drawing.Point(0, 0);
            this.radGroupBox1.Name = "radGroupBox1";
            // 
            // 
            // 
            this.radGroupBox1.RootElement.Padding = new System.Windows.Forms.Padding(2, 18, 2, 2);
            this.radGroupBox1.Size = new System.Drawing.Size(784, 221);
            this.radGroupBox1.TabIndex = 0;
            // 
            // splitPanel2
            // 
            this.splitPanel2.Controls.Add(this.radGroupBox2);
            this.splitPanel2.Location = new System.Drawing.Point(0, 225);
            this.splitPanel2.Name = "splitPanel2";
            // 
            // 
            // 
            this.splitPanel2.RootElement.MinSize = new System.Drawing.Size(25, 25);
            this.splitPanel2.Size = new System.Drawing.Size(784, 336);
            this.splitPanel2.SizeInfo.AutoSizeScale = new System.Drawing.SizeF(0F, 0.1032316F);
            this.splitPanel2.SizeInfo.SplitterCorrection = new System.Drawing.Size(0, 57);
            this.splitPanel2.TabIndex = 1;
            this.splitPanel2.TabStop = false;
            this.splitPanel2.Text = "splitPanel2";
            // 
            // radGroupBox2
            // 
            this.radGroupBox2.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
            this.radGroupBox2.Controls.Add(this.txt_Remark);
            this.radGroupBox2.Controls.Add(this.btn_Save);
            this.radGroupBox2.Controls.Add(this.radLabel1);
            this.radGroupBox2.Dock = System.Windows.Forms.DockStyle.Fill;
            this.radGroupBox2.HeaderText = "";
            this.radGroupBox2.Location = new System.Drawing.Point(0, 0);
            this.radGroupBox2.Name = "radGroupBox2";
            // 
            // 
            // 
            this.radGroupBox2.RootElement.Padding = new System.Windows.Forms.Padding(2, 18, 2, 2);
            this.radGroupBox2.Size = new System.Drawing.Size(784, 336);
            this.radGroupBox2.TabIndex = 0;
            // 
            // rgv_StatusDoc
            // 
            this.rgv_StatusDoc.BackColor = System.Drawing.SystemColors.Control;
            this.rgv_StatusDoc.Cursor = System.Windows.Forms.Cursors.Default;
            this.rgv_StatusDoc.Dock = System.Windows.Forms.DockStyle.Fill;
            this.rgv_StatusDoc.Font = new System.Drawing.Font("Segoe UI", 8.25F);
            this.rgv_StatusDoc.ForeColor = System.Drawing.Color.Black;
            this.rgv_StatusDoc.ImeMode = System.Windows.Forms.ImeMode.NoControl;
            this.rgv_StatusDoc.Location = new System.Drawing.Point(2, 18);
            // 
            // rgv_StatusDoc
            // 
            this.rgv_StatusDoc.MasterTemplate.AllowAddNewRow = false;
            this.rgv_StatusDoc.MasterTemplate.AutoGenerateColumns = false;
            gridViewCheckBoxColumn3.FieldName = "CHECK";
            gridViewCheckBoxColumn3.HeaderText = "";
            gridViewCheckBoxColumn3.Name = "CHECK";
            gridViewTextBoxColumn35.EnableExpressionEditor = false;
            gridViewTextBoxColumn35.FieldName = "DSDOCNO";
            gridViewTextBoxColumn35.HeaderText = "เลขที่เอกสาร";
            gridViewTextBoxColumn35.Name = "DSDOCNO";
            gridViewTextBoxColumn35.ReadOnly = true;
            gridViewTextBoxColumn35.SortOrder = Telerik.WinControls.UI.RadSortOrder.Ascending;
            gridViewTextBoxColumn36.EnableExpressionEditor = false;
            gridViewTextBoxColumn36.FieldName = "EMPLID";
            gridViewTextBoxColumn36.HeaderText = "รหัสพนักงาน";
            gridViewTextBoxColumn36.Name = "EMPLID";
            gridViewTextBoxColumn36.ReadOnly = true;
            gridViewTextBoxColumn37.EnableExpressionEditor = false;
            gridViewTextBoxColumn37.FieldName = "EMPLNAME";
            gridViewTextBoxColumn37.HeaderText = "ชื่อพนักงาน";
            gridViewTextBoxColumn37.Name = "EMPLNAME";
            gridViewTextBoxColumn37.ReadOnly = true;
            gridViewTextBoxColumn38.EnableExpressionEditor = false;
            gridViewTextBoxColumn38.FieldName = "SECTIONNAME";
            gridViewTextBoxColumn38.HeaderText = "แผนก";
            gridViewTextBoxColumn38.Name = "SECTIONNAME";
            gridViewTextBoxColumn38.ReadOnly = true;
            gridViewTextBoxColumn39.EnableExpressionEditor = false;
            gridViewTextBoxColumn39.FieldName = "DEPTNAME";
            gridViewTextBoxColumn39.HeaderText = "ตำแหน่ง";
            gridViewTextBoxColumn39.Name = "DEPTNAME";
            gridViewTextBoxColumn39.ReadOnly = true;
            gridViewTextBoxColumn40.EnableExpressionEditor = false;
            gridViewTextBoxColumn40.FieldName = "SHIFTDATE";
            gridViewTextBoxColumn40.HeaderText = "วันที่เปลี่ยนกะ";
            gridViewTextBoxColumn40.Name = "SHIFTDATE";
            gridViewTextBoxColumn40.ReadOnly = true;
            gridViewTextBoxColumn41.EnableExpressionEditor = false;
            gridViewTextBoxColumn41.FieldName = "FROMSHIFTID";
            gridViewTextBoxColumn41.HeaderText = "กะเดิม";
            gridViewTextBoxColumn41.Name = "FROMSHIFTID";
            gridViewTextBoxColumn41.ReadOnly = true;
            gridViewTextBoxColumn42.EnableExpressionEditor = false;
            gridViewTextBoxColumn42.FieldName = "FROMSHIFTDESC";
            gridViewTextBoxColumn42.HeaderText = "คำอธิบายกะ";
            gridViewTextBoxColumn42.Name = "FROMSHIFTDESC";
            gridViewTextBoxColumn42.ReadOnly = true;
            gridViewTextBoxColumn43.EnableExpressionEditor = false;
            gridViewTextBoxColumn43.FieldName = "TOSHIFTID";
            gridViewTextBoxColumn43.HeaderText = "กะใหม่";
            gridViewTextBoxColumn43.Name = "TOSHIFTID";
            gridViewTextBoxColumn43.ReadOnly = true;
            gridViewTextBoxColumn44.EnableExpressionEditor = false;
            gridViewTextBoxColumn44.FieldName = "TOSHIFTDESC";
            gridViewTextBoxColumn44.HeaderText = "คำอธิบายกะ";
            gridViewTextBoxColumn44.Name = "TOSHIFTDESC";
            gridViewTextBoxColumn44.ReadOnly = true;
            gridViewTextBoxColumn45.EnableExpressionEditor = false;
            gridViewTextBoxColumn45.FieldName = "REMARK";
            gridViewTextBoxColumn45.HeaderText = "เหตุผลการเปลี่ยนกะ";
            gridViewTextBoxColumn45.Name = "REMARK";
            gridViewTextBoxColumn45.ReadOnly = true;
            gridViewTextBoxColumn46.EnableExpressionEditor = false;
            gridViewTextBoxColumn46.FieldName = "REFOTTIME";
            gridViewTextBoxColumn46.HeaderText = "หมายเหตุโอที";
            gridViewTextBoxColumn46.Name = "REFOTTIME";
            gridViewTextBoxColumn46.ReadOnly = true;
            gridViewTextBoxColumn47.EnableExpressionEditor = false;
            gridViewTextBoxColumn47.FieldName = "HEADAPPROVED1";
            gridViewTextBoxColumn47.HeaderText = "หน./ผช.อนุมัติ";
            gridViewTextBoxColumn47.Name = "HEADAPPROVED1";
            gridViewTextBoxColumn48.EnableExpressionEditor = false;
            gridViewTextBoxColumn48.FieldName = "HEADAPPROVEDBYNAME";
            gridViewTextBoxColumn48.HeaderText = "ผู้อนุมัติ";
            gridViewTextBoxColumn48.Name = "HEADAPPROVEDBYNAME";
            gridViewTextBoxColumn49.EnableExpressionEditor = false;
            gridViewTextBoxColumn49.FieldName = "HRAPPROVED1";
            gridViewTextBoxColumn49.HeaderText = "บุคคลอนุมัติ";
            gridViewTextBoxColumn49.Name = "HRAPPROVED1";
            gridViewTextBoxColumn50.EnableExpressionEditor = false;
            gridViewTextBoxColumn50.FieldName = "HRAPPROVEDBYNAME";
            gridViewTextBoxColumn50.HeaderText = "ผู้อนุมัติ";
            gridViewTextBoxColumn50.Name = "HRAPPROVEDBYNAME";
            gridViewTextBoxColumn51.EnableExpressionEditor = false;
            gridViewTextBoxColumn51.FieldName = "HRAPPORVEREMARK";
            gridViewTextBoxColumn51.HeaderText = "หมายเหตุไม่อนุมัติ";
            gridViewTextBoxColumn51.Name = "HRAPPORVEREMARK";
            this.rgv_StatusDoc.MasterTemplate.Columns.AddRange(new Telerik.WinControls.UI.GridViewDataColumn[] {
            gridViewCheckBoxColumn3,
            gridViewTextBoxColumn35,
            gridViewTextBoxColumn36,
            gridViewTextBoxColumn37,
            gridViewTextBoxColumn38,
            gridViewTextBoxColumn39,
            gridViewTextBoxColumn40,
            gridViewTextBoxColumn41,
            gridViewTextBoxColumn42,
            gridViewTextBoxColumn43,
            gridViewTextBoxColumn44,
            gridViewTextBoxColumn45,
            gridViewTextBoxColumn46,
            gridViewTextBoxColumn47,
            gridViewTextBoxColumn48,
            gridViewTextBoxColumn49,
            gridViewTextBoxColumn50,
            gridViewTextBoxColumn51});
            sortDescriptor3.PropertyName = "DSDOCNO";
            this.rgv_StatusDoc.MasterTemplate.SortDescriptors.AddRange(new Telerik.WinControls.Data.SortDescriptor[] {
            sortDescriptor3});
            this.rgv_StatusDoc.Name = "rgv_StatusDoc";
            this.rgv_StatusDoc.RightToLeft = System.Windows.Forms.RightToLeft.No;
            this.rgv_StatusDoc.Size = new System.Drawing.Size(780, 201);
            this.rgv_StatusDoc.TabIndex = 2;
            this.rgv_StatusDoc.Text = "radGridView1";
            // 
            // txt_Remark
            // 
            this.txt_Remark.AutoSize = false;
            this.txt_Remark.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.txt_Remark.Location = new System.Drawing.Point(37, 46);
            this.txt_Remark.Multiline = true;
            this.txt_Remark.Name = "txt_Remark";
            this.txt_Remark.Size = new System.Drawing.Size(411, 85);
            this.txt_Remark.TabIndex = 12;
            this.txt_Remark.TabStop = false;
            // 
            // btn_Save
            // 
            this.btn_Save.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.btn_Save.Location = new System.Drawing.Point(338, 148);
            this.btn_Save.Name = "btn_Save";
            this.btn_Save.Size = new System.Drawing.Size(110, 24);
            this.btn_Save.TabIndex = 11;
            this.btn_Save.Text = "บันทึก";
            // 
            // radLabel1
            // 
            this.radLabel1.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Underline, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.radLabel1.Location = new System.Drawing.Point(37, 21);
            this.radLabel1.Name = "radLabel1";
            this.radLabel1.Size = new System.Drawing.Size(100, 19);
            this.radLabel1.TabIndex = 10;
            this.radLabel1.Text = "สาเหตุการยกเลิก";
            // 
            // Cancle_EditDetailDS
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.ClientSize = new System.Drawing.Size(784, 561);
            this.Controls.Add(this.radSplitContainer1);
            this.Name = "Cancle_EditDetailDS";
            this.Text = "Cancle_EditDetailDS";
            ((System.ComponentModel.ISupportInitialize)(this.radSplitContainer1)).EndInit();
            this.radSplitContainer1.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.splitPanel1)).EndInit();
            this.splitPanel1.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.radGroupBox1)).EndInit();
            this.radGroupBox1.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.splitPanel2)).EndInit();
            this.splitPanel2.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.radGroupBox2)).EndInit();
            this.radGroupBox2.ResumeLayout(false);
            this.radGroupBox2.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.rgv_StatusDoc.MasterTemplate)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.rgv_StatusDoc)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.txt_Remark)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.btn_Save)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel1)).EndInit();
            this.ResumeLayout(false);

        }
コード例 #47
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();
     Telerik.WinControls.UI.GridViewCommandColumn       gridViewCommandColumn1       = new Telerik.WinControls.UI.GridViewCommandColumn();
     Telerik.WinControls.UI.GridViewMultiComboBoxColumn gridViewMultiComboBoxColumn1 = new Telerik.WinControls.UI.GridViewMultiComboBoxColumn();
     Telerik.WinControls.UI.GridViewDecimalColumn       gridViewDecimalColumn1       = new Telerik.WinControls.UI.GridViewDecimalColumn();
     Telerik.WinControls.UI.GridViewCheckBoxColumn      gridViewCheckBoxColumn1      = new Telerik.WinControls.UI.GridViewCheckBoxColumn();
     Telerik.WinControls.UI.GridViewTextBoxColumn       gridViewTextBoxColumn1       = new Telerik.WinControls.UI.GridViewTextBoxColumn();
     Telerik.WinControls.UI.GridViewTextBoxColumn       gridViewTextBoxColumn2       = new Telerik.WinControls.UI.GridViewTextBoxColumn();
     Telerik.WinControls.UI.GridViewTextBoxColumn       gridViewTextBoxColumn3       = new Telerik.WinControls.UI.GridViewTextBoxColumn();
     Telerik.WinControls.UI.GridViewTextBoxColumn       gridViewTextBoxColumn4       = new Telerik.WinControls.UI.GridViewTextBoxColumn();
     Telerik.WinControls.UI.GridViewDateTimeColumn      gridViewDateTimeColumn1      = new Telerik.WinControls.UI.GridViewDateTimeColumn();
     Telerik.WinControls.UI.GridViewTextBoxColumn       gridViewTextBoxColumn5       = new Telerik.WinControls.UI.GridViewTextBoxColumn();
     Telerik.WinControls.UI.TableViewDefinition         tableViewDefinition1         = new Telerik.WinControls.UI.TableViewDefinition();
     Telerik.WinControls.UI.RadListDataItem             radListDataItem1             = new Telerik.WinControls.UI.RadListDataItem();
     Telerik.WinControls.UI.RadListDataItem             radListDataItem2             = new Telerik.WinControls.UI.RadListDataItem();
     Telerik.WinControls.UI.RadListDataItem             radListDataItem3             = new Telerik.WinControls.UI.RadListDataItem();
     Telerik.WinControls.UI.RadListDataItem             radListDataItem4             = new Telerik.WinControls.UI.RadListDataItem();
     Telerik.WinControls.UI.RadListDataItem             radListDataItem5             = new Telerik.WinControls.UI.RadListDataItem();
     Telerik.WinControls.UI.RadListDataItem             radListDataItem6             = new Telerik.WinControls.UI.RadListDataItem();
     System.ComponentModel.ComponentResourceManager     resources = new System.ComponentModel.ComponentResourceManager(typeof(tb_Master_ApproveSetup));
     this.radStatusStrip1          = new Telerik.WinControls.UI.RadStatusStrip();
     this.radLabelElement1         = new Telerik.WinControls.UI.RadLabelElement();
     this.panel1                   = new System.Windows.Forms.Panel();
     this.panel3                   = new System.Windows.Forms.Panel();
     this.radGridView1             = new Telerik.WinControls.UI.RadGridView();
     this.panel2                   = new System.Windows.Forms.Panel();
     this.ddlType                  = new Telerik.WinControls.UI.RadDropDownList();
     this.radLabel29               = new Telerik.WinControls.UI.RadLabel();
     this.office2010BlueTheme1     = new Telerik.WinControls.Themes.Office2010BlueTheme();
     this.radRibbonBarButtonGroup2 = new Telerik.WinControls.UI.RadRibbonBarButtonGroup();
     this.btnFilter                = new Telerik.WinControls.UI.RadButtonElement();
     this.Unfilter                 = new Telerik.WinControls.UI.RadButtonElement();
     this.radRibbonBarButtonGroup5 = new Telerik.WinControls.UI.RadRibbonBarButtonGroup();
     this.radContextMenu1          = new Telerik.WinControls.UI.RadContextMenu(this.components);
     this.RMenu3                   = new Telerik.WinControls.UI.RadMenuItem();
     this.radMenuSeparatorItem2    = new Telerik.WinControls.UI.RadMenuSeparatorItem();
     this.RMenu4                   = new Telerik.WinControls.UI.RadMenuItem();
     this.RMenu5                   = new Telerik.WinControls.UI.RadMenuItem();
     this.RMenu6                   = new Telerik.WinControls.UI.RadMenuItem();
     this.radContextMenuManager1   = new Telerik.WinControls.UI.RadContextMenuManager();
     this.radRibbonBar1            = new Telerik.WinControls.UI.RadRibbonBar();
     this.ribbonTab1               = new Telerik.WinControls.UI.RibbonTab();
     this.radRibbonBarGroup1       = new Telerik.WinControls.UI.RadRibbonBarGroup();
     this.btnNew                   = new Telerik.WinControls.UI.RadButtonElement();
     this.btnSave                  = new Telerik.WinControls.UI.RadButtonElement();
     this.radRibbonBarGroup2       = new Telerik.WinControls.UI.RadRibbonBarGroup();
     this.btnView                  = new Telerik.WinControls.UI.RadButtonElement();
     this.btnEdit                  = new Telerik.WinControls.UI.RadButtonElement();
     this.btnDelete                = new Telerik.WinControls.UI.RadButtonElement();
     this.radRibbonBarGroup4       = new Telerik.WinControls.UI.RadRibbonBarGroup();
     this.btnImport                = new Telerik.WinControls.UI.RadButtonElement();
     this.btnExport                = new Telerik.WinControls.UI.RadButtonElement();
     this.radRibbonBarButtonGroup1 = new Telerik.WinControls.UI.RadRibbonBarButtonGroup();
     this.radRibbonBarGroup3       = new Telerik.WinControls.UI.RadRibbonBarGroup();
     this.btnRefresh               = new Telerik.WinControls.UI.RadButtonElement();
     this.radRibbonBarGroup5       = new Telerik.WinControls.UI.RadRibbonBarGroup();
     this.radRibbonBarButtonGroup3 = new Telerik.WinControls.UI.RadRibbonBarButtonGroup();
     this.btnFilter1               = new Telerik.WinControls.UI.RadButtonElement();
     this.btnUnfilter1             = new Telerik.WinControls.UI.RadButtonElement();
     this.ribbonBarGroupSeparator1 = new Telerik.WinControls.UI.RibbonBarGroupSeparator();
     this.radMenuItem1             = new Telerik.WinControls.UI.RadMenuItem();
     this.radMenuSeparatorItem1    = new Telerik.WinControls.UI.RadMenuSeparatorItem();
     this.radMenuItem2             = new Telerik.WinControls.UI.RadMenuItem();
     ((System.ComponentModel.ISupportInitialize)(this.radStatusStrip1)).BeginInit();
     this.panel1.SuspendLayout();
     this.panel3.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.radGridView1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radGridView1.MasterTemplate)).BeginInit();
     this.panel2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.ddlType)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel29)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radRibbonBar1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
     this.SuspendLayout();
     //
     // radStatusStrip1
     //
     this.radStatusStrip1.Items.AddRange(new Telerik.WinControls.RadItem[] {
         this.radLabelElement1
     });
     this.radStatusStrip1.Location   = new System.Drawing.Point(0, 493);
     this.radStatusStrip1.Name       = "radStatusStrip1";
     this.radStatusStrip1.Size       = new System.Drawing.Size(730, 26);
     this.radStatusStrip1.SizingGrip = false;
     this.radStatusStrip1.TabIndex   = 1;
     //
     // radLabelElement1
     //
     this.radLabelElement1.Name = "radLabelElement1";
     this.radStatusStrip1.SetSpring(this.radLabelElement1, false);
     this.radLabelElement1.Text       = "Approve set up";
     this.radLabelElement1.TextWrap   = true;
     this.radLabelElement1.Visibility = Telerik.WinControls.ElementVisibility.Collapsed;
     //
     // panel1
     //
     this.panel1.BackColor = System.Drawing.Color.White;
     this.panel1.Controls.Add(this.panel3);
     this.panel1.Controls.Add(this.panel2);
     this.panel1.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.panel1.Location = new System.Drawing.Point(0, 160);
     this.panel1.Name     = "panel1";
     this.panel1.Size     = new System.Drawing.Size(730, 333);
     this.panel1.TabIndex = 2;
     //
     // panel3
     //
     this.panel3.Controls.Add(this.radGridView1);
     this.panel3.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.panel3.Location = new System.Drawing.Point(0, 50);
     this.panel3.Name     = "panel3";
     this.panel3.Size     = new System.Drawing.Size(730, 283);
     this.panel3.TabIndex = 2;
     //
     // radGridView1
     //
     this.radGridView1.BackColor = System.Drawing.Color.White;
     this.radGridView1.ColumnChooserSortOrder = Telerik.WinControls.UI.RadSortOrder.Ascending;
     this.radGridView1.Cursor       = System.Windows.Forms.Cursors.Default;
     this.radGridView1.Dock         = System.Windows.Forms.DockStyle.Fill;
     this.radGridView1.EnterKeyMode = Telerik.WinControls.UI.RadGridViewEnterKeyMode.EnterMovesToNextCell;
     this.radGridView1.Font         = new System.Drawing.Font("Tahoma", 8.25F);
     this.radGridView1.ForeColor    = System.Drawing.Color.Black;
     this.radGridView1.ImeMode      = System.Windows.Forms.ImeMode.NoControl;
     this.radGridView1.Location     = new System.Drawing.Point(0, 0);
     //
     //
     //
     this.radGridView1.MasterTemplate.AddNewRowPosition            = Telerik.WinControls.UI.SystemRowPosition.Bottom;
     this.radGridView1.MasterTemplate.AllowAddNewRow               = false;
     this.radGridView1.MasterTemplate.AllowCellContextMenu         = false;
     this.radGridView1.MasterTemplate.AllowColumnChooser           = false;
     this.radGridView1.MasterTemplate.AllowColumnHeaderContextMenu = false;
     this.radGridView1.MasterTemplate.AllowDragToGroup             = false;
     this.radGridView1.MasterTemplate.AllowRowHeaderContextMenu    = false;
     this.radGridView1.MasterTemplate.AllowRowResize               = false;
     this.radGridView1.MasterTemplate.AutoGenerateColumns          = false;
     this.radGridView1.MasterTemplate.AutoSizeColumnsMode          = Telerik.WinControls.UI.GridViewAutoSizeColumnsMode.Fill;
     gridViewCommandColumn1.DefaultText            = "Del";
     gridViewCommandColumn1.EnableExpressionEditor = false;
     gridViewCommandColumn1.FieldName      = "Del";
     gridViewCommandColumn1.HeaderText     = "Del";
     gridViewCommandColumn1.Name           = "dgvDel";
     gridViewCommandColumn1.TextAlignment  = System.Drawing.ContentAlignment.MiddleCenter;
     gridViewCommandColumn1.UseDefaultText = true;
     gridViewCommandColumn1.Width          = 61;
     gridViewMultiComboBoxColumn1.EnableExpressionEditor = false;
     gridViewMultiComboBoxColumn1.FieldName        = "UserID";
     gridViewMultiComboBoxColumn1.HeaderText       = "ชื่อผู้ใช้";
     gridViewMultiComboBoxColumn1.Name             = "UserID";
     gridViewMultiComboBoxColumn1.Width            = 181;
     gridViewDecimalColumn1.DecimalPlaces          = 0;
     gridViewDecimalColumn1.EnableExpressionEditor = false;
     gridViewDecimalColumn1.FieldName  = "Seq";
     gridViewDecimalColumn1.HeaderText = "ลำดับ";
     gridViewDecimalColumn1.Minimum    = new decimal(new int[] {
         1,
         0,
         0,
         0
     });
     gridViewDecimalColumn1.Name  = "Seq";
     gridViewDecimalColumn1.Width = 80;
     gridViewCheckBoxColumn1.EnableExpressionEditor = false;
     gridViewCheckBoxColumn1.FieldName             = "Active";
     gridViewCheckBoxColumn1.HeaderText            = "สถานะการใช้";
     gridViewCheckBoxColumn1.MinWidth              = 20;
     gridViewCheckBoxColumn1.Name                  = "Active";
     gridViewCheckBoxColumn1.Width                 = 98;
     gridViewTextBoxColumn1.EnableExpressionEditor = false;
     gridViewTextBoxColumn1.HeaderText             = "column1";
     gridViewTextBoxColumn1.IsVisible              = false;
     gridViewTextBoxColumn1.Name     = "dgvC";
     gridViewTextBoxColumn1.ReadOnly = true;
     gridViewTextBoxColumn1.Width    = 41;
     gridViewTextBoxColumn2.EnableExpressionEditor = false;
     gridViewTextBoxColumn2.FieldName               = "None";
     gridViewTextBoxColumn2.IsPinned                = true;
     gridViewTextBoxColumn2.Name                    = "None";
     gridViewTextBoxColumn2.PinPosition             = Telerik.WinControls.UI.PinnedColumnPosition.Right;
     gridViewTextBoxColumn2.ReadOnly                = true;
     gridViewTextBoxColumn2.Width                   = 73;
     gridViewTextBoxColumn3.EnableExpressionEditor  = false;
     gridViewTextBoxColumn3.FieldName               = "id";
     gridViewTextBoxColumn3.HeaderText              = "id";
     gridViewTextBoxColumn3.IsVisible               = false;
     gridViewTextBoxColumn3.Name                    = "id";
     gridViewTextBoxColumn3.ReadOnly                = true;
     gridViewTextBoxColumn3.Width                   = 46;
     gridViewTextBoxColumn4.EnableExpressionEditor  = false;
     gridViewTextBoxColumn4.FieldName               = "CreateBy";
     gridViewTextBoxColumn4.HeaderText              = "สร้างโดย";
     gridViewTextBoxColumn4.Name                    = "CreateBy";
     gridViewTextBoxColumn4.ReadOnly                = true;
     gridViewTextBoxColumn4.Width                   = 97;
     gridViewDateTimeColumn1.EnableExpressionEditor = false;
     gridViewDateTimeColumn1.FieldName              = "CreateDate";
     gridViewDateTimeColumn1.FormatString           = "{0:dd/MMM/yyyy}";
     gridViewDateTimeColumn1.HeaderText             = "วันที่สร้าง";
     gridViewDateTimeColumn1.Name                   = "CreateDate";
     gridViewDateTimeColumn1.ReadOnly               = true;
     gridViewDateTimeColumn1.Width                  = 124;
     gridViewTextBoxColumn5.EnableExpressionEditor  = false;
     gridViewTextBoxColumn5.FieldName               = "UserID";
     gridViewTextBoxColumn5.HeaderText              = "TempUserID";
     gridViewTextBoxColumn5.IsVisible               = false;
     gridViewTextBoxColumn5.Name                    = "TempUserID";
     gridViewTextBoxColumn5.ReadOnly                = true;
     gridViewTextBoxColumn5.Width                   = 46;
     this.radGridView1.MasterTemplate.Columns.AddRange(new Telerik.WinControls.UI.GridViewDataColumn[] {
         gridViewCommandColumn1,
         gridViewMultiComboBoxColumn1,
         gridViewDecimalColumn1,
         gridViewCheckBoxColumn1,
         gridViewTextBoxColumn1,
         gridViewTextBoxColumn2,
         gridViewTextBoxColumn3,
         gridViewTextBoxColumn4,
         gridViewDateTimeColumn1,
         gridViewTextBoxColumn5
     });
     this.radGridView1.MasterTemplate.SelectionMode  = Telerik.WinControls.UI.GridViewSelectionMode.CellSelect;
     this.radGridView1.MasterTemplate.ViewDefinition = tableViewDefinition1;
     this.radGridView1.Name = "radGridView1";
     this.radContextMenuManager1.SetRadContextMenu(this.radGridView1, this.radContextMenu1);
     this.radGridView1.RightToLeft      = System.Windows.Forms.RightToLeft.No;
     this.radGridView1.ShowGroupPanel   = false;
     this.radGridView1.Size             = new System.Drawing.Size(730, 283);
     this.radGridView1.TabIndex         = 0;
     this.radGridView1.ThemeName        = "Office2010Blue";
     this.radGridView1.CellBeginEdit   += new Telerik.WinControls.UI.GridViewCellCancelEventHandler(this.radGridView1_CellBeginEdit);
     this.radGridView1.CellEndEdit     += new Telerik.WinControls.UI.GridViewCellEventHandler(this.radGridView1_CellEndEdit);
     this.radGridView1.CellClick       += new Telerik.WinControls.UI.GridViewCellEventHandler(this.radGridView1_CellClick);
     this.radGridView1.CellDoubleClick += new Telerik.WinControls.UI.GridViewCellEventHandler(this.MasterTemplate_CellDoubleClick);
     this.radGridView1.PreviewKeyDown  += new System.Windows.Forms.PreviewKeyDownEventHandler(this.radGridView1_PreviewKeyDown);
     //
     // panel2
     //
     this.panel2.Controls.Add(this.ddlType);
     this.panel2.Controls.Add(this.radLabel29);
     this.panel2.Dock     = System.Windows.Forms.DockStyle.Top;
     this.panel2.Location = new System.Drawing.Point(0, 0);
     this.panel2.Name     = "panel2";
     this.panel2.Size     = new System.Drawing.Size(730, 50);
     this.panel2.TabIndex = 1;
     //
     // ddlType
     //
     radListDataItem1.Text = "Sale Order";
     radListDataItem2.Text = "Job Req";
     radListDataItem3.Text = "Job Cancel";
     radListDataItem4.Text = "Purchase Order";
     radListDataItem5.Text = "Taking Stock";
     radListDataItem6.Text = "Price List";
     this.ddlType.Items.Add(radListDataItem1);
     this.ddlType.Items.Add(radListDataItem2);
     this.ddlType.Items.Add(radListDataItem3);
     this.ddlType.Items.Add(radListDataItem4);
     this.ddlType.Items.Add(radListDataItem5);
     this.ddlType.Items.Add(radListDataItem6);
     this.ddlType.Location              = new System.Drawing.Point(125, 15);
     this.ddlType.Name                  = "ddlType";
     this.ddlType.Size                  = new System.Drawing.Size(125, 20);
     this.ddlType.TabIndex              = 26;
     this.ddlType.SelectedIndexChanged += new Telerik.WinControls.UI.Data.PositionChangedEventHandler(this.ddlType_SelectedIndexChanged);
     //
     // radLabel29
     //
     this.radLabel29.Font     = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.radLabel29.Location = new System.Drawing.Point(36, 16);
     this.radLabel29.Name     = "radLabel29";
     this.radLabel29.Size     = new System.Drawing.Size(83, 17);
     this.radLabel29.TabIndex = 15;
     this.radLabel29.Text     = "Approve Type :";
     //
     // radRibbonBarButtonGroup2
     //
     this.radRibbonBarButtonGroup2.Items.AddRange(new Telerik.WinControls.RadItem[] {
         this.btnFilter,
         this.Unfilter
     });
     this.radRibbonBarButtonGroup2.Name          = "radRibbonBarButtonGroup2";
     this.radRibbonBarButtonGroup2.Orientation   = System.Windows.Forms.Orientation.Vertical;
     this.radRibbonBarButtonGroup2.Padding       = new System.Windows.Forms.Padding(1);
     this.radRibbonBarButtonGroup2.ShowBackColor = false;
     this.radRibbonBarButtonGroup2.Text          = "radRibbonBarButtonGroup2";
     //
     // btnFilter
     //
     this.btnFilter.Image             = ((System.Drawing.Image)(resources.GetObject("btnFilter.Image")));
     this.btnFilter.Name              = "btnFilter";
     this.btnFilter.Text              = "Filter";
     this.btnFilter.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageBeforeText;
     //
     // Unfilter
     //
     this.Unfilter.Image             = ((System.Drawing.Image)(resources.GetObject("Unfilter.Image")));
     this.Unfilter.Name              = "Unfilter";
     this.Unfilter.Text              = "Un Filter";
     this.Unfilter.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageBeforeText;
     //
     // radRibbonBarButtonGroup5
     //
     this.radRibbonBarButtonGroup5.Name          = "radRibbonBarButtonGroup5";
     this.radRibbonBarButtonGroup5.Orientation   = System.Windows.Forms.Orientation.Vertical;
     this.radRibbonBarButtonGroup5.Padding       = new System.Windows.Forms.Padding(1);
     this.radRibbonBarButtonGroup5.ShowBackColor = false;
     this.radRibbonBarButtonGroup5.ShowBorder    = false;
     this.radRibbonBarButtonGroup5.Text          = "radRibbonBarButtonGroup4";
     //
     // radContextMenu1
     //
     this.radContextMenu1.Items.AddRange(new Telerik.WinControls.RadItem[] {
         this.RMenu3,
         this.radMenuSeparatorItem2,
         this.RMenu4,
         this.RMenu5,
         this.RMenu6
     });
     this.radContextMenu1.ThemeName = "Office2010Blue";
     //
     // RMenu3
     //
     this.RMenu3.Font  = new System.Drawing.Font("Tahoma", 8.25F);
     this.RMenu3.Image = ((System.Drawing.Image)(resources.GetObject("RMenu3.Image")));
     this.RMenu3.Name  = "RMenu3";
     this.RMenu3.Text  = "เพิ่มใหม่";
     //
     // radMenuSeparatorItem2
     //
     this.radMenuSeparatorItem2.Name          = "radMenuSeparatorItem2";
     this.radMenuSeparatorItem2.Text          = "radMenuSeparatorItem2";
     this.radMenuSeparatorItem2.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // RMenu4
     //
     this.RMenu4.Font  = new System.Drawing.Font("Tahoma", 8.25F);
     this.RMenu4.Image = ((System.Drawing.Image)(resources.GetObject("RMenu4.Image")));
     this.RMenu4.Name  = "RMenu4";
     this.RMenu4.Text  = "แสดงรายการ";
     //
     // RMenu5
     //
     this.RMenu5.Font  = new System.Drawing.Font("Tahoma", 8.25F);
     this.RMenu5.Image = ((System.Drawing.Image)(resources.GetObject("RMenu5.Image")));
     this.RMenu5.Name  = "RMenu5";
     this.RMenu5.Text  = "แก้ไข";
     //
     // RMenu6
     //
     this.RMenu6.Font  = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(222)));
     this.RMenu6.Image = ((System.Drawing.Image)(resources.GetObject("RMenu6.Image")));
     this.RMenu6.Name  = "RMenu6";
     this.RMenu6.Text  = "ลบรายการ";
     //
     // radRibbonBar1
     //
     this.radRibbonBar1.CommandTabs.AddRange(new Telerik.WinControls.RadItem[] {
         this.ribbonTab1
     });
     //
     //
     //
     this.radRibbonBar1.ExitButton.Text = "Exit";
     this.radRibbonBar1.ExitButton.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageBeforeText;
     this.radRibbonBar1.Font     = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.radRibbonBar1.Location = new System.Drawing.Point(0, 0);
     this.radRibbonBar1.Name     = "radRibbonBar1";
     //
     //
     //
     this.radRibbonBar1.OptionsButton.Text = "Options";
     this.radRibbonBar1.OptionsButton.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageBeforeText;
     this.radRibbonBar1.OptionsButton.Visibility        = Telerik.WinControls.ElementVisibility.Hidden;
     //
     //
     //
     this.radRibbonBar1.RootElement.AutoSizeMode = Telerik.WinControls.RadAutoSizeMode.WrapAroundChildren;
     this.radRibbonBar1.Size             = new System.Drawing.Size(730, 160);
     this.radRibbonBar1.StartButtonImage = ((System.Drawing.Image)(resources.GetObject("radRibbonBar1.StartButtonImage")));
     this.radRibbonBar1.StartMenuItems.AddRange(new Telerik.WinControls.RadItem[] {
         this.radMenuItem1,
         this.radMenuSeparatorItem1,
         this.radMenuItem2
     });
     this.radRibbonBar1.TabIndex  = 0;
     this.radRibbonBar1.Text      = "Approve set up";
     this.radRibbonBar1.ThemeName = "Office2010Blue";
     this.radRibbonBar1.Click    += new System.EventHandler(this.radRibbonBar1_Click);
     //
     // ribbonTab1
     //
     this.ribbonTab1.IsSelected = true;
     this.ribbonTab1.Items.AddRange(new Telerik.WinControls.RadItem[] {
         this.radRibbonBarGroup1,
         this.radRibbonBarGroup2,
         this.radRibbonBarGroup4,
         this.radRibbonBarGroup3,
         this.radRibbonBarGroup5
     });
     this.ribbonTab1.Name        = "ribbonTab1";
     this.ribbonTab1.Text        = "Action";
     this.ribbonTab1.UseMnemonic = false;
     //
     // radRibbonBarGroup1
     //
     this.radRibbonBarGroup1.Items.AddRange(new Telerik.WinControls.RadItem[] {
         this.btnNew,
         this.btnSave
     });
     this.radRibbonBarGroup1.Name = "radRibbonBarGroup1";
     this.radRibbonBarGroup1.Text = "New List";
     //
     // btnNew
     //
     this.btnNew.Image             = ((System.Drawing.Image)(resources.GetObject("btnNew.Image")));
     this.btnNew.ImageAlignment    = System.Drawing.ContentAlignment.MiddleCenter;
     this.btnNew.Name              = "btnNew";
     this.btnNew.Text              = "เพิ่มใหม่";
     this.btnNew.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
     this.btnNew.Click            += new System.EventHandler(this.btnNew_Click);
     //
     // btnSave
     //
     this.btnSave.Image             = ((System.Drawing.Image)(resources.GetObject("btnSave.Image")));
     this.btnSave.ImageAlignment    = System.Drawing.ContentAlignment.MiddleCenter;
     this.btnSave.Name              = "btnSave";
     this.btnSave.Text              = "บันทึกรายการ";
     this.btnSave.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
     this.btnSave.Click            += new System.EventHandler(this.btnSave_Click);
     //
     // radRibbonBarGroup2
     //
     this.radRibbonBarGroup2.Items.AddRange(new Telerik.WinControls.RadItem[] {
         this.btnView,
         this.btnEdit,
         this.btnDelete
     });
     this.radRibbonBarGroup2.Name = "radRibbonBarGroup2";
     this.radRibbonBarGroup2.Text = "Manage";
     //
     // btnView
     //
     this.btnView.Enabled           = false;
     this.btnView.Image             = ((System.Drawing.Image)(resources.GetObject("btnView.Image")));
     this.btnView.ImageAlignment    = System.Drawing.ContentAlignment.MiddleCenter;
     this.btnView.Name              = "btnView";
     this.btnView.Text              = "แสดงรายการ";
     this.btnView.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
     this.btnView.Click            += new System.EventHandler(this.btnView_Click);
     //
     // btnEdit
     //
     this.btnEdit.Image             = ((System.Drawing.Image)(resources.GetObject("btnEdit.Image")));
     this.btnEdit.ImageAlignment    = System.Drawing.ContentAlignment.MiddleCenter;
     this.btnEdit.Name              = "btnEdit";
     this.btnEdit.Text              = "แก้ไขรายการ";
     this.btnEdit.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
     this.btnEdit.Click            += new System.EventHandler(this.btnEdit_Click);
     //
     // btnDelete
     //
     this.btnDelete.Image             = ((System.Drawing.Image)(resources.GetObject("btnDelete.Image")));
     this.btnDelete.ImageAlignment    = System.Drawing.ContentAlignment.MiddleCenter;
     this.btnDelete.Name              = "btnDelete";
     this.btnDelete.Text              = "ลบรายการ";
     this.btnDelete.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
     this.btnDelete.Click            += new System.EventHandler(this.btnDelete_Click);
     //
     // radRibbonBarGroup4
     //
     this.radRibbonBarGroup4.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(86)))), ((int)(((byte)(86)))), ((int)(((byte)(86)))));
     this.radRibbonBarGroup4.Items.AddRange(new Telerik.WinControls.RadItem[] {
         this.btnImport,
         this.btnExport,
         this.radRibbonBarButtonGroup1
     });
     this.radRibbonBarGroup4.Name       = "radRibbonBarGroup4";
     this.radRibbonBarGroup4.Text       = "Export";
     this.radRibbonBarGroup4.Visibility = Telerik.WinControls.ElementVisibility.Collapsed;
     //
     // btnImport
     //
     this.btnImport.Image             = ((System.Drawing.Image)(resources.GetObject("btnImport.Image")));
     this.btnImport.ImageAlignment    = System.Drawing.ContentAlignment.MiddleCenter;
     this.btnImport.Name              = "btnImport";
     this.btnImport.SmallImage        = null;
     this.btnImport.Text              = "นำข้อมูลเข้า";
     this.btnImport.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
     this.btnImport.Visibility        = Telerik.WinControls.ElementVisibility.Collapsed;
     this.btnImport.Click            += new System.EventHandler(this.btnImport_Click);
     //
     // btnExport
     //
     this.btnExport.Image             = ((System.Drawing.Image)(resources.GetObject("btnExport.Image")));
     this.btnExport.ImageAlignment    = System.Drawing.ContentAlignment.MiddleCenter;
     this.btnExport.Name              = "btnExport";
     this.btnExport.Text              = "ส่งข้อมูลออก";
     this.btnExport.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
     this.btnExport.Click            += new System.EventHandler(this.btnExport_Click);
     //
     // radRibbonBarButtonGroup1
     //
     this.radRibbonBarButtonGroup1.Name          = "radRibbonBarButtonGroup1";
     this.radRibbonBarButtonGroup1.Padding       = new System.Windows.Forms.Padding(1);
     this.radRibbonBarButtonGroup1.ShowBackColor = false;
     this.radRibbonBarButtonGroup1.ShowBorder    = false;
     this.radRibbonBarButtonGroup1.Text          = "radRibbonBarButtonGroup1";
     //
     // radRibbonBarGroup3
     //
     this.radRibbonBarGroup3.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(135)))), ((int)(((byte)(135)))), ((int)(((byte)(135)))));
     this.radRibbonBarGroup3.Items.AddRange(new Telerik.WinControls.RadItem[] {
         this.btnRefresh
     });
     this.radRibbonBarGroup3.Name = "radRibbonBarGroup3";
     this.radRibbonBarGroup3.Text = "Page";
     //
     // btnRefresh
     //
     this.btnRefresh.ForeColor         = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(6)))), ((int)(((byte)(197)))));
     this.btnRefresh.Image             = ((System.Drawing.Image)(resources.GetObject("btnRefresh.Image")));
     this.btnRefresh.ImageAlignment    = System.Drawing.ContentAlignment.MiddleCenter;
     this.btnRefresh.Name              = "btnRefresh";
     this.btnRefresh.Text              = "รีเฟรช";
     this.btnRefresh.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
     this.btnRefresh.Click            += new System.EventHandler(this.btnCancel_Click);
     //
     // radRibbonBarGroup5
     //
     this.radRibbonBarGroup5.AutoSizeMode  = Telerik.WinControls.RadAutoSizeMode.WrapAroundChildren;
     this.radRibbonBarGroup5.FitToSizeMode = Telerik.WinControls.RadFitToSizeMode.FitToParentContent;
     this.radRibbonBarGroup5.Items.AddRange(new Telerik.WinControls.RadItem[] {
         this.radRibbonBarButtonGroup3
     });
     this.radRibbonBarGroup5.Name = "radRibbonBarGroup5";
     this.radRibbonBarGroup5.Text = "Filter";
     //
     // radRibbonBarButtonGroup3
     //
     this.radRibbonBarButtonGroup3.Items.AddRange(new Telerik.WinControls.RadItem[] {
         this.btnFilter1,
         this.btnUnfilter1,
         this.ribbonBarGroupSeparator1
     });
     this.radRibbonBarButtonGroup3.Name          = "radRibbonBarButtonGroup3";
     this.radRibbonBarButtonGroup3.Orientation   = System.Windows.Forms.Orientation.Vertical;
     this.radRibbonBarButtonGroup3.Padding       = new System.Windows.Forms.Padding(1);
     this.radRibbonBarButtonGroup3.ShowBackColor = false;
     this.radRibbonBarButtonGroup3.ShowBorder    = false;
     this.radRibbonBarButtonGroup3.Text          = "radRibbonBarButtonGroup3";
     //
     // btnFilter1
     //
     this.btnFilter1.Image             = ((System.Drawing.Image)(resources.GetObject("btnFilter1.Image")));
     this.btnFilter1.Name              = "btnFilter1";
     this.btnFilter1.ShowBorder        = false;
     this.btnFilter1.Text              = "กรอง";
     this.btnFilter1.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageBeforeText;
     this.btnFilter1.Click            += new System.EventHandler(this.btnFilter1_Click);
     //
     // btnUnfilter1
     //
     this.btnUnfilter1.Image             = ((System.Drawing.Image)(resources.GetObject("btnUnfilter1.Image")));
     this.btnUnfilter1.Name              = "btnUnfilter1";
     this.btnUnfilter1.ShowBorder        = false;
     this.btnUnfilter1.Text              = "ยกเลิก";
     this.btnUnfilter1.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageBeforeText;
     this.btnUnfilter1.Click            += new System.EventHandler(this.btnUnfilter1_Click);
     //
     // ribbonBarGroupSeparator1
     //
     this.ribbonBarGroupSeparator1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
     this.ribbonBarGroupSeparator1.Name      = "ribbonBarGroupSeparator1";
     this.ribbonBarGroupSeparator1.Text      = "ribbonBarGroupSeparator1";
     //
     // radMenuItem1
     //
     this.radMenuItem1.Image  = ((System.Drawing.Image)(resources.GetObject("radMenuItem1.Image")));
     this.radMenuItem1.Name   = "radMenuItem1";
     this.radMenuItem1.Text   = "Exit";
     this.radMenuItem1.Click += new System.EventHandler(this.radMenuItem1_Click);
     //
     // radMenuSeparatorItem1
     //
     this.radMenuSeparatorItem1.Name          = "radMenuSeparatorItem1";
     this.radMenuSeparatorItem1.Text          = "radMenuSeparatorItem1";
     this.radMenuSeparatorItem1.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // radMenuItem2
     //
     this.radMenuItem2.Image  = ((System.Drawing.Image)(resources.GetObject("radMenuItem2.Image")));
     this.radMenuItem2.Name   = "radMenuItem2";
     this.radMenuItem2.Text   = "History View";
     this.radMenuItem2.Click += new System.EventHandler(this.radMenuItem2_Click);
     //
     // tb_Master_ApproveSetup
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize          = new System.Drawing.Size(730, 519);
     this.Controls.Add(this.panel1);
     this.Controls.Add(this.radStatusStrip1);
     this.Controls.Add(this.radRibbonBar1);
     this.Icon          = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.KeyPreview    = true;
     this.MainMenuStrip = null;
     this.Name          = "tb_Master_ApproveSetup";
     //
     //
     //
     this.RootElement.ApplyShapeToControl = true;
     this.StartPosition   = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text            = "Approve set up";
     this.Load           += new System.EventHandler(this.Unit_Load);
     this.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.Unit_PreviewKeyDown);
     ((System.ComponentModel.ISupportInitialize)(this.radStatusStrip1)).EndInit();
     this.panel1.ResumeLayout(false);
     this.panel3.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.radGridView1.MasterTemplate)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radGridView1)).EndInit();
     this.panel2.ResumeLayout(false);
     this.panel2.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.ddlType)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel29)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radRibbonBar1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this)).EndInit();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
コード例 #48
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();
            Telerik.WinControls.UI.GridViewDecimalColumn gridViewDecimalColumn1 = new Telerik.WinControls.UI.GridViewDecimalColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn1 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewDecimalColumn gridViewDecimalColumn2 = new Telerik.WinControls.UI.GridViewDecimalColumn();
            Telerik.WinControls.UI.GridViewDecimalColumn gridViewDecimalColumn3 = new Telerik.WinControls.UI.GridViewDecimalColumn();
            Telerik.WinControls.UI.GridViewCheckBoxColumn gridViewCheckBoxColumn1 = new Telerik.WinControls.UI.GridViewCheckBoxColumn();
            Telerik.WinControls.UI.GridViewDecimalColumn gridViewDecimalColumn4 = new Telerik.WinControls.UI.GridViewDecimalColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn2 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn3 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewSummaryItem gridViewSummaryItem1 = new Telerik.WinControls.UI.GridViewSummaryItem();
            Telerik.WinControls.UI.TableViewDefinition tableViewDefinition2 = new Telerik.WinControls.UI.TableViewDefinition();
            Telerik.WinControls.UI.TableViewDefinition tableViewDefinition1 = new Telerik.WinControls.UI.TableViewDefinition();
            this.comboBox1 = new System.Windows.Forms.ComboBox();
            this.fb = new System.Windows.Forms.BindingSource(this.components);
            this.payDate = new Telerik.WinControls.UI.RadMaskedEditBox();
            this.payer = new Telerik.WinControls.UI.RadTextBox();
            this.radLabel3 = new Telerik.WinControls.UI.RadLabel();
            this.radLabel2 = new Telerik.WinControls.UI.RadLabel();
            this.radLabel4 = new Telerik.WinControls.UI.RadLabel();
            this.radLabel5 = new Telerik.WinControls.UI.RadLabel();
            this.store = new Telerik.WinControls.UI.RadTextBox();
            this.radGridView1 = new Telerik.WinControls.UI.RadGridView();
            this.flb = new System.Windows.Forms.BindingSource(this.components);
            this.gridViewTemplate1 = new Telerik.WinControls.UI.GridViewTemplate();
            this.radLabel6 = new Telerik.WinControls.UI.RadLabel();
            this.explain = new Telerik.WinControls.UI.RadTextBox();
            this.create = new Telerik.WinControls.UI.RadButton();
            this.radLabel7 = new Telerik.WinControls.UI.RadLabel();
            this.total = new Telerik.WinControls.UI.RadMaskedEditBox();
            this.radCheckBox1 = new Telerik.WinControls.UI.RadCheckBox();
            this.radLabel8 = new Telerik.WinControls.UI.RadLabel();
            this.CalcTotal = new System.Windows.Forms.Button();
            ((System.ComponentModel.ISupportInitialize)(this.fb)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.payDate)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.payer)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel3)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel2)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel4)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel5)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.store)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radGridView1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radGridView1.MasterTemplate)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.flb)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.gridViewTemplate1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel6)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.explain)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.create)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel7)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.total)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radCheckBox1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel8)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
            this.SuspendLayout();
            // 
            // comboBox1
            // 
            this.comboBox1.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.fb, "type", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
            this.comboBox1.Font = new System.Drawing.Font("Tahoma", 10F);
            this.comboBox1.FormattingEnabled = true;
            this.comboBox1.Items.AddRange(new object[] {
            "جاری - صنعتی",
            "جاری - تجهیزات پزشکی",
            "تبلیغات",
            "IT",
            "رفت و آمد",
            "اغذیه",
            "تجهیزات",
            "سایر"});
            this.comboBox1.Location = new System.Drawing.Point(457, 57);
            this.comboBox1.Name = "comboBox1";
            this.comboBox1.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
            this.comboBox1.Size = new System.Drawing.Size(186, 24);
            this.comboBox1.TabIndex = 1;
            // 
            // fb
            // 
            this.fb.DataSource = typeof(tiraxco.Factor);
            // 
            // payDate
            // 
            this.payDate.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.fb, "date", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
            this.payDate.Location = new System.Drawing.Point(166, 90);
            this.payDate.Mask = "####/##/##";
            this.payDate.MaskType = Telerik.WinControls.UI.MaskType.Standard;
            this.payDate.Name = "payDate";
            this.payDate.Size = new System.Drawing.Size(125, 20);
            this.payDate.TabIndex = 4;
            this.payDate.TabStop = false;
            this.payDate.Text = "____/__/__";
            this.payDate.Validating += new System.ComponentModel.CancelEventHandler(this.payDate_Validating);
            // 
            // payer
            // 
            this.payer.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.fb, "payer", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
            this.payer.Font = new System.Drawing.Font("Tahoma", 10F);
            this.payer.Location = new System.Drawing.Point(86, 55);
            this.payer.Name = "payer";
            this.payer.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
            this.payer.Size = new System.Drawing.Size(205, 22);
            this.payer.TabIndex = 2;
            this.payer.Text = "تیراکس";
            // 
            // radLabel3
            // 
            this.radLabel3.Font = new System.Drawing.Font("Tahoma", 10F);
            this.radLabel3.Location = new System.Drawing.Point(301, 90);
            this.radLabel3.Name = "radLabel3";
            this.radLabel3.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
            this.radLabel3.Size = new System.Drawing.Size(84, 20);
            this.radLabel3.TabIndex = 10;
            this.radLabel3.Text = "تاریخ پرداخت:";
            this.radLabel3.TextAlignment = System.Drawing.ContentAlignment.TopRight;
            // 
            // radLabel2
            // 
            this.radLabel2.Font = new System.Drawing.Font("Tahoma", 10F);
            this.radLabel2.Location = new System.Drawing.Point(297, 55);
            this.radLabel2.Name = "radLabel2";
            this.radLabel2.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
            this.radLabel2.Size = new System.Drawing.Size(88, 20);
            this.radLabel2.TabIndex = 11;
            this.radLabel2.Text = "پرداخت کننده:";
            this.radLabel2.TextAlignment = System.Drawing.ContentAlignment.TopRight;
            // 
            // radLabel4
            // 
            this.radLabel4.Font = new System.Drawing.Font("Tahoma", 10F);
            this.radLabel4.Location = new System.Drawing.Point(649, 57);
            this.radLabel4.Name = "radLabel4";
            this.radLabel4.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
            this.radLabel4.Size = new System.Drawing.Size(66, 20);
            this.radLabel4.TabIndex = 12;
            this.radLabel4.Text = "نوع هزینه:";
            this.radLabel4.TextAlignment = System.Drawing.ContentAlignment.TopRight;
            // 
            // radLabel5
            // 
            this.radLabel5.Font = new System.Drawing.Font("Tahoma", 10F);
            this.radLabel5.Location = new System.Drawing.Point(668, 94);
            this.radLabel5.Name = "radLabel5";
            this.radLabel5.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
            this.radLabel5.Size = new System.Drawing.Size(47, 20);
            this.radLabel5.TabIndex = 12;
            this.radLabel5.Text = "گیرنده:";
            this.radLabel5.TextAlignment = System.Drawing.ContentAlignment.TopRight;
            // 
            // store
            // 
            this.store.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.fb, "store", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
            this.store.Font = new System.Drawing.Font("Tahoma", 10F);
            this.store.Location = new System.Drawing.Point(457, 94);
            this.store.Name = "store";
            this.store.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
            this.store.Size = new System.Drawing.Size(186, 22);
            this.store.TabIndex = 3;
            // 
            // radGridView1
            // 
            this.radGridView1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(191)))), ((int)(((byte)(219)))), ((int)(((byte)(255)))));
            this.radGridView1.Cursor = System.Windows.Forms.Cursors.Default;
            this.radGridView1.Font = new System.Drawing.Font("Tahoma", 10F);
            this.radGridView1.ForeColor = System.Drawing.Color.Black;
            this.radGridView1.ImeMode = System.Windows.Forms.ImeMode.NoControl;
            this.radGridView1.Location = new System.Drawing.Point(51, 142);
            // 
            // 
            // 
            gridViewDecimalColumn1.DataType = typeof(int);
            gridViewDecimalColumn1.EnableExpressionEditor = false;
            gridViewDecimalColumn1.FieldName = "ID";
            gridViewDecimalColumn1.HeaderText = "ID";
            gridViewDecimalColumn1.IsAutoGenerated = true;
            gridViewDecimalColumn1.IsVisible = false;
            gridViewDecimalColumn1.Name = "ID";
            gridViewTextBoxColumn1.EnableExpressionEditor = false;
            gridViewTextBoxColumn1.FieldName = "name";
            gridViewTextBoxColumn1.HeaderText = "نام";
            gridViewTextBoxColumn1.IsAutoGenerated = true;
            gridViewTextBoxColumn1.Name = "name";
            gridViewTextBoxColumn1.Width = 305;
            gridViewDecimalColumn2.DataType = typeof(System.Nullable<int>);
            gridViewDecimalColumn2.EnableExpressionEditor = false;
            gridViewDecimalColumn2.FieldName = "cost";
            gridViewDecimalColumn2.HeaderText = "قیمت واحد";
            gridViewDecimalColumn2.IsAutoGenerated = true;
            gridViewDecimalColumn2.Name = "cost";
            gridViewDecimalColumn2.Width = 129;
            gridViewDecimalColumn3.DataType = typeof(System.Nullable<int>);
            gridViewDecimalColumn3.EnableExpressionEditor = false;
            gridViewDecimalColumn3.FieldName = "number";
            gridViewDecimalColumn3.HeaderText = "تعداد";
            gridViewDecimalColumn3.IsAutoGenerated = true;
            gridViewDecimalColumn3.Name = "number";
            gridViewCheckBoxColumn1.DataType = typeof(System.Nullable<bool>);
            gridViewCheckBoxColumn1.EnableExpressionEditor = false;
            gridViewCheckBoxColumn1.FieldName = "costList";
            gridViewCheckBoxColumn1.HeaderText = "ثبت";
            gridViewCheckBoxColumn1.IsAutoGenerated = true;
            gridViewCheckBoxColumn1.MinWidth = 20;
            gridViewCheckBoxColumn1.Name = "costList";
            gridViewDecimalColumn4.DataType = typeof(System.Nullable<int>);
            gridViewDecimalColumn4.EnableExpressionEditor = false;
            gridViewDecimalColumn4.FieldName = "factor";
            gridViewDecimalColumn4.HeaderText = "factor";
            gridViewDecimalColumn4.IsAutoGenerated = true;
            gridViewDecimalColumn4.IsVisible = false;
            gridViewDecimalColumn4.Name = "factor";
            gridViewTextBoxColumn2.DataType = typeof(tiraxco.Factor);
            gridViewTextBoxColumn2.EnableExpressionEditor = false;
            gridViewTextBoxColumn2.FieldName = "Factor1";
            gridViewTextBoxColumn2.HeaderText = "Factor1";
            gridViewTextBoxColumn2.IsAutoGenerated = true;
            gridViewTextBoxColumn2.IsVisible = false;
            gridViewTextBoxColumn2.Name = "Factor1";
            gridViewTextBoxColumn3.EnableExpressionEditor = false;
            gridViewTextBoxColumn3.Expression = "cost*number";
            gridViewTextBoxColumn3.HeaderText = "قیمت کل";
            gridViewTextBoxColumn3.Name = "totalcost";
            gridViewTextBoxColumn3.ReadOnly = true;
            gridViewTextBoxColumn3.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
            gridViewTextBoxColumn3.Width = 139;
            this.radGridView1.MasterTemplate.Columns.AddRange(new Telerik.WinControls.UI.GridViewDataColumn[] {
            gridViewDecimalColumn1,
            gridViewTextBoxColumn1,
            gridViewDecimalColumn2,
            gridViewDecimalColumn3,
            gridViewCheckBoxColumn1,
            gridViewDecimalColumn4,
            gridViewTextBoxColumn2,
            gridViewTextBoxColumn3});
            this.radGridView1.MasterTemplate.DataSource = this.flb;
            this.radGridView1.MasterTemplate.EnableGrouping = false;
            gridViewSummaryItem1.Aggregate = Telerik.WinControls.UI.GridAggregateFunction.Sum;
            gridViewSummaryItem1.AggregateExpression = null;
            gridViewSummaryItem1.FormatString = "{0}";
            gridViewSummaryItem1.Name = "totalcost";
            this.radGridView1.MasterTemplate.SummaryRowsBottom.Add(new Telerik.WinControls.UI.GridViewSummaryRowItem(new Telerik.WinControls.UI.GridViewSummaryItem[] {
                gridViewSummaryItem1}));
            this.radGridView1.MasterTemplate.Templates.AddRange(new Telerik.WinControls.UI.GridViewTemplate[] {
            this.gridViewTemplate1});
            this.radGridView1.MasterTemplate.ViewDefinition = tableViewDefinition2;
            this.radGridView1.Name = "radGridView1";
            this.radGridView1.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
            this.radGridView1.Size = new System.Drawing.Size(691, 292);
            this.radGridView1.TabIndex = 6;
            this.radGridView1.Text = "radGridView1";
            this.radGridView1.GroupSummaryEvaluate += new Telerik.WinControls.UI.GroupSummaryEvaluateEventHandler(this.radGridView1_GroupSummaryEvaluate);
            // 
            // flb
            // 
            this.flb.DataMember = "FactorLists";
            this.flb.DataSource = this.fb;
            // 
            // gridViewTemplate1
            // 
            this.gridViewTemplate1.ViewDefinition = tableViewDefinition1;
            // 
            // radLabel6
            // 
            this.radLabel6.Font = new System.Drawing.Font("Tahoma", 10F);
            this.radLabel6.Location = new System.Drawing.Point(681, 497);
            this.radLabel6.Name = "radLabel6";
            this.radLabel6.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
            this.radLabel6.Size = new System.Drawing.Size(61, 20);
            this.radLabel6.TabIndex = 12;
            this.radLabel6.Text = "توضیحات:";
            this.radLabel6.TextAlignment = System.Drawing.ContentAlignment.TopRight;
            // 
            // explain
            // 
            this.explain.AutoSize = false;
            this.explain.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.fb, "explain", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
            this.explain.Font = new System.Drawing.Font("Tahoma", 10F);
            this.explain.Location = new System.Drawing.Point(260, 500);
            this.explain.Multiline = true;
            this.explain.Name = "explain";
            this.explain.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
            this.explain.Size = new System.Drawing.Size(421, 56);
            this.explain.TabIndex = 8;
            // 
            // create
            // 
            this.create.Font = new System.Drawing.Font("Tahoma", 10F);
            this.create.Location = new System.Drawing.Point(51, 529);
            this.create.Name = "create";
            this.create.Size = new System.Drawing.Size(110, 24);
            this.create.TabIndex = 10;
            this.create.Text = "اعمال تغییرات";
            this.create.Click += new System.EventHandler(this.create_Click);
            // 
            // radLabel7
            // 
            this.radLabel7.Font = new System.Drawing.Font("Tahoma", 10F);
            this.radLabel7.Location = new System.Drawing.Point(260, 450);
            this.radLabel7.Name = "radLabel7";
            this.radLabel7.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
            this.radLabel7.Size = new System.Drawing.Size(58, 20);
            this.radLabel7.TabIndex = 12;
            this.radLabel7.Text = "جمع کل:";
            this.radLabel7.TextAlignment = System.Drawing.ContentAlignment.TopRight;
            // 
            // total
            // 
            this.total.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.fb, "total", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
            this.total.Font = new System.Drawing.Font("Tahoma", 10F);
            this.total.Location = new System.Drawing.Point(86, 449);
            this.total.MaskType = Telerik.WinControls.UI.MaskType.Numeric;
            this.total.Name = "total";
            this.total.Size = new System.Drawing.Size(168, 22);
            this.total.TabIndex = 7;
            this.total.TabStop = false;
            this.total.Text = "0";
            // 
            // radCheckBox1
            // 
            this.radCheckBox1.DataBindings.Add(new System.Windows.Forms.Binding("IsChecked", this.fb, "setllment", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
            this.radCheckBox1.Font = new System.Drawing.Font("Tahoma", 10F);
            this.radCheckBox1.Location = new System.Drawing.Point(606, 125);
            this.radCheckBox1.Name = "radCheckBox1";
            this.radCheckBox1.Size = new System.Drawing.Size(15, 15);
            this.radCheckBox1.TabIndex = 5;
            // 
            // radLabel8
            // 
            this.radLabel8.Font = new System.Drawing.Font("Tahoma", 10F);
            this.radLabel8.Location = new System.Drawing.Point(635, 122);
            this.radLabel8.Name = "radLabel8";
            this.radLabel8.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
            this.radLabel8.Size = new System.Drawing.Size(80, 20);
            this.radLabel8.TabIndex = 12;
            this.radLabel8.Text = "تسویه شده:";
            this.radLabel8.TextAlignment = System.Drawing.ContentAlignment.TopRight;
            // 
            // CalcTotal
            // 
            this.CalcTotal.Location = new System.Drawing.Point(51, 450);
            this.CalcTotal.Name = "CalcTotal";
            this.CalcTotal.Size = new System.Drawing.Size(29, 23);
            this.CalcTotal.TabIndex = 13;
            this.CalcTotal.Text = "...";
            this.CalcTotal.UseVisualStyleBackColor = true;
            this.CalcTotal.Click += new System.EventHandler(this.CalcTotal_Click);
            // 
            // CompanyExpenseView
            // 
            this.AcceptButton = this.create;
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.AutoValidate = System.Windows.Forms.AutoValidate.Disable;
            this.ClientSize = new System.Drawing.Size(785, 593);
            this.Controls.Add(this.CalcTotal);
            this.Controls.Add(this.radCheckBox1);
            this.Controls.Add(this.radLabel8);
            this.Controls.Add(this.total);
            this.Controls.Add(this.create);
            this.Controls.Add(this.explain);
            this.Controls.Add(this.radGridView1);
            this.Controls.Add(this.comboBox1);
            this.Controls.Add(this.payDate);
            this.Controls.Add(this.store);
            this.Controls.Add(this.payer);
            this.Controls.Add(this.radLabel3);
            this.Controls.Add(this.radLabel2);
            this.Controls.Add(this.radLabel7);
            this.Controls.Add(this.radLabel6);
            this.Controls.Add(this.radLabel5);
            this.Controls.Add(this.radLabel4);
            this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
            this.MaximizeBox = false;
            this.MinimizeBox = false;
            this.Name = "CompanyExpenseView";
            // 
            // 
            // 
            this.RootElement.ApplyShapeToControl = true;
            this.Text = "هزینه";
            this.FormClosed += new System.Windows.Forms.FormClosedEventHandler(this.CompanyExpenseView_FormClosed);
            this.Controls.SetChildIndex(this.radLabel4, 0);
            this.Controls.SetChildIndex(this.radLabel5, 0);
            this.Controls.SetChildIndex(this.radLabel6, 0);
            this.Controls.SetChildIndex(this.radLabel7, 0);
            this.Controls.SetChildIndex(this.radLabel2, 0);
            this.Controls.SetChildIndex(this.radLabel3, 0);
            this.Controls.SetChildIndex(this.payer, 0);
            this.Controls.SetChildIndex(this.store, 0);
            this.Controls.SetChildIndex(this.payDate, 0);
            this.Controls.SetChildIndex(this.comboBox1, 0);
            this.Controls.SetChildIndex(this.radGridView1, 0);
            this.Controls.SetChildIndex(this.explain, 0);
            this.Controls.SetChildIndex(this.create, 0);
            this.Controls.SetChildIndex(this.total, 0);
            this.Controls.SetChildIndex(this.radLabel8, 0);
            this.Controls.SetChildIndex(this.radCheckBox1, 0);
            this.Controls.SetChildIndex(this.CalcTotal, 0);
            ((System.ComponentModel.ISupportInitialize)(this.fb)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.payDate)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.payer)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel3)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel2)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel4)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel5)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.store)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radGridView1.MasterTemplate)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radGridView1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.flb)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.gridViewTemplate1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel6)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.explain)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.create)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel7)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.total)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radCheckBox1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel8)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this)).EndInit();
            this.ResumeLayout(false);
            this.PerformLayout();

        }
コード例 #49
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     Telerik.WinControls.UI.GridViewTextBoxColumn   gridViewTextBoxColumn1  = new Telerik.WinControls.UI.GridViewTextBoxColumn();
     Telerik.WinControls.UI.GridViewTextBoxColumn   gridViewTextBoxColumn2  = new Telerik.WinControls.UI.GridViewTextBoxColumn();
     Telerik.WinControls.UI.GridViewTextBoxColumn   gridViewTextBoxColumn3  = new Telerik.WinControls.UI.GridViewTextBoxColumn();
     Telerik.WinControls.UI.GridViewTextBoxColumn   gridViewTextBoxColumn4  = new Telerik.WinControls.UI.GridViewTextBoxColumn();
     Telerik.WinControls.UI.GridViewTextBoxColumn   gridViewTextBoxColumn5  = new Telerik.WinControls.UI.GridViewTextBoxColumn();
     Telerik.WinControls.UI.GridViewCheckBoxColumn  gridViewCheckBoxColumn1 = new Telerik.WinControls.UI.GridViewCheckBoxColumn();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmLearningAreas));
     this.radPanel1       = new Telerik.WinControls.UI.RadPanel();
     this.gvLearningArea  = new Telerik.WinControls.UI.RadGridView();
     this.radPanel2       = new Telerik.WinControls.UI.RadPanel();
     this.btnAddBuilding  = new Telerik.WinControls.UI.RadButton();
     this.btnEditBuilding = new Telerik.WinControls.UI.RadButton();
     ((System.ComponentModel.ISupportInitialize)(this.radPanel1)).BeginInit();
     this.radPanel1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gvLearningArea)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvLearningArea.MasterTemplate)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radPanel2)).BeginInit();
     this.radPanel2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.btnAddBuilding)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.btnEditBuilding)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
     this.SuspendLayout();
     //
     // radPanel1
     //
     this.radPanel1.Controls.Add(this.gvLearningArea);
     this.radPanel1.Controls.Add(this.radPanel2);
     this.radPanel1.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.radPanel1.Location = new System.Drawing.Point(0, 0);
     this.radPanel1.Name     = "radPanel1";
     this.radPanel1.Size     = new System.Drawing.Size(841, 475);
     this.radPanel1.TabIndex = 0;
     //
     // gvLearningArea
     //
     this.gvLearningArea.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.gvLearningArea.Location = new System.Drawing.Point(0, 0);
     //
     //
     //
     this.gvLearningArea.MasterTemplate.AllowAddNewRow     = false;
     this.gvLearningArea.MasterTemplate.AllowColumnReorder = false;
     this.gvLearningArea.MasterTemplate.AllowDeleteRow     = false;
     this.gvLearningArea.MasterTemplate.AllowDragToGroup   = false;
     this.gvLearningArea.MasterTemplate.AllowEditRow       = false;
     this.gvLearningArea.MasterTemplate.AllowSearchRow     = true;
     gridViewTextBoxColumn1.FieldName     = "LearningAreaCode";
     gridViewTextBoxColumn1.HeaderText    = "Learning Area Code";
     gridViewTextBoxColumn1.Name          = "LearningAreaCode";
     gridViewTextBoxColumn1.Width         = 150;
     gridViewTextBoxColumn1.WrapText      = true;
     gridViewTextBoxColumn2.FieldName     = "Description";
     gridViewTextBoxColumn2.HeaderText    = "Description";
     gridViewTextBoxColumn2.Name          = "Description";
     gridViewTextBoxColumn2.Width         = 300;
     gridViewTextBoxColumn2.WrapText      = true;
     gridViewTextBoxColumn3.FieldName     = "Units";
     gridViewTextBoxColumn3.HeaderText    = "Units";
     gridViewTextBoxColumn3.Name          = "Units";
     gridViewTextBoxColumn3.TextAlignment = System.Drawing.ContentAlignment.MiddleRight;
     gridViewTextBoxColumn3.WrapText      = true;
     gridViewTextBoxColumn4.FieldName     = "RatePerUnit";
     gridViewTextBoxColumn4.HeaderText    = "Rate per Unit";
     gridViewTextBoxColumn4.Name          = "RatePerUnit";
     gridViewTextBoxColumn4.TextAlignment = System.Drawing.ContentAlignment.MiddleRight;
     gridViewTextBoxColumn4.Width         = 100;
     gridViewTextBoxColumn5.FieldName     = "RatePerSubject";
     gridViewTextBoxColumn5.HeaderText    = "Rate Per Subject";
     gridViewTextBoxColumn5.Name          = "RatePerSubject";
     gridViewTextBoxColumn5.TextAlignment = System.Drawing.ContentAlignment.MiddleRight;
     gridViewTextBoxColumn5.Width         = 100;
     gridViewCheckBoxColumn1.FieldName    = "Academic";
     gridViewCheckBoxColumn1.HeaderText   = "Academic";
     gridViewCheckBoxColumn1.Name         = "Academic";
     gridViewCheckBoxColumn1.Width        = 100;
     this.gvLearningArea.MasterTemplate.Columns.AddRange(new Telerik.WinControls.UI.GridViewDataColumn[] {
         gridViewTextBoxColumn1,
         gridViewTextBoxColumn2,
         gridViewTextBoxColumn3,
         gridViewTextBoxColumn4,
         gridViewTextBoxColumn5,
         gridViewCheckBoxColumn1
     });
     this.gvLearningArea.MasterTemplate.EnableGrouping   = false;
     this.gvLearningArea.MasterTemplate.EnableSorting    = false;
     this.gvLearningArea.MasterTemplate.ShowFilteringRow = false;
     this.gvLearningArea.Name              = "gvLearningArea";
     this.gvLearningArea.ShowGroupPanel    = false;
     this.gvLearningArea.Size              = new System.Drawing.Size(841, 425);
     this.gvLearningArea.TabIndex          = 0;
     this.gvLearningArea.SelectionChanged += new System.EventHandler(this.gvLearningArea_SelectionChanged);
     this.gvLearningArea.DoubleClick      += new System.EventHandler(this.btnEditBuilding_Click);
     //
     // radPanel2
     //
     this.radPanel2.Controls.Add(this.btnAddBuilding);
     this.radPanel2.Controls.Add(this.btnEditBuilding);
     this.radPanel2.Dock     = System.Windows.Forms.DockStyle.Bottom;
     this.radPanel2.Location = new System.Drawing.Point(0, 425);
     this.radPanel2.Name     = "radPanel2";
     this.radPanel2.Size     = new System.Drawing.Size(841, 50);
     this.radPanel2.TabIndex = 41;
     //
     // btnAddBuilding
     //
     this.btnAddBuilding.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.btnAddBuilding.Location = new System.Drawing.Point(657, 14);
     this.btnAddBuilding.Name     = "btnAddBuilding";
     this.btnAddBuilding.Size     = new System.Drawing.Size(83, 24);
     this.btnAddBuilding.TabIndex = 1;
     this.btnAddBuilding.Text     = "Add";
     this.btnAddBuilding.Click   += new System.EventHandler(this.btnAddBuilding_Click);
     //
     // btnEditBuilding
     //
     this.btnEditBuilding.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.btnEditBuilding.Location = new System.Drawing.Point(746, 14);
     this.btnEditBuilding.Name     = "btnEditBuilding";
     this.btnEditBuilding.Size     = new System.Drawing.Size(83, 24);
     this.btnEditBuilding.TabIndex = 2;
     this.btnEditBuilding.Text     = "Edit";
     this.btnEditBuilding.Click   += new System.EventHandler(this.btnEditBuilding_Click);
     //
     // frmLearningAreas
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize          = new System.Drawing.Size(841, 475);
     this.Controls.Add(this.radPanel1);
     this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.Name = "frmLearningAreas";
     //
     //
     //
     this.RootElement.ApplyShapeToControl = true;
     this.Text       = "Learning Areas List";
     this.ThemeName  = "ControlDefault";
     this.Activated += new System.EventHandler(this.frmLearningAreas_Activated);
     this.Load      += new System.EventHandler(this.frmLearningAreas_Load);
     ((System.ComponentModel.ISupportInitialize)(this.radPanel1)).EndInit();
     this.radPanel1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gvLearningArea.MasterTemplate)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvLearningArea)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radPanel2)).EndInit();
     this.radPanel2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.btnAddBuilding)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.btnEditBuilding)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this)).EndInit();
     this.ResumeLayout(false);
 }
コード例 #50
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(MainForm));
     System.Windows.Forms.ListViewGroup listViewGroup1 = new System.Windows.Forms.ListViewGroup("(General)", System.Windows.Forms.HorizontalAlignment.Left);
     System.Windows.Forms.ListViewGroup listViewGroup2 = new System.Windows.Forms.ListViewGroup("(General)", System.Windows.Forms.HorizontalAlignment.Left);
     System.Windows.Forms.ListViewGroup listViewGroup3 = new System.Windows.Forms.ListViewGroup("lstGrupRaspunsuri", System.Windows.Forms.HorizontalAlignment.Left);
     System.Windows.Forms.ListViewGroup listViewGroup4 = new System.Windows.Forms.ListViewGroup("lstGrupTotal", System.Windows.Forms.HorizontalAlignment.Left);
     InfoCenter.Controls.CustomGridViewTextBoxColumn<InfoCenter.Classes.UnitateTestare> customGridViewTextBoxColumn_11 = new InfoCenter.Controls.CustomGridViewTextBoxColumn<InfoCenter.Classes.UnitateTestare>();
     Telerik.WinControls.UI.GridViewCheckBoxColumn gridViewCheckBoxColumn1 = new Telerik.WinControls.UI.GridViewCheckBoxColumn();
     InfoCenter.Controls.CustomGridViewCommandColumn customGridViewCommandColumn1 = new InfoCenter.Controls.CustomGridViewCommandColumn();
     Telerik.WinControls.UI.GridViewImageColumn gridViewImageColumn1 = new Telerik.WinControls.UI.GridViewImageColumn();
     Telerik.WinControls.UI.RadRibbonBarCommandTab radRibbonBarCommandTab1 = new Telerik.WinControls.UI.RadRibbonBarCommandTab();
     Telerik.WinControls.UI.RadRibbonBarCommandTab radRibbonBarCommandTab2 = new Telerik.WinControls.UI.RadRibbonBarCommandTab();
     Telerik.WinControls.UI.RadRibbonBarCommandTab radRibbonBarCommandTab3 = new Telerik.WinControls.UI.RadRibbonBarCommandTab();
     Telerik.WinControls.UI.RadRibbonBarCommandTab radRibbonBarCommandTab4 = new Telerik.WinControls.UI.RadRibbonBarCommandTab();
     Telerik.WinControls.UI.RadRibbonBarCommandTab radRibbonBarCommandTab5 = new Telerik.WinControls.UI.RadRibbonBarCommandTab();
     this.radRibbonBarChunk2 = new Telerik.WinControls.UI.RadRibbonBarChunk();
     this.radRibbonBarButtonGroup5 = new Telerik.WinControls.UI.RadRibbonBarButtonGroup();
     this.lblNumarLectii = new Telerik.WinControls.UI.RadLabelElement();
     this.lblNumarProbleme = new Telerik.WinControls.UI.RadLabelElement();
     this.lblNumarTeste = new Telerik.WinControls.UI.RadLabelElement();
     this.radRibbonBarChunk3 = new Telerik.WinControls.UI.RadRibbonBarChunk();
     this.radImageButtonElement1 = new Telerik.WinControls.UI.RadImageButtonElement();
     this.ribbonTabStart = new Telerik.WinControls.UI.TabItem();
     this.radChunkInfLectie = new Telerik.WinControls.UI.RadRibbonBarChunk();
     this.radGroup13 = new Telerik.WinControls.UI.RadRibbonBarButtonGroup();
     this.lblNivelLectie = new Telerik.WinControls.UI.RadLabelElement();
     this.btnProblemeLectie = new Telerik.WinControls.UI.RadButtonElement();
     this.btnTesteLectie = new Telerik.WinControls.UI.RadButtonElement();
     this.ribbonTabLectii = new Telerik.WinControls.UI.TabItem();
     this.radChunkInfoProblema = new Telerik.WinControls.UI.RadRibbonBarChunk();
     this.radGroup4 = new Telerik.WinControls.UI.RadRibbonBarButtonGroup();
     this.lblDificultateProblema = new Telerik.WinControls.UI.RadLabelElement();
     this.radChunkCautareProbleme = new Telerik.WinControls.UI.RadRibbonBarChunk();
     this.radGroup7 = new Telerik.WinControls.UI.RadRibbonBarButtonGroup();
     this.radGroup10 = new Telerik.WinControls.UI.RadRibbonBarButtonGroup();
     this.comboCautaProblema = new Telerik.WinControls.UI.RadComboBoxElement();
     this.btnCautaProbleme = new Telerik.WinControls.UI.RadButtonElement();
     this.btnToateProblemele = new Telerik.WinControls.UI.RadButtonElement();
     this.radGroup11 = new Telerik.WinControls.UI.RadRibbonBarButtonGroup();
     this.comboCautaCuvantCheie = new Telerik.WinControls.UI.RadComboBoxElement();
     this.btnCautaCuvantCheie = new Telerik.WinControls.UI.RadButtonElement();
     this.btnToateCuvinteleCheie = new Telerik.WinControls.UI.RadButtonElement();
     this.radChunkActiuniProblema = new Telerik.WinControls.UI.RadRibbonBarChunk();
     this.radGroup5 = new Telerik.WinControls.UI.RadRibbonBarButtonGroup();
     this.btnSalvare = new Telerik.WinControls.UI.RadSplitButtonElement();
     this.radMenuSalvare = new Telerik.WinControls.UI.RadMenuItem();
     this.radMenuSalvareCa = new Telerik.WinControls.UI.RadMenuItem();
     this.radGroup15 = new Telerik.WinControls.UI.RadRibbonBarButtonGroup();
     this.btnMaresteCerinta = new Telerik.WinControls.UI.RadButtonElement();
     this.btnMaresteSursa = new Telerik.WinControls.UI.ActionButtonElement();
     this.btnRezolvaProblema = new Telerik.WinControls.UI.RadButtonElement();
     this.ribbonTabProbleme = new Telerik.WinControls.UI.TabItem();
     this.radChunkInformatiiTest = new Telerik.WinControls.UI.RadRibbonBarChunk();
     this.radGroup2 = new Telerik.WinControls.UI.RadRibbonBarButtonGroup();
     this.btnLblNivelTest = new Telerik.WinControls.UI.RadLabelElement();
     this.lblPunctaj = new Telerik.WinControls.UI.RadLabelElement();
     this.lblTimpScurs = new Telerik.WinControls.UI.RadLabelElement();
     this.radChunkActiuniTest = new Telerik.WinControls.UI.RadRibbonBarChunk();
     this.radGroup1 = new Telerik.WinControls.UI.RadRibbonBarButtonGroup();
     this.btnIncepeTest = new Telerik.WinControls.UI.ActionButtonElement();
     this.btnResetTest = new Telerik.WinControls.UI.ActionButtonElement();
     this.btnCorecteazaTest = new Telerik.WinControls.UI.ActionButtonElement();
     this.ribbonTabTeste = new Telerik.WinControls.UI.TabItem();
     this.radChunkActiuniCompilator = new Telerik.WinControls.UI.RadRibbonBarChunk();
     this.radRibbonBarButtonGroup1 = new Telerik.WinControls.UI.RadRibbonBarButtonGroup();
     this.btnExecuta = new Telerik.WinControls.UI.RadButtonElement();
     this.btnTestareProgram = new Telerik.WinControls.UI.RadButtonElement();
     this.btnTestareAutomaticaProgram = new Telerik.WinControls.UI.RadButtonElement();
     this.btnSaveCodSursa = new Telerik.WinControls.UI.RadButtonElement();
     this.btnFragmenteDeCod = new Telerik.WinControls.UI.RadButtonElement();
     this.radRibbonBarChunk1 = new Telerik.WinControls.UI.RadRibbonBarChunk();
     this.radRibbonBarButtonGroup2 = new Telerik.WinControls.UI.RadRibbonBarButtonGroup();
     this.radRibbonBarButtonGroup3 = new Telerik.WinControls.UI.RadRibbonBarButtonGroup();
     this.comboFont2 = new Telerik.WinControls.UI.RadComboBoxElement();
     this.radComboBoxItem12 = new Telerik.WinControls.UI.RadComboBoxItem();
     this.radComboBoxItem13 = new Telerik.WinControls.UI.RadComboBoxItem();
     this.radComboBoxItem14 = new Telerik.WinControls.UI.RadComboBoxItem();
     this.radComboBoxItem15 = new Telerik.WinControls.UI.RadComboBoxItem();
     this.radComboBoxItem16 = new Telerik.WinControls.UI.RadComboBoxItem();
     this.radComboBoxItem17 = new Telerik.WinControls.UI.RadComboBoxItem();
     this.radComboBoxItem18 = new Telerik.WinControls.UI.RadComboBoxItem();
     this.radRibbonBarButtonGroup9 = new Telerik.WinControls.UI.RadRibbonBarButtonGroup();
     this.comboFontSize2 = new Telerik.WinControls.UI.RadComboBoxElement();
     this.radComboBoxItem25 = new Telerik.WinControls.UI.RadComboBoxItem();
     this.radComboBoxItem26 = new Telerik.WinControls.UI.RadComboBoxItem();
     this.radComboBoxItem27 = new Telerik.WinControls.UI.RadComboBoxItem();
     this.radComboBoxItem28 = new Telerik.WinControls.UI.RadComboBoxItem();
     this.btnFontDecrease2 = new Telerik.WinControls.UI.RadButtonElement();
     this.btnFontIncrease2 = new Telerik.WinControls.UI.RadButtonElement();
     this.radRibbonBarButtonGroup4 = new Telerik.WinControls.UI.RadRibbonBarButtonGroup();
     this.ribbonTabCompilator = new Telerik.WinControls.UI.TabItem();
     this.radComboBoxItem6 = new Telerik.WinControls.UI.RadComboBoxItem();
     this.radComboBoxItem7 = new Telerik.WinControls.UI.RadComboBoxItem();
     this.radComboBoxItem8 = new Telerik.WinControls.UI.RadComboBoxItem();
     this.radComboBoxItem9 = new Telerik.WinControls.UI.RadComboBoxItem();
     this.radComboBoxItem10 = new Telerik.WinControls.UI.RadComboBoxItem();
     this.radComboBoxItem11 = new Telerik.WinControls.UI.RadComboBoxItem();
     this.tabControlMain = new System.Windows.Forms.TabControl();
     this.tabPageStart = new System.Windows.Forms.TabPage();
     this.label10 = new System.Windows.Forms.Label();
     this.label9 = new System.Windows.Forms.Label();
     this.label4 = new System.Windows.Forms.Label();
     this.label3 = new System.Windows.Forms.Label();
     this.lblLinkCompilator = new System.Windows.Forms.LinkLabel();
     this.lblAutentificareProfesor = new System.Windows.Forms.LinkLabel();
     this.lblLinkTeste = new System.Windows.Forms.LinkLabel();
     this.lblLinkProbleme = new System.Windows.Forms.LinkLabel();
     this.lblLinkLectii = new System.Windows.Forms.LinkLabel();
     this.label2 = new System.Windows.Forms.Label();
     this.tabPageLectii = new System.Windows.Forms.TabPage();
     this.splitContainer3 = new System.Windows.Forms.SplitContainer();
     this.gBoxListaLectii = new System.Windows.Forms.GroupBox();
     this.cuprinsLectii = new Telerik.WinControls.UI.RadTreeView();
     this.gBoxContinutLectie = new System.Windows.Forms.GroupBox();
     this.lblStartLectie = new System.Windows.Forms.Label();
     this.navigatorLectii = new System.Windows.Forms.WebBrowser();
     this.tabPageProbleme = new System.Windows.Forms.TabPage();
     this.splitContainer1 = new System.Windows.Forms.SplitContainer();
     this.tabControlSubProbleme = new System.Windows.Forms.TabControl();
     this.tabPageListaProbleme = new System.Windows.Forms.TabPage();
     this.listaProbleme = new System.Windows.Forms.ListView();
     this.colHeaderTitluProblema = new System.Windows.Forms.ColumnHeader();
     this.tabPageCuvinteCheie = new System.Windows.Forms.TabPage();
     this.splitContainerCuvinteCheie = new System.Windows.Forms.SplitContainer();
     this.listaCuvinteCheie = new Telerik.WinControls.UI.RadTreeView();
     this.gBoxRezCautareCuvinte = new System.Windows.Forms.GroupBox();
     this.listaRezultateCautareProbleme = new System.Windows.Forms.ListView();
     this.columnHeader2 = new System.Windows.Forms.ColumnHeader();
     this.splitContainer4 = new System.Windows.Forms.SplitContainer();
     this.gBoxCerinta = new System.Windows.Forms.GroupBox();
     this.txtCerintaProblema = new System.Windows.Forms.RichTextBox();
     this.gBoxSursa = new System.Windows.Forms.GroupBox();
     this.txtSursaProblema = new InfoCenter.Controls.CompilerTextBox();
     this.tabPageTeste = new System.Windows.Forms.TabPage();
     this.splitContainer6 = new System.Windows.Forms.SplitContainer();
     this.gBoxListaTeste = new System.Windows.Forms.GroupBox();
     this.listaTeste = new Telerik.WinControls.UI.RadTreeView();
     this.tabControlSubTeste = new System.Windows.Forms.TabControl();
     this.tabPageSubiectTest = new System.Windows.Forms.TabPage();
     this.btnIntrebareUrmatoare = new Telerik.WinControls.UI.RadButton();
     this.btnIntrebareAnterioara = new Telerik.WinControls.UI.RadButton();
     this.lblTitluTest = new System.Windows.Forms.Label();
     this.panelTestFinish = new System.Windows.Forms.Panel();
     this.radLabel5 = new Telerik.WinControls.UI.RadLabel();
     this.lblTestTerminat = new Telerik.WinControls.UI.RadLabel();
     this.panelWelcomeTest = new System.Windows.Forms.Panel();
     this.label8 = new System.Windows.Forms.Label();
     this.radLabel3 = new Telerik.WinControls.UI.RadLabel();
     this.radLabel2 = new Telerik.WinControls.UI.RadLabel();
     this.radLabel1 = new Telerik.WinControls.UI.RadLabel();
     this.tabPageCorectareTest = new System.Windows.Forms.TabPage();
     this.listaCorectareTest = new System.Windows.Forms.ListView();
     this.colHeaderNrCrt = new System.Windows.Forms.ColumnHeader();
     this.colHeaderRaspAles = new System.Windows.Forms.ColumnHeader();
     this.colHeaderRaspCorect = new System.Windows.Forms.ColumnHeader();
     this.colHeaderPunctaj = new System.Windows.Forms.ColumnHeader();
     this.tabPageCompilator = new System.Windows.Forms.TabPage();
     this.splitContainer2 = new System.Windows.Forms.SplitContainer();
     this.panel1 = new System.Windows.Forms.Panel();
     this.lblLinkProgramNou = new System.Windows.Forms.LinkLabel();
     this.label1 = new System.Windows.Forms.Label();
     this.lblCodSursa = new System.Windows.Forms.Label();
     this.txtCodSursa = new InfoCenter.Controls.CompilerTextBox();
     this.tabControlSubCompilator = new System.Windows.Forms.TabControl();
     this.tabPageRezultatCompilare = new System.Windows.Forms.TabPage();
     this.txtRezultatCompilare = new System.Windows.Forms.TextBox();
     this.tabPageTestareProgram = new System.Windows.Forms.TabPage();
     this.splitContainer5 = new System.Windows.Forms.SplitContainer();
     this.groupBox1 = new System.Windows.Forms.GroupBox();
     this.tabControlDateIntrare = new System.Windows.Forms.TabControl();
     this.tabcin = new System.Windows.Forms.TabPage();
     this.txtDateIntrareProgram = new System.Windows.Forms.TextBox();
     this.groupBox2 = new System.Windows.Forms.GroupBox();
     this.tabControlDateIesire = new System.Windows.Forms.TabControl();
     this.tabcout = new System.Windows.Forms.TabPage();
     this.txtRezultatProgram = new System.Windows.Forms.TextBox();
     this.tabPageTestareAutomata = new System.Windows.Forms.TabPage();
     this.btnAdaugaTestare = new Telerik.WinControls.UI.RadButton();
     this.btnVerifica = new Telerik.WinControls.UI.RadDropDownButton();
     this.radMenuSelectate = new Telerik.WinControls.UI.RadMenuItem();
     this.radMenuToate = new Telerik.WinControls.UI.RadMenuItem();
     this.gridVerificare = new Telerik.WinControls.UI.RadGridView();
     this.lblNoTest = new System.Windows.Forms.Label();
     this.columnHeader1 = new System.Windows.Forms.ColumnHeader();
     this.saveFileDialog = new System.Windows.Forms.SaveFileDialog();
     this.ribbonBar = new Telerik.WinControls.UI.RadRibbonBar();
     this.radMenuReloadInfo = new Telerik.WinControls.UI.RadMenuItem();
     this.radMenuUpdateApplication = new Telerik.WinControls.UI.RadMenuItem();
     this.statusStrip = new Telerik.WinControls.UI.RadStatusStrip();
     this.toolStripStatus = new Telerik.WinControls.UI.RadLabelElement();
     this.toolStripProgressBar = new Telerik.WinControls.UI.RadProgressBarElement();
     this.radLabelCopyright = new Telerik.WinControls.UI.RadLabelElement();
     this.toolStripConnectedMode = new Telerik.WinControls.UI.RadLabelElement();
     this.toolStripDataOra = new Telerik.WinControls.UI.RadLabelElement();
     this.btnFontItalic2 = new Telerik.WinControls.UI.RadToggleButtonElement();
     this.btnFontBold2 = new Telerik.WinControls.UI.RadToggleButtonElement();
     this.radMenuButtonItem1 = new Telerik.WinControls.UI.RadMenuButtonItem();
     this.testTimer = new InfoCenter.Controls.CustomTimer(this.components);
     ((System.ComponentModel.ISupportInitialize)(this.comboCautaProblema)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.comboCautaCuvantCheie)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.comboFont2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.comboFontSize2)).BeginInit();
     this.tabControlMain.SuspendLayout();
     this.tabPageStart.SuspendLayout();
     this.tabPageLectii.SuspendLayout();
     this.splitContainer3.Panel1.SuspendLayout();
     this.splitContainer3.Panel2.SuspendLayout();
     this.splitContainer3.SuspendLayout();
     this.gBoxListaLectii.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.cuprinsLectii)).BeginInit();
     this.gBoxContinutLectie.SuspendLayout();
     this.tabPageProbleme.SuspendLayout();
     this.splitContainer1.Panel1.SuspendLayout();
     this.splitContainer1.Panel2.SuspendLayout();
     this.splitContainer1.SuspendLayout();
     this.tabControlSubProbleme.SuspendLayout();
     this.tabPageListaProbleme.SuspendLayout();
     this.tabPageCuvinteCheie.SuspendLayout();
     this.splitContainerCuvinteCheie.Panel1.SuspendLayout();
     this.splitContainerCuvinteCheie.Panel2.SuspendLayout();
     this.splitContainerCuvinteCheie.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.listaCuvinteCheie)).BeginInit();
     this.gBoxRezCautareCuvinte.SuspendLayout();
     this.splitContainer4.Panel1.SuspendLayout();
     this.splitContainer4.Panel2.SuspendLayout();
     this.splitContainer4.SuspendLayout();
     this.gBoxCerinta.SuspendLayout();
     this.gBoxSursa.SuspendLayout();
     this.tabPageTeste.SuspendLayout();
     this.splitContainer6.Panel1.SuspendLayout();
     this.splitContainer6.Panel2.SuspendLayout();
     this.splitContainer6.SuspendLayout();
     this.gBoxListaTeste.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.listaTeste)).BeginInit();
     this.tabControlSubTeste.SuspendLayout();
     this.tabPageSubiectTest.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.btnIntrebareUrmatoare)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.btnIntrebareAnterioara)).BeginInit();
     this.panelTestFinish.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel5)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lblTestTerminat)).BeginInit();
     this.panelWelcomeTest.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel1)).BeginInit();
     this.tabPageCorectareTest.SuspendLayout();
     this.tabPageCompilator.SuspendLayout();
     this.splitContainer2.Panel1.SuspendLayout();
     this.splitContainer2.Panel2.SuspendLayout();
     this.splitContainer2.SuspendLayout();
     this.panel1.SuspendLayout();
     this.tabControlSubCompilator.SuspendLayout();
     this.tabPageRezultatCompilare.SuspendLayout();
     this.tabPageTestareProgram.SuspendLayout();
     this.splitContainer5.Panel1.SuspendLayout();
     this.splitContainer5.Panel2.SuspendLayout();
     this.splitContainer5.SuspendLayout();
     this.groupBox1.SuspendLayout();
     this.tabControlDateIntrare.SuspendLayout();
     this.tabcin.SuspendLayout();
     this.groupBox2.SuspendLayout();
     this.tabControlDateIesire.SuspendLayout();
     this.tabcout.SuspendLayout();
     this.tabPageTestareAutomata.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.btnAdaugaTestare)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.btnVerifica)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridVerificare)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridVerificare.MasterGridViewTemplate)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ribbonBar)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.statusStrip)).BeginInit();
     this.SuspendLayout();
     //
     // radRibbonBarChunk2
     //
     this.radRibbonBarChunk2.Items.AddRange(new Telerik.WinControls.RadItem[] {
     this.radRibbonBarButtonGroup5});
     this.radRibbonBarChunk2.Name = "radRibbonBarChunk2";
     this.radRibbonBarChunk2.Orientation = System.Windows.Forms.Orientation.Horizontal;
     this.radRibbonBarChunk2.Text = "Informaţii Info Center";
     //
     // radRibbonBarButtonGroup5
     //
     this.radRibbonBarButtonGroup5.Items.AddRange(new Telerik.WinControls.RadItem[] {
     this.lblNumarLectii,
     this.lblNumarProbleme,
     this.lblNumarTeste});
     this.radRibbonBarButtonGroup5.MinSize = new System.Drawing.Size(22, 22);
     this.radRibbonBarButtonGroup5.Name = "radRibbonBarButtonGroup5";
     this.radRibbonBarButtonGroup5.Orientation = System.Windows.Forms.Orientation.Vertical;
     this.radRibbonBarButtonGroup5.ShowBackColor = false;
     this.radRibbonBarButtonGroup5.ShowBorder = false;
     this.radRibbonBarButtonGroup5.Text = "radRibbonBarButtonGroup5";
     //
     // lblNumarLectii
     //
     this.lblNumarLectii.Name = "lblNumarLectii";
     this.lblNumarLectii.Text = "Număr lecţii:";
     //
     // lblNumarProbleme
     //
     this.lblNumarProbleme.Name = "lblNumarProbleme";
     this.lblNumarProbleme.Text = "Număr probleme:";
     //
     // lblNumarTeste
     //
     this.lblNumarTeste.Name = "lblNumarTeste";
     this.lblNumarTeste.Text = "Număr teste:";
     //
     // radRibbonBarChunk3
     //
     this.radRibbonBarChunk3.Items.AddRange(new Telerik.WinControls.RadItem[] {
     this.radImageButtonElement1});
     this.radRibbonBarChunk3.Name = "radRibbonBarChunk3";
     this.radRibbonBarChunk3.Orientation = System.Windows.Forms.Orientation.Horizontal;
     this.radRibbonBarChunk3.Text = " ";
     //
     // radImageButtonElement1
     //
     this.radImageButtonElement1.CanFocus = true;
     this.radImageButtonElement1.Class = "RibbonBarButtonElement";
     this.radImageButtonElement1.Image = global::InfoCenter.Properties.Resources.logoc;
     this.radImageButtonElement1.ImageAlignment = System.Drawing.ContentAlignment.MiddleCenter;
     this.radImageButtonElement1.Name = "radImageButtonElement1";
     this.radImageButtonElement1.Padding = new System.Windows.Forms.Padding(20, 0, 5, 0);
     this.radImageButtonElement1.Text = "imageC";
     //
     // ribbonTabStart
     //
     this.ribbonTabStart.CanFocus = true;
     this.ribbonTabStart.Class = "TabItem";
     //
     // ribbonTabStart.ContentPanel
     //
     this.ribbonTabStart.ContentPanel.BackColor = System.Drawing.Color.Transparent;
     this.ribbonTabStart.ContentPanel.CausesValidation = true;
     this.ribbonTabStart.Name = "ribbonTabStart";
     this.ribbonTabStart.Text = "Pagina de start";
     this.ribbonTabStart.Click += new System.EventHandler(this.ribbonTabStartPage_Click);
     //
     // radChunkInfLectie
     //
     this.radChunkInfLectie.Items.AddRange(new Telerik.WinControls.RadItem[] {
     this.radGroup13});
     this.radChunkInfLectie.Name = "radChunkInfLectie";
     this.radChunkInfLectie.Orientation = System.Windows.Forms.Orientation.Horizontal;
     this.radChunkInfLectie.Text = "Informaţii lecţie";
     this.radChunkInfLectie.ToolTipText = null;
     //
     // radGroup13
     //
     this.radGroup13.Items.AddRange(new Telerik.WinControls.RadItem[] {
     this.lblNivelLectie,
     this.btnProblemeLectie,
     this.btnTesteLectie});
     this.radGroup13.MinSize = new System.Drawing.Size(22, 22);
     this.radGroup13.Name = "radGroup13";
     this.radGroup13.Orientation = System.Windows.Forms.Orientation.Horizontal;
     this.radGroup13.Padding = new System.Windows.Forms.Padding(1);
     this.radGroup13.ShowBackColor = false;
     this.radGroup13.ShowBorder = false;
     this.radGroup13.Text = "radGroup13";
     this.radGroup13.ToolTipText = null;
     //
     // lblNivelLectie
     //
     this.lblNivelLectie.CanFocus = true;
     this.lblNivelLectie.Class = "RibbonBarButtonElement";
     this.lblNivelLectie.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(130)))), ((int)(((byte)(130)))), ((int)(((byte)(130)))));
     this.lblNivelLectie.Image = global::InfoCenter.Properties.Resources._0_star_rating;
     this.lblNivelLectie.ImageAlignment = System.Drawing.ContentAlignment.MiddleCenter;
     this.lblNivelLectie.Name = "lblNivelLectie";
     this.lblNivelLectie.Padding = new System.Windows.Forms.Padding(0, 20, 0, 0);
     this.lblNivelLectie.Text = "Dificultate";
     this.lblNivelLectie.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
     this.lblNivelLectie.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
     this.lblNivelLectie.ToolTipText = "Afişează nivelul necesar pentru parcurgerea lecţiei selectate (1 stea - începător" +
         "; 2 stele - mediu; 3 stele - avansat).";
     //
     // btnProblemeLectie
     //
     this.btnProblemeLectie.CanFocus = true;
     this.btnProblemeLectie.Class = "RibbonBarButtonElement";
     this.btnProblemeLectie.Enabled = false;
     this.btnProblemeLectie.Image = global::InfoCenter.Properties.Resources.imgProbleme32;
     this.btnProblemeLectie.ImageAlignment = System.Drawing.ContentAlignment.MiddleCenter;
     this.btnProblemeLectie.Name = "btnProblemeLectie";
     this.btnProblemeLectie.Padding = new System.Windows.Forms.Padding(0, 4, 0, 0);
     this.btnProblemeLectie.Text = "Problemele asociate";
     this.btnProblemeLectie.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
     this.btnProblemeLectie.ToolTipText = "Afişează problemele asociate lecţiei selectate.";
     this.btnProblemeLectie.Click += new System.EventHandler(this.btnProblemeLectie_Click);
     //
     // btnTesteLectie
     //
     this.btnTesteLectie.CanFocus = true;
     this.btnTesteLectie.Class = "RibbonBarButtonElement";
     this.btnTesteLectie.Enabled = false;
     this.btnTesteLectie.Image = global::InfoCenter.Properties.Resources.imgTest32;
     this.btnTesteLectie.ImageAlignment = System.Drawing.ContentAlignment.MiddleCenter;
     this.btnTesteLectie.Name = "btnTesteLectie";
     this.btnTesteLectie.Padding = new System.Windows.Forms.Padding(0, 4, 0, 0);
     this.btnTesteLectie.Text = "Testele asociate";
     this.btnTesteLectie.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
     this.btnTesteLectie.ToolTipText = "Afişează testele asociate lecţiei selectate.";
     this.btnTesteLectie.Click += new System.EventHandler(this.btnTesteLectie_Click);
     //
     // ribbonTabLectii
     //
     this.ribbonTabLectii.CanFocus = true;
     this.ribbonTabLectii.Class = "TabItem";
     //
     // ribbonTabLectii.ContentPanel
     //
     this.ribbonTabLectii.ContentPanel.BackColor = System.Drawing.SystemColors.ControlLightLight;
     this.ribbonTabLectii.ContentPanel.CausesValidation = true;
     this.ribbonTabLectii.KeyTip = " ";
     this.ribbonTabLectii.Name = "ribbonTabLectii";
     this.ribbonTabLectii.Text = "Lecţii";
     this.ribbonTabLectii.ToolTipText = null;
     this.ribbonTabLectii.Click += new System.EventHandler(this.ribbonTabLectii_Click);
     //
     // radChunkInfoProblema
     //
     this.radChunkInfoProblema.Items.AddRange(new Telerik.WinControls.RadItem[] {
     this.radGroup4});
     this.radChunkInfoProblema.Name = "radChunkInfoProblema";
     this.radChunkInfoProblema.Orientation = System.Windows.Forms.Orientation.Horizontal;
     this.radChunkInfoProblema.Text = "Informaţii problemă";
     this.radChunkInfoProblema.ToolTipText = null;
     //
     // radGroup4
     //
     this.radGroup4.Items.AddRange(new Telerik.WinControls.RadItem[] {
     this.lblDificultateProblema});
     this.radGroup4.Margin = new System.Windows.Forms.Padding(0, 5, 0, 0);
     this.radGroup4.MinSize = new System.Drawing.Size(22, 22);
     this.radGroup4.Name = "radGroup4";
     this.radGroup4.Orientation = System.Windows.Forms.Orientation.Vertical;
     this.radGroup4.Padding = new System.Windows.Forms.Padding(1);
     this.radGroup4.ShowBackColor = false;
     this.radGroup4.ShowBorder = false;
     this.radGroup4.Text = "radGroup4";
     this.radGroup4.ToolTipText = null;
     //
     // lblDificultateProblema
     //
     this.lblDificultateProblema.Alignment = System.Drawing.ContentAlignment.TopCenter;
     this.lblDificultateProblema.CanFocus = true;
     this.lblDificultateProblema.Class = "RibbonLabelElement";
     this.lblDificultateProblema.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(130)))), ((int)(((byte)(130)))), ((int)(((byte)(130)))));
     this.lblDificultateProblema.Image = global::InfoCenter.Properties.Resources._0_star_rating;
     this.lblDificultateProblema.ImageAlignment = System.Drawing.ContentAlignment.MiddleCenter;
     this.lblDificultateProblema.Name = "lblDificultateProblema";
     this.lblDificultateProblema.Padding = new System.Windows.Forms.Padding(0, 10, 0, 0);
     this.lblDificultateProblema.Text = "Dificultate:";
     this.lblDificultateProblema.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
     this.lblDificultateProblema.TextImageRelation = System.Windows.Forms.TextImageRelation.TextAboveImage;
     this.lblDificultateProblema.ToolTipText = "Afişează nivelul necesar pentru rezolvarea problemei selectate (1 stea - începăto" +
         "r; 2 stele - mediu; 3 stele - avansat).";
     //
     // radChunkCautareProbleme
     //
     this.radChunkCautareProbleme.Items.AddRange(new Telerik.WinControls.RadItem[] {
     this.radGroup7});
     this.radChunkCautareProbleme.Name = "radChunkCautareProbleme";
     this.radChunkCautareProbleme.Orientation = System.Windows.Forms.Orientation.Horizontal;
     this.radChunkCautareProbleme.Text = "Căutare probleme şi cuvinte cheie";
     this.radChunkCautareProbleme.ToolTipText = null;
     //
     // radGroup7
     //
     this.radGroup7.Items.AddRange(new Telerik.WinControls.RadItem[] {
     this.radGroup10,
     this.radGroup11});
     this.radGroup7.Margin = new System.Windows.Forms.Padding(0, 5, 0, 0);
     this.radGroup7.MinSize = new System.Drawing.Size(22, 22);
     this.radGroup7.Name = "radGroup7";
     this.radGroup7.Orientation = System.Windows.Forms.Orientation.Vertical;
     this.radGroup7.ShowBackColor = false;
     this.radGroup7.ShowBorder = false;
     this.radGroup7.Text = "radGroup7";
     this.radGroup7.ToolTipText = null;
     //
     // radGroup10
     //
     this.radGroup10.Items.AddRange(new Telerik.WinControls.RadItem[] {
     this.comboCautaProblema,
     this.btnCautaProbleme,
     this.btnToateProblemele});
     this.radGroup10.Margin = new System.Windows.Forms.Padding(2);
     this.radGroup10.MinSize = new System.Drawing.Size(22, 22);
     this.radGroup10.Name = "radGroup10";
     this.radGroup10.Orientation = System.Windows.Forms.Orientation.Horizontal;
     this.radGroup10.ShowBackColor = true;
     this.radGroup10.ShowBorder = true;
     this.radGroup10.Text = "radGroup10";
     this.radGroup10.ToolTipText = null;
     //
     // comboCautaProblema
     //
     this.comboCautaProblema.ArrowButtonMinWidth = 16;
     this.comboCautaProblema.DefaultValue = null;
     this.comboCautaProblema.DropDownSizingMode = ((Telerik.WinControls.UI.SizingMode)((Telerik.WinControls.UI.SizingMode.RightBottom | Telerik.WinControls.UI.SizingMode.UpDown)));
     this.comboCautaProblema.EditorElement = this.comboCautaProblema;
     this.comboCautaProblema.Focusable = true;
     this.comboCautaProblema.MaxDropDownItems = 9;
     this.comboCautaProblema.MaxSize = new System.Drawing.Size(140, 0);
     this.comboCautaProblema.MaxValue = null;
     this.comboCautaProblema.MinSize = new System.Drawing.Size(140, 0);
     this.comboCautaProblema.MinValue = null;
     this.comboCautaProblema.Name = "comboCautaProblema";
     this.comboCautaProblema.NullValue = null;
     this.comboCautaProblema.OwnerOffset = 0;
     this.comboCautaProblema.ReadOnly = false;
     this.comboCautaProblema.Text = "(Caută problemă)";
     this.comboCautaProblema.ToolTipText = "Caută în titlurile problemelor după o anumită secventă şi afişează rezultatele.";
     this.comboCautaProblema.Value = null;
     this.comboCautaProblema.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.comboCautaProblema_KeyPress);
     //
     // btnCautaProbleme
     //
     this.btnCautaProbleme.CanFocus = true;
     this.btnCautaProbleme.Class = "ButtonElement";
     this.btnCautaProbleme.Font = new System.Drawing.Font("Verdana", 9F, System.Drawing.FontStyle.Bold);
     this.btnCautaProbleme.Name = "btnCautaProbleme";
     this.btnCautaProbleme.Padding = new System.Windows.Forms.Padding(0, 3, 0, 0);
     this.btnCautaProbleme.ShowBorder = false;
     this.btnCautaProbleme.Text = "Caută problemă";
     this.btnCautaProbleme.ToolTipText = "Caută în titlurile şi cerinţa problemelor după o anumită secventă şi afişează rez" +
         "ultatele.";
     this.btnCautaProbleme.Click += new System.EventHandler(this.btnCautaProbleme_Click);
     //
     // btnToateProblemele
     //
     this.btnToateProblemele.CanFocus = true;
     this.btnToateProblemele.Class = "ButtonElement";
     this.btnToateProblemele.Image = global::InfoCenter.Properties.Resources.imgToate16;
     this.btnToateProblemele.Name = "btnToateProblemele";
     this.btnToateProblemele.Padding = new System.Windows.Forms.Padding(1);
     this.btnToateProblemele.ShowBorder = false;
     this.btnToateProblemele.ToolTipText = "Afişează toate problemele.";
     this.btnToateProblemele.Click += new System.EventHandler(this.btnToateProblemele_Click);
     //
     // radGroup11
     //
     this.radGroup11.Items.AddRange(new Telerik.WinControls.RadItem[] {
     this.comboCautaCuvantCheie,
     this.btnCautaCuvantCheie,
     this.btnToateCuvinteleCheie});
     this.radGroup11.Margin = new System.Windows.Forms.Padding(2);
     this.radGroup11.MinSize = new System.Drawing.Size(22, 22);
     this.radGroup11.Name = "radGroup11";
     this.radGroup11.Orientation = System.Windows.Forms.Orientation.Horizontal;
     this.radGroup11.ShowBackColor = true;
     this.radGroup11.ShowBorder = true;
     this.radGroup11.Text = "radGroup11";
     this.radGroup11.ToolTipText = null;
     //
     // comboCautaCuvantCheie
     //
     this.comboCautaCuvantCheie.ArrowButtonMinWidth = 16;
     this.comboCautaCuvantCheie.AutoCompleteMode = System.Windows.Forms.AutoCompleteMode.Suggest;
     this.comboCautaCuvantCheie.DefaultValue = null;
     this.comboCautaCuvantCheie.DropDownSizingMode = ((Telerik.WinControls.UI.SizingMode)((Telerik.WinControls.UI.SizingMode.RightBottom | Telerik.WinControls.UI.SizingMode.UpDown)));
     this.comboCautaCuvantCheie.EditorElement = this.comboCautaCuvantCheie;
     this.comboCautaCuvantCheie.Focusable = true;
     this.comboCautaCuvantCheie.MaxSize = new System.Drawing.Size(140, 0);
     this.comboCautaCuvantCheie.MaxValue = null;
     this.comboCautaCuvantCheie.MinSize = new System.Drawing.Size(140, 0);
     this.comboCautaCuvantCheie.MinValue = null;
     this.comboCautaCuvantCheie.Name = "comboCautaCuvantCheie";
     this.comboCautaCuvantCheie.NullValue = null;
     this.comboCautaCuvantCheie.OwnerOffset = 0;
     this.comboCautaCuvantCheie.ReadOnly = false;
     this.comboCautaCuvantCheie.Text = "(Caută cuvânt cheie)";
     this.comboCautaCuvantCheie.ToolTipText = "Caută în cuvintele cheie ale problemelor după o anumită secventă şi afişează rezu" +
         "ltatele.";
     this.comboCautaCuvantCheie.Value = null;
     this.comboCautaCuvantCheie.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.comboCautaCuvantCheie_KeyPress);
     //
     // btnCautaCuvantCheie
     //
     this.btnCautaCuvantCheie.CanFocus = true;
     this.btnCautaCuvantCheie.Class = "ButtonElement";
     this.btnCautaCuvantCheie.Font = new System.Drawing.Font("Verdana", 9F, System.Drawing.FontStyle.Bold);
     this.btnCautaCuvantCheie.Name = "btnCautaCuvantCheie";
     this.btnCautaCuvantCheie.Padding = new System.Windows.Forms.Padding(0, 3, 0, 0);
     this.btnCautaCuvantCheie.ShowBorder = false;
     this.btnCautaCuvantCheie.Text = "Caută cuvânt cheie";
     this.btnCautaCuvantCheie.ToolTipText = "Caută în cuvintele cheie ale problemelor după o anumită secventă şi afişează rezu" +
         "ltatele.";
     this.btnCautaCuvantCheie.Click += new System.EventHandler(this.btnCautaCuvantCheie_Click);
     //
     // btnToateCuvinteleCheie
     //
     this.btnToateCuvinteleCheie.CanFocus = true;
     this.btnToateCuvinteleCheie.Class = "ButtonElement";
     this.btnToateCuvinteleCheie.Image = global::InfoCenter.Properties.Resources.imgToate16;
     this.btnToateCuvinteleCheie.Name = "btnToateCuvinteleCheie";
     this.btnToateCuvinteleCheie.Padding = new System.Windows.Forms.Padding(1);
     this.btnToateCuvinteleCheie.ShowBorder = false;
     this.btnToateCuvinteleCheie.ToolTipText = "Afişează toate cuvintele cheie.";
     this.btnToateCuvinteleCheie.Click += new System.EventHandler(this.btnToateCuvinteleCheie_Click);
     //
     // radChunkActiuniProblema
     //
     this.radChunkActiuniProblema.Items.AddRange(new Telerik.WinControls.RadItem[] {
     this.radGroup5,
     this.radGroup15});
     this.radChunkActiuniProblema.Name = "radChunkActiuniProblema";
     this.radChunkActiuniProblema.Orientation = System.Windows.Forms.Orientation.Horizontal;
     this.radChunkActiuniProblema.Text = "Acţiuni problemă";
     this.radChunkActiuniProblema.ToolTipText = null;
     //
     // radGroup5
     //
     this.radGroup5.Items.AddRange(new Telerik.WinControls.RadItem[] {
     this.btnSalvare});
     this.radGroup5.MinSize = new System.Drawing.Size(22, 22);
     this.radGroup5.Name = "radGroup5";
     this.radGroup5.Orientation = System.Windows.Forms.Orientation.Horizontal;
     this.radGroup5.Padding = new System.Windows.Forms.Padding(1);
     this.radGroup5.ShowBackColor = false;
     this.radGroup5.ShowBorder = false;
     this.radGroup5.Text = "radGroup5";
     this.radGroup5.ToolTipText = null;
     //
     // btnSalvare
     //
     this.btnSalvare.Alignment = System.Drawing.ContentAlignment.MiddleLeft;
     this.btnSalvare.ArrowButtonMinSize = new System.Drawing.Size(12, 12);
     this.btnSalvare.AutoSize = false;
     this.btnSalvare.BackColor = System.Drawing.Color.Empty;
     this.btnSalvare.Bounds = new System.Drawing.Rectangle(0, 0, 61, 61);
     this.btnSalvare.CanFocus = true;
     this.btnSalvare.Class = "RibbonBarButtonElement";
     this.btnSalvare.DefaultItem = null;
     this.btnSalvare.DropDownDirection = Telerik.WinControls.UI.RadDirection.Down;
     this.btnSalvare.ExpandArrowButton = false;
     this.btnSalvare.HasTwoColumnDropDown = false;
     this.btnSalvare.Image = global::InfoCenter.Properties.Resources.imgSaveAs32;
     this.btnSalvare.ImageAlignment = System.Drawing.ContentAlignment.TopCenter;
     this.btnSalvare.Items.AddRange(new Telerik.WinControls.RadItem[] {
     this.radMenuSalvare,
     this.radMenuSalvareCa});
     this.btnSalvare.Margin = new System.Windows.Forms.Padding(0, 0, 1, 1);
     this.btnSalvare.Name = "btnSalvare";
     this.btnSalvare.Padding = new System.Windows.Forms.Padding(0, -3, 0, 0);
     this.btnSalvare.StringAlignment = System.Drawing.StringAlignment.Center;
     this.btnSalvare.Text = "Salvare";
     this.btnSalvare.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
     this.btnSalvare.ToolTipText = "Salvează codul sursă al problemei selectate într-un fişier specificat sau în dosa" +
         "rul de salvare rapidă.";
     //
     // radMenuSalvare
     //
     this.radMenuSalvare.Image = global::InfoCenter.Properties.Resources.imgSave32_2;
     this.radMenuSalvare.Name = "radMenuSalvare";
     this.radMenuSalvare.Text = "Salvare Rapidă";
     this.radMenuSalvare.ToolTipText = "Salvează codul sursă al problemei selectate în dosarul pentru salvare rapidă dacă" +
         " acesta a fost definit.";
     this.radMenuSalvare.Click += new System.EventHandler(this.btnSalvareRapida_Click);
     //
     // radMenuSalvareCa
     //
     this.radMenuSalvareCa.Image = global::InfoCenter.Properties.Resources.imgSaveAs32_2;
     this.radMenuSalvareCa.Name = "radMenuSalvareCa";
     this.radMenuSalvareCa.Text = "Salvare";
     this.radMenuSalvareCa.ToolTipText = "Salvează codul sursă al problemei selectate într-un fişier specificat.";
     this.radMenuSalvareCa.Click += new System.EventHandler(this.btnSalvare_Click);
     //
     // radGroup15
     //
     this.radGroup15.Items.AddRange(new Telerik.WinControls.RadItem[] {
     this.btnMaresteCerinta,
     this.btnMaresteSursa,
     this.btnRezolvaProblema});
     this.radGroup15.Margin = new System.Windows.Forms.Padding(10, 0, 0, 0);
     this.radGroup15.Name = "radGroup15";
     this.radGroup15.Orientation = System.Windows.Forms.Orientation.Horizontal;
     this.radGroup15.Padding = new System.Windows.Forms.Padding(1);
     this.radGroup15.ShowBackColor = false;
     this.radGroup15.ShowBorder = false;
     this.radGroup15.ToolTipText = null;
     //
     // btnMaresteCerinta
     //
     this.btnMaresteCerinta.CanFocus = true;
     this.btnMaresteCerinta.Class = "RibbonBarButtonElement";
     this.btnMaresteCerinta.Image = global::InfoCenter.Properties.Resources.imgZoom32;
     this.btnMaresteCerinta.ImageAlignment = System.Drawing.ContentAlignment.MiddleCenter;
     this.btnMaresteCerinta.Name = "btnMaresteCerinta";
     this.btnMaresteCerinta.Padding = new System.Windows.Forms.Padding(0, 5, 0, 5);
     this.btnMaresteCerinta.Text = "Măreşte cerinţa";
     this.btnMaresteCerinta.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
     this.btnMaresteCerinta.ToolTipText = "Afişează cerinţa într-o fereastră mai mare.";
     this.btnMaresteCerinta.Click += new System.EventHandler(this.btnMaresteCerinta_Click);
     //
     // btnMaresteSursa
     //
     this.btnMaresteSursa.Alignment = System.Drawing.ContentAlignment.BottomLeft;
     this.btnMaresteSursa.CanFocus = true;
     this.btnMaresteSursa.Class = "RibbonBarButtonElement";
     this.btnMaresteSursa.Image = global::InfoCenter.Properties.Resources.imgZoom32;
     this.btnMaresteSursa.ImageAlignment = System.Drawing.ContentAlignment.MiddleCenter;
     this.btnMaresteSursa.Name = "btnMaresteSursa";
     this.btnMaresteSursa.Padding = new System.Windows.Forms.Padding(0, 5, 0, 5);
     this.btnMaresteSursa.Text = "Măreşte codul sursă";
     this.btnMaresteSursa.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
     this.btnMaresteSursa.ToolTipText = "Afişează codul sursă într-o fereastră mai mare.";
     this.btnMaresteSursa.Click += new System.EventHandler(this.btnMaresteSursa_Click);
     //
     // btnRezolvaProblema
     //
     this.btnRezolvaProblema.Alignment = System.Drawing.ContentAlignment.BottomLeft;
     this.btnRezolvaProblema.CanFocus = true;
     this.btnRezolvaProblema.Class = "RibbonBarButtonElement";
     this.btnRezolvaProblema.Image = global::InfoCenter.Properties.Resources.imgOptiuni;
     this.btnRezolvaProblema.ImageAlignment = System.Drawing.ContentAlignment.MiddleCenter;
     this.btnRezolvaProblema.Name = "btnRezolvaProblema";
     this.btnRezolvaProblema.Padding = new System.Windows.Forms.Padding(0, 5, 0, 5);
     this.btnRezolvaProblema.Text = "Rezolvă problema";
     this.btnRezolvaProblema.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
     this.btnRezolvaProblema.ToolTipText = "Compilează codul sursă al problemei selectate şi afişează rezultatul compilării.";
     this.btnRezolvaProblema.Click += new System.EventHandler(this.btnRezolvaProblema_Click);
     //
     // ribbonTabProbleme
     //
     this.ribbonTabProbleme.CanFocus = true;
     this.ribbonTabProbleme.Class = "TabItem";
     //
     // ribbonTabProbleme.ContentPanel
     //
     this.ribbonTabProbleme.ContentPanel.BackColor = System.Drawing.SystemColors.ControlLightLight;
     this.ribbonTabProbleme.ContentPanel.CausesValidation = true;
     this.ribbonTabProbleme.KeyTip = " ";
     this.ribbonTabProbleme.Name = "ribbonTabProbleme";
     this.ribbonTabProbleme.Text = "Probleme";
     this.ribbonTabProbleme.ToolTipText = null;
     this.ribbonTabProbleme.Click += new System.EventHandler(this.ribbonTabProbleme_Click);
     //
     // radChunkInformatiiTest
     //
     this.radChunkInformatiiTest.Items.AddRange(new Telerik.WinControls.RadItem[] {
     this.radGroup2});
     this.radChunkInformatiiTest.Name = "radChunkInformatiiTest";
     this.radChunkInformatiiTest.Orientation = System.Windows.Forms.Orientation.Horizontal;
     this.radChunkInformatiiTest.Text = "Informaţii Test";
     this.radChunkInformatiiTest.ToolTipText = null;
     //
     // radGroup2
     //
     this.radGroup2.Items.AddRange(new Telerik.WinControls.RadItem[] {
     this.btnLblNivelTest,
     this.lblPunctaj,
     this.lblTimpScurs});
     this.radGroup2.Margin = new System.Windows.Forms.Padding(0, 5, 0, 0);
     this.radGroup2.MinSize = new System.Drawing.Size(22, 22);
     this.radGroup2.Name = "radGroup2";
     this.radGroup2.Orientation = System.Windows.Forms.Orientation.Horizontal;
     this.radGroup2.Padding = new System.Windows.Forms.Padding(1);
     this.radGroup2.ShowBackColor = false;
     this.radGroup2.ShowBorder = false;
     this.radGroup2.Text = "radGroup2";
     this.radGroup2.ToolTipText = null;
     //
     // btnLblNivelTest
     //
     this.btnLblNivelTest.CanFocus = true;
     this.btnLblNivelTest.Class = "RibbonBarButtonElement";
     this.btnLblNivelTest.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(130)))), ((int)(((byte)(130)))), ((int)(((byte)(130)))));
     this.btnLblNivelTest.Image = global::InfoCenter.Properties.Resources._0_star_rating;
     this.btnLblNivelTest.ImageAlignment = System.Drawing.ContentAlignment.MiddleCenter;
     this.btnLblNivelTest.Name = "btnLblNivelTest";
     this.btnLblNivelTest.Padding = new System.Windows.Forms.Padding(0, 20, 0, 0);
     this.btnLblNivelTest.Text = "Nivel test";
     this.btnLblNivelTest.TextAlignment = System.Drawing.ContentAlignment.TopCenter;
     this.btnLblNivelTest.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
     this.btnLblNivelTest.ToolTipText = "Afişează nivelul necesar pentru rezolvarea testului selectat (1 stea - începător;" +
         " 2 stele - mediu; 3 stele - avansat).";
     //
     // lblPunctaj
     //
     this.lblPunctaj.CanFocus = true;
     this.lblPunctaj.Class = "RibbonBarButtonElement";
     this.lblPunctaj.Enabled = false;
     this.lblPunctaj.Image = global::InfoCenter.Properties.Resources.imgPunctaj32;
     this.lblPunctaj.ImageAlignment = System.Drawing.ContentAlignment.MiddleCenter;
     this.lblPunctaj.Name = "lblPunctaj";
     this.lblPunctaj.Padding = new System.Windows.Forms.Padding(0, 4, 0, 0);
     this.lblPunctaj.Text = "Punctaj: -";
     this.lblPunctaj.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
     this.lblPunctaj.ToolTipText = "Afişează punctajul primit pentru rezolvarea testului.";
     //
     // lblTimpScurs
     //
     this.lblTimpScurs.CanFocus = true;
     this.lblTimpScurs.Class = "RibbonBarButtonElement";
     this.lblTimpScurs.Enabled = false;
     this.lblTimpScurs.Image = global::InfoCenter.Properties.Resources.imgClock32;
     this.lblTimpScurs.ImageAlignment = System.Drawing.ContentAlignment.MiddleCenter;
     this.lblTimpScurs.Name = "lblTimpScurs";
     this.lblTimpScurs.Padding = new System.Windows.Forms.Padding(0, 4, 0, 0);
     this.lblTimpScurs.Text = "Timp Scurs: -";
     this.lblTimpScurs.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
     this.lblTimpScurs.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
     this.lblTimpScurs.ToolTipText = "Afişează timpul scurs de la începerea testului.";
     //
     // radChunkActiuniTest
     //
     this.radChunkActiuniTest.Items.AddRange(new Telerik.WinControls.RadItem[] {
     this.radGroup1});
     this.radChunkActiuniTest.Name = "radChunkActiuniTest";
     this.radChunkActiuniTest.Orientation = System.Windows.Forms.Orientation.Horizontal;
     this.radChunkActiuniTest.Text = "Acţiuni test";
     this.radChunkActiuniTest.ToolTipText = null;
     //
     // radGroup1
     //
     this.radGroup1.Items.AddRange(new Telerik.WinControls.RadItem[] {
     this.btnIncepeTest,
     this.btnResetTest,
     this.btnCorecteazaTest});
     this.radGroup1.Margin = new System.Windows.Forms.Padding(0, 6, 0, 0);
     this.radGroup1.MinSize = new System.Drawing.Size(22, 22);
     this.radGroup1.Name = "radGroup1";
     this.radGroup1.Orientation = System.Windows.Forms.Orientation.Horizontal;
     this.radGroup1.Padding = new System.Windows.Forms.Padding(1);
     this.radGroup1.ShowBackColor = false;
     this.radGroup1.ShowBorder = false;
     this.radGroup1.Text = "radGroup1";
     this.radGroup1.ToolTipText = null;
     //
     // btnIncepeTest
     //
     this.btnIncepeTest.CanFocus = true;
     this.btnIncepeTest.Class = "RibbonBarButtonElement";
     this.btnIncepeTest.Image = global::InfoCenter.Properties.Resources.imgPlay32;
     this.btnIncepeTest.ImageAlignment = System.Drawing.ContentAlignment.MiddleCenter;
     this.btnIncepeTest.Name = "btnIncepeTest";
     this.btnIncepeTest.Padding = new System.Windows.Forms.Padding(0, 4, 0, 0);
     this.btnIncepeTest.Text = "Începe testul";
     this.btnIncepeTest.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
     this.btnIncepeTest.ToolTipText = "Începe rezolvarea testului selectat.";
     this.btnIncepeTest.Click += new System.EventHandler(this.btnIncepeTest_Click);
     //
     // btnResetTest
     //
     this.btnResetTest.CanFocus = true;
     this.btnResetTest.Class = "RibbonBarButtonElement";
     this.btnResetTest.Image = global::InfoCenter.Properties.Resources.imgRefresh32;
     this.btnResetTest.ImageAlignment = System.Drawing.ContentAlignment.MiddleCenter;
     this.btnResetTest.Name = "btnResetTest";
     this.btnResetTest.Padding = new System.Windows.Forms.Padding(0, 4, 0, 0);
     this.btnResetTest.Text = "Reîncepe testul";
     this.btnResetTest.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
     this.btnResetTest.ToolTipText = "Resetează testul fără a verifica corectitudinea răspunsurilor.";
     this.btnResetTest.Click += new System.EventHandler(this.btnResetTest_Click);
     //
     // btnCorecteazaTest
     //
     this.btnCorecteazaTest.CanFocus = true;
     this.btnCorecteazaTest.Class = "RibbonBarButtonElement";
     this.btnCorecteazaTest.Image = global::InfoCenter.Properties.Resources.imgSetariImprimanta;
     this.btnCorecteazaTest.ImageAlignment = System.Drawing.ContentAlignment.MiddleCenter;
     this.btnCorecteazaTest.Name = "btnCorecteazaTest";
     this.btnCorecteazaTest.Text = "Corectează testul";
     this.btnCorecteazaTest.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
     this.btnCorecteazaTest.ToolTipText = "Opreşte testul, verifică corectitudinea răspunsurilor şi afişează punctajul obţin" +
         "ut.";
     this.btnCorecteazaTest.Click += new System.EventHandler(this.btnCorecteazaTest_Click);
     //
     // ribbonTabTeste
     //
     this.ribbonTabTeste.CanFocus = true;
     this.ribbonTabTeste.Class = "TabItem";
     //
     // ribbonTabTeste.ContentPanel
     //
     this.ribbonTabTeste.ContentPanel.BackColor = System.Drawing.SystemColors.ControlLightLight;
     this.ribbonTabTeste.ContentPanel.CausesValidation = true;
     this.ribbonTabTeste.KeyTip = " ";
     this.ribbonTabTeste.Name = "ribbonTabTeste";
     this.ribbonTabTeste.Text = "Teste";
     this.ribbonTabTeste.ToolTipText = null;
     this.ribbonTabTeste.Click += new System.EventHandler(this.ribbonTabTeste_Click);
     //
     // radChunkActiuniCompilator
     //
     this.radChunkActiuniCompilator.Items.AddRange(new Telerik.WinControls.RadItem[] {
     this.radRibbonBarButtonGroup1});
     this.radChunkActiuniCompilator.Name = "radChunkActiuniCompilator";
     this.radChunkActiuniCompilator.Orientation = System.Windows.Forms.Orientation.Horizontal;
     this.radChunkActiuniCompilator.Text = "Acţiuni compilator";
     this.radChunkActiuniCompilator.ToolTipText = null;
     //
     // radRibbonBarButtonGroup1
     //
     this.radRibbonBarButtonGroup1.Items.AddRange(new Telerik.WinControls.RadItem[] {
     this.btnExecuta,
     this.btnTestareProgram,
     this.btnTestareAutomaticaProgram,
     this.btnSaveCodSursa,
     this.btnFragmenteDeCod});
     this.radRibbonBarButtonGroup1.MinSize = new System.Drawing.Size(22, 22);
     this.radRibbonBarButtonGroup1.Name = "radRibbonBarButtonGroup1";
     this.radRibbonBarButtonGroup1.Orientation = System.Windows.Forms.Orientation.Horizontal;
     this.radRibbonBarButtonGroup1.Padding = new System.Windows.Forms.Padding(1);
     this.radRibbonBarButtonGroup1.ShowBackColor = false;
     this.radRibbonBarButtonGroup1.ShowBorder = false;
     this.radRibbonBarButtonGroup1.Text = "radRibbonBarButtonGroup1";
     this.radRibbonBarButtonGroup1.ToolTipText = null;
     //
     // btnExecuta
     //
     this.btnExecuta.CanFocus = true;
     this.btnExecuta.Class = "RibbonBarButtonElement";
     this.btnExecuta.Image = global::InfoCenter.Properties.Resources.imgRun1;
     this.btnExecuta.ImageAlignment = System.Drawing.ContentAlignment.MiddleCenter;
     this.btnExecuta.Name = "btnExecuta";
     this.btnExecuta.Padding = new System.Windows.Forms.Padding(0, 8, 0, 0);
     this.btnExecuta.Text = "Execută programul";
     this.btnExecuta.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
     this.btnExecuta.Click += new System.EventHandler(this.btnExecuta_Click);
     //
     // btnTestareProgram
     //
     this.btnTestareProgram.CanFocus = true;
     this.btnTestareProgram.Class = "RibbonBarButtonElement";
     this.btnTestareProgram.Image = ((System.Drawing.Image)(resources.GetObject("btnTestareProgram.Image")));
     this.btnTestareProgram.ImageAlignment = System.Drawing.ContentAlignment.MiddleCenter;
     this.btnTestareProgram.Name = "btnTestareProgram";
     this.btnTestareProgram.Padding = new System.Windows.Forms.Padding(0, 8, 0, 0);
     this.btnTestareProgram.Text = "Date de intrare";
     this.btnTestareProgram.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
     this.btnTestareProgram.ToolTipText = "Testează codul sursă din compilator cu date de la tastatură.";
     this.btnTestareProgram.Click += new System.EventHandler(this.btnTestareProgram_Click);
     //
     // btnTestareAutomaticaProgram
     //
     this.btnTestareAutomaticaProgram.CanFocus = true;
     this.btnTestareAutomaticaProgram.Class = "RibbonBarButtonElement";
     this.btnTestareAutomaticaProgram.Image = ((System.Drawing.Image)(resources.GetObject("btnTestareAutomaticaProgram.Image")));
     this.btnTestareAutomaticaProgram.ImageAlignment = System.Drawing.ContentAlignment.MiddleCenter;
     this.btnTestareAutomaticaProgram.Name = "btnTestareAutomaticaProgram";
     this.btnTestareAutomaticaProgram.Padding = new System.Windows.Forms.Padding(0, 8, 0, 0);
     this.btnTestareAutomaticaProgram.Text = "Teste automate";
     this.btnTestareAutomaticaProgram.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
     this.btnTestareAutomaticaProgram.ToolTipText = "Testează codul sursă din compilator cu date predefinite.";
     this.btnTestareAutomaticaProgram.Click += new System.EventHandler(this.btnTestareAutomaticaProgram_Click);
     //
     // btnSaveCodSursa
     //
     this.btnSaveCodSursa.CanFocus = true;
     this.btnSaveCodSursa.Class = "RibbonBarButtonElement";
     this.btnSaveCodSursa.Image = global::InfoCenter.Properties.Resources.imgSave32;
     this.btnSaveCodSursa.ImageAlignment = System.Drawing.ContentAlignment.MiddleCenter;
     this.btnSaveCodSursa.Name = "btnSaveCodSursa";
     this.btnSaveCodSursa.Padding = new System.Windows.Forms.Padding(0, 12, 0, 0);
     this.btnSaveCodSursa.Text = "Salvează codul sursă";
     this.btnSaveCodSursa.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
     this.btnSaveCodSursa.ToolTipText = "Salvează codul sursă scris în compilator (CTRL+S)";
     this.btnSaveCodSursa.Click += new System.EventHandler(this.btnSaveCodSursa_Click);
     //
     // btnFragmenteDeCod
     //
     this.btnFragmenteDeCod.CanFocus = true;
     this.btnFragmenteDeCod.Class = "RibbonBarButtonElement";
     this.btnFragmenteDeCod.Image = global::InfoCenter.Properties.Resources.codesnippet32;
     this.btnFragmenteDeCod.ImageAlignment = System.Drawing.ContentAlignment.MiddleCenter;
     this.btnFragmenteDeCod.Name = "btnFragmenteDeCod";
     this.btnFragmenteDeCod.Padding = new System.Windows.Forms.Padding(0, 12, 0, 0);
     this.btnFragmenteDeCod.Text = "Fragmente de cod";
     this.btnFragmenteDeCod.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
     this.btnFragmenteDeCod.Click += new System.EventHandler(this.btnFragmenteDeCod_Click);
     //
     // radRibbonBarChunk1
     //
     this.radRibbonBarChunk1.Items.AddRange(new Telerik.WinControls.RadItem[] {
     this.radRibbonBarButtonGroup2});
     this.radRibbonBarChunk1.Name = "radRibbonBarChunk1";
     this.radRibbonBarChunk1.Orientation = System.Windows.Forms.Orientation.Horizontal;
     this.radRibbonBarChunk1.Text = "Font cod sursă";
     this.radRibbonBarChunk1.ToolTipText = null;
     //
     // radRibbonBarButtonGroup2
     //
     this.radRibbonBarButtonGroup2.Alignment = System.Drawing.ContentAlignment.MiddleCenter;
     this.radRibbonBarButtonGroup2.Items.AddRange(new Telerik.WinControls.RadItem[] {
     this.radRibbonBarButtonGroup3,
     this.radRibbonBarButtonGroup4});
     this.radRibbonBarButtonGroup2.MinSize = new System.Drawing.Size(22, 22);
     this.radRibbonBarButtonGroup2.Name = "radRibbonBarButtonGroup2";
     this.radRibbonBarButtonGroup2.Orientation = System.Windows.Forms.Orientation.Vertical;
     this.radRibbonBarButtonGroup2.Padding = new System.Windows.Forms.Padding(0, 11, 0, 0);
     this.radRibbonBarButtonGroup2.ShowBackColor = false;
     this.radRibbonBarButtonGroup2.ShowBorder = false;
     this.radRibbonBarButtonGroup2.Text = "radRibbonBarButtonGroup2";
     this.radRibbonBarButtonGroup2.ToolTipText = null;
     //
     // radRibbonBarButtonGroup3
     //
     this.radRibbonBarButtonGroup3.Items.AddRange(new Telerik.WinControls.RadItem[] {
     this.comboFont2,
     this.radRibbonBarButtonGroup9});
     this.radRibbonBarButtonGroup3.Name = "radRibbonBarButtonGroup3";
     this.radRibbonBarButtonGroup3.Orientation = System.Windows.Forms.Orientation.Vertical;
     this.radRibbonBarButtonGroup3.ShowBackColor = false;
     this.radRibbonBarButtonGroup3.ShowBorder = true;
     this.radRibbonBarButtonGroup3.Text = "radRibbonBarButtonGroup3";
     this.radRibbonBarButtonGroup3.ToolTipText = null;
     //
     // comboFont2
     //
     this.comboFont2.ArrowButtonMinWidth = 16;
     this.comboFont2.AutoSize = false;
     this.comboFont2.Bounds = new System.Drawing.Rectangle(0, 0, 146, 21);
     this.comboFont2.DefaultValue = null;
     this.comboFont2.DropDownSizingMode = ((Telerik.WinControls.UI.SizingMode)((Telerik.WinControls.UI.SizingMode.RightBottom | Telerik.WinControls.UI.SizingMode.UpDown)));
     this.comboFont2.EditorElement = this.comboFont2;
     this.comboFont2.Focusable = true;
     this.comboFont2.Items.AddRange(new Telerik.WinControls.RadItem[] {
     this.radComboBoxItem12,
     this.radComboBoxItem13,
     this.radComboBoxItem14,
     this.radComboBoxItem15,
     this.radComboBoxItem16,
     this.radComboBoxItem17,
     this.radComboBoxItem18});
     this.comboFont2.MaxSize = new System.Drawing.Size(140, 0);
     this.comboFont2.MaxValue = null;
     this.comboFont2.MinSize = new System.Drawing.Size(140, 0);
     this.comboFont2.MinValue = null;
     this.comboFont2.Name = "comboFont2";
     this.comboFont2.NullValue = null;
     this.comboFont2.OwnerOffset = 0;
     this.comboFont2.ReadOnly = false;
     this.comboFont2.Text = "(Font)";
     this.comboFont2.ToolTipText = null;
     this.comboFont2.Value = null;
     this.comboFont2.TextChanged += new System.EventHandler(this.comboFont2_TextChanged);
     //
     // radComboBoxItem12
     //
     this.radComboBoxItem12.Name = "radComboBoxItem12";
     this.radComboBoxItem12.Text = "Arial";
     this.radComboBoxItem12.TextSeparatorVisibility = Telerik.WinControls.ElementVisibility.Visible;
     this.radComboBoxItem12.ToolTipText = null;
     //
     // radComboBoxItem13
     //
     this.radComboBoxItem13.Name = "radComboBoxItem13";
     this.radComboBoxItem13.Text = "Comic Sans MS";
     this.radComboBoxItem13.TextSeparatorVisibility = Telerik.WinControls.ElementVisibility.Visible;
     this.radComboBoxItem13.ToolTipText = null;
     //
     // radComboBoxItem14
     //
     this.radComboBoxItem14.Name = "radComboBoxItem14";
     this.radComboBoxItem14.Text = "Courier New";
     this.radComboBoxItem14.TextSeparatorVisibility = Telerik.WinControls.ElementVisibility.Visible;
     this.radComboBoxItem14.ToolTipText = null;
     //
     // radComboBoxItem15
     //
     this.radComboBoxItem15.Name = "radComboBoxItem15";
     this.radComboBoxItem15.Text = "Georgia";
     this.radComboBoxItem15.TextSeparatorVisibility = Telerik.WinControls.ElementVisibility.Visible;
     this.radComboBoxItem15.ToolTipText = null;
     //
     // radComboBoxItem16
     //
     this.radComboBoxItem16.Name = "radComboBoxItem16";
     this.radComboBoxItem16.Text = "Tahoma";
     this.radComboBoxItem16.TextSeparatorVisibility = Telerik.WinControls.ElementVisibility.Visible;
     this.radComboBoxItem16.ToolTipText = null;
     //
     // radComboBoxItem17
     //
     this.radComboBoxItem17.Name = "radComboBoxItem17";
     this.radComboBoxItem17.Text = "Times New Roman";
     this.radComboBoxItem17.TextSeparatorVisibility = Telerik.WinControls.ElementVisibility.Visible;
     this.radComboBoxItem17.ToolTipText = null;
     //
     // radComboBoxItem18
     //
     this.radComboBoxItem18.Name = "radComboBoxItem18";
     this.radComboBoxItem18.Text = "Verdana";
     this.radComboBoxItem18.TextSeparatorVisibility = Telerik.WinControls.ElementVisibility.Visible;
     this.radComboBoxItem18.ToolTipText = null;
     //
     // radRibbonBarButtonGroup9
     //
     this.radRibbonBarButtonGroup9.Items.AddRange(new Telerik.WinControls.RadItem[] {
     this.comboFontSize2,
     this.btnFontDecrease2,
     this.btnFontIncrease2});
     this.radRibbonBarButtonGroup9.Name = "radRibbonBarButtonGroup9";
     this.radRibbonBarButtonGroup9.Orientation = System.Windows.Forms.Orientation.Horizontal;
     this.radRibbonBarButtonGroup9.ShowBackColor = true;
     this.radRibbonBarButtonGroup9.ShowBorder = true;
     this.radRibbonBarButtonGroup9.Text = "radRibbonBarButtonGroup9";
     //
     // comboFontSize2
     //
     this.comboFontSize2.ArrowButtonMinWidth = 16;
     this.comboFontSize2.AutoSize = false;
     this.comboFontSize2.Bounds = new System.Drawing.Rectangle(0, 0, 50, 21);
     this.comboFontSize2.DefaultValue = null;
     this.comboFontSize2.DropDownSizingMode = ((Telerik.WinControls.UI.SizingMode)((Telerik.WinControls.UI.SizingMode.RightBottom | Telerik.WinControls.UI.SizingMode.UpDown)));
     this.comboFontSize2.EditorElement = this.comboFontSize2;
     this.comboFontSize2.Focusable = true;
     this.comboFontSize2.Items.AddRange(new Telerik.WinControls.RadItem[] {
     this.radComboBoxItem25,
     this.radComboBoxItem26,
     this.radComboBoxItem27,
     this.radComboBoxItem28});
     this.comboFontSize2.MaxSize = new System.Drawing.Size(140, 0);
     this.comboFontSize2.MaxValue = null;
     this.comboFontSize2.MinSize = new System.Drawing.Size(140, 0);
     this.comboFontSize2.MinValue = null;
     this.comboFontSize2.Name = "comboFontSize2";
     this.comboFontSize2.NullValue = null;
     this.comboFontSize2.OwnerOffset = 0;
     this.comboFontSize2.Padding = new System.Windows.Forms.Padding(1);
     this.comboFontSize2.ReadOnly = false;
     this.comboFontSize2.Text = "10";
     this.comboFontSize2.ToolTipText = null;
     this.comboFontSize2.Value = null;
     this.comboFontSize2.TextChanged += new System.EventHandler(this.comboFontSize2_TextChanged);
     //
     // radComboBoxItem25
     //
     this.radComboBoxItem25.Name = "radComboBoxItem25";
     this.radComboBoxItem25.Text = "8";
     this.radComboBoxItem25.TextSeparatorVisibility = Telerik.WinControls.ElementVisibility.Visible;
     this.radComboBoxItem25.ToolTipText = null;
     //
     // radComboBoxItem26
     //
     this.radComboBoxItem26.Name = "radComboBoxItem26";
     this.radComboBoxItem26.Text = "10";
     this.radComboBoxItem26.TextSeparatorVisibility = Telerik.WinControls.ElementVisibility.Visible;
     this.radComboBoxItem26.ToolTipText = null;
     //
     // radComboBoxItem27
     //
     this.radComboBoxItem27.Name = "radComboBoxItem27";
     this.radComboBoxItem27.Text = "13";
     this.radComboBoxItem27.TextSeparatorVisibility = Telerik.WinControls.ElementVisibility.Visible;
     this.radComboBoxItem27.ToolTipText = null;
     //
     // radComboBoxItem28
     //
     this.radComboBoxItem28.Name = "radComboBoxItem28";
     this.radComboBoxItem28.Text = "18";
     this.radComboBoxItem28.TextSeparatorVisibility = Telerik.WinControls.ElementVisibility.Visible;
     this.radComboBoxItem28.ToolTipText = null;
     //
     // btnFontDecrease2
     //
     this.btnFontDecrease2.CanFocus = true;
     this.btnFontDecrease2.Class = "ButtonElement";
     this.btnFontDecrease2.Image = global::InfoCenter.Properties.Resources.imgDecreaseFont16;
     this.btnFontDecrease2.Margin = new System.Windows.Forms.Padding(2);
     this.btnFontDecrease2.Name = "btnFontDecrease2";
     this.btnFontDecrease2.Padding = new System.Windows.Forms.Padding(2);
     this.btnFontDecrease2.ShowBorder = false;
     this.btnFontDecrease2.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
     this.btnFontDecrease2.ToolTipText = null;
     this.btnFontDecrease2.Click += new System.EventHandler(this.btnFontDecrease2_Click);
     //
     // btnFontIncrease2
     //
     this.btnFontIncrease2.CanFocus = true;
     this.btnFontIncrease2.Class = "ButtonElement";
     this.btnFontIncrease2.DisplayStyle = Telerik.WinControls.DisplayStyle.Image;
     this.btnFontIncrease2.Image = global::InfoCenter.Properties.Resources.imgIncreaseFont16;
     this.btnFontIncrease2.Margin = new System.Windows.Forms.Padding(2);
     this.btnFontIncrease2.Name = "btnFontIncrease2";
     this.btnFontIncrease2.Padding = new System.Windows.Forms.Padding(2);
     this.btnFontIncrease2.ShowBorder = false;
     this.btnFontIncrease2.Text = "radButtonElement3";
     this.btnFontIncrease2.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
     this.btnFontIncrease2.ToolTipText = null;
     this.btnFontIncrease2.Click += new System.EventHandler(this.btnFontIncrease2_Click);
     //
     // radRibbonBarButtonGroup4
     //
     this.radRibbonBarButtonGroup4.Alignment = System.Drawing.ContentAlignment.BottomLeft;
     this.radRibbonBarButtonGroup4.Name = "radRibbonBarButtonGroup4";
     this.radRibbonBarButtonGroup4.Orientation = System.Windows.Forms.Orientation.Horizontal;
     this.radRibbonBarButtonGroup4.Padding = new System.Windows.Forms.Padding(0, 1, 0, 0);
     this.radRibbonBarButtonGroup4.ShowBackColor = true;
     this.radRibbonBarButtonGroup4.ShowBorder = true;
     this.radRibbonBarButtonGroup4.Text = "radRibbonBarButtonGroup4";
     this.radRibbonBarButtonGroup4.ToolTipText = null;
     //
     // ribbonTabCompilator
     //
     this.ribbonTabCompilator.CanFocus = true;
     this.ribbonTabCompilator.Class = "TabItem";
     //
     // ribbonTabCompilator.ContentPanel
     //
     this.ribbonTabCompilator.ContentPanel.BackColor = System.Drawing.SystemColors.ControlLightLight;
     this.ribbonTabCompilator.ContentPanel.CausesValidation = true;
     this.ribbonTabCompilator.IsSelected = true;
     this.ribbonTabCompilator.KeyTip = " ";
     this.ribbonTabCompilator.Name = "ribbonTabCompilator";
     this.ribbonTabCompilator.Text = "Rezolvă";
     this.ribbonTabCompilator.ToolTipText = null;
     this.ribbonTabCompilator.Click += new System.EventHandler(this.ribbonTabCompilator_Click);
     //
     // radComboBoxItem6
     //
     this.radComboBoxItem6.Name = "radComboBoxItem6";
     this.radComboBoxItem6.Text = "8";
     this.radComboBoxItem6.TextSeparatorVisibility = Telerik.WinControls.ElementVisibility.Visible;
     this.radComboBoxItem6.ToolTipText = null;
     //
     // radComboBoxItem7
     //
     this.radComboBoxItem7.Name = "radComboBoxItem7";
     this.radComboBoxItem7.Text = "9";
     this.radComboBoxItem7.TextSeparatorVisibility = Telerik.WinControls.ElementVisibility.Visible;
     this.radComboBoxItem7.ToolTipText = null;
     //
     // radComboBoxItem8
     //
     this.radComboBoxItem8.Name = "radComboBoxItem8";
     this.radComboBoxItem8.Text = "10";
     this.radComboBoxItem8.TextSeparatorVisibility = Telerik.WinControls.ElementVisibility.Visible;
     this.radComboBoxItem8.ToolTipText = null;
     //
     // radComboBoxItem9
     //
     this.radComboBoxItem9.Name = "radComboBoxItem9";
     this.radComboBoxItem9.Text = "13";
     this.radComboBoxItem9.TextSeparatorVisibility = Telerik.WinControls.ElementVisibility.Visible;
     this.radComboBoxItem9.ToolTipText = null;
     //
     // radComboBoxItem10
     //
     this.radComboBoxItem10.Name = "radComboBoxItem10";
     this.radComboBoxItem10.Text = "20";
     this.radComboBoxItem10.TextSeparatorVisibility = Telerik.WinControls.ElementVisibility.Visible;
     this.radComboBoxItem10.ToolTipText = null;
     //
     // radComboBoxItem11
     //
     this.radComboBoxItem11.Name = "radComboBoxItem11";
     this.radComboBoxItem11.Text = "25";
     this.radComboBoxItem11.TextSeparatorVisibility = Telerik.WinControls.ElementVisibility.Visible;
     this.radComboBoxItem11.ToolTipText = null;
     //
     // tabControlMain
     //
     this.tabControlMain.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.tabControlMain.Controls.Add(this.tabPageStart);
     this.tabControlMain.Controls.Add(this.tabPageLectii);
     this.tabControlMain.Controls.Add(this.tabPageProbleme);
     this.tabControlMain.Controls.Add(this.tabPageTeste);
     this.tabControlMain.Controls.Add(this.tabPageCompilator);
     this.tabControlMain.Location = new System.Drawing.Point(0, 118);
     this.tabControlMain.Name = "tabControlMain";
     this.tabControlMain.SelectedIndex = 0;
     this.tabControlMain.Size = new System.Drawing.Size(951, 509);
     this.tabControlMain.TabIndex = 0;
     //
     // tabPageStart
     //
     this.tabPageStart.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(194)))), ((int)(((byte)(217)))), ((int)(((byte)(247)))));
     this.tabPageStart.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("tabPageStart.BackgroundImage")));
     this.tabPageStart.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
     this.tabPageStart.Controls.Add(this.label10);
     this.tabPageStart.Controls.Add(this.label9);
     this.tabPageStart.Controls.Add(this.label4);
     this.tabPageStart.Controls.Add(this.label3);
     this.tabPageStart.Controls.Add(this.lblLinkCompilator);
     this.tabPageStart.Controls.Add(this.lblAutentificareProfesor);
     this.tabPageStart.Controls.Add(this.lblLinkTeste);
     this.tabPageStart.Controls.Add(this.lblLinkProbleme);
     this.tabPageStart.Controls.Add(this.lblLinkLectii);
     this.tabPageStart.Controls.Add(this.label2);
     this.tabPageStart.ForeColor = System.Drawing.Color.White;
     this.tabPageStart.Location = new System.Drawing.Point(4, 22);
     this.tabPageStart.Name = "tabPageStart";
     this.tabPageStart.Padding = new System.Windows.Forms.Padding(3);
     this.tabPageStart.Size = new System.Drawing.Size(943, 483);
     this.tabPageStart.TabIndex = 4;
     this.tabPageStart.Text = "Pagina de start";
     //
     // label10
     //
     this.label10.AutoSize = true;
     this.label10.BackColor = System.Drawing.Color.Transparent;
     this.label10.Font = new System.Drawing.Font("Tahoma", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label10.Location = new System.Drawing.Point(132, 136);
     this.label10.Name = "label10";
     this.label10.Size = new System.Drawing.Size(148, 18);
     this.label10.TabIndex = 12;
     this.label10.Text = "Aici este locul perfect!";
     //
     // label9
     //
     this.label9.AutoSize = true;
     this.label9.BackColor = System.Drawing.Color.Transparent;
     this.label9.Font = new System.Drawing.Font("Tahoma", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label9.Location = new System.Drawing.Point(315, 91);
     this.label9.Name = "label9";
     this.label9.Size = new System.Drawing.Size(103, 18);
     this.label9.TabIndex = 11;
     this.label9.Text = "şi programare,";
     //
     // label4
     //
     this.label4.AutoSize = true;
     this.label4.BackColor = System.Drawing.Color.Transparent;
     this.label4.Font = new System.Drawing.Font("Microsoft Sans Serif", 24F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label4.Location = new System.Drawing.Point(147, 77);
     this.label4.Name = "label4";
     this.label4.Size = new System.Drawing.Size(162, 37);
     this.label4.TabIndex = 10;
     this.label4.Text = "înveţi C++";
     //
     // label3
     //
     this.label3.AutoSize = true;
     this.label3.BackColor = System.Drawing.Color.Transparent;
     this.label3.Font = new System.Drawing.Font("Tahoma", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label3.ForeColor = System.Drawing.Color.White;
     this.label3.Location = new System.Drawing.Point(38, 91);
     this.label3.Name = "label3";
     this.label3.Size = new System.Drawing.Size(114, 18);
     this.label3.TabIndex = 9;
     this.label3.Text = "Dacă doreşti să ";
     //
     // lblLinkCompilator
     //
     this.lblLinkCompilator.AutoSize = true;
     this.lblLinkCompilator.BackColor = System.Drawing.Color.Transparent;
     this.lblLinkCompilator.Font = new System.Drawing.Font("Tahoma", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblLinkCompilator.ForeColor = System.Drawing.Color.White;
     this.lblLinkCompilator.LinkColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
     this.lblLinkCompilator.Location = new System.Drawing.Point(38, 287);
     this.lblLinkCompilator.Name = "lblLinkCompilator";
     this.lblLinkCompilator.Size = new System.Drawing.Size(63, 19);
     this.lblLinkCompilator.TabIndex = 8;
     this.lblLinkCompilator.TabStop = true;
     this.lblLinkCompilator.Text = "Rezolvă";
     this.lblLinkCompilator.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.lblLinkCompilator_LinkClicked);
     //
     // lblAutentificareProfesor
     //
     this.lblAutentificareProfesor.AutoSize = true;
     this.lblAutentificareProfesor.BackColor = System.Drawing.Color.Transparent;
     this.lblAutentificareProfesor.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblAutentificareProfesor.ForeColor = System.Drawing.Color.White;
     this.lblAutentificareProfesor.LinkColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
     this.lblAutentificareProfesor.Location = new System.Drawing.Point(12, 416);
     this.lblAutentificareProfesor.Name = "lblAutentificareProfesor";
     this.lblAutentificareProfesor.Size = new System.Drawing.Size(454, 16);
     this.lblAutentificareProfesor.TabIndex = 6;
     this.lblAutentificareProfesor.TabStop = true;
     this.lblAutentificareProfesor.Text = "> Dacă sunteţi profesor şi vreţi să modificaţi conţinutul aplicaţiei daţi click a" +
         "ici.";
     this.lblAutentificareProfesor.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.lblAutentificareProfesor_LinkClicked);
     //
     // lblLinkTeste
     //
     this.lblLinkTeste.AutoSize = true;
     this.lblLinkTeste.BackColor = System.Drawing.Color.Transparent;
     this.lblLinkTeste.Font = new System.Drawing.Font("Tahoma", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblLinkTeste.ForeColor = System.Drawing.Color.White;
     this.lblLinkTeste.LinkColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
     this.lblLinkTeste.Location = new System.Drawing.Point(38, 252);
     this.lblLinkTeste.Name = "lblLinkTeste";
     this.lblLinkTeste.Size = new System.Drawing.Size(47, 19);
     this.lblLinkTeste.TabIndex = 5;
     this.lblLinkTeste.TabStop = true;
     this.lblLinkTeste.Text = "Teste";
     this.lblLinkTeste.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.lblLinkTest_LinkClicked);
     //
     // lblLinkProbleme
     //
     this.lblLinkProbleme.AutoSize = true;
     this.lblLinkProbleme.BackColor = System.Drawing.Color.Transparent;
     this.lblLinkProbleme.Font = new System.Drawing.Font("Tahoma", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblLinkProbleme.ForeColor = System.Drawing.Color.White;
     this.lblLinkProbleme.LinkColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
     this.lblLinkProbleme.Location = new System.Drawing.Point(38, 218);
     this.lblLinkProbleme.Name = "lblLinkProbleme";
     this.lblLinkProbleme.Size = new System.Drawing.Size(76, 19);
     this.lblLinkProbleme.TabIndex = 4;
     this.lblLinkProbleme.TabStop = true;
     this.lblLinkProbleme.Text = "Probleme";
     this.lblLinkProbleme.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.lblLinkProbleme_LinkClicked);
     //
     // lblLinkLectii
     //
     this.lblLinkLectii.AutoSize = true;
     this.lblLinkLectii.BackColor = System.Drawing.Color.Transparent;
     this.lblLinkLectii.Font = new System.Drawing.Font("Tahoma", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblLinkLectii.ForeColor = System.Drawing.Color.White;
     this.lblLinkLectii.LinkColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
     this.lblLinkLectii.Location = new System.Drawing.Point(38, 185);
     this.lblLinkLectii.Name = "lblLinkLectii";
     this.lblLinkLectii.Size = new System.Drawing.Size(45, 19);
     this.lblLinkLectii.TabIndex = 3;
     this.lblLinkLectii.TabStop = true;
     this.lblLinkLectii.Text = "Lecţii";
     this.lblLinkLectii.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.lblLinkLectii_LinkClicked);
     //
     // label2
     //
     this.label2.AutoSize = true;
     this.label2.BackColor = System.Drawing.Color.Transparent;
     this.label2.Font = new System.Drawing.Font("Tahoma", 15.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label2.ForeColor = System.Drawing.Color.MidnightBlue;
     this.label2.Location = new System.Drawing.Point(338, 29);
     this.label2.Name = "label2";
     this.label2.Size = new System.Drawing.Size(267, 25);
     this.label2.TabIndex = 0;
     this.label2.Text = "Bun venit la Info Center!";
     //
     // tabPageLectii
     //
     this.tabPageLectii.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(194)))), ((int)(((byte)(217)))), ((int)(((byte)(247)))));
     this.tabPageLectii.Controls.Add(this.splitContainer3);
     this.tabPageLectii.Location = new System.Drawing.Point(4, 22);
     this.tabPageLectii.Name = "tabPageLectii";
     this.tabPageLectii.Size = new System.Drawing.Size(943, 483);
     this.tabPageLectii.TabIndex = 0;
     this.tabPageLectii.Text = "Lecţii";
     this.tabPageLectii.UseVisualStyleBackColor = true;
     //
     // splitContainer3
     //
     this.splitContainer3.Dock = System.Windows.Forms.DockStyle.Fill;
     this.splitContainer3.Location = new System.Drawing.Point(0, 0);
     this.splitContainer3.Name = "splitContainer3";
     //
     // splitContainer3.Panel1
     //
     this.splitContainer3.Panel1.Controls.Add(this.gBoxListaLectii);
     //
     // splitContainer3.Panel2
     //
     this.splitContainer3.Panel2.Controls.Add(this.gBoxContinutLectie);
     this.splitContainer3.Size = new System.Drawing.Size(943, 483);
     this.splitContainer3.SplitterDistance = 222;
     this.splitContainer3.TabIndex = 2;
     //
     // gBoxListaLectii
     //
     this.gBoxListaLectii.Controls.Add(this.cuprinsLectii);
     this.gBoxListaLectii.Dock = System.Windows.Forms.DockStyle.Fill;
     this.gBoxListaLectii.Location = new System.Drawing.Point(0, 0);
     this.gBoxListaLectii.Name = "gBoxListaLectii";
     this.gBoxListaLectii.Size = new System.Drawing.Size(222, 483);
     this.gBoxListaLectii.TabIndex = 1;
     this.gBoxListaLectii.TabStop = false;
     this.gBoxListaLectii.Text = "Listă lecţii";
     //
     // cuprinsLectii
     //
     this.cuprinsLectii.BackColor = System.Drawing.Color.White;
     this.cuprinsLectii.Dock = System.Windows.Forms.DockStyle.Fill;
     this.cuprinsLectii.Font = new System.Drawing.Font("Tahoma", 8.6F);
     this.cuprinsLectii.Location = new System.Drawing.Point(3, 16);
     this.cuprinsLectii.Name = "cuprinsLectii";
     this.cuprinsLectii.Size = new System.Drawing.Size(216, 464);
     this.cuprinsLectii.TabIndex = 0;
     this.cuprinsLectii.Selected += new System.EventHandler(this.cuprinsLectii_Selected);
     //
     // gBoxContinutLectie
     //
     this.gBoxContinutLectie.Controls.Add(this.lblStartLectie);
     this.gBoxContinutLectie.Controls.Add(this.navigatorLectii);
     this.gBoxContinutLectie.Dock = System.Windows.Forms.DockStyle.Fill;
     this.gBoxContinutLectie.Location = new System.Drawing.Point(0, 0);
     this.gBoxContinutLectie.Name = "gBoxContinutLectie";
     this.gBoxContinutLectie.Size = new System.Drawing.Size(717, 483);
     this.gBoxContinutLectie.TabIndex = 1;
     this.gBoxContinutLectie.TabStop = false;
     this.gBoxContinutLectie.Text = "Conţinutul lecţiei";
     //
     // lblStartLectie
     //
     this.lblStartLectie.AutoSize = true;
     this.lblStartLectie.BackColor = System.Drawing.Color.White;
     this.lblStartLectie.Font = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblStartLectie.ForeColor = System.Drawing.Color.Black;
     this.lblStartLectie.Location = new System.Drawing.Point(138, 193);
     this.lblStartLectie.Name = "lblStartLectie";
     this.lblStartLectie.Size = new System.Drawing.Size(428, 23);
     this.lblStartLectie.TabIndex = 1;
     this.lblStartLectie.Text = "Pentru a începe alege o lecţie din lista din stânga.";
     //
     // navigatorLectii
     //
     this.navigatorLectii.Dock = System.Windows.Forms.DockStyle.Fill;
     this.navigatorLectii.Location = new System.Drawing.Point(3, 16);
     this.navigatorLectii.Margin = new System.Windows.Forms.Padding(0);
     this.navigatorLectii.MinimumSize = new System.Drawing.Size(20, 20);
     this.navigatorLectii.Name = "navigatorLectii";
     this.navigatorLectii.Size = new System.Drawing.Size(711, 464);
     this.navigatorLectii.TabIndex = 0;
     this.navigatorLectii.Url = new System.Uri("", System.UriKind.Relative);
     //
     // tabPageProbleme
     //
     this.tabPageProbleme.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(194)))), ((int)(((byte)(217)))), ((int)(((byte)(247)))));
     this.tabPageProbleme.Controls.Add(this.splitContainer1);
     this.tabPageProbleme.Location = new System.Drawing.Point(4, 22);
     this.tabPageProbleme.Name = "tabPageProbleme";
     this.tabPageProbleme.Size = new System.Drawing.Size(943, 483);
     this.tabPageProbleme.TabIndex = 1;
     this.tabPageProbleme.Text = "Probleme";
     this.tabPageProbleme.UseVisualStyleBackColor = true;
     //
     // splitContainer1
     //
     this.splitContainer1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.splitContainer1.Location = new System.Drawing.Point(0, 0);
     this.splitContainer1.Name = "splitContainer1";
     //
     // splitContainer1.Panel1
     //
     this.splitContainer1.Panel1.Controls.Add(this.tabControlSubProbleme);
     //
     // splitContainer1.Panel2
     //
     this.splitContainer1.Panel2.Controls.Add(this.splitContainer4);
     this.splitContainer1.Size = new System.Drawing.Size(943, 483);
     this.splitContainer1.SplitterDistance = 259;
     this.splitContainer1.TabIndex = 3;
     //
     // tabControlSubProbleme
     //
     this.tabControlSubProbleme.Controls.Add(this.tabPageListaProbleme);
     this.tabControlSubProbleme.Controls.Add(this.tabPageCuvinteCheie);
     this.tabControlSubProbleme.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tabControlSubProbleme.Location = new System.Drawing.Point(0, 0);
     this.tabControlSubProbleme.Margin = new System.Windows.Forms.Padding(0);
     this.tabControlSubProbleme.Name = "tabControlSubProbleme";
     this.tabControlSubProbleme.SelectedIndex = 0;
     this.tabControlSubProbleme.Size = new System.Drawing.Size(259, 483);
     this.tabControlSubProbleme.TabIndex = 2;
     //
     // tabPageListaProbleme
     //
     this.tabPageListaProbleme.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(194)))), ((int)(((byte)(217)))), ((int)(((byte)(247)))));
     this.tabPageListaProbleme.Controls.Add(this.listaProbleme);
     this.tabPageListaProbleme.Location = new System.Drawing.Point(4, 22);
     this.tabPageListaProbleme.Name = "tabPageListaProbleme";
     this.tabPageListaProbleme.Padding = new System.Windows.Forms.Padding(3);
     this.tabPageListaProbleme.Size = new System.Drawing.Size(251, 457);
     this.tabPageListaProbleme.TabIndex = 1;
     this.tabPageListaProbleme.Text = "Probleme";
     //
     // listaProbleme
     //
     this.listaProbleme.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(194)))), ((int)(((byte)(217)))), ((int)(((byte)(247)))));
     this.listaProbleme.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
     this.colHeaderTitluProblema});
     this.listaProbleme.Dock = System.Windows.Forms.DockStyle.Fill;
     this.listaProbleme.GridLines = true;
     listViewGroup1.Header = "(General)";
     listViewGroup1.Name = "groupGeneral";
     this.listaProbleme.Groups.AddRange(new System.Windows.Forms.ListViewGroup[] {
     listViewGroup1});
     this.listaProbleme.Location = new System.Drawing.Point(3, 3);
     this.listaProbleme.Name = "listaProbleme";
     this.listaProbleme.Size = new System.Drawing.Size(245, 451);
     this.listaProbleme.TabIndex = 2;
     this.listaProbleme.UseCompatibleStateImageBehavior = false;
     this.listaProbleme.View = System.Windows.Forms.View.Details;
     this.listaProbleme.SelectedIndexChanged += new System.EventHandler(this.listaProbleme_SelectedIndexChanged);
     //
     // colHeaderTitluProblema
     //
     this.colHeaderTitluProblema.Text = "Titlu problema";
     this.colHeaderTitluProblema.Width = 225;
     //
     // tabPageCuvinteCheie
     //
     this.tabPageCuvinteCheie.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(194)))), ((int)(((byte)(217)))), ((int)(((byte)(247)))));
     this.tabPageCuvinteCheie.Controls.Add(this.splitContainerCuvinteCheie);
     this.tabPageCuvinteCheie.Location = new System.Drawing.Point(4, 22);
     this.tabPageCuvinteCheie.Name = "tabPageCuvinteCheie";
     this.tabPageCuvinteCheie.Padding = new System.Windows.Forms.Padding(3);
     this.tabPageCuvinteCheie.Size = new System.Drawing.Size(251, 457);
     this.tabPageCuvinteCheie.TabIndex = 0;
     this.tabPageCuvinteCheie.Text = "Cuvinte Cheie";
     //
     // splitContainerCuvinteCheie
     //
     this.splitContainerCuvinteCheie.Dock = System.Windows.Forms.DockStyle.Fill;
     this.splitContainerCuvinteCheie.Location = new System.Drawing.Point(3, 3);
     this.splitContainerCuvinteCheie.Name = "splitContainerCuvinteCheie";
     this.splitContainerCuvinteCheie.Orientation = System.Windows.Forms.Orientation.Horizontal;
     //
     // splitContainerCuvinteCheie.Panel1
     //
     this.splitContainerCuvinteCheie.Panel1.Controls.Add(this.listaCuvinteCheie);
     //
     // splitContainerCuvinteCheie.Panel2
     //
     this.splitContainerCuvinteCheie.Panel2.Controls.Add(this.gBoxRezCautareCuvinte);
     this.splitContainerCuvinteCheie.Panel2Collapsed = true;
     this.splitContainerCuvinteCheie.Size = new System.Drawing.Size(245, 451);
     this.splitContainerCuvinteCheie.SplitterDistance = 220;
     this.splitContainerCuvinteCheie.SplitterWidth = 5;
     this.splitContainerCuvinteCheie.TabIndex = 0;
     //
     // listaCuvinteCheie
     //
     this.listaCuvinteCheie.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(194)))), ((int)(((byte)(217)))), ((int)(((byte)(247)))));
     this.listaCuvinteCheie.Dock = System.Windows.Forms.DockStyle.Fill;
     this.listaCuvinteCheie.Font = new System.Drawing.Font("Tahoma", 8.6F);
     this.listaCuvinteCheie.Location = new System.Drawing.Point(0, 0);
     this.listaCuvinteCheie.Name = "listaCuvinteCheie";
     this.listaCuvinteCheie.Size = new System.Drawing.Size(245, 451);
     this.listaCuvinteCheie.TabIndex = 2;
     this.listaCuvinteCheie.ThemeName = "ControlDefault";
     this.listaCuvinteCheie.Selected += new System.EventHandler(this.listaCuvinteCheie_Selected);
     //
     // gBoxRezCautareCuvinte
     //
     this.gBoxRezCautareCuvinte.Controls.Add(this.listaRezultateCautareProbleme);
     this.gBoxRezCautareCuvinte.Dock = System.Windows.Forms.DockStyle.Fill;
     this.gBoxRezCautareCuvinte.Location = new System.Drawing.Point(0, 0);
     this.gBoxRezCautareCuvinte.Name = "gBoxRezCautareCuvinte";
     this.gBoxRezCautareCuvinte.Size = new System.Drawing.Size(150, 46);
     this.gBoxRezCautareCuvinte.TabIndex = 0;
     this.gBoxRezCautareCuvinte.TabStop = false;
     this.gBoxRezCautareCuvinte.Text = "Rezultate căutare:";
     //
     // listaRezultateCautareProbleme
     //
     this.listaRezultateCautareProbleme.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(194)))), ((int)(((byte)(217)))), ((int)(((byte)(247)))));
     this.listaRezultateCautareProbleme.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
     this.columnHeader2});
     this.listaRezultateCautareProbleme.Dock = System.Windows.Forms.DockStyle.Fill;
     this.listaRezultateCautareProbleme.GridLines = true;
     listViewGroup2.Header = "(General)";
     listViewGroup2.Name = "groupGeneral";
     this.listaRezultateCautareProbleme.Groups.AddRange(new System.Windows.Forms.ListViewGroup[] {
     listViewGroup2});
     this.listaRezultateCautareProbleme.Location = new System.Drawing.Point(3, 16);
     this.listaRezultateCautareProbleme.Name = "listaRezultateCautareProbleme";
     this.listaRezultateCautareProbleme.ShowGroups = false;
     this.listaRezultateCautareProbleme.Size = new System.Drawing.Size(144, 27);
     this.listaRezultateCautareProbleme.TabIndex = 3;
     this.listaRezultateCautareProbleme.UseCompatibleStateImageBehavior = false;
     this.listaRezultateCautareProbleme.View = System.Windows.Forms.View.Details;
     this.listaRezultateCautareProbleme.SelectedIndexChanged += new System.EventHandler(this.listaRezultateCautareProbleme_SelectedIndexChanged);
     //
     // columnHeader2
     //
     this.columnHeader2.Text = "Titlu problema";
     this.columnHeader2.Width = 225;
     //
     // splitContainer4
     //
     this.splitContainer4.Dock = System.Windows.Forms.DockStyle.Fill;
     this.splitContainer4.Location = new System.Drawing.Point(0, 0);
     this.splitContainer4.Name = "splitContainer4";
     this.splitContainer4.Orientation = System.Windows.Forms.Orientation.Horizontal;
     //
     // splitContainer4.Panel1
     //
     this.splitContainer4.Panel1.Controls.Add(this.gBoxCerinta);
     //
     // splitContainer4.Panel2
     //
     this.splitContainer4.Panel2.Controls.Add(this.gBoxSursa);
     this.splitContainer4.Size = new System.Drawing.Size(680, 483);
     this.splitContainer4.SplitterDistance = 71;
     this.splitContainer4.TabIndex = 3;
     //
     // gBoxCerinta
     //
     this.gBoxCerinta.Controls.Add(this.txtCerintaProblema);
     this.gBoxCerinta.Dock = System.Windows.Forms.DockStyle.Fill;
     this.gBoxCerinta.Location = new System.Drawing.Point(0, 0);
     this.gBoxCerinta.Name = "gBoxCerinta";
     this.gBoxCerinta.Size = new System.Drawing.Size(680, 71);
     this.gBoxCerinta.TabIndex = 4;
     this.gBoxCerinta.TabStop = false;
     this.gBoxCerinta.Text = "Cerinţa";
     //
     // txtCerintaProblema
     //
     this.txtCerintaProblema.BackColor = System.Drawing.Color.White;
     this.txtCerintaProblema.Dock = System.Windows.Forms.DockStyle.Fill;
     this.txtCerintaProblema.Location = new System.Drawing.Point(3, 16);
     this.txtCerintaProblema.Name = "txtCerintaProblema";
     this.txtCerintaProblema.ReadOnly = true;
     this.txtCerintaProblema.Size = new System.Drawing.Size(674, 52);
     this.txtCerintaProblema.TabIndex = 0;
     this.txtCerintaProblema.Text = "(cerinţă problemă)";
     //
     // gBoxSursa
     //
     this.gBoxSursa.Controls.Add(this.txtSursaProblema);
     this.gBoxSursa.Dock = System.Windows.Forms.DockStyle.Fill;
     this.gBoxSursa.Location = new System.Drawing.Point(0, 0);
     this.gBoxSursa.Name = "gBoxSursa";
     this.gBoxSursa.Size = new System.Drawing.Size(680, 408);
     this.gBoxSursa.TabIndex = 2;
     this.gBoxSursa.TabStop = false;
     this.gBoxSursa.Text = "Codul sursă:";
     //
     // txtSursaProblema
     //
     this.txtSursaProblema.AutoSize = true;
     this.txtSursaProblema.BackColor = System.Drawing.Color.White;
     this.txtSursaProblema.Dock = System.Windows.Forms.DockStyle.Fill;
     this.txtSursaProblema.Location = new System.Drawing.Point(3, 16);
     this.txtSursaProblema.Name = "txtSursaProblema";
     this.txtSursaProblema.Size = new System.Drawing.Size(674, 389);
     this.txtSursaProblema.TabIndex = 0;
     //
     // tabPageTeste
     //
     this.tabPageTeste.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(194)))), ((int)(((byte)(217)))), ((int)(((byte)(247)))));
     this.tabPageTeste.Controls.Add(this.splitContainer6);
     this.tabPageTeste.Location = new System.Drawing.Point(4, 22);
     this.tabPageTeste.Name = "tabPageTeste";
     this.tabPageTeste.Size = new System.Drawing.Size(943, 483);
     this.tabPageTeste.TabIndex = 2;
     this.tabPageTeste.Text = "Teste";
     this.tabPageTeste.UseVisualStyleBackColor = true;
     //
     // splitContainer6
     //
     this.splitContainer6.Dock = System.Windows.Forms.DockStyle.Fill;
     this.splitContainer6.Location = new System.Drawing.Point(0, 0);
     this.splitContainer6.Name = "splitContainer6";
     //
     // splitContainer6.Panel1
     //
     this.splitContainer6.Panel1.Controls.Add(this.gBoxListaTeste);
     //
     // splitContainer6.Panel2
     //
     this.splitContainer6.Panel2.Controls.Add(this.tabControlSubTeste);
     this.splitContainer6.Size = new System.Drawing.Size(943, 483);
     this.splitContainer6.SplitterDistance = 212;
     this.splitContainer6.TabIndex = 3;
     //
     // gBoxListaTeste
     //
     this.gBoxListaTeste.Controls.Add(this.listaTeste);
     this.gBoxListaTeste.Dock = System.Windows.Forms.DockStyle.Fill;
     this.gBoxListaTeste.Location = new System.Drawing.Point(0, 0);
     this.gBoxListaTeste.Name = "gBoxListaTeste";
     this.gBoxListaTeste.Size = new System.Drawing.Size(212, 483);
     this.gBoxListaTeste.TabIndex = 2;
     this.gBoxListaTeste.TabStop = false;
     this.gBoxListaTeste.Text = "Listă Teste:";
     //
     // listaTeste
     //
     this.listaTeste.BackColor = System.Drawing.Color.White;
     this.listaTeste.Dock = System.Windows.Forms.DockStyle.Fill;
     this.listaTeste.Font = new System.Drawing.Font("Tahoma", 8.6F);
     this.listaTeste.Location = new System.Drawing.Point(3, 16);
     this.listaTeste.Name = "listaTeste";
     this.listaTeste.Size = new System.Drawing.Size(206, 464);
     this.listaTeste.TabIndex = 0;
     this.listaTeste.Selected += new System.EventHandler(this.listaTeste_Selected);
     //
     // tabControlSubTeste
     //
     this.tabControlSubTeste.Controls.Add(this.tabPageSubiectTest);
     this.tabControlSubTeste.Controls.Add(this.tabPageCorectareTest);
     this.tabControlSubTeste.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tabControlSubTeste.Location = new System.Drawing.Point(0, 0);
     this.tabControlSubTeste.Name = "tabControlSubTeste";
     this.tabControlSubTeste.SelectedIndex = 0;
     this.tabControlSubTeste.Size = new System.Drawing.Size(727, 483);
     this.tabControlSubTeste.TabIndex = 4;
     //
     // tabPageSubiectTest
     //
     this.tabPageSubiectTest.AutoScroll = true;
     this.tabPageSubiectTest.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(194)))), ((int)(((byte)(217)))), ((int)(((byte)(247)))));
     this.tabPageSubiectTest.Controls.Add(this.btnIntrebareUrmatoare);
     this.tabPageSubiectTest.Controls.Add(this.btnIntrebareAnterioara);
     this.tabPageSubiectTest.Controls.Add(this.lblTitluTest);
     this.tabPageSubiectTest.Controls.Add(this.panelTestFinish);
     this.tabPageSubiectTest.Controls.Add(this.panelWelcomeTest);
     this.tabPageSubiectTest.Location = new System.Drawing.Point(4, 22);
     this.tabPageSubiectTest.Name = "tabPageSubiectTest";
     this.tabPageSubiectTest.Padding = new System.Windows.Forms.Padding(3);
     this.tabPageSubiectTest.Size = new System.Drawing.Size(719, 457);
     this.tabPageSubiectTest.TabIndex = 0;
     this.tabPageSubiectTest.Text = "Subiect";
     //
     // btnIntrebareUrmatoare
     //
     this.btnIntrebareUrmatoare.Location = new System.Drawing.Point(559, 218);
     this.btnIntrebareUrmatoare.Name = "btnIntrebareUrmatoare";
     this.btnIntrebareUrmatoare.Size = new System.Drawing.Size(138, 23);
     this.btnIntrebareUrmatoare.TabIndex = 1;
     this.btnIntrebareUrmatoare.Text = "Următoarea întrebare >";
     this.btnIntrebareUrmatoare.Visible = false;
     this.btnIntrebareUrmatoare.Click += new System.EventHandler(this.btnIntrebareUrmatoare_Click);
     //
     // btnIntrebareAnterioara
     //
     this.btnIntrebareAnterioara.Location = new System.Drawing.Point(30, 218);
     this.btnIntrebareAnterioara.Name = "btnIntrebareAnterioara";
     this.btnIntrebareAnterioara.Size = new System.Drawing.Size(138, 23);
     this.btnIntrebareAnterioara.TabIndex = 1;
     this.btnIntrebareAnterioara.Text = "< Întrebarea anterioară";
     this.btnIntrebareAnterioara.Visible = false;
     this.btnIntrebareAnterioara.Click += new System.EventHandler(this.btnIntrebareInainte_Click);
     //
     // lblTitluTest
     //
     this.lblTitluTest.Dock = System.Windows.Forms.DockStyle.Top;
     this.lblTitluTest.Font = new System.Drawing.Font("Microsoft Sans Serif", 13F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblTitluTest.Location = new System.Drawing.Point(3, 3);
     this.lblTitluTest.Name = "lblTitluTest";
     this.lblTitluTest.Size = new System.Drawing.Size(713, 30);
     this.lblTitluTest.TabIndex = 0;
     this.lblTitluTest.Text = "-Titlu-";
     this.lblTitluTest.TextAlign = System.Drawing.ContentAlignment.TopCenter;
     this.lblTitluTest.Visible = false;
     //
     // panelTestFinish
     //
     this.panelTestFinish.Controls.Add(this.radLabel5);
     this.panelTestFinish.Controls.Add(this.lblTestTerminat);
     this.panelTestFinish.Location = new System.Drawing.Point(68, 68);
     this.panelTestFinish.Name = "panelTestFinish";
     this.panelTestFinish.Size = new System.Drawing.Size(567, 305);
     this.panelTestFinish.TabIndex = 7;
     this.panelTestFinish.Visible = false;
     //
     // radLabel5
     //
     this.radLabel5.Font = new System.Drawing.Font("Tahoma", 11.25F);
     this.radLabel5.Location = new System.Drawing.Point(74, 164);
     this.radLabel5.Name = "radLabel5";
     this.radLabel5.Size = new System.Drawing.Size(392, 20);
     this.radLabel5.TabIndex = 6;
     this.radLabel5.Text = "<html>Dacă doreşti să vezi ce ai greşit intră la tabul <b>\"Corectare\"</b>";
     //
     // lblTestTerminat
     //
     this.lblTestTerminat.Font = new System.Drawing.Font("Tahoma", 11.25F);
     this.lblTestTerminat.Location = new System.Drawing.Point(74, 100);
     this.lblTestTerminat.Name = "lblTestTerminat";
     this.lblTestTerminat.Size = new System.Drawing.Size(405, 44);
     this.lblTestTerminat.TabIndex = 5;
     this.lblTestTerminat.Text = "<html>Ai terminat testul cu un punctaj de: {0} din {1} (total:{3}%)<br>          " +
         "                            Felicitări!<br><br>";
     this.lblTestTerminat.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // panelWelcomeTest
     //
     this.panelWelcomeTest.Controls.Add(this.label8);
     this.panelWelcomeTest.Controls.Add(this.radLabel3);
     this.panelWelcomeTest.Controls.Add(this.radLabel2);
     this.panelWelcomeTest.Controls.Add(this.radLabel1);
     this.panelWelcomeTest.Location = new System.Drawing.Point(68, 76);
     this.panelWelcomeTest.Name = "panelWelcomeTest";
     this.panelWelcomeTest.Size = new System.Drawing.Size(567, 305);
     this.panelWelcomeTest.TabIndex = 2;
     this.panelWelcomeTest.Visible = false;
     //
     // label8
     //
     this.label8.AutoSize = true;
     this.label8.Font = new System.Drawing.Font("Tahoma", 13F);
     this.label8.Location = new System.Drawing.Point(231, 247);
     this.label8.Name = "label8";
     this.label8.Size = new System.Drawing.Size(57, 22);
     this.label8.TabIndex = 6;
     this.label8.Text = "Baftă!";
     //
     // radLabel3
     //
     this.radLabel3.Font = new System.Drawing.Font("Tahoma", 11.25F);
     this.radLabel3.Location = new System.Drawing.Point(20, 80);
     this.radLabel3.Name = "radLabel3";
     this.radLabel3.Size = new System.Drawing.Size(524, 20);
     this.radLabel3.TabIndex = 5;
     this.radLabel3.Text = "<html>Pentru a începe testul apasă butonul <b>\"Începe testul\"</b> din meniul de d" +
         "easupra";
     this.radLabel3.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // radLabel2
     //
     this.radLabel2.Font = new System.Drawing.Font("Tahoma", 11.25F);
     this.radLabel2.Location = new System.Drawing.Point(60, 130);
     this.radLabel2.Name = "radLabel2";
     this.radLabel2.Size = new System.Drawing.Size(440, 20);
     this.radLabel2.TabIndex = 4;
     this.radLabel2.Text = "<html>Dacă vrei să reîncepi testul foloseşte butonul <b>\"Reîncepe testul\"</b>.";
     this.radLabel2.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // radLabel1
     //
     this.radLabel1.AutoSize = false;
     this.radLabel1.Font = new System.Drawing.Font("Tahoma", 11.25F);
     this.radLabel1.Location = new System.Drawing.Point(3, 165);
     this.radLabel1.Name = "radLabel1";
     //
     //
     //
     this.radLabel1.RootElement.StretchHorizontally = true;
     this.radLabel1.RootElement.StretchVertically = true;
     this.radLabel1.Size = new System.Drawing.Size(532, 66);
     this.radLabel1.TabIndex = 3;
     this.radLabel1.Text = "<html>Când ai terminat de completat testul poţi apăsa butonul <b>\"Corectează test" +
         "ul\"</b><br>pentru a vedea rezultatele.";
     this.radLabel1.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
     this.radLabel1.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
     //
     // tabPageCorectareTest
     //
     this.tabPageCorectareTest.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(194)))), ((int)(((byte)(217)))), ((int)(((byte)(247)))));
     this.tabPageCorectareTest.Controls.Add(this.listaCorectareTest);
     this.tabPageCorectareTest.Location = new System.Drawing.Point(4, 22);
     this.tabPageCorectareTest.Name = "tabPageCorectareTest";
     this.tabPageCorectareTest.Padding = new System.Windows.Forms.Padding(3);
     this.tabPageCorectareTest.Size = new System.Drawing.Size(719, 457);
     this.tabPageCorectareTest.TabIndex = 1;
     this.tabPageCorectareTest.Text = "Corectare";
     //
     // listaCorectareTest
     //
     this.listaCorectareTest.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
     this.colHeaderNrCrt,
     this.colHeaderRaspAles,
     this.colHeaderRaspCorect,
     this.colHeaderPunctaj});
     this.listaCorectareTest.Dock = System.Windows.Forms.DockStyle.Left;
     this.listaCorectareTest.GridLines = true;
     listViewGroup3.Header = "lstGrupRaspunsuri";
     listViewGroup3.Name = "Raspunsuri";
     listViewGroup4.Header = "lstGrupTotal";
     listViewGroup4.Name = "Punctaj Total";
     this.listaCorectareTest.Groups.AddRange(new System.Windows.Forms.ListViewGroup[] {
     listViewGroup3,
     listViewGroup4});
     this.listaCorectareTest.Location = new System.Drawing.Point(3, 3);
     this.listaCorectareTest.MultiSelect = false;
     this.listaCorectareTest.Name = "listaCorectareTest";
     this.listaCorectareTest.ShowGroups = false;
     this.listaCorectareTest.Size = new System.Drawing.Size(608, 451);
     this.listaCorectareTest.Sorting = System.Windows.Forms.SortOrder.Ascending;
     this.listaCorectareTest.TabIndex = 0;
     this.listaCorectareTest.UseCompatibleStateImageBehavior = false;
     this.listaCorectareTest.View = System.Windows.Forms.View.Details;
     //
     // colHeaderNrCrt
     //
     this.colHeaderNrCrt.Text = "Nr. Crt";
     //
     // colHeaderRaspAles
     //
     this.colHeaderRaspAles.Text = "Raspuns utilizator";
     this.colHeaderRaspAles.Width = 220;
     //
     // colHeaderRaspCorect
     //
     this.colHeaderRaspCorect.Text = "Raspuns Corect";
     this.colHeaderRaspCorect.Width = 220;
     //
     // colHeaderPunctaj
     //
     this.colHeaderPunctaj.Text = "Punctaj Acordat";
     this.colHeaderPunctaj.Width = 100;
     //
     // tabPageCompilator
     //
     this.tabPageCompilator.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(194)))), ((int)(((byte)(217)))), ((int)(((byte)(247)))));
     this.tabPageCompilator.Controls.Add(this.splitContainer2);
     this.tabPageCompilator.Location = new System.Drawing.Point(4, 22);
     this.tabPageCompilator.Name = "tabPageCompilator";
     this.tabPageCompilator.Size = new System.Drawing.Size(943, 483);
     this.tabPageCompilator.TabIndex = 3;
     this.tabPageCompilator.Text = "Compilator";
     this.tabPageCompilator.UseVisualStyleBackColor = true;
     //
     // splitContainer2
     //
     this.splitContainer2.Dock = System.Windows.Forms.DockStyle.Fill;
     this.splitContainer2.Location = new System.Drawing.Point(0, 0);
     this.splitContainer2.Name = "splitContainer2";
     //
     // splitContainer2.Panel1
     //
     this.splitContainer2.Panel1.Controls.Add(this.panel1);
     this.splitContainer2.Panel1.Controls.Add(this.txtCodSursa);
     //
     // splitContainer2.Panel2
     //
     this.splitContainer2.Panel2.Controls.Add(this.tabControlSubCompilator);
     this.splitContainer2.Panel2.Padding = new System.Windows.Forms.Padding(5);
     this.splitContainer2.Size = new System.Drawing.Size(943, 483);
     this.splitContainer2.SplitterDistance = 545;
     this.splitContainer2.TabIndex = 0;
     //
     // panel1
     //
     this.panel1.Controls.Add(this.lblLinkProgramNou);
     this.panel1.Controls.Add(this.label1);
     this.panel1.Controls.Add(this.lblCodSursa);
     this.panel1.Dock = System.Windows.Forms.DockStyle.Top;
     this.panel1.Location = new System.Drawing.Point(0, 0);
     this.panel1.Name = "panel1";
     this.panel1.Size = new System.Drawing.Size(545, 36);
     this.panel1.TabIndex = 2;
     //
     // lblLinkProgramNou
     //
     this.lblLinkProgramNou.AutoSize = true;
     this.lblLinkProgramNou.Location = new System.Drawing.Point(5, 4);
     this.lblLinkProgramNou.Name = "lblLinkProgramNou";
     this.lblLinkProgramNou.Size = new System.Drawing.Size(67, 13);
     this.lblLinkProgramNou.TabIndex = 3;
     this.lblLinkProgramNou.TabStop = true;
     this.lblLinkProgramNou.Text = "Program nou";
     this.lblLinkProgramNou.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.lblLinkProgramNou_LinkClicked);
     //
     // label1
     //
     this.label1.AutoSize = true;
     this.label1.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label1.ForeColor = System.Drawing.Color.Red;
     this.label1.Location = new System.Drawing.Point(317, 10);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(225, 13);
     this.label1.TabIndex = 2;
     this.label1.Text = "(Folosiţi *.in -> intrare; *.out -> ieşire)";
     //
     // lblCodSursa
     //
     this.lblCodSursa.Location = new System.Drawing.Point(5, 19);
     this.lblCodSursa.Margin = new System.Windows.Forms.Padding(0);
     this.lblCodSursa.Name = "lblCodSursa";
     this.lblCodSursa.Size = new System.Drawing.Size(69, 15);
     this.lblCodSursa.TabIndex = 0;
     this.lblCodSursa.Text = "Cod sursă:";
     //
     // txtCodSursa
     //
     this.txtCodSursa.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.txtCodSursa.AutoSize = true;
     this.txtCodSursa.Location = new System.Drawing.Point(0, 42);
     this.txtCodSursa.Name = "txtCodSursa";
     this.txtCodSursa.Size = new System.Drawing.Size(542, 438);
     this.txtCodSursa.TabIndex = 1;
     //
     // tabControlSubCompilator
     //
     this.tabControlSubCompilator.Controls.Add(this.tabPageRezultatCompilare);
     this.tabControlSubCompilator.Controls.Add(this.tabPageTestareProgram);
     this.tabControlSubCompilator.Controls.Add(this.tabPageTestareAutomata);
     this.tabControlSubCompilator.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tabControlSubCompilator.Location = new System.Drawing.Point(5, 5);
     this.tabControlSubCompilator.Name = "tabControlSubCompilator";
     this.tabControlSubCompilator.SelectedIndex = 0;
     this.tabControlSubCompilator.Size = new System.Drawing.Size(384, 473);
     this.tabControlSubCompilator.TabIndex = 0;
     //
     // tabPageRezultatCompilare
     //
     this.tabPageRezultatCompilare.Controls.Add(this.txtRezultatCompilare);
     this.tabPageRezultatCompilare.Location = new System.Drawing.Point(4, 22);
     this.tabPageRezultatCompilare.Name = "tabPageRezultatCompilare";
     this.tabPageRezultatCompilare.Padding = new System.Windows.Forms.Padding(3);
     this.tabPageRezultatCompilare.Size = new System.Drawing.Size(376, 447);
     this.tabPageRezultatCompilare.TabIndex = 0;
     this.tabPageRezultatCompilare.Text = "Rezultat compilator";
     this.tabPageRezultatCompilare.UseVisualStyleBackColor = true;
     //
     // txtRezultatCompilare
     //
     this.txtRezultatCompilare.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(194)))), ((int)(((byte)(217)))), ((int)(((byte)(247)))));
     this.txtRezultatCompilare.Dock = System.Windows.Forms.DockStyle.Fill;
     this.txtRezultatCompilare.Location = new System.Drawing.Point(3, 3);
     this.txtRezultatCompilare.Multiline = true;
     this.txtRezultatCompilare.Name = "txtRezultatCompilare";
     this.txtRezultatCompilare.ReadOnly = true;
     this.txtRezultatCompilare.ScrollBars = System.Windows.Forms.ScrollBars.Vertical;
     this.txtRezultatCompilare.Size = new System.Drawing.Size(370, 441);
     this.txtRezultatCompilare.TabIndex = 0;
     this.txtRezultatCompilare.Click += new System.EventHandler(this.txtRezultatCompilare_Click);
     //
     // tabPageTestareProgram
     //
     this.tabPageTestareProgram.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(194)))), ((int)(((byte)(214)))), ((int)(((byte)(247)))));
     this.tabPageTestareProgram.Controls.Add(this.splitContainer5);
     this.tabPageTestareProgram.Location = new System.Drawing.Point(4, 22);
     this.tabPageTestareProgram.Name = "tabPageTestareProgram";
     this.tabPageTestareProgram.Padding = new System.Windows.Forms.Padding(3);
     this.tabPageTestareProgram.Size = new System.Drawing.Size(376, 447);
     this.tabPageTestareProgram.TabIndex = 1;
     this.tabPageTestareProgram.Text = "Testare manuală";
     this.tabPageTestareProgram.UseVisualStyleBackColor = true;
     //
     // splitContainer5
     //
     this.splitContainer5.Dock = System.Windows.Forms.DockStyle.Fill;
     this.splitContainer5.Location = new System.Drawing.Point(3, 3);
     this.splitContainer5.Name = "splitContainer5";
     this.splitContainer5.Orientation = System.Windows.Forms.Orientation.Horizontal;
     //
     // splitContainer5.Panel1
     //
     this.splitContainer5.Panel1.Controls.Add(this.groupBox1);
     //
     // splitContainer5.Panel2
     //
     this.splitContainer5.Panel2.Controls.Add(this.groupBox2);
     this.splitContainer5.Size = new System.Drawing.Size(370, 441);
     this.splitContainer5.SplitterDistance = 192;
     this.splitContainer5.TabIndex = 2;
     //
     // groupBox1
     //
     this.groupBox1.Controls.Add(this.tabControlDateIntrare);
     this.groupBox1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.groupBox1.Location = new System.Drawing.Point(0, 0);
     this.groupBox1.Name = "groupBox1";
     this.groupBox1.Size = new System.Drawing.Size(370, 192);
     this.groupBox1.TabIndex = 1;
     this.groupBox1.TabStop = false;
     this.groupBox1.Text = "Date de intrare:";
     //
     // tabControlDateIntrare
     //
     this.tabControlDateIntrare.Controls.Add(this.tabcin);
     this.tabControlDateIntrare.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tabControlDateIntrare.Location = new System.Drawing.Point(3, 16);
     this.tabControlDateIntrare.Name = "tabControlDateIntrare";
     this.tabControlDateIntrare.SelectedIndex = 0;
     this.tabControlDateIntrare.Size = new System.Drawing.Size(364, 173);
     this.tabControlDateIntrare.TabIndex = 1;
     //
     // tabcin
     //
     this.tabcin.Controls.Add(this.txtDateIntrareProgram);
     this.tabcin.Location = new System.Drawing.Point(4, 22);
     this.tabcin.Name = "tabcin";
     this.tabcin.Padding = new System.Windows.Forms.Padding(3);
     this.tabcin.Size = new System.Drawing.Size(356, 147);
     this.tabcin.TabIndex = 1;
     this.tabcin.Text = "Console In";
     this.tabcin.UseVisualStyleBackColor = true;
     //
     // txtDateIntrareProgram
     //
     this.txtDateIntrareProgram.Dock = System.Windows.Forms.DockStyle.Fill;
     this.txtDateIntrareProgram.Location = new System.Drawing.Point(3, 3);
     this.txtDateIntrareProgram.Multiline = true;
     this.txtDateIntrareProgram.Name = "txtDateIntrareProgram";
     this.txtDateIntrareProgram.ScrollBars = System.Windows.Forms.ScrollBars.Vertical;
     this.txtDateIntrareProgram.Size = new System.Drawing.Size(350, 141);
     this.txtDateIntrareProgram.TabIndex = 2;
     //
     // groupBox2
     //
     this.groupBox2.Controls.Add(this.tabControlDateIesire);
     this.groupBox2.Dock = System.Windows.Forms.DockStyle.Fill;
     this.groupBox2.Location = new System.Drawing.Point(0, 0);
     this.groupBox2.Name = "groupBox2";
     this.groupBox2.Size = new System.Drawing.Size(370, 245);
     this.groupBox2.TabIndex = 1;
     this.groupBox2.TabStop = false;
     this.groupBox2.Text = "Rezultat:";
     //
     // tabControlDateIesire
     //
     this.tabControlDateIesire.Controls.Add(this.tabcout);
     this.tabControlDateIesire.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tabControlDateIesire.Location = new System.Drawing.Point(3, 16);
     this.tabControlDateIesire.Name = "tabControlDateIesire";
     this.tabControlDateIesire.SelectedIndex = 0;
     this.tabControlDateIesire.Size = new System.Drawing.Size(364, 226);
     this.tabControlDateIesire.TabIndex = 0;
     //
     // tabcout
     //
     this.tabcout.Controls.Add(this.txtRezultatProgram);
     this.tabcout.Location = new System.Drawing.Point(4, 22);
     this.tabcout.Name = "tabcout";
     this.tabcout.Padding = new System.Windows.Forms.Padding(3);
     this.tabcout.Size = new System.Drawing.Size(356, 200);
     this.tabcout.TabIndex = 0;
     this.tabcout.Text = "Console Out";
     this.tabcout.UseVisualStyleBackColor = true;
     //
     // txtRezultatProgram
     //
     this.txtRezultatProgram.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(194)))), ((int)(((byte)(217)))), ((int)(((byte)(247)))));
     this.txtRezultatProgram.Dock = System.Windows.Forms.DockStyle.Fill;
     this.txtRezultatProgram.Location = new System.Drawing.Point(3, 3);
     this.txtRezultatProgram.Multiline = true;
     this.txtRezultatProgram.Name = "txtRezultatProgram";
     this.txtRezultatProgram.ReadOnly = true;
     this.txtRezultatProgram.ScrollBars = System.Windows.Forms.ScrollBars.Vertical;
     this.txtRezultatProgram.Size = new System.Drawing.Size(350, 194);
     this.txtRezultatProgram.TabIndex = 1;
     //
     // tabPageTestareAutomata
     //
     this.tabPageTestareAutomata.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(194)))), ((int)(((byte)(217)))), ((int)(((byte)(247)))));
     this.tabPageTestareAutomata.Controls.Add(this.btnAdaugaTestare);
     this.tabPageTestareAutomata.Controls.Add(this.btnVerifica);
     this.tabPageTestareAutomata.Controls.Add(this.gridVerificare);
     this.tabPageTestareAutomata.Controls.Add(this.lblNoTest);
     this.tabPageTestareAutomata.Location = new System.Drawing.Point(4, 22);
     this.tabPageTestareAutomata.Name = "tabPageTestareAutomata";
     this.tabPageTestareAutomata.Padding = new System.Windows.Forms.Padding(3);
     this.tabPageTestareAutomata.Size = new System.Drawing.Size(376, 447);
     this.tabPageTestareAutomata.TabIndex = 2;
     this.tabPageTestareAutomata.Text = "Testare predefinită";
     this.tabPageTestareAutomata.UseVisualStyleBackColor = true;
     //
     // btnAdaugaTestare
     //
     this.btnAdaugaTestare.Anchor = System.Windows.Forms.AnchorStyles.Bottom;
     this.btnAdaugaTestare.Location = new System.Drawing.Point(195, 412);
     this.btnAdaugaTestare.Name = "btnAdaugaTestare";
     this.btnAdaugaTestare.Size = new System.Drawing.Size(175, 23);
     this.btnAdaugaTestare.TabIndex = 2;
     this.btnAdaugaTestare.Text = "Adaugă un test nou";
     this.btnAdaugaTestare.Click += new System.EventHandler(this.btnAdaugaTestare_Click);
     //
     // btnVerifica
     //
     this.btnVerifica.Anchor = System.Windows.Forms.AnchorStyles.Bottom;
     this.btnVerifica.Items.AddRange(new Telerik.WinControls.RadItem[] {
     this.radMenuSelectate,
     this.radMenuToate});
     this.btnVerifica.Location = new System.Drawing.Point(6, 412);
     this.btnVerifica.Name = "btnVerifica";
     this.btnVerifica.Size = new System.Drawing.Size(176, 23);
     this.btnVerifica.TabIndex = 1;
     this.btnVerifica.Text = "Verifică testele";
     //
     // radMenuSelectate
     //
     this.radMenuSelectate.Name = "radMenuSelectate";
     this.radMenuSelectate.Text = "Testele bifate";
     this.radMenuSelectate.Click += new System.EventHandler(this.radMenuSelectate_Click);
     //
     // radMenuToate
     //
     this.radMenuToate.Name = "radMenuToate";
     this.radMenuToate.Text = "Toate testele";
     this.radMenuToate.Click += new System.EventHandler(this.radMenuToate_Click);
     //
     // gridVerificare
     //
     this.gridVerificare.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.gridVerificare.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(194)))), ((int)(((byte)(217)))), ((int)(((byte)(247)))));
     this.gridVerificare.Cursor = System.Windows.Forms.Cursors.Default;
     this.gridVerificare.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F);
     this.gridVerificare.ForeColor = System.Drawing.SystemColors.ControlText;
     this.gridVerificare.GroupExpandAnimationType = Telerik.WinControls.UI.GridExpandAnimationType.Slide;
     this.gridVerificare.ImeMode = System.Windows.Forms.ImeMode.NoControl;
     this.gridVerificare.Location = new System.Drawing.Point(3, 3);
     //
     //
     //
     this.gridVerificare.MasterGridViewTemplate.AddNewRowPosition = Telerik.WinControls.UI.PinnedRowPosition.Bottom;
     this.gridVerificare.MasterGridViewTemplate.AllowAddNewRow = false;
     this.gridVerificare.MasterGridViewTemplate.AllowDeleteRow = false;
     customGridViewTextBoxColumn_11.CustomStruct = null;
     customGridViewTextBoxColumn_11.DataType = typeof(InfoCenter.Classes.UnitateTestare);
     customGridViewTextBoxColumn_11.FieldAlias = "column1";
     customGridViewTextBoxColumn_11.HeaderText = "Nume test";
     customGridViewTextBoxColumn_11.ReadOnly = true;
     customGridViewTextBoxColumn_11.UniqueName = "colNume";
     customGridViewTextBoxColumn_11.Width = 232;
     gridViewCheckBoxColumn1.DataType = typeof(bool);
     gridViewCheckBoxColumn1.FieldAlias = "column2";
     gridViewCheckBoxColumn1.HeaderText = " ";
     gridViewCheckBoxColumn1.UniqueName = "colVerifica";
     gridViewCheckBoxColumn1.Width = 27;
     customGridViewCommandColumn1.DataType = typeof(System.Drawing.Image);
     customGridViewCommandColumn1.DefaultText = " ";
     customGridViewCommandColumn1.FieldAlias = "column3";
     customGridViewCommandColumn1.HeaderText = "Verifică";
     customGridViewCommandColumn1.UniqueName = "colVerific";
     customGridViewCommandColumn1.UseDefaultText = true;
     customGridViewCommandColumn1.Width = 58;
     gridViewImageColumn1.DataType = typeof(System.Drawing.Image);
     gridViewImageColumn1.FieldAlias = "column1";
     gridViewImageColumn1.HeaderText = "Rezultat";
     gridViewImageColumn1.ImageLayout = System.Windows.Forms.ImageLayout.Center;
     gridViewImageColumn1.UniqueName = "colRezultat";
     gridViewImageColumn1.Width = 63;
     this.gridVerificare.MasterGridViewTemplate.Columns.Add(customGridViewTextBoxColumn_11);
     this.gridVerificare.MasterGridViewTemplate.Columns.Add(gridViewCheckBoxColumn1);
     this.gridVerificare.MasterGridViewTemplate.Columns.Add(customGridViewCommandColumn1);
     this.gridVerificare.MasterGridViewTemplate.Columns.Add(gridViewImageColumn1);
     this.gridVerificare.MasterGridViewTemplate.EnableSorting = false;
     this.gridVerificare.MasterGridViewTemplate.ShowRowHeaderColumn = false;
     this.gridVerificare.Name = "gridVerificare";
     this.gridVerificare.NewRowEnterKeyMode = Telerik.WinControls.UI.RadGridViewNewRowEnterKeyMode.None;
     this.gridVerificare.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.gridVerificare.ShowGroupPanel = false;
     this.gridVerificare.Size = new System.Drawing.Size(528, 403);
     this.gridVerificare.TabIndex = 0;
     this.gridVerificare.Text = "radGridViewPreview";
     this.gridVerificare.Visible = false;
     this.gridVerificare.CellDoubleClick += new Telerik.WinControls.UI.GridViewCellEventHandler(this.gridVerificare_CellDoubleClick);
     this.gridVerificare.CellFormatting += new Telerik.WinControls.UI.CellFormattingEventHandler(this.gridVerificare_CellFormatting);
     this.gridVerificare.CommandCellClick += new Telerik.WinControls.UI.CommandCellClickEventHandler(this.gridVerificare_CommandCellClick);
     //
     // lblNoTest
     //
     this.lblNoTest.BackColor = System.Drawing.Color.Transparent;
     this.lblNoTest.Location = new System.Drawing.Point(93, 130);
     this.lblNoTest.Name = "lblNoTest";
     this.lblNoTest.Size = new System.Drawing.Size(215, 38);
     this.lblNoTest.TabIndex = 0;
     this.lblNoTest.Text = "Nu există nici un test asociat problemei selectate sau creat de utilizator";
     //
     // columnHeader1
     //
     this.columnHeader1.Text = "Titlu";
     this.columnHeader1.Width = 178;
     //
     // saveFileDialog
     //
     this.saveFileDialog.Title = "Salvează codul sursă";
     //
     // ribbonBar
     //
     this.ribbonBar.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(194)))), ((int)(((byte)(217)))), ((int)(((byte)(247)))));
     radRibbonBarCommandTab1.Items.AddRange(new Telerik.WinControls.RadItem[] {
     this.radRibbonBarChunk2,
     this.radRibbonBarChunk3});
     radRibbonBarCommandTab1.Tab = this.ribbonTabStart;
     radRibbonBarCommandTab2.Items.AddRange(new Telerik.WinControls.RadItem[] {
     this.radChunkInfLectie});
     radRibbonBarCommandTab2.Tab = this.ribbonTabLectii;
     radRibbonBarCommandTab3.Items.AddRange(new Telerik.WinControls.RadItem[] {
     this.radChunkInfoProblema,
     this.radChunkCautareProbleme,
     this.radChunkActiuniProblema});
     radRibbonBarCommandTab3.Tab = this.ribbonTabProbleme;
     radRibbonBarCommandTab4.Items.AddRange(new Telerik.WinControls.RadItem[] {
     this.radChunkInformatiiTest,
     this.radChunkActiuniTest});
     radRibbonBarCommandTab4.Tab = this.ribbonTabTeste;
     radRibbonBarCommandTab5.Items.AddRange(new Telerik.WinControls.RadItem[] {
     this.radChunkActiuniCompilator,
     this.radRibbonBarChunk1});
     radRibbonBarCommandTab5.Tab = this.ribbonTabCompilator;
     this.ribbonBar.CommandTabs.AddRange(new Telerik.WinControls.UI.RadRibbonBarCommandTab[] {
     radRibbonBarCommandTab1,
     radRibbonBarCommandTab2,
     radRibbonBarCommandTab3,
     radRibbonBarCommandTab4,
     radRibbonBarCommandTab5});
     this.ribbonBar.Dock = System.Windows.Forms.DockStyle.Top;
     this.ribbonBar.EnableKeyMap = true;
     //
     //
     //
     //
     //
     //
     this.ribbonBar.ExitButton.ButtonElement.Class = "RadMenuButtonElement";
     this.ribbonBar.ExitButton.ButtonElement.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageBeforeText;
     this.ribbonBar.ExitButton.Image = global::InfoCenter.Properties.Resources.imgClose32;
     this.ribbonBar.ExitButton.Text = "Închide Info Center";
     this.ribbonBar.ExitButton.Click += new System.EventHandler(this.radMenuIesire_Click);
     this.ribbonBar.Location = new System.Drawing.Point(0, 0);
     this.ribbonBar.MinimumSize = new System.Drawing.Size(0, 141);
     this.ribbonBar.Name = "ribbonBar";
     //
     //
     //
     //
     //
     //
     this.ribbonBar.OptionsButton.ButtonElement.Class = "RadMenuButtonElement";
     this.ribbonBar.OptionsButton.ButtonElement.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageBeforeText;
     this.ribbonBar.OptionsButton.Image = global::InfoCenter.Properties.Resources.imgOptiuni;
     this.ribbonBar.OptionsButton.Text = "Opţiuni";
     this.ribbonBar.OptionsButton.Click += new System.EventHandler(this.radMenuOptiuni_Click);
     this.ribbonBar.QuickAccessToolbarBelowRibbon = false;
     //
     //
     //
     this.ribbonBar.RootElement.AutoSizeMode = Telerik.WinControls.RadAutoSizeMode.WrapAroundChildren;
     this.ribbonBar.RootElement.MinSize = new System.Drawing.Size(0, 141);
     this.ribbonBar.RootElement.ToolTipText = null;
     this.ribbonBar.Size = new System.Drawing.Size(950, 141);
     this.ribbonBar.StartButtonImage = global::InfoCenter.Properties.Resources.logoRibbon;
     this.ribbonBar.StartMenuItems.AddRange(new Telerik.WinControls.RadItem[] {
     this.radMenuReloadInfo,
     this.radMenuUpdateApplication});
     this.ribbonBar.StartMenuWidth = 400;
     this.ribbonBar.TabIndex = 1;
     this.ribbonBar.Text = "Info Center";
     this.ribbonBar.ThemeName = "ControlDefault";
     //
     // radMenuReloadInfo
     //
     this.radMenuReloadInfo.Image = global::InfoCenter.Properties.Resources.imgRefresh32;
     this.radMenuReloadInfo.Name = "radMenuReloadInfo";
     this.radMenuReloadInfo.Text = "Re-încară informaţiile";
     this.radMenuReloadInfo.Click += new System.EventHandler(this.radMenuReloadInfo_Click);
     //
     // radMenuUpdateApplication
     //
     this.radMenuUpdateApplication.Image = global::InfoCenter.Properties.Resources.imgBacup;
     this.radMenuUpdateApplication.Name = "radMenuUpdateApplication";
     this.radMenuUpdateApplication.Text = "Actualizează aplicaţia";
     this.radMenuUpdateApplication.Click += new System.EventHandler(this.radMenuUpdateApplication_Click);
     //
     // statusStrip
     //
     this.statusStrip.AutoSize = true;
     this.statusStrip.Items.AddRange(new Telerik.WinControls.RadItem[] {
     this.toolStripStatus,
     this.toolStripProgressBar,
     this.radLabelCopyright,
     this.toolStripConnectedMode,
     this.toolStripDataOra});
     this.statusStrip.LayoutStyle = Telerik.WinControls.UI.RadStatusBarLayoutStyle.Overflow;
     this.statusStrip.Location = new System.Drawing.Point(0, 625);
     this.statusStrip.Name = "statusStrip";
     this.statusStrip.Size = new System.Drawing.Size(950, 25);
     this.statusStrip.SizingGrip = false;
     this.statusStrip.TabIndex = 2;
     this.statusStrip.Text = "radStatusStrip1";
     //
     // toolStripStatus
     //
     this.toolStripStatus.Alignment = System.Drawing.ContentAlignment.MiddleLeft;
     this.toolStripStatus.Margin = new System.Windows.Forms.Padding(1);
     this.toolStripStatus.Name = "toolStripStatus";
     this.statusStrip.SetSpring(this.toolStripStatus, false);
     this.toolStripStatus.Text = "Stare program";
     this.toolStripStatus.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageBeforeText;
     this.toolStripStatus.Click += new System.EventHandler(this.toolStripStatus_Click);
     //
     // toolStripProgressBar
     //
     this.toolStripProgressBar.Alignment = System.Drawing.ContentAlignment.MiddleCenter;
     this.toolStripProgressBar.AutoSizeMode = Telerik.WinControls.RadAutoSizeMode.Auto;
     this.toolStripProgressBar.ClipDrawing = true;
     this.toolStripProgressBar.DefaultSize = new System.Drawing.Size(130, 16);
     this.toolStripProgressBar.Margin = new System.Windows.Forms.Padding(1);
     this.toolStripProgressBar.Name = "toolStripProgressBar";
     this.toolStripProgressBar.ShowProgressIndicator = true;
     this.statusStrip.SetSpring(this.toolStripProgressBar, false);
     this.toolStripProgressBar.Text = "0%";
     this.toolStripProgressBar.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
     this.toolStripProgressBar.Visibility = Telerik.WinControls.ElementVisibility.Hidden;
     //
     // radLabelCopyright
     //
     this.radLabelCopyright.Alignment = System.Drawing.ContentAlignment.MiddleRight;
     this.radLabelCopyright.AutoSize = false;
     this.radLabelCopyright.Bounds = new System.Drawing.Rectangle(0, 0, 380, 19);
     this.radLabelCopyright.Margin = new System.Windows.Forms.Padding(1);
     this.radLabelCopyright.Name = "radLabelCopyright";
     this.statusStrip.SetSpring(this.radLabelCopyright, false);
     this.radLabelCopyright.Text = "                          | Copyright 2008-2009 © Timotei Dolean |";
     this.radLabelCopyright.TextAlignment = System.Drawing.ContentAlignment.MiddleRight;
     this.radLabelCopyright.TextImageRelation = System.Windows.Forms.TextImageRelation.TextBeforeImage;
     this.radLabelCopyright.Click += new System.EventHandler(this.toolStripLabelCopyright_Click);
     //
     // toolStripConnectedMode
     //
     this.toolStripConnectedMode.Alignment = System.Drawing.ContentAlignment.TopCenter;
     this.toolStripConnectedMode.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
     this.toolStripConnectedMode.Margin = new System.Windows.Forms.Padding(1);
     this.toolStripConnectedMode.Name = "toolStripConnectedMode";
     this.statusStrip.SetSpring(this.toolStripConnectedMode, false);
     this.toolStripConnectedMode.Text = "Mod neconectat";
     this.toolStripConnectedMode.Visibility = Telerik.WinControls.ElementVisibility.Hidden;
     //
     // toolStripDataOra
     //
     this.toolStripDataOra.Alignment = System.Drawing.ContentAlignment.MiddleRight;
     this.toolStripDataOra.Margin = new System.Windows.Forms.Padding(1);
     this.toolStripDataOra.Name = "toolStripDataOra";
     this.statusStrip.SetSpring(this.toolStripDataOra, false);
     this.toolStripDataOra.Text = "Data curentă:";
     this.toolStripDataOra.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // btnFontItalic2
     //
     this.btnFontItalic2.CanFocus = true;
     this.btnFontItalic2.Class = "ButtonElement";
     this.btnFontItalic2.DisplayStyle = Telerik.WinControls.DisplayStyle.Image;
     this.btnFontItalic2.Image = global::InfoCenter.Properties.Resources.imgItalic16;
     this.btnFontItalic2.IsChecked = false;
     this.btnFontItalic2.Margin = new System.Windows.Forms.Padding(2);
     this.btnFontItalic2.Name = "btnFontItalic2";
     this.btnFontItalic2.Padding = new System.Windows.Forms.Padding(2);
     this.btnFontItalic2.ShowBorder = false;
     this.btnFontItalic2.Text = "radButtonElement4";
     this.btnFontItalic2.ToolTipText = null;
     //
     // btnFontBold2
     //
     this.btnFontBold2.CanFocus = true;
     this.btnFontBold2.Class = "ButtonElement";
     this.btnFontBold2.DisplayStyle = Telerik.WinControls.DisplayStyle.Image;
     this.btnFontBold2.Image = global::InfoCenter.Properties.Resources.imgBold16;
     this.btnFontBold2.IsChecked = false;
     this.btnFontBold2.Margin = new System.Windows.Forms.Padding(2);
     this.btnFontBold2.Name = "btnFontBold2";
     this.btnFontBold2.Padding = new System.Windows.Forms.Padding(2);
     this.btnFontBold2.ShowBorder = false;
     this.btnFontBold2.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageBeforeText;
     this.btnFontBold2.ToolTipText = null;
     //
     // radMenuButtonItem1
     //
     //
     //
     //
     this.radMenuButtonItem1.ButtonElement.Class = "RadMenuButtonElement";
     this.radMenuButtonItem1.ButtonElement.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageBeforeText;
     this.radMenuButtonItem1.Name = "radMenuButtonItem1";
     this.radMenuButtonItem1.Text = "Re-încarcă informaţiile";
     this.radMenuButtonItem1.Visibility = Telerik.WinControls.ElementVisibility.Hidden;
     ((Telerik.WinControls.UI.RadButtonElement)(this.radMenuButtonItem1.GetChildAt(2))).TextImageRelation = System.Windows.Forms.TextImageRelation.ImageBeforeText;
     ((Telerik.WinControls.UI.RadButtonElement)(this.radMenuButtonItem1.GetChildAt(2))).Class = "RadMenuButtonElement";
     //
     // testTimer
     //
     this.testTimer._started = false;
     this.testTimer.Hours = 0;
     this.testTimer.Interval = 1000;
     this.testTimer.Minutes = 0;
     this.testTimer.Seconds = 0;
     this.testTimer.Tick += new System.EventHandler(this.testTimer_Tick);
     //
     // MainForm
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(194)))), ((int)(((byte)(217)))), ((int)(((byte)(247)))));
     this.ClientSize = new System.Drawing.Size(950, 650);
     this.Controls.Add(this.statusStrip);
     this.Controls.Add(this.ribbonBar);
     this.Controls.Add(this.tabControlMain);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
     this.Icon = global::InfoCenter.Properties.Resources.iconInfoCenter;
     this.Name = "MainForm";
     this.SizeGripStyle = System.Windows.Forms.SizeGripStyle.Hide;
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "Info Center";
     this.SizeChanged += new System.EventHandler(this.MainForm_SizeChanged);
     this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.MainForm_FormClosing);
     ((System.ComponentModel.ISupportInitialize)(this.comboCautaProblema)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.comboCautaCuvantCheie)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.comboFont2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.comboFontSize2)).EndInit();
     this.tabControlMain.ResumeLayout(false);
     this.tabPageStart.ResumeLayout(false);
     this.tabPageStart.PerformLayout();
     this.tabPageLectii.ResumeLayout(false);
     this.splitContainer3.Panel1.ResumeLayout(false);
     this.splitContainer3.Panel2.ResumeLayout(false);
     this.splitContainer3.ResumeLayout(false);
     this.gBoxListaLectii.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.cuprinsLectii)).EndInit();
     this.gBoxContinutLectie.ResumeLayout(false);
     this.gBoxContinutLectie.PerformLayout();
     this.tabPageProbleme.ResumeLayout(false);
     this.splitContainer1.Panel1.ResumeLayout(false);
     this.splitContainer1.Panel2.ResumeLayout(false);
     this.splitContainer1.ResumeLayout(false);
     this.tabControlSubProbleme.ResumeLayout(false);
     this.tabPageListaProbleme.ResumeLayout(false);
     this.tabPageCuvinteCheie.ResumeLayout(false);
     this.splitContainerCuvinteCheie.Panel1.ResumeLayout(false);
     this.splitContainerCuvinteCheie.Panel2.ResumeLayout(false);
     this.splitContainerCuvinteCheie.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.listaCuvinteCheie)).EndInit();
     this.gBoxRezCautareCuvinte.ResumeLayout(false);
     this.splitContainer4.Panel1.ResumeLayout(false);
     this.splitContainer4.Panel2.ResumeLayout(false);
     this.splitContainer4.ResumeLayout(false);
     this.gBoxCerinta.ResumeLayout(false);
     this.gBoxSursa.ResumeLayout(false);
     this.gBoxSursa.PerformLayout();
     this.tabPageTeste.ResumeLayout(false);
     this.splitContainer6.Panel1.ResumeLayout(false);
     this.splitContainer6.Panel2.ResumeLayout(false);
     this.splitContainer6.ResumeLayout(false);
     this.gBoxListaTeste.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.listaTeste)).EndInit();
     this.tabControlSubTeste.ResumeLayout(false);
     this.tabPageSubiectTest.ResumeLayout(false);
     this.tabPageSubiectTest.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.btnIntrebareUrmatoare)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.btnIntrebareAnterioara)).EndInit();
     this.panelTestFinish.ResumeLayout(false);
     this.panelTestFinish.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel5)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lblTestTerminat)).EndInit();
     this.panelWelcomeTest.ResumeLayout(false);
     this.panelWelcomeTest.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel1)).EndInit();
     this.tabPageCorectareTest.ResumeLayout(false);
     this.tabPageCompilator.ResumeLayout(false);
     this.splitContainer2.Panel1.ResumeLayout(false);
     this.splitContainer2.Panel1.PerformLayout();
     this.splitContainer2.Panel2.ResumeLayout(false);
     this.splitContainer2.ResumeLayout(false);
     this.panel1.ResumeLayout(false);
     this.panel1.PerformLayout();
     this.tabControlSubCompilator.ResumeLayout(false);
     this.tabPageRezultatCompilare.ResumeLayout(false);
     this.tabPageRezultatCompilare.PerformLayout();
     this.tabPageTestareProgram.ResumeLayout(false);
     this.splitContainer5.Panel1.ResumeLayout(false);
     this.splitContainer5.Panel2.ResumeLayout(false);
     this.splitContainer5.ResumeLayout(false);
     this.groupBox1.ResumeLayout(false);
     this.tabControlDateIntrare.ResumeLayout(false);
     this.tabcin.ResumeLayout(false);
     this.tabcin.PerformLayout();
     this.groupBox2.ResumeLayout(false);
     this.tabControlDateIesire.ResumeLayout(false);
     this.tabcout.ResumeLayout(false);
     this.tabcout.PerformLayout();
     this.tabPageTestareAutomata.ResumeLayout(false);
     this.tabPageTestareAutomata.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.btnAdaugaTestare)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.btnVerifica)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridVerificare.MasterGridViewTemplate)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridVerificare)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ribbonBar)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.statusStrip)).EndInit();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
コード例 #51
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();
     Telerik.WinControls.UI.GridViewComboBoxColumn  gridViewComboBoxColumn1 = new Telerik.WinControls.UI.GridViewComboBoxColumn();
     Telerik.WinControls.UI.GridViewComboBoxColumn  gridViewComboBoxColumn2 = new Telerik.WinControls.UI.GridViewComboBoxColumn();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(UserGroupsConfigForm));
     Telerik.WinControls.UI.GridViewCheckBoxColumn  gridViewCheckBoxColumn1 = new Telerik.WinControls.UI.GridViewCheckBoxColumn();
     Telerik.WinControls.UI.GridViewTextBoxColumn   gridViewTextBoxColumn1  = new Telerik.WinControls.UI.GridViewTextBoxColumn();
     Telerik.WinControls.UI.GridViewTextBoxColumn   gridViewTextBoxColumn2  = new Telerik.WinControls.UI.GridViewTextBoxColumn();
     Telerik.WinControls.UI.GridViewTextBoxColumn   gridViewTextBoxColumn3  = new Telerik.WinControls.UI.GridViewTextBoxColumn();
     Telerik.WinControls.UI.GridViewTextBoxColumn   gridViewTextBoxColumn4  = new Telerik.WinControls.UI.GridViewTextBoxColumn();
     this.enumBinder1                 = new Telerik.WinControls.UI.Data.EnumBinder();
     this.enumBinder2                 = new Telerik.WinControls.UI.Data.EnumBinder();
     this.ok_Button                   = new System.Windows.Forms.Button();
     this.tableLayoutPanel1           = new System.Windows.Forms.TableLayoutPanel();
     this.toolStrip1                  = new System.Windows.Forms.ToolStrip();
     this.toolStripLabel1             = new System.Windows.Forms.ToolStripLabel();
     this.addGroupToolStripButton     = new System.Windows.Forms.ToolStripButton();
     this.editToolStripButton         = new System.Windows.Forms.ToolStripButton();
     this.removeToolStripButton       = new System.Windows.Forms.ToolStripButton();
     this.user_RadGridView            = new Telerik.WinControls.UI.RadGridView();
     this.user_contextMenuStrip       = new System.Windows.Forms.ContextMenuStrip(this.components);
     this.selectAllToolStripMenuItem  = new System.Windows.Forms.ToolStripMenuItem();
     this.uncheckAllToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.userBindingSource           = new System.Windows.Forms.BindingSource(this.components);
     this.toolStrip2                  = new System.Windows.Forms.ToolStrip();
     this.toolStripLabel2             = new System.Windows.Forms.ToolStripLabel();
     this.groups_RadGridView          = new Telerik.WinControls.UI.RadGridView();
     this.userGroup_ContextMenuStrip  = new System.Windows.Forms.ContextMenuStrip(this.components);
     this.deleteToolStripMenuItem     = new System.Windows.Forms.ToolStripMenuItem();
     this.userGroupBindingSource      = new System.Windows.Forms.BindingSource(this.components);
     this.cancel_Button               = new System.Windows.Forms.Button();
     this.apply_Button                = new System.Windows.Forms.Button();
     this.editToolStripMenuItem       = new System.Windows.Forms.ToolStripMenuItem();
     this.tableLayoutPanel1.SuspendLayout();
     this.toolStrip1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.user_RadGridView)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.user_RadGridView.MasterTemplate)).BeginInit();
     this.user_contextMenuStrip.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.userBindingSource)).BeginInit();
     this.toolStrip2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.groups_RadGridView)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groups_RadGridView.MasterTemplate)).BeginInit();
     this.userGroup_ContextMenuStrip.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.userGroupBindingSource)).BeginInit();
     this.SuspendLayout();
     //
     // enumBinder1
     //
     this.enumBinder1.Source               = typeof(HP.ScalableTest.Core.Security.UserRole);
     gridViewComboBoxColumn1.DataSource    = this.enumBinder1;
     gridViewComboBoxColumn1.DisplayMember = "Description";
     gridViewComboBoxColumn1.ValueMember   = "Value";
     this.enumBinder1.Target               = gridViewComboBoxColumn1;
     //
     // enumBinder2
     //
     this.enumBinder2.Source               = typeof(HP.ScalableTest.Core.Security.UserRole);
     gridViewComboBoxColumn2.DataSource    = this.enumBinder2;
     gridViewComboBoxColumn2.DisplayMember = "Description";
     gridViewComboBoxColumn2.ValueMember   = "Value";
     this.enumBinder2.Target               = gridViewComboBoxColumn2;
     //
     // ok_Button
     //
     this.ok_Button.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.ok_Button.Location = new System.Drawing.Point(431, 513);
     this.ok_Button.Margin   = new System.Windows.Forms.Padding(4);
     this.ok_Button.Name     = "ok_Button";
     this.ok_Button.Size     = new System.Drawing.Size(100, 32);
     this.ok_Button.TabIndex = 4;
     this.ok_Button.Text     = "OK";
     this.ok_Button.UseVisualStyleBackColor = true;
     this.ok_Button.Click += new System.EventHandler(this.ok_Button_Click);
     //
     // tableLayoutPanel1
     //
     this.tableLayoutPanel1.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.tableLayoutPanel1.ColumnCount = 2;
     this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F));
     this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 382F));
     this.tableLayoutPanel1.Controls.Add(this.toolStrip1, 0, 0);
     this.tableLayoutPanel1.Controls.Add(this.user_RadGridView, 1, 1);
     this.tableLayoutPanel1.Controls.Add(this.toolStrip2, 1, 0);
     this.tableLayoutPanel1.Controls.Add(this.groups_RadGridView, 0, 1);
     this.tableLayoutPanel1.Location = new System.Drawing.Point(0, 0);
     this.tableLayoutPanel1.Margin   = new System.Windows.Forms.Padding(4);
     this.tableLayoutPanel1.Name     = "tableLayoutPanel1";
     this.tableLayoutPanel1.RowCount = 2;
     this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle());
     this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle());
     this.tableLayoutPanel1.Size     = new System.Drawing.Size(759, 505);
     this.tableLayoutPanel1.TabIndex = 13;
     //
     // toolStrip1
     //
     this.toolStrip1.GripStyle        = System.Windows.Forms.ToolStripGripStyle.Hidden;
     this.toolStrip1.ImageScalingSize = new System.Drawing.Size(20, 20);
     this.toolStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.toolStripLabel1,
         this.addGroupToolStripButton,
         this.editToolStripButton,
         this.removeToolStripButton
     });
     this.toolStrip1.Location = new System.Drawing.Point(0, 0);
     this.toolStrip1.Name     = "toolStrip1";
     this.toolStrip1.Size     = new System.Drawing.Size(377, 27);
     this.toolStrip1.TabIndex = 15;
     this.toolStrip1.Text     = "toolStrip1";
     //
     // toolStripLabel1
     //
     this.toolStripLabel1.Font = new System.Drawing.Font("Segoe UI", 9F, System.Drawing.FontStyle.Bold);
     this.toolStripLabel1.Name = "toolStripLabel1";
     this.toolStripLabel1.Size = new System.Drawing.Size(96, 24);
     this.toolStripLabel1.Text = "User Groups";
     //
     // addGroupToolStripButton
     //
     this.addGroupToolStripButton.Image = ((System.Drawing.Image)(resources.GetObject("addGroupToolStripButton.Image")));
     this.addGroupToolStripButton.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.addGroupToolStripButton.Name   = "addGroupToolStripButton";
     this.addGroupToolStripButton.Size   = new System.Drawing.Size(61, 24);
     this.addGroupToolStripButton.Text   = "Add";
     this.addGroupToolStripButton.Click += new System.EventHandler(this.addGroupToolStripButton_Click);
     //
     // editToolStripButton
     //
     this.editToolStripButton.Image = ((System.Drawing.Image)(resources.GetObject("editToolStripButton.Image")));
     this.editToolStripButton.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.editToolStripButton.Name   = "editToolStripButton";
     this.editToolStripButton.Size   = new System.Drawing.Size(59, 24);
     this.editToolStripButton.Text   = "Edit";
     this.editToolStripButton.Click += new System.EventHandler(this.editToolStripButton_Click);
     //
     // removeToolStripButton
     //
     this.removeToolStripButton.Image = ((System.Drawing.Image)(resources.GetObject("removeToolStripButton.Image")));
     this.removeToolStripButton.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.removeToolStripButton.Name   = "removeToolStripButton";
     this.removeToolStripButton.Size   = new System.Drawing.Size(87, 24);
     this.removeToolStripButton.Text   = "Remove";
     this.removeToolStripButton.Click += new System.EventHandler(this.removeToolStripButton_Click);
     //
     // user_RadGridView
     //
     this.user_RadGridView.ContextMenuStrip = this.user_contextMenuStrip;
     this.user_RadGridView.Dock             = System.Windows.Forms.DockStyle.Fill;
     this.user_RadGridView.Location         = new System.Drawing.Point(380, 30);
     //
     //
     //
     this.user_RadGridView.MasterTemplate.AllowAddNewRow               = false;
     this.user_RadGridView.MasterTemplate.AllowCellContextMenu         = false;
     this.user_RadGridView.MasterTemplate.AllowColumnChooser           = false;
     this.user_RadGridView.MasterTemplate.AllowColumnHeaderContextMenu = false;
     this.user_RadGridView.MasterTemplate.AllowColumnReorder           = false;
     this.user_RadGridView.MasterTemplate.AllowDeleteRow               = false;
     this.user_RadGridView.MasterTemplate.AllowDragToGroup             = false;
     this.user_RadGridView.MasterTemplate.AllowRowResize               = false;
     this.user_RadGridView.MasterTemplate.AutoGenerateColumns          = false;
     gridViewCheckBoxColumn1.FieldName      = "Selected";
     gridViewCheckBoxColumn1.HeaderText     = "";
     gridViewCheckBoxColumn1.Name           = "userSelectedColumn";
     gridViewTextBoxColumn1.FieldName       = "UserName";
     gridViewTextBoxColumn1.HeaderText      = "Name";
     gridViewTextBoxColumn1.IsAutoGenerated = true;
     gridViewTextBoxColumn1.Name            = "userNameColumn";
     gridViewTextBoxColumn1.ReadOnly        = true;
     gridViewTextBoxColumn2.FieldName       = "Domain";
     gridViewTextBoxColumn2.HeaderText      = "Domain";
     gridViewTextBoxColumn2.IsAutoGenerated = true;
     gridViewTextBoxColumn2.Name            = "Domain";
     gridViewTextBoxColumn2.ReadOnly        = true;
     this.user_RadGridView.MasterTemplate.Columns.AddRange(new Telerik.WinControls.UI.GridViewDataColumn[] {
         gridViewCheckBoxColumn1,
         gridViewTextBoxColumn1,
         gridViewTextBoxColumn2
     });
     this.user_RadGridView.MasterTemplate.DataSource = this.userBindingSource;
     this.user_RadGridView.MasterTemplate.EnableAlternatingRowColor = true;
     this.user_RadGridView.MasterTemplate.EnableGrouping            = false;
     this.user_RadGridView.MasterTemplate.MultiSelect         = true;
     this.user_RadGridView.MasterTemplate.ShowRowHeaderColumn = false;
     this.user_RadGridView.Name           = "user_RadGridView";
     this.user_RadGridView.ShowGroupPanel = false;
     this.user_RadGridView.Size           = new System.Drawing.Size(376, 472);
     this.user_RadGridView.TabIndex       = 18;
     this.user_RadGridView.Text           = "radGridView1";
     this.user_RadGridView.CellClick     += new Telerik.WinControls.UI.GridViewCellEventHandler(this.user_RadGridView_CellClick);
     //
     // user_contextMenuStrip
     //
     this.user_contextMenuStrip.ImageScalingSize = new System.Drawing.Size(20, 20);
     this.user_contextMenuStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.selectAllToolStripMenuItem,
         this.uncheckAllToolStripMenuItem
     });
     this.user_contextMenuStrip.Name = "virtualMachine_contextMenuStrip";
     this.user_contextMenuStrip.Size = new System.Drawing.Size(262, 56);
     //
     // selectAllToolStripMenuItem
     //
     this.selectAllToolStripMenuItem.Image  = ((System.Drawing.Image)(resources.GetObject("selectAllToolStripMenuItem.Image")));
     this.selectAllToolStripMenuItem.Name   = "selectAllToolStripMenuItem";
     this.selectAllToolStripMenuItem.Size   = new System.Drawing.Size(261, 26);
     this.selectAllToolStripMenuItem.Text   = "Check All Selected Rows";
     this.selectAllToolStripMenuItem.Click += new System.EventHandler(this.selectAllToolStripMenuItem_Click);
     //
     // uncheckAllToolStripMenuItem
     //
     this.uncheckAllToolStripMenuItem.Image  = ((System.Drawing.Image)(resources.GetObject("uncheckAllToolStripMenuItem.Image")));
     this.uncheckAllToolStripMenuItem.Name   = "uncheckAllToolStripMenuItem";
     this.uncheckAllToolStripMenuItem.Size   = new System.Drawing.Size(261, 26);
     this.uncheckAllToolStripMenuItem.Text   = "Uncheck All Selected Rows";
     this.uncheckAllToolStripMenuItem.Click += new System.EventHandler(this.uncheckAllToolStripMenuItem_Click);
     //
     // userBindingSource
     //
     this.userBindingSource.DataSource = typeof(HP.ScalableTest.Data.EnterpriseTest.Model.User);
     //
     // toolStrip2
     //
     this.toolStrip2.GripStyle        = System.Windows.Forms.ToolStripGripStyle.Hidden;
     this.toolStrip2.ImageScalingSize = new System.Drawing.Size(20, 20);
     this.toolStrip2.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.toolStripLabel2
     });
     this.toolStrip2.Location = new System.Drawing.Point(377, 0);
     this.toolStrip2.Name     = "toolStrip2";
     this.toolStrip2.Size     = new System.Drawing.Size(382, 25);
     this.toolStrip2.TabIndex = 16;
     this.toolStrip2.Text     = "toolStrip2";
     //
     // toolStripLabel2
     //
     this.toolStripLabel2.Font = new System.Drawing.Font("Segoe UI", 9F, System.Drawing.FontStyle.Bold);
     this.toolStripLabel2.Name = "toolStripLabel2";
     this.toolStripLabel2.Size = new System.Drawing.Size(145, 22);
     this.toolStripLabel2.Text = "Group Membership";
     //
     // groups_RadGridView
     //
     this.groups_RadGridView.ContextMenuStrip = this.userGroup_ContextMenuStrip;
     this.groups_RadGridView.Dock             = System.Windows.Forms.DockStyle.Fill;
     this.groups_RadGridView.Location         = new System.Drawing.Point(3, 30);
     //
     //
     //
     this.groups_RadGridView.MasterTemplate.AllowAddNewRow               = false;
     this.groups_RadGridView.MasterTemplate.AllowCellContextMenu         = false;
     this.groups_RadGridView.MasterTemplate.AllowColumnChooser           = false;
     this.groups_RadGridView.MasterTemplate.AllowColumnHeaderContextMenu = false;
     this.groups_RadGridView.MasterTemplate.AllowColumnReorder           = false;
     this.groups_RadGridView.MasterTemplate.AllowDeleteRow               = false;
     this.groups_RadGridView.MasterTemplate.AllowDragToGroup             = false;
     this.groups_RadGridView.MasterTemplate.AllowEditRow        = false;
     this.groups_RadGridView.MasterTemplate.AllowRowResize      = false;
     this.groups_RadGridView.MasterTemplate.AutoGenerateColumns = false;
     gridViewTextBoxColumn3.FieldName       = "GroupName";
     gridViewTextBoxColumn3.HeaderText      = "Name";
     gridViewTextBoxColumn3.IsAutoGenerated = true;
     gridViewTextBoxColumn3.Name            = "GroupName";
     gridViewTextBoxColumn4.FieldName       = "Description";
     gridViewTextBoxColumn4.HeaderText      = "Description";
     gridViewTextBoxColumn4.IsAutoGenerated = true;
     gridViewTextBoxColumn4.Name            = "Description";
     this.groups_RadGridView.MasterTemplate.Columns.AddRange(new Telerik.WinControls.UI.GridViewDataColumn[] {
         gridViewTextBoxColumn3,
         gridViewTextBoxColumn4
     });
     this.groups_RadGridView.MasterTemplate.DataSource          = this.userGroupBindingSource;
     this.groups_RadGridView.MasterTemplate.ShowRowHeaderColumn = false;
     this.groups_RadGridView.Name           = "groups_RadGridView";
     this.groups_RadGridView.ShowGroupPanel = false;
     this.groups_RadGridView.ShowRowErrors  = false;
     this.groups_RadGridView.Size           = new System.Drawing.Size(371, 472);
     this.groups_RadGridView.TabIndex       = 17;
     this.groups_RadGridView.Text           = "radGridView1";
     this.groups_RadGridView.UserAddedRow  += new Telerik.WinControls.UI.GridViewRowEventHandler(this.groups_RadGridView_UserAddedRow);
     this.groups_RadGridView.CellClick     += new Telerik.WinControls.UI.GridViewCellEventHandler(this.groups_RadGridView_CellClick);
     //
     // userGroup_ContextMenuStrip
     //
     this.userGroup_ContextMenuStrip.ImageScalingSize = new System.Drawing.Size(20, 20);
     this.userGroup_ContextMenuStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.editToolStripMenuItem,
         this.deleteToolStripMenuItem
     });
     this.userGroup_ContextMenuStrip.Name = "platform_ContextMenuStrip";
     this.userGroup_ContextMenuStrip.Size = new System.Drawing.Size(182, 84);
     //
     // deleteToolStripMenuItem
     //
     this.deleteToolStripMenuItem.Image  = ((System.Drawing.Image)(resources.GetObject("deleteToolStripMenuItem.Image")));
     this.deleteToolStripMenuItem.Name   = "deleteToolStripMenuItem";
     this.deleteToolStripMenuItem.Size   = new System.Drawing.Size(181, 26);
     this.deleteToolStripMenuItem.Text   = "Delete";
     this.deleteToolStripMenuItem.Click += new System.EventHandler(this.deleteToolStripMenuItem_Click);
     //
     // userGroupBindingSource
     //
     this.userGroupBindingSource.DataSource = typeof(HP.ScalableTest.Data.EnterpriseTest.Model.UserGroup);
     //
     // cancel_Button
     //
     this.cancel_Button.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.cancel_Button.Location = new System.Drawing.Point(539, 513);
     this.cancel_Button.Margin   = new System.Windows.Forms.Padding(4);
     this.cancel_Button.Name     = "cancel_Button";
     this.cancel_Button.Size     = new System.Drawing.Size(100, 32);
     this.cancel_Button.TabIndex = 14;
     this.cancel_Button.Text     = "Cancel";
     this.cancel_Button.UseVisualStyleBackColor = true;
     this.cancel_Button.Click += new System.EventHandler(this.cancel_Button_Click);
     //
     // apply_Button
     //
     this.apply_Button.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.apply_Button.Location = new System.Drawing.Point(647, 513);
     this.apply_Button.Margin   = new System.Windows.Forms.Padding(4);
     this.apply_Button.Name     = "apply_Button";
     this.apply_Button.Size     = new System.Drawing.Size(100, 32);
     this.apply_Button.TabIndex = 16;
     this.apply_Button.Text     = "Apply";
     this.apply_Button.UseVisualStyleBackColor = true;
     this.apply_Button.Click += new System.EventHandler(this.apply_Button_Click);
     //
     // editToolStripMenuItem
     //
     this.editToolStripMenuItem.Image  = ((System.Drawing.Image)(resources.GetObject("editToolStripMenuItem.Image")));
     this.editToolStripMenuItem.Name   = "editToolStripMenuItem";
     this.editToolStripMenuItem.Size   = new System.Drawing.Size(181, 26);
     this.editToolStripMenuItem.Text   = "Edit";
     this.editToolStripMenuItem.Click += new System.EventHandler(this.editToolStripMenuItem_Click);
     //
     // UserGroupsConfigForm
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 16F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize          = new System.Drawing.Size(760, 558);
     this.Controls.Add(this.apply_Button);
     this.Controls.Add(this.tableLayoutPanel1);
     this.Controls.Add(this.ok_Button);
     this.Controls.Add(this.cancel_Button);
     this.Icon        = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.Margin      = new System.Windows.Forms.Padding(4);
     this.MinimumSize = new System.Drawing.Size(661, 605);
     this.Name        = "UserGroupsConfigForm";
     this.Text        = "UserGroup Management ";
     this.Load       += new System.EventHandler(this.UserGroupsConfigForm_Load);
     this.tableLayoutPanel1.ResumeLayout(false);
     this.tableLayoutPanel1.PerformLayout();
     this.toolStrip1.ResumeLayout(false);
     this.toolStrip1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.user_RadGridView.MasterTemplate)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.user_RadGridView)).EndInit();
     this.user_contextMenuStrip.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.userBindingSource)).EndInit();
     this.toolStrip2.ResumeLayout(false);
     this.toolStrip2.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.groups_RadGridView.MasterTemplate)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groups_RadGridView)).EndInit();
     this.userGroup_ContextMenuStrip.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.userGroupBindingSource)).EndInit();
     this.ResumeLayout(false);
 }
コード例 #52
0
        /// <summary>
        /// Required method for Designer support - do not modify
        /// the contents of this method with the code editor.
        /// </summary>
        private void InitializeComponent()
        {
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn1 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn2 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn3 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn4 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn5 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewCheckBoxColumn gridViewCheckBoxColumn1 = new Telerik.WinControls.UI.GridViewCheckBoxColumn();
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmLearningAreas));
            this.radPanel1 = new Telerik.WinControls.UI.RadPanel();
            this.gvLearningArea = new Telerik.WinControls.UI.RadGridView();
            this.radPanel2 = new Telerik.WinControls.UI.RadPanel();
            this.btnAddBuilding = new Telerik.WinControls.UI.RadButton();
            this.btnEditBuilding = new Telerik.WinControls.UI.RadButton();
            ((System.ComponentModel.ISupportInitialize)(this.radPanel1)).BeginInit();
            this.radPanel1.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.gvLearningArea)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.gvLearningArea.MasterTemplate)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radPanel2)).BeginInit();
            this.radPanel2.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.btnAddBuilding)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.btnEditBuilding)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
            this.SuspendLayout();
            // 
            // radPanel1
            // 
            this.radPanel1.Controls.Add(this.gvLearningArea);
            this.radPanel1.Controls.Add(this.radPanel2);
            this.radPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
            this.radPanel1.Location = new System.Drawing.Point(0, 0);
            this.radPanel1.Name = "radPanel1";
            this.radPanel1.Size = new System.Drawing.Size(841, 475);
            this.radPanel1.TabIndex = 0;
            // 
            // gvLearningArea
            // 
            this.gvLearningArea.Dock = System.Windows.Forms.DockStyle.Fill;
            this.gvLearningArea.Location = new System.Drawing.Point(0, 0);
            // 
            // 
            // 
            this.gvLearningArea.MasterTemplate.AllowAddNewRow = false;
            this.gvLearningArea.MasterTemplate.AllowColumnReorder = false;
            this.gvLearningArea.MasterTemplate.AllowDeleteRow = false;
            this.gvLearningArea.MasterTemplate.AllowDragToGroup = false;
            this.gvLearningArea.MasterTemplate.AllowEditRow = false;
            this.gvLearningArea.MasterTemplate.AllowSearchRow = true;
            gridViewTextBoxColumn1.FieldName = "LearningAreaCode";
            gridViewTextBoxColumn1.HeaderText = "Learning Area Code";
            gridViewTextBoxColumn1.Name = "LearningAreaCode";
            gridViewTextBoxColumn1.Width = 150;
            gridViewTextBoxColumn1.WrapText = true;
            gridViewTextBoxColumn2.FieldName = "Description";
            gridViewTextBoxColumn2.HeaderText = "Description";
            gridViewTextBoxColumn2.Name = "Description";
            gridViewTextBoxColumn2.Width = 300;
            gridViewTextBoxColumn2.WrapText = true;
            gridViewTextBoxColumn3.FieldName = "Units";
            gridViewTextBoxColumn3.HeaderText = "Units";
            gridViewTextBoxColumn3.Name = "Units";
            gridViewTextBoxColumn3.TextAlignment = System.Drawing.ContentAlignment.MiddleRight;
            gridViewTextBoxColumn3.WrapText = true;
            gridViewTextBoxColumn4.FieldName = "RatePerUnit";
            gridViewTextBoxColumn4.HeaderText = "Rate per Unit";
            gridViewTextBoxColumn4.Name = "RatePerUnit";
            gridViewTextBoxColumn4.TextAlignment = System.Drawing.ContentAlignment.MiddleRight;
            gridViewTextBoxColumn4.Width = 100;
            gridViewTextBoxColumn5.FieldName = "RatePerSubject";
            gridViewTextBoxColumn5.HeaderText = "Rate Per Subject";
            gridViewTextBoxColumn5.Name = "RatePerSubject";
            gridViewTextBoxColumn5.TextAlignment = System.Drawing.ContentAlignment.MiddleRight;
            gridViewTextBoxColumn5.Width = 100;
            gridViewCheckBoxColumn1.FieldName = "Academic";
            gridViewCheckBoxColumn1.HeaderText = "Academic";
            gridViewCheckBoxColumn1.Name = "Academic";
            gridViewCheckBoxColumn1.Width = 100;
            this.gvLearningArea.MasterTemplate.Columns.AddRange(new Telerik.WinControls.UI.GridViewDataColumn[] {
            gridViewTextBoxColumn1,
            gridViewTextBoxColumn2,
            gridViewTextBoxColumn3,
            gridViewTextBoxColumn4,
            gridViewTextBoxColumn5,
            gridViewCheckBoxColumn1});
            this.gvLearningArea.MasterTemplate.EnableGrouping = false;
            this.gvLearningArea.MasterTemplate.EnableSorting = false;
            this.gvLearningArea.MasterTemplate.ShowFilteringRow = false;
            this.gvLearningArea.Name = "gvLearningArea";
            this.gvLearningArea.ShowGroupPanel = false;
            this.gvLearningArea.Size = new System.Drawing.Size(841, 425);
            this.gvLearningArea.TabIndex = 0;
            this.gvLearningArea.SelectionChanged += new System.EventHandler(this.gvLearningArea_SelectionChanged);
            this.gvLearningArea.DoubleClick += new System.EventHandler(this.btnEditBuilding_Click);
            // 
            // radPanel2
            // 
            this.radPanel2.Controls.Add(this.btnAddBuilding);
            this.radPanel2.Controls.Add(this.btnEditBuilding);
            this.radPanel2.Dock = System.Windows.Forms.DockStyle.Bottom;
            this.radPanel2.Location = new System.Drawing.Point(0, 425);
            this.radPanel2.Name = "radPanel2";
            this.radPanel2.Size = new System.Drawing.Size(841, 50);
            this.radPanel2.TabIndex = 41;
            // 
            // btnAddBuilding
            // 
            this.btnAddBuilding.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
            this.btnAddBuilding.Location = new System.Drawing.Point(657, 14);
            this.btnAddBuilding.Name = "btnAddBuilding";
            this.btnAddBuilding.Size = new System.Drawing.Size(83, 24);
            this.btnAddBuilding.TabIndex = 1;
            this.btnAddBuilding.Text = "Add";
            this.btnAddBuilding.Click += new System.EventHandler(this.btnAddBuilding_Click);
            // 
            // btnEditBuilding
            // 
            this.btnEditBuilding.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
            this.btnEditBuilding.Location = new System.Drawing.Point(746, 14);
            this.btnEditBuilding.Name = "btnEditBuilding";
            this.btnEditBuilding.Size = new System.Drawing.Size(83, 24);
            this.btnEditBuilding.TabIndex = 2;
            this.btnEditBuilding.Text = "Edit";
            this.btnEditBuilding.Click += new System.EventHandler(this.btnEditBuilding_Click);
            // 
            // frmLearningAreas
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.ClientSize = new System.Drawing.Size(841, 475);
            this.Controls.Add(this.radPanel1);
            this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
            this.Name = "frmLearningAreas";
            // 
            // 
            // 
            this.RootElement.ApplyShapeToControl = true;
            this.Text = "Learning Areas List";
            this.ThemeName = "ControlDefault";
            this.Activated += new System.EventHandler(this.frmLearningAreas_Activated);
            this.Load += new System.EventHandler(this.frmLearningAreas_Load);
            ((System.ComponentModel.ISupportInitialize)(this.radPanel1)).EndInit();
            this.radPanel1.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.gvLearningArea.MasterTemplate)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.gvLearningArea)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radPanel2)).EndInit();
            this.radPanel2.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.btnAddBuilding)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.btnEditBuilding)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this)).EndInit();
            this.ResumeLayout(false);

        }
コード例 #53
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();
     Telerik.WinControls.UI.GridViewTextBoxColumn   gridViewTextBoxColumn1  = new Telerik.WinControls.UI.GridViewTextBoxColumn();
     Telerik.WinControls.UI.GridViewCheckBoxColumn  gridViewCheckBoxColumn1 = new Telerik.WinControls.UI.GridViewCheckBoxColumn();
     Telerik.WinControls.UI.GridViewTextBoxColumn   gridViewTextBoxColumn2  = new Telerik.WinControls.UI.GridViewTextBoxColumn();
     Telerik.WinControls.UI.GridViewTextBoxColumn   gridViewTextBoxColumn3  = new Telerik.WinControls.UI.GridViewTextBoxColumn();
     Telerik.WinControls.UI.GridViewTextBoxColumn   gridViewTextBoxColumn4  = new Telerik.WinControls.UI.GridViewTextBoxColumn();
     Telerik.WinControls.UI.GridViewTextBoxColumn   gridViewTextBoxColumn5  = new Telerik.WinControls.UI.GridViewTextBoxColumn();
     Telerik.WinControls.UI.GridViewTextBoxColumn   gridViewTextBoxColumn6  = new Telerik.WinControls.UI.GridViewTextBoxColumn();
     Telerik.WinControls.UI.GridViewTextBoxColumn   gridViewTextBoxColumn7  = new Telerik.WinControls.UI.GridViewTextBoxColumn();
     Telerik.WinControls.UI.GridViewDateTimeColumn  gridViewDateTimeColumn1 = new Telerik.WinControls.UI.GridViewDateTimeColumn();
     Telerik.WinControls.UI.GridViewTextBoxColumn   gridViewTextBoxColumn8  = new Telerik.WinControls.UI.GridViewTextBoxColumn();
     Telerik.WinControls.UI.GridViewTextBoxColumn   gridViewTextBoxColumn9  = new Telerik.WinControls.UI.GridViewTextBoxColumn();
     Telerik.WinControls.UI.TableViewDefinition     tableViewDefinition1    = new Telerik.WinControls.UI.TableViewDefinition();
     Telerik.WinControls.UI.RadListDataItem         radListDataItem1        = new Telerik.WinControls.UI.RadListDataItem();
     Telerik.WinControls.UI.RadListDataItem         radListDataItem2        = new Telerik.WinControls.UI.RadListDataItem();
     Telerik.WinControls.UI.RadListDataItem         radListDataItem3        = new Telerik.WinControls.UI.RadListDataItem();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(ApproveList));
     this.radStatusStrip1              = new Telerik.WinControls.UI.RadStatusStrip();
     this.radLabelElement1             = new Telerik.WinControls.UI.RadLabelElement();
     this.panel1                       = new System.Windows.Forms.Panel();
     this.radGridView1                 = new Telerik.WinControls.UI.RadGridView();
     this.contextMenuStrip1            = new System.Windows.Forms.ContextMenuStrip(this.components);
     this.frezzRowToolStripMenuItem    = new System.Windows.Forms.ToolStripMenuItem();
     this.frezzColumnToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripSeparator1          = new System.Windows.Forms.ToolStripSeparator();
     this.unFrezzToolStripMenuItem     = new System.Windows.Forms.ToolStripMenuItem();
     this.radPanel1                    = new Telerik.WinControls.UI.RadPanel();
     this.ddlType                      = new Telerik.WinControls.UI.RadDropDownList();
     this.ddlStatus                    = new Telerik.WinControls.UI.RadDropDownList();
     this.cbDate                       = new Telerik.WinControls.UI.RadCheckBox();
     this.dtDateTo                     = new Telerik.WinControls.UI.RadDateTimePicker();
     this.dtDateFrom                   = new Telerik.WinControls.UI.RadDateTimePicker();
     this.radLabel4                    = new Telerik.WinControls.UI.RadLabel();
     this.btnSearch                    = new Telerik.WinControls.UI.RadButton();
     this.txtDocNo                     = new Telerik.WinControls.UI.RadTextBox();
     this.radLabel1                    = new Telerik.WinControls.UI.RadLabel();
     this.radLabel2                    = new Telerik.WinControls.UI.RadLabel();
     this.radLabel37                   = new Telerik.WinControls.UI.RadLabel();
     this.office2010BlueTheme1         = new Telerik.WinControls.Themes.Office2010BlueTheme();
     this.radRibbonBarButtonGroup2     = new Telerik.WinControls.UI.RadRibbonBarButtonGroup();
     this.btnFilter                    = new Telerik.WinControls.UI.RadButtonElement();
     this.Unfilter                     = new Telerik.WinControls.UI.RadButtonElement();
     this.radRibbonBarButtonGroup5     = new Telerik.WinControls.UI.RadRibbonBarButtonGroup();
     this.radRibbonBar1                = new Telerik.WinControls.UI.RadRibbonBar();
     this.ribbonTab1                   = new Telerik.WinControls.UI.RibbonTab();
     this.radRibbonBarGroup1           = new Telerik.WinControls.UI.RadRibbonBarGroup();
     this.radButtonElement1            = new Telerik.WinControls.UI.RadButtonElement();
     this.radButtonElement3            = new Telerik.WinControls.UI.RadButtonElement();
     this.radButtonElement2            = new Telerik.WinControls.UI.RadButtonElement();
     this.radRibbonBarGroup4           = new Telerik.WinControls.UI.RadRibbonBarGroup();
     this.btnExport                    = new Telerik.WinControls.UI.RadButtonElement();
     this.radRibbonBarGroup3           = new Telerik.WinControls.UI.RadRibbonBarGroup();
     this.btnRefresh                   = new Telerik.WinControls.UI.RadButtonElement();
     this.radRibbonBarGroup5           = new Telerik.WinControls.UI.RadRibbonBarGroup();
     this.radRibbonBarButtonGroup3     = new Telerik.WinControls.UI.RadRibbonBarButtonGroup();
     this.btnFilter1                   = new Telerik.WinControls.UI.RadButtonElement();
     this.btnUnfilter1                 = new Telerik.WinControls.UI.RadButtonElement();
     this.ribbonBarGroupSeparator1     = new Telerik.WinControls.UI.RibbonBarGroupSeparator();
     this.radRibbonBarGroup2           = new Telerik.WinControls.UI.RadRibbonBarGroup();
     this.btn_PrintPR                  = new Telerik.WinControls.UI.RadButtonElement();
     this.btn_Print_Barcode            = new Telerik.WinControls.UI.RadButtonElement();
     this.radMenuItem1                 = new Telerik.WinControls.UI.RadMenuItem();
     ((System.ComponentModel.ISupportInitialize)(this.radStatusStrip1)).BeginInit();
     this.panel1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.radGridView1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radGridView1.MasterTemplate)).BeginInit();
     this.contextMenuStrip1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.radPanel1)).BeginInit();
     this.radPanel1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.ddlType)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ddlStatus)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cbDate)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dtDateTo)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dtDateFrom)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel4)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.btnSearch)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtDocNo)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel37)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radRibbonBar1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
     this.SuspendLayout();
     //
     // radStatusStrip1
     //
     this.radStatusStrip1.Items.AddRange(new Telerik.WinControls.RadItem[] {
         this.radLabelElement1
     });
     this.radStatusStrip1.Location   = new System.Drawing.Point(0, 574);
     this.radStatusStrip1.Name       = "radStatusStrip1";
     this.radStatusStrip1.Size       = new System.Drawing.Size(719, 26);
     this.radStatusStrip1.SizingGrip = false;
     this.radStatusStrip1.TabIndex   = 1;
     //
     // radLabelElement1
     //
     this.radLabelElement1.Name = "radLabelElement1";
     this.radStatusStrip1.SetSpring(this.radLabelElement1, false);
     this.radLabelElement1.Text       = "Status : รายการราคาสั่งซื้อส่วนเพิ่ม ทั้งหมด";
     this.radLabelElement1.TextWrap   = true;
     this.radLabelElement1.Visibility = Telerik.WinControls.ElementVisibility.Collapsed;
     //
     // panel1
     //
     this.panel1.BackColor = System.Drawing.Color.White;
     this.panel1.Controls.Add(this.radGridView1);
     this.panel1.Controls.Add(this.radPanel1);
     this.panel1.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.panel1.Location = new System.Drawing.Point(0, 160);
     this.panel1.Name     = "panel1";
     this.panel1.Size     = new System.Drawing.Size(719, 414);
     this.panel1.TabIndex = 2;
     //
     // radGridView1
     //
     this.radGridView1.BackColor = System.Drawing.Color.White;
     this.radGridView1.ColumnChooserSortOrder = Telerik.WinControls.UI.RadSortOrder.Ascending;
     this.radGridView1.ContextMenuStrip       = this.contextMenuStrip1;
     this.radGridView1.Cursor       = System.Windows.Forms.Cursors.Default;
     this.radGridView1.Dock         = System.Windows.Forms.DockStyle.Fill;
     this.radGridView1.EnterKeyMode = Telerik.WinControls.UI.RadGridViewEnterKeyMode.EnterMovesToNextCell;
     this.radGridView1.Font         = new System.Drawing.Font("Tahoma", 8.25F);
     this.radGridView1.ForeColor    = System.Drawing.Color.Black;
     this.radGridView1.ImeMode      = System.Windows.Forms.ImeMode.NoControl;
     this.radGridView1.Location     = new System.Drawing.Point(0, 92);
     //
     //
     //
     this.radGridView1.MasterTemplate.AddNewRowPosition            = Telerik.WinControls.UI.SystemRowPosition.Bottom;
     this.radGridView1.MasterTemplate.AllowAddNewRow               = false;
     this.radGridView1.MasterTemplate.AllowCellContextMenu         = false;
     this.radGridView1.MasterTemplate.AllowColumnChooser           = false;
     this.radGridView1.MasterTemplate.AllowColumnHeaderContextMenu = false;
     this.radGridView1.MasterTemplate.AllowDeleteRow               = false;
     this.radGridView1.MasterTemplate.AllowDragToGroup             = false;
     this.radGridView1.MasterTemplate.AllowRowResize               = false;
     this.radGridView1.MasterTemplate.AutoGenerateColumns          = false;
     gridViewTextBoxColumn1.EnableExpressionEditor = false;
     gridViewTextBoxColumn1.HeaderText             = "ลำดับ";
     gridViewTextBoxColumn1.Name     = "No";
     gridViewTextBoxColumn1.ReadOnly = true;
     gridViewTextBoxColumn1.Width    = 39;
     gridViewCheckBoxColumn1.Checked = Telerik.WinControls.Enumerations.ToggleState.On;
     gridViewCheckBoxColumn1.EnableExpressionEditor = false;
     gridViewCheckBoxColumn1.EnableHeaderCheckBox   = true;
     gridViewCheckBoxColumn1.FieldName             = "S";
     gridViewCheckBoxColumn1.HeaderText            = "เลือก";
     gridViewCheckBoxColumn1.MinWidth              = 20;
     gridViewCheckBoxColumn1.Name                  = "S";
     gridViewCheckBoxColumn1.TextAlignment         = System.Drawing.ContentAlignment.MiddleCenter;
     gridViewCheckBoxColumn1.Width                 = 51;
     gridViewTextBoxColumn2.EnableExpressionEditor = false;
     gridViewTextBoxColumn2.FieldName              = "ApproveNo";
     gridViewTextBoxColumn2.HeaderText             = "Approve No";
     gridViewTextBoxColumn2.IsVisible              = false;
     gridViewTextBoxColumn2.Name  = "ApproveNo";
     gridViewTextBoxColumn2.Width = 92;
     gridViewTextBoxColumn3.EnableExpressionEditor = false;
     gridViewTextBoxColumn3.FieldName               = "Seq";
     gridViewTextBoxColumn3.HeaderText              = "Seq";
     gridViewTextBoxColumn3.IsVisible               = false;
     gridViewTextBoxColumn3.Name                    = "Seq";
     gridViewTextBoxColumn3.ReadOnly                = true;
     gridViewTextBoxColumn4.EnableExpressionEditor  = false;
     gridViewTextBoxColumn4.FieldName               = "ApproveDocuNo";
     gridViewTextBoxColumn4.HeaderText              = "เลขที่เอกสาร";
     gridViewTextBoxColumn4.Name                    = "ApproveDocuNo";
     gridViewTextBoxColumn4.ReadOnly                = true;
     gridViewTextBoxColumn4.Width                   = 114;
     gridViewTextBoxColumn5.EnableExpressionEditor  = false;
     gridViewTextBoxColumn5.FieldName               = "ApproveType";
     gridViewTextBoxColumn5.HeaderText              = "ประเภทเอกสาร";
     gridViewTextBoxColumn5.Name                    = "ApproveType";
     gridViewTextBoxColumn5.ReadOnly                = true;
     gridViewTextBoxColumn5.Width                   = 106;
     gridViewTextBoxColumn6.EnableExpressionEditor  = false;
     gridViewTextBoxColumn6.FieldName               = "S_Status";
     gridViewTextBoxColumn6.HeaderText              = "สถานะ";
     gridViewTextBoxColumn6.Name                    = "Status";
     gridViewTextBoxColumn6.ReadOnly                = true;
     gridViewTextBoxColumn6.Width                   = 98;
     gridViewTextBoxColumn7.EnableExpressionEditor  = false;
     gridViewTextBoxColumn7.FieldName               = "CreateBy";
     gridViewTextBoxColumn7.HeaderText              = "สร้างโดย";
     gridViewTextBoxColumn7.Name                    = "CreateBy";
     gridViewTextBoxColumn7.Width                   = 91;
     gridViewDateTimeColumn1.EnableExpressionEditor = false;
     gridViewDateTimeColumn1.FieldName              = "CreateDate";
     gridViewDateTimeColumn1.FormatString           = "{0:dd/MMM/yyyy}";
     gridViewDateTimeColumn1.HeaderText             = "สร้างวันที่";
     gridViewDateTimeColumn1.Name                   = "CreateDate";
     gridViewDateTimeColumn1.Width                  = 84;
     gridViewTextBoxColumn8.EnableExpressionEditor  = false;
     gridViewTextBoxColumn8.FieldName               = "id";
     gridViewTextBoxColumn8.HeaderText              = "id";
     gridViewTextBoxColumn8.IsVisible               = false;
     gridViewTextBoxColumn8.Name                    = "id";
     gridViewTextBoxColumn8.ReadOnly                = true;
     gridViewTextBoxColumn9.EnableExpressionEditor  = false;
     gridViewTextBoxColumn9.FieldName               = "RemarkReject1";
     gridViewTextBoxColumn9.HeaderText              = "เหตุผล ยกเลิก";
     gridViewTextBoxColumn9.Name                    = "RemarkReject";
     gridViewTextBoxColumn9.ReadOnly                = true;
     gridViewTextBoxColumn9.Width                   = 160;
     this.radGridView1.MasterTemplate.Columns.AddRange(new Telerik.WinControls.UI.GridViewDataColumn[] {
         gridViewTextBoxColumn1,
         gridViewCheckBoxColumn1,
         gridViewTextBoxColumn2,
         gridViewTextBoxColumn3,
         gridViewTextBoxColumn4,
         gridViewTextBoxColumn5,
         gridViewTextBoxColumn6,
         gridViewTextBoxColumn7,
         gridViewDateTimeColumn1,
         gridViewTextBoxColumn8,
         gridViewTextBoxColumn9
     });
     this.radGridView1.MasterTemplate.SelectionMode  = Telerik.WinControls.UI.GridViewSelectionMode.CellSelect;
     this.radGridView1.MasterTemplate.ViewDefinition = tableViewDefinition1;
     this.radGridView1.Name             = "radGridView1";
     this.radGridView1.RightToLeft      = System.Windows.Forms.RightToLeft.No;
     this.radGridView1.ShowGroupPanel   = false;
     this.radGridView1.Size             = new System.Drawing.Size(719, 322);
     this.radGridView1.TabIndex         = 2;
     this.radGridView1.ThemeName        = "Office2010Blue";
     this.radGridView1.CellDoubleClick += new Telerik.WinControls.UI.GridViewCellEventHandler(this.radGridView1_CellDoubleClick);
     //
     // contextMenuStrip1
     //
     this.contextMenuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.frezzRowToolStripMenuItem,
         this.frezzColumnToolStripMenuItem,
         this.toolStripSeparator1,
         this.unFrezzToolStripMenuItem
     });
     this.contextMenuStrip1.Name = "contextMenuStrip1";
     this.contextMenuStrip1.Size = new System.Drawing.Size(150, 76);
     //
     // frezzRowToolStripMenuItem
     //
     this.frezzRowToolStripMenuItem.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(224)))), ((int)(((byte)(192)))));
     this.frezzRowToolStripMenuItem.Name      = "frezzRowToolStripMenuItem";
     this.frezzRowToolStripMenuItem.Size      = new System.Drawing.Size(149, 22);
     this.frezzRowToolStripMenuItem.Text      = " Frezz Row";
     this.frezzRowToolStripMenuItem.Click    += new System.EventHandler(this.frezzRowToolStripMenuItem_Click);
     //
     // frezzColumnToolStripMenuItem
     //
     this.frezzColumnToolStripMenuItem.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
     this.frezzColumnToolStripMenuItem.Name      = "frezzColumnToolStripMenuItem";
     this.frezzColumnToolStripMenuItem.Size      = new System.Drawing.Size(149, 22);
     this.frezzColumnToolStripMenuItem.Text      = " Frezz Column";
     this.frezzColumnToolStripMenuItem.Click    += new System.EventHandler(this.frezzColumnToolStripMenuItem_Click);
     //
     // toolStripSeparator1
     //
     this.toolStripSeparator1.Name = "toolStripSeparator1";
     this.toolStripSeparator1.Size = new System.Drawing.Size(146, 6);
     //
     // unFrezzToolStripMenuItem
     //
     this.unFrezzToolStripMenuItem.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(192)))), ((int)(((byte)(192)))));
     this.unFrezzToolStripMenuItem.Name      = "unFrezzToolStripMenuItem";
     this.unFrezzToolStripMenuItem.Size      = new System.Drawing.Size(149, 22);
     this.unFrezzToolStripMenuItem.Text      = "UnFrezz";
     this.unFrezzToolStripMenuItem.Click    += new System.EventHandler(this.unFrezzToolStripMenuItem_Click);
     //
     // radPanel1
     //
     this.radPanel1.BackColor = System.Drawing.Color.AliceBlue;
     this.radPanel1.Controls.Add(this.ddlType);
     this.radPanel1.Controls.Add(this.ddlStatus);
     this.radPanel1.Controls.Add(this.cbDate);
     this.radPanel1.Controls.Add(this.dtDateTo);
     this.radPanel1.Controls.Add(this.dtDateFrom);
     this.radPanel1.Controls.Add(this.radLabel4);
     this.radPanel1.Controls.Add(this.btnSearch);
     this.radPanel1.Controls.Add(this.txtDocNo);
     this.radPanel1.Controls.Add(this.radLabel1);
     this.radPanel1.Controls.Add(this.radLabel2);
     this.radPanel1.Controls.Add(this.radLabel37);
     this.radPanel1.Dock      = System.Windows.Forms.DockStyle.Top;
     this.radPanel1.Location  = new System.Drawing.Point(0, 0);
     this.radPanel1.Name      = "radPanel1";
     this.radPanel1.Size      = new System.Drawing.Size(719, 92);
     this.radPanel1.TabIndex  = 1;
     this.radPanel1.ThemeName = "Office2010Blue";
     //
     // ddlType
     //
     this.ddlType.Location = new System.Drawing.Point(123, 32);
     this.ddlType.Name     = "ddlType";
     this.ddlType.Size     = new System.Drawing.Size(125, 20);
     this.ddlType.TabIndex = 25;
     //
     // ddlStatus
     //
     radListDataItem1.Text = "Waiting";
     radListDataItem2.Text = "Approved";
     radListDataItem3.Text = "Reject";
     this.ddlStatus.Items.Add(radListDataItem1);
     this.ddlStatus.Items.Add(radListDataItem2);
     this.ddlStatus.Items.Add(radListDataItem3);
     this.ddlStatus.Location = new System.Drawing.Point(314, 10);
     this.ddlStatus.Name     = "ddlStatus";
     this.ddlStatus.Size     = new System.Drawing.Size(95, 20);
     this.ddlStatus.TabIndex = 25;
     this.ddlStatus.Text     = "Waiting";
     //
     // cbDate
     //
     this.cbDate.Location = new System.Drawing.Point(23, 57);
     this.cbDate.Name     = "cbDate";
     this.cbDate.Size     = new System.Drawing.Size(87, 18);
     this.cbDate.TabIndex = 24;
     this.cbDate.Text     = "เลือกวันที่สร้าง";
     this.cbDate.Visible  = false;
     //
     // dtDateTo
     //
     this.dtDateTo.CustomFormat = "dd/MMM/yyyy";
     this.dtDateTo.Font         = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.dtDateTo.Format       = System.Windows.Forms.DateTimePickerFormat.Custom;
     this.dtDateTo.Location     = new System.Drawing.Point(275, 58);
     this.dtDateTo.Name         = "dtDateTo";
     this.dtDateTo.Size         = new System.Drawing.Size(134, 19);
     this.dtDateTo.TabIndex     = 10;
     this.dtDateTo.TabStop      = false;
     this.dtDateTo.Text         = "16/May/2017";
     this.dtDateTo.ThemeName    = "Office2010Blue";
     this.dtDateTo.Value        = new System.DateTime(2017, 5, 16, 21, 48, 34, 546);
     this.dtDateTo.Visible      = false;
     //
     // dtDateFrom
     //
     this.dtDateFrom.CustomFormat = "dd/MMM/yyyy";
     this.dtDateFrom.Font         = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.dtDateFrom.Format       = System.Windows.Forms.DateTimePickerFormat.Custom;
     this.dtDateFrom.Location     = new System.Drawing.Point(123, 57);
     this.dtDateFrom.Name         = "dtDateFrom";
     this.dtDateFrom.Size         = new System.Drawing.Size(125, 19);
     this.dtDateFrom.TabIndex     = 11;
     this.dtDateFrom.TabStop      = false;
     this.dtDateFrom.Text         = "16/May/2017";
     this.dtDateFrom.ThemeName    = "Office2010Blue";
     this.dtDateFrom.Value        = new System.DateTime(2017, 5, 16, 21, 48, 34, 546);
     this.dtDateFrom.Visible      = false;
     //
     // radLabel4
     //
     this.radLabel4.Location = new System.Drawing.Point(251, 57);
     this.radLabel4.Name     = "radLabel4";
     this.radLabel4.Size     = new System.Drawing.Size(18, 18);
     this.radLabel4.TabIndex = 8;
     this.radLabel4.Text     = "ถึง";
     this.radLabel4.Visible  = false;
     //
     // btnSearch
     //
     this.btnSearch.Image             = ((System.Drawing.Image)(resources.GetObject("btnSearch.Image")));
     this.btnSearch.Location          = new System.Drawing.Point(469, 8);
     this.btnSearch.Name              = "btnSearch";
     this.btnSearch.Size              = new System.Drawing.Size(80, 44);
     this.btnSearch.TabIndex          = 6;
     this.btnSearch.Text              = "ค้นหา";
     this.btnSearch.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageBeforeText;
     this.btnSearch.ThemeName         = "Office2010Blue";
     this.btnSearch.Click            += new System.EventHandler(this.btnSearch_Click);
     //
     // txtDocNo
     //
     this.txtDocNo.Font      = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtDocNo.Location  = new System.Drawing.Point(123, 10);
     this.txtDocNo.Name      = "txtDocNo";
     this.txtDocNo.Size      = new System.Drawing.Size(124, 19);
     this.txtDocNo.TabIndex  = 5;
     this.txtDocNo.ThemeName = "Office2010Blue";
     //
     // radLabel1
     //
     this.radLabel1.Font     = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.radLabel1.Location = new System.Drawing.Point(263, 12);
     this.radLabel1.Name     = "radLabel1";
     this.radLabel1.Size     = new System.Drawing.Size(45, 17);
     this.radLabel1.TabIndex = 4;
     this.radLabel1.Text     = "สถานะ :";
     //
     // radLabel2
     //
     this.radLabel2.Font     = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.radLabel2.Location = new System.Drawing.Point(43, 10);
     this.radLabel2.Name     = "radLabel2";
     this.radLabel2.Size     = new System.Drawing.Size(74, 17);
     this.radLabel2.TabIndex = 4;
     this.radLabel2.Text     = "เลขที่เอกสาร :";
     //
     // radLabel37
     //
     this.radLabel37.Font     = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.radLabel37.Location = new System.Drawing.Point(33, 33);
     this.radLabel37.Name     = "radLabel37";
     this.radLabel37.Size     = new System.Drawing.Size(84, 17);
     this.radLabel37.TabIndex = 4;
     this.radLabel37.Text     = "ประเภทเอกสาร :";
     //
     // radRibbonBarButtonGroup2
     //
     this.radRibbonBarButtonGroup2.Items.AddRange(new Telerik.WinControls.RadItem[] {
         this.btnFilter,
         this.Unfilter
     });
     this.radRibbonBarButtonGroup2.Name          = "radRibbonBarButtonGroup2";
     this.radRibbonBarButtonGroup2.Orientation   = System.Windows.Forms.Orientation.Vertical;
     this.radRibbonBarButtonGroup2.Padding       = new System.Windows.Forms.Padding(1);
     this.radRibbonBarButtonGroup2.ShowBackColor = false;
     this.radRibbonBarButtonGroup2.Text          = "radRibbonBarButtonGroup2";
     //
     // btnFilter
     //
     this.btnFilter.Image             = ((System.Drawing.Image)(resources.GetObject("btnFilter.Image")));
     this.btnFilter.Name              = "btnFilter";
     this.btnFilter.Text              = "Filter";
     this.btnFilter.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageBeforeText;
     //
     // Unfilter
     //
     this.Unfilter.Image             = ((System.Drawing.Image)(resources.GetObject("Unfilter.Image")));
     this.Unfilter.Name              = "Unfilter";
     this.Unfilter.Text              = "Un Filter";
     this.Unfilter.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageBeforeText;
     //
     // radRibbonBarButtonGroup5
     //
     this.radRibbonBarButtonGroup5.Name          = "radRibbonBarButtonGroup5";
     this.radRibbonBarButtonGroup5.Orientation   = System.Windows.Forms.Orientation.Vertical;
     this.radRibbonBarButtonGroup5.Padding       = new System.Windows.Forms.Padding(1);
     this.radRibbonBarButtonGroup5.ShowBackColor = false;
     this.radRibbonBarButtonGroup5.ShowBorder    = false;
     this.radRibbonBarButtonGroup5.Text          = "radRibbonBarButtonGroup4";
     //
     // radRibbonBar1
     //
     this.radRibbonBar1.CommandTabs.AddRange(new Telerik.WinControls.RadItem[] {
         this.ribbonTab1
     });
     //
     //
     //
     this.radRibbonBar1.ExitButton.Text = "Exit";
     this.radRibbonBar1.ExitButton.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageBeforeText;
     this.radRibbonBar1.Font     = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.radRibbonBar1.Location = new System.Drawing.Point(0, 0);
     this.radRibbonBar1.Name     = "radRibbonBar1";
     //
     //
     //
     this.radRibbonBar1.OptionsButton.Text = "Options";
     this.radRibbonBar1.OptionsButton.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageBeforeText;
     this.radRibbonBar1.OptionsButton.Visibility        = Telerik.WinControls.ElementVisibility.Hidden;
     //
     //
     //
     this.radRibbonBar1.RootElement.AutoSizeMode = Telerik.WinControls.RadAutoSizeMode.WrapAroundChildren;
     this.radRibbonBar1.Size             = new System.Drawing.Size(719, 160);
     this.radRibbonBar1.StartButtonImage = ((System.Drawing.Image)(resources.GetObject("radRibbonBar1.StartButtonImage")));
     this.radRibbonBar1.StartMenuItems.AddRange(new Telerik.WinControls.RadItem[] {
         this.radMenuItem1
     });
     this.radRibbonBar1.TabIndex  = 0;
     this.radRibbonBar1.Text      = "List Additional Charge (Create Freight ,Charge,Duty,Other) ทั้งหมด";
     this.radRibbonBar1.ThemeName = "Office2010Blue";
     this.radRibbonBar1.Click    += new System.EventHandler(this.radRibbonBar1_Click);
     ((Telerik.WinControls.UI.RadRibbonBarElement)(this.radRibbonBar1.GetChildAt(0))).Text = "List Additional Charge (Create Freight ,Charge,Duty,Other) ทั้งหมด";
     ((Telerik.WinControls.UI.RadToggleButtonElement)(this.radRibbonBar1.GetChildAt(0).GetChildAt(6).GetChildAt(0))).AutoSizeMode = Telerik.WinControls.RadAutoSizeMode.Auto;
     //
     // ribbonTab1
     //
     this.ribbonTab1.IsSelected = true;
     this.ribbonTab1.Items.AddRange(new Telerik.WinControls.RadItem[] {
         this.radRibbonBarGroup1,
         this.radRibbonBarGroup4,
         this.radRibbonBarGroup3,
         this.radRibbonBarGroup5,
         this.radRibbonBarGroup2
     });
     this.ribbonTab1.Name        = "ribbonTab1";
     this.ribbonTab1.Text        = "Action";
     this.ribbonTab1.UseMnemonic = false;
     //
     // radRibbonBarGroup1
     //
     this.radRibbonBarGroup1.Items.AddRange(new Telerik.WinControls.RadItem[] {
         this.radButtonElement1,
         this.radButtonElement3,
         this.radButtonElement2
     });
     this.radRibbonBarGroup1.Name = "radRibbonBarGroup1";
     this.radRibbonBarGroup1.Text = "Approve/Reject";
     //
     // radButtonElement1
     //
     this.radButtonElement1.Image             = ((System.Drawing.Image)(resources.GetObject("radButtonElement1.Image")));
     this.radButtonElement1.ImageAlignment    = System.Drawing.ContentAlignment.MiddleCenter;
     this.radButtonElement1.Name              = "radButtonElement1";
     this.radButtonElement1.Text              = "อนุมัติ";
     this.radButtonElement1.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
     this.radButtonElement1.Click            += new System.EventHandler(this.radButtonElement1_Click);
     //
     // radButtonElement3
     //
     this.radButtonElement3.Name       = "radButtonElement3";
     this.radButtonElement3.Text       = "------";
     this.radButtonElement3.Visibility = Telerik.WinControls.ElementVisibility.Hidden;
     //
     // radButtonElement2
     //
     this.radButtonElement2.Image             = ((System.Drawing.Image)(resources.GetObject("radButtonElement2.Image")));
     this.radButtonElement2.ImageAlignment    = System.Drawing.ContentAlignment.MiddleCenter;
     this.radButtonElement2.Name              = "radButtonElement2";
     this.radButtonElement2.Text              = "ยกเลิก";
     this.radButtonElement2.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
     this.radButtonElement2.Click            += new System.EventHandler(this.radButtonElement2_Click_1);
     //
     // radRibbonBarGroup4
     //
     this.radRibbonBarGroup4.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(86)))), ((int)(((byte)(86)))), ((int)(((byte)(86)))));
     this.radRibbonBarGroup4.Items.AddRange(new Telerik.WinControls.RadItem[] {
         this.btnExport
     });
     this.radRibbonBarGroup4.Name       = "radRibbonBarGroup4";
     this.radRibbonBarGroup4.Text       = "Export";
     this.radRibbonBarGroup4.Visibility = Telerik.WinControls.ElementVisibility.Collapsed;
     //
     // btnExport
     //
     this.btnExport.Image             = ((System.Drawing.Image)(resources.GetObject("btnExport.Image")));
     this.btnExport.ImageAlignment    = System.Drawing.ContentAlignment.MiddleCenter;
     this.btnExport.Name              = "btnExport";
     this.btnExport.Text              = "ส่งข้อมูลออก";
     this.btnExport.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
     this.btnExport.Click            += new System.EventHandler(this.btnExport_Click);
     //
     // radRibbonBarGroup3
     //
     this.radRibbonBarGroup3.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(135)))), ((int)(((byte)(135)))), ((int)(((byte)(135)))));
     this.radRibbonBarGroup3.Items.AddRange(new Telerik.WinControls.RadItem[] {
         this.btnRefresh
     });
     this.radRibbonBarGroup3.Name = "radRibbonBarGroup3";
     this.radRibbonBarGroup3.Text = "Page";
     //
     // btnRefresh
     //
     this.btnRefresh.ForeColor         = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(6)))), ((int)(((byte)(197)))));
     this.btnRefresh.Image             = ((System.Drawing.Image)(resources.GetObject("btnRefresh.Image")));
     this.btnRefresh.ImageAlignment    = System.Drawing.ContentAlignment.MiddleCenter;
     this.btnRefresh.Name              = "btnRefresh";
     this.btnRefresh.Text              = "รีเฟรช";
     this.btnRefresh.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
     this.btnRefresh.Click            += new System.EventHandler(this.btnCancel_Click);
     //
     // radRibbonBarGroup5
     //
     this.radRibbonBarGroup5.AutoSizeMode  = Telerik.WinControls.RadAutoSizeMode.WrapAroundChildren;
     this.radRibbonBarGroup5.FitToSizeMode = Telerik.WinControls.RadFitToSizeMode.FitToParentContent;
     this.radRibbonBarGroup5.Items.AddRange(new Telerik.WinControls.RadItem[] {
         this.radRibbonBarButtonGroup3
     });
     this.radRibbonBarGroup5.Name = "radRibbonBarGroup5";
     this.radRibbonBarGroup5.Text = "Filter";
     //
     // radRibbonBarButtonGroup3
     //
     this.radRibbonBarButtonGroup3.Items.AddRange(new Telerik.WinControls.RadItem[] {
         this.btnFilter1,
         this.btnUnfilter1,
         this.ribbonBarGroupSeparator1
     });
     this.radRibbonBarButtonGroup3.Name          = "radRibbonBarButtonGroup3";
     this.radRibbonBarButtonGroup3.Orientation   = System.Windows.Forms.Orientation.Vertical;
     this.radRibbonBarButtonGroup3.Padding       = new System.Windows.Forms.Padding(1);
     this.radRibbonBarButtonGroup3.ShowBackColor = false;
     this.radRibbonBarButtonGroup3.ShowBorder    = false;
     this.radRibbonBarButtonGroup3.Text          = "radRibbonBarButtonGroup3";
     //
     // btnFilter1
     //
     this.btnFilter1.Image             = ((System.Drawing.Image)(resources.GetObject("btnFilter1.Image")));
     this.btnFilter1.Name              = "btnFilter1";
     this.btnFilter1.ShowBorder        = false;
     this.btnFilter1.Text              = "กรอง";
     this.btnFilter1.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageBeforeText;
     this.btnFilter1.Click            += new System.EventHandler(this.btnFilter1_Click);
     //
     // btnUnfilter1
     //
     this.btnUnfilter1.Image             = ((System.Drawing.Image)(resources.GetObject("btnUnfilter1.Image")));
     this.btnUnfilter1.Name              = "btnUnfilter1";
     this.btnUnfilter1.ShowBorder        = false;
     this.btnUnfilter1.Text              = "ยกเลิก";
     this.btnUnfilter1.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageBeforeText;
     this.btnUnfilter1.Click            += new System.EventHandler(this.btnUnfilter1_Click);
     //
     // ribbonBarGroupSeparator1
     //
     this.ribbonBarGroupSeparator1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
     this.ribbonBarGroupSeparator1.Name      = "ribbonBarGroupSeparator1";
     this.ribbonBarGroupSeparator1.Text      = "ribbonBarGroupSeparator1";
     //
     // radRibbonBarGroup2
     //
     this.radRibbonBarGroup2.Items.AddRange(new Telerik.WinControls.RadItem[] {
         this.btn_PrintPR,
         this.btn_Print_Barcode
     });
     this.radRibbonBarGroup2.Name = "radRibbonBarGroup2";
     this.radRibbonBarGroup2.Text = "Print Document";
     //
     // btn_PrintPR
     //
     this.btn_PrintPR.Image             = ((System.Drawing.Image)(resources.GetObject("btn_PrintPR.Image")));
     this.btn_PrintPR.ImageAlignment    = System.Drawing.ContentAlignment.MiddleCenter;
     this.btn_PrintPR.Name              = "btn_PrintPR";
     this.btn_PrintPR.Text              = "พิมพ์เอกสาร";
     this.btn_PrintPR.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
     this.btn_PrintPR.Click            += new System.EventHandler(this.btn_PrintPR_Click);
     //
     // btn_Print_Barcode
     //
     this.btn_Print_Barcode.Image             = ((System.Drawing.Image)(resources.GetObject("btn_Print_Barcode.Image")));
     this.btn_Print_Barcode.ImageAlignment    = System.Drawing.ContentAlignment.MiddleCenter;
     this.btn_Print_Barcode.Name              = "btn_Print_Barcode";
     this.btn_Print_Barcode.Text              = "Barcode";
     this.btn_Print_Barcode.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
     this.btn_Print_Barcode.Visibility        = Telerik.WinControls.ElementVisibility.Collapsed;
     this.btn_Print_Barcode.Click            += new System.EventHandler(this.btn_Print_Barcode_Click);
     //
     // radMenuItem1
     //
     this.radMenuItem1.Image  = ((System.Drawing.Image)(resources.GetObject("radMenuItem1.Image")));
     this.radMenuItem1.Name   = "radMenuItem1";
     this.radMenuItem1.Text   = "Exit";
     this.radMenuItem1.Click += new System.EventHandler(this.radMenuItem1_Click);
     //
     // ApproveList
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize          = new System.Drawing.Size(719, 600);
     this.Controls.Add(this.panel1);
     this.Controls.Add(this.radStatusStrip1);
     this.Controls.Add(this.radRibbonBar1);
     this.Icon          = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.KeyPreview    = true;
     this.MainMenuStrip = null;
     this.Name          = "ApproveList";
     //
     //
     //
     this.RootElement.ApplyShapeToControl = true;
     this.StartPosition   = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text            = "List Additional Charge (Create Freight ,Charge,Duty,Other) ทั้งหมด";
     this.WindowState     = System.Windows.Forms.FormWindowState.Maximized;
     this.Load           += new System.EventHandler(this.Unit_Load);
     this.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.Unit_PreviewKeyDown);
     ((System.ComponentModel.ISupportInitialize)(this.radStatusStrip1)).EndInit();
     this.panel1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.radGridView1.MasterTemplate)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radGridView1)).EndInit();
     this.contextMenuStrip1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.radPanel1)).EndInit();
     this.radPanel1.ResumeLayout(false);
     this.radPanel1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.ddlType)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ddlStatus)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cbDate)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dtDateTo)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dtDateFrom)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel4)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.btnSearch)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtDocNo)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel37)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radRibbonBar1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this)).EndInit();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
コード例 #54
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     Telerik.WinControls.UI.GridViewTextBoxColumn       gridViewTextBoxColumn1       = new Telerik.WinControls.UI.GridViewTextBoxColumn();
     Telerik.WinControls.UI.GridViewCheckBoxColumn      gridViewCheckBoxColumn1      = new Telerik.WinControls.UI.GridViewCheckBoxColumn();
     Telerik.WinControls.UI.GridViewTextBoxColumn       gridViewTextBoxColumn2       = new Telerik.WinControls.UI.GridViewTextBoxColumn();
     Telerik.WinControls.UI.GridViewTextBoxColumn       gridViewTextBoxColumn3       = new Telerik.WinControls.UI.GridViewTextBoxColumn();
     Telerik.WinControls.UI.ConditionalFormattingObject conditionalFormattingObject1 = new Telerik.WinControls.UI.ConditionalFormattingObject();
     Telerik.WinControls.UI.ConditionalFormattingObject conditionalFormattingObject2 = new Telerik.WinControls.UI.ConditionalFormattingObject();
     Telerik.WinControls.UI.GridViewTextBoxColumn       gridViewTextBoxColumn4       = new Telerik.WinControls.UI.GridViewTextBoxColumn();
     Telerik.WinControls.UI.GridViewTextBoxColumn       gridViewTextBoxColumn5       = new Telerik.WinControls.UI.GridViewTextBoxColumn();
     Telerik.WinControls.UI.GridViewDateTimeColumn      gridViewDateTimeColumn1      = new Telerik.WinControls.UI.GridViewDateTimeColumn();
     Telerik.WinControls.UI.GridViewDateTimeColumn      gridViewDateTimeColumn2      = new Telerik.WinControls.UI.GridViewDateTimeColumn();
     Telerik.WinControls.UI.GridViewDateTimeColumn      gridViewDateTimeColumn3      = new Telerik.WinControls.UI.GridViewDateTimeColumn();
     Telerik.WinControls.UI.GridViewDateTimeColumn      gridViewDateTimeColumn4      = new Telerik.WinControls.UI.GridViewDateTimeColumn();
     Telerik.WinControls.UI.GridViewDecimalColumn       gridViewDecimalColumn1       = new Telerik.WinControls.UI.GridViewDecimalColumn();
     Telerik.WinControls.UI.GridViewTextBoxColumn       gridViewTextBoxColumn6       = new Telerik.WinControls.UI.GridViewTextBoxColumn();
     Telerik.WinControls.UI.GridViewTextBoxColumn       gridViewTextBoxColumn7       = new Telerik.WinControls.UI.GridViewTextBoxColumn();
     Telerik.WinControls.UI.GridViewTextBoxColumn       gridViewTextBoxColumn8       = new Telerik.WinControls.UI.GridViewTextBoxColumn();
     Telerik.WinControls.UI.GridViewTextBoxColumn       gridViewTextBoxColumn9       = new Telerik.WinControls.UI.GridViewTextBoxColumn();
     Telerik.WinControls.UI.GridViewTextBoxColumn       gridViewTextBoxColumn10      = new Telerik.WinControls.UI.GridViewTextBoxColumn();
     Telerik.WinControls.UI.GridViewTextBoxColumn       gridViewTextBoxColumn11      = new Telerik.WinControls.UI.GridViewTextBoxColumn();
     Telerik.WinControls.UI.GridViewTextBoxColumn       gridViewTextBoxColumn12      = new Telerik.WinControls.UI.GridViewTextBoxColumn();
     Telerik.WinControls.UI.GridViewTextBoxColumn       gridViewTextBoxColumn13      = new Telerik.WinControls.UI.GridViewTextBoxColumn();
     Telerik.WinControls.UI.GridViewTextBoxColumn       gridViewTextBoxColumn14      = new Telerik.WinControls.UI.GridViewTextBoxColumn();
     Telerik.WinControls.UI.GridViewTextBoxColumn       gridViewTextBoxColumn15      = new Telerik.WinControls.UI.GridViewTextBoxColumn();
     Telerik.WinControls.UI.GridViewDecimalColumn       gridViewDecimalColumn2       = new Telerik.WinControls.UI.GridViewDecimalColumn();
     Telerik.WinControls.UI.GridViewCheckBoxColumn      gridViewCheckBoxColumn2      = new Telerik.WinControls.UI.GridViewCheckBoxColumn();
     Telerik.WinControls.UI.GridViewTextBoxColumn       gridViewTextBoxColumn16      = new Telerik.WinControls.UI.GridViewTextBoxColumn();
     Telerik.WinControls.UI.GridViewTextBoxColumn       gridViewTextBoxColumn17      = new Telerik.WinControls.UI.GridViewTextBoxColumn();
     Telerik.WinControls.UI.GridViewTextBoxColumn       gridViewTextBoxColumn18      = new Telerik.WinControls.UI.GridViewTextBoxColumn();
     Telerik.WinControls.UI.GridViewTextBoxColumn       gridViewTextBoxColumn19      = new Telerik.WinControls.UI.GridViewTextBoxColumn();
     Telerik.WinControls.UI.TableViewDefinition         tableViewDefinition1         = new Telerik.WinControls.UI.TableViewDefinition();
     System.ComponentModel.ComponentResourceManager     resources = new System.ComponentModel.ComponentResourceManager(typeof(PlanningCal));
     this.radStatusStrip1          = new Telerik.WinControls.UI.RadStatusStrip();
     this.radLabelElement1         = new Telerik.WinControls.UI.RadLabelElement();
     this.panel1                   = new System.Windows.Forms.Panel();
     this.dgvData                  = new Telerik.WinControls.UI.RadGridView();
     this.office2010BlueTheme1     = new Telerik.WinControls.Themes.Office2010BlueTheme();
     this.radRibbonBarButtonGroup2 = new Telerik.WinControls.UI.RadRibbonBarButtonGroup();
     this.btnFilter                = new Telerik.WinControls.UI.RadButtonElement();
     this.Unfilter                 = new Telerik.WinControls.UI.RadButtonElement();
     this.radRibbonBarButtonGroup5 = new Telerik.WinControls.UI.RadRibbonBarButtonGroup();
     this.radRibbonBarGroup4       = new Telerik.WinControls.UI.RadRibbonBarGroup();
     this.btnImport                = new Telerik.WinControls.UI.RadButtonElement();
     this.btnExport                = new Telerik.WinControls.UI.RadButtonElement();
     this.radRibbonBarButtonGroup1 = new Telerik.WinControls.UI.RadRibbonBarButtonGroup();
     this.radRibbonBar1            = new Telerik.WinControls.UI.RadRibbonBar();
     this.ribbonTab1               = new Telerik.WinControls.UI.RibbonTab();
     this.radRibbonBarGroup2       = new Telerik.WinControls.UI.RadRibbonBarGroup();
     this.btnRecal                 = new Telerik.WinControls.UI.RadButtonElement();
     this.radRibbonBarGroup1       = new Telerik.WinControls.UI.RadRibbonBarGroup();
     this.btnFil                   = new Telerik.WinControls.UI.RadButtonElement();
     this.radRibbonBarGroup3       = new Telerik.WinControls.UI.RadRibbonBarGroup();
     this.btnRefresh               = new Telerik.WinControls.UI.RadButtonElement();
     this.radRibbonBarGroup10      = new Telerik.WinControls.UI.RadRibbonBarGroup();
     this.btnClearPlan             = new Telerik.WinControls.UI.RadButtonElement();
     this.radRibbonBarGroup5       = new Telerik.WinControls.UI.RadRibbonBarGroup();
     this.btnGenPR                 = new Telerik.WinControls.UI.RadButtonElement();
     this.radRibbonBarGroup9       = new Telerik.WinControls.UI.RadRibbonBarGroup();
     this.btnLinkToPR              = new Telerik.WinControls.UI.RadButtonElement();
     this.btnLinkToJob             = new Telerik.WinControls.UI.RadButtonElement();
     this.radRibbonBarGroup6       = new Telerik.WinControls.UI.RadRibbonBarGroup();
     this.radButtonElement1        = new Telerik.WinControls.UI.RadButtonElement();
     this.radButtonElement2        = new Telerik.WinControls.UI.RadButtonElement();
     this.radRibbonBarGroup7       = new Telerik.WinControls.UI.RadRibbonBarGroup();
     this.radButtonElement3        = new Telerik.WinControls.UI.RadButtonElement();
     this.radRibbonBarGroup8       = new Telerik.WinControls.UI.RadRibbonBarGroup();
     this.btnPrintReport           = new Telerik.WinControls.UI.RadButtonElement();
     this.radMenuItem1             = new Telerik.WinControls.UI.RadMenuItem();
     this.radMenuSeparatorItem1    = new Telerik.WinControls.UI.RadMenuSeparatorItem();
     this.radMenuItem2             = new Telerik.WinControls.UI.RadMenuItem();
     ((System.ComponentModel.ISupportInitialize)(this.radStatusStrip1)).BeginInit();
     this.panel1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dgvData)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dgvData.MasterTemplate)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radRibbonBar1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
     this.SuspendLayout();
     //
     // radStatusStrip1
     //
     this.radStatusStrip1.Items.AddRange(new Telerik.WinControls.RadItem[] {
         this.radLabelElement1
     });
     this.radStatusStrip1.Location   = new System.Drawing.Point(0, 663);
     this.radStatusStrip1.Name       = "radStatusStrip1";
     this.radStatusStrip1.Size       = new System.Drawing.Size(964, 26);
     this.radStatusStrip1.SizingGrip = false;
     this.radStatusStrip1.TabIndex   = 1;
     //
     // radLabelElement1
     //
     this.radLabelElement1.Name = "radLabelElement1";
     this.radStatusStrip1.SetSpring(this.radLabelElement1, false);
     this.radLabelElement1.Text     = "Status : Planning Purchase";
     this.radLabelElement1.TextWrap = true;
     //
     // panel1
     //
     this.panel1.BackColor = System.Drawing.Color.White;
     this.panel1.Controls.Add(this.dgvData);
     this.panel1.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.panel1.Location = new System.Drawing.Point(0, 160);
     this.panel1.Name     = "panel1";
     this.panel1.Size     = new System.Drawing.Size(964, 503);
     this.panel1.TabIndex = 2;
     //
     // dgvData
     //
     this.dgvData.BackColor = System.Drawing.Color.White;
     this.dgvData.ColumnChooserSortOrder = Telerik.WinControls.UI.RadSortOrder.Ascending;
     this.dgvData.Cursor       = System.Windows.Forms.Cursors.Default;
     this.dgvData.Dock         = System.Windows.Forms.DockStyle.Fill;
     this.dgvData.EnterKeyMode = Telerik.WinControls.UI.RadGridViewEnterKeyMode.EnterMovesToNextCell;
     this.dgvData.Font         = new System.Drawing.Font("Tahoma", 8.25F);
     this.dgvData.ForeColor    = System.Drawing.Color.Black;
     this.dgvData.ImeMode      = System.Windows.Forms.ImeMode.NoControl;
     this.dgvData.Location     = new System.Drawing.Point(0, 0);
     //
     //
     //
     this.dgvData.MasterTemplate.AddNewRowPosition            = Telerik.WinControls.UI.SystemRowPosition.Bottom;
     this.dgvData.MasterTemplate.AllowAddNewRow               = false;
     this.dgvData.MasterTemplate.AllowCellContextMenu         = false;
     this.dgvData.MasterTemplate.AllowColumnHeaderContextMenu = false;
     this.dgvData.MasterTemplate.AllowDeleteRow               = false;
     this.dgvData.MasterTemplate.AllowDragToGroup             = false;
     this.dgvData.MasterTemplate.AllowRowResize               = false;
     this.dgvData.MasterTemplate.AutoGenerateColumns          = false;
     gridViewTextBoxColumn1.EnableExpressionEditor            = false;
     gridViewTextBoxColumn1.FieldName               = "None";
     gridViewTextBoxColumn1.IsPinned                = true;
     gridViewTextBoxColumn1.Name                    = "None";
     gridViewTextBoxColumn1.PinPosition             = Telerik.WinControls.UI.PinnedColumnPosition.Right;
     gridViewTextBoxColumn1.ReadOnly                = true;
     gridViewTextBoxColumn1.Width                   = 8;
     gridViewCheckBoxColumn1.EnableExpressionEditor = false;
     gridViewCheckBoxColumn1.EnableHeaderCheckBox   = true;
     gridViewCheckBoxColumn1.FieldName              = "S";
     gridViewCheckBoxColumn1.HeaderText             = "S";
     gridViewCheckBoxColumn1.MinWidth               = 20;
     gridViewCheckBoxColumn1.Name                   = "S";
     gridViewCheckBoxColumn1.Width                  = 35;
     gridViewTextBoxColumn2.EnableExpressionEditor  = false;
     gridViewTextBoxColumn2.FieldName               = "RNo";
     gridViewTextBoxColumn2.HeaderText              = "No";
     gridViewTextBoxColumn2.Name                    = "RNo";
     gridViewTextBoxColumn2.ReadOnly                = true;
     gridViewTextBoxColumn2.TextAlignment           = System.Drawing.ContentAlignment.MiddleCenter;
     conditionalFormattingObject1.CellBackColor     = System.Drawing.Color.Green;
     conditionalFormattingObject1.CellFont          = new System.Drawing.Font("Microsoft Sans Serif", 8.25F);
     conditionalFormattingObject1.CellForeColor     = System.Drawing.Color.White;
     conditionalFormattingObject1.Name              = "OK";
     conditionalFormattingObject1.RowBackColor      = System.Drawing.Color.Empty;
     conditionalFormattingObject1.RowFont           = new System.Drawing.Font("Microsoft Sans Serif", 8.25F);
     conditionalFormattingObject1.RowForeColor      = System.Drawing.Color.Empty;
     conditionalFormattingObject1.TValue1           = "OK";
     conditionalFormattingObject2.CellBackColor     = System.Drawing.Color.Red;
     conditionalFormattingObject2.CellFont          = new System.Drawing.Font("Microsoft Sans Serif", 8.25F);
     conditionalFormattingObject2.CellForeColor     = System.Drawing.Color.White;
     conditionalFormattingObject2.Name              = "OverDue";
     conditionalFormattingObject2.RowBackColor      = System.Drawing.Color.Empty;
     conditionalFormattingObject2.RowFont           = new System.Drawing.Font("Microsoft Sans Serif", 8.25F);
     conditionalFormattingObject2.RowForeColor      = System.Drawing.Color.Empty;
     conditionalFormattingObject2.TValue1           = "Over Due";
     gridViewTextBoxColumn3.ConditionalFormattingObjectList.Add(conditionalFormattingObject1);
     gridViewTextBoxColumn3.ConditionalFormattingObjectList.Add(conditionalFormattingObject2);
     gridViewTextBoxColumn3.EnableExpressionEditor = false;
     gridViewTextBoxColumn3.FieldName               = "Status";
     gridViewTextBoxColumn3.HeaderText              = "Status";
     gridViewTextBoxColumn3.Name                    = "Status";
     gridViewTextBoxColumn3.Width                   = 95;
     gridViewTextBoxColumn4.EnableExpressionEditor  = false;
     gridViewTextBoxColumn4.FieldName               = "ItemNo";
     gridViewTextBoxColumn4.HeaderText              = "Item No";
     gridViewTextBoxColumn4.Name                    = "ItemNo";
     gridViewTextBoxColumn4.ReadOnly                = true;
     gridViewTextBoxColumn4.Width                   = 85;
     gridViewTextBoxColumn5.EnableExpressionEditor  = false;
     gridViewTextBoxColumn5.FieldName               = "ItemName";
     gridViewTextBoxColumn5.HeaderText              = "Item Name";
     gridViewTextBoxColumn5.Name                    = "ItemName";
     gridViewTextBoxColumn5.Width                   = 192;
     gridViewDateTimeColumn1.EnableExpressionEditor = false;
     gridViewDateTimeColumn1.FieldName              = "ReqDate";
     gridViewDateTimeColumn1.FormatString           = "{0:dd/MMM/yyyy}";
     gridViewDateTimeColumn1.HeaderText             = "Customer Req. Date";
     gridViewDateTimeColumn1.Name                   = "ReqDate";
     gridViewDateTimeColumn1.Width                  = 120;
     gridViewDateTimeColumn2.EnableExpressionEditor = false;
     gridViewDateTimeColumn2.FieldName              = "DueDate";
     gridViewDateTimeColumn2.FormatString           = "{0:dd/MMM/yyyy}";
     gridViewDateTimeColumn2.HeaderText             = "Due Date";
     gridViewDateTimeColumn2.Name                   = "DueDate";
     gridViewDateTimeColumn2.Width                  = 116;
     gridViewDateTimeColumn3.EnableExpressionEditor = false;
     gridViewDateTimeColumn3.FieldName              = "StartingDate";
     gridViewDateTimeColumn3.FormatString           = "{0:dd/MMM/yyyy HH:mm}";
     gridViewDateTimeColumn3.HeaderText             = "Starting Date";
     gridViewDateTimeColumn3.Name                   = "StartingDate";
     gridViewDateTimeColumn3.Width                  = 147;
     gridViewDateTimeColumn4.EnableExpressionEditor = false;
     gridViewDateTimeColumn4.FieldName              = "EndingDate";
     gridViewDateTimeColumn4.FormatString           = "{0:dd/MMM/yyyy HH:mm}";
     gridViewDateTimeColumn4.HeaderText             = "Ending Date";
     gridViewDateTimeColumn4.Name                   = "EndingDate";
     gridViewDateTimeColumn4.Width                  = 135;
     gridViewDecimalColumn1.EnableExpressionEditor  = false;
     gridViewDecimalColumn1.FieldName               = "Qty";
     gridViewDecimalColumn1.FormatString            = "{0:N2}";
     gridViewDecimalColumn1.HeaderText              = "Order Q\'ty";
     gridViewDecimalColumn1.Name                    = "Qty";
     gridViewDecimalColumn1.Width                   = 73;
     gridViewTextBoxColumn6.EnableExpressionEditor  = false;
     gridViewTextBoxColumn6.FieldName               = "UOM";
     gridViewTextBoxColumn6.HeaderText              = "UOM";
     gridViewTextBoxColumn6.Name                    = "UOM";
     gridViewTextBoxColumn6.Width                   = 68;
     gridViewTextBoxColumn7.EnableExpressionEditor  = false;
     gridViewTextBoxColumn7.FieldName               = "PlanningType";
     gridViewTextBoxColumn7.HeaderText              = "Planning Type";
     gridViewTextBoxColumn7.Name                    = "PlanningType";
     gridViewTextBoxColumn7.Width                   = 124;
     gridViewTextBoxColumn8.EnableExpressionEditor  = false;
     gridViewTextBoxColumn8.FieldName               = "idRef";
     gridViewTextBoxColumn8.HeaderText              = "idRef";
     gridViewTextBoxColumn8.IsVisible               = false;
     gridViewTextBoxColumn8.Name                    = "idRef";
     gridViewTextBoxColumn9.EnableExpressionEditor  = false;
     gridViewTextBoxColumn9.FieldName               = "RefDocNo_TEMP";
     gridViewTextBoxColumn9.HeaderText              = "Ref Doc No.";
     gridViewTextBoxColumn9.Name                    = "RefDocNo_TEMP";
     gridViewTextBoxColumn9.Width                   = 136;
     gridViewTextBoxColumn10.EnableExpressionEditor = false;
     gridViewTextBoxColumn10.FieldName              = "GroupType";
     gridViewTextBoxColumn10.HeaderText             = "Group Type";
     gridViewTextBoxColumn10.Name                   = "GroupType";
     gridViewTextBoxColumn10.Width                  = 105;
     gridViewTextBoxColumn11.EnableExpressionEditor = false;
     gridViewTextBoxColumn11.FieldName              = "Type";
     gridViewTextBoxColumn11.HeaderText             = "Type";
     gridViewTextBoxColumn11.Name                   = "Type";
     gridViewTextBoxColumn11.Width                  = 85;
     gridViewTextBoxColumn12.EnableExpressionEditor = false;
     gridViewTextBoxColumn12.FieldName              = "InvGroup";
     gridViewTextBoxColumn12.HeaderText             = "Inventory Group";
     gridViewTextBoxColumn12.Name                   = "InvGroup";
     gridViewTextBoxColumn12.Width                  = 100;
     gridViewTextBoxColumn13.EnableExpressionEditor = false;
     gridViewTextBoxColumn13.FieldName              = "LocationItem";
     gridViewTextBoxColumn13.HeaderText             = "Location Item";
     gridViewTextBoxColumn13.Name                   = "LocationItem";
     gridViewTextBoxColumn13.ReadOnly               = true;
     gridViewTextBoxColumn13.Width                  = 97;
     gridViewTextBoxColumn14.EnableExpressionEditor = false;
     gridViewTextBoxColumn14.FieldName              = "VendorNo";
     gridViewTextBoxColumn14.HeaderText             = "Vendor No";
     gridViewTextBoxColumn14.Name                   = "VendorNo";
     gridViewTextBoxColumn14.Width                  = 85;
     gridViewTextBoxColumn15.EnableExpressionEditor = false;
     gridViewTextBoxColumn15.FieldName              = "VendorName";
     gridViewTextBoxColumn15.HeaderText             = "Vendor Name";
     gridViewTextBoxColumn15.Name                   = "VendorName";
     gridViewTextBoxColumn15.Width                  = 190;
     gridViewDecimalColumn2.EnableExpressionEditor  = false;
     gridViewDecimalColumn2.FieldName               = "PCSUnit";
     gridViewDecimalColumn2.HeaderText              = "PCSUnit";
     gridViewDecimalColumn2.IsVisible               = false;
     gridViewDecimalColumn2.Name                    = "PCSUnit";
     gridViewCheckBoxColumn2.EnableExpressionEditor = false;
     gridViewCheckBoxColumn2.FieldName              = "root";
     gridViewCheckBoxColumn2.HeaderText             = "ดูว่าเป็น ต้นทาง FG ไหม";
     gridViewCheckBoxColumn2.IsVisible              = false;
     gridViewCheckBoxColumn2.MinWidth               = 20;
     gridViewCheckBoxColumn2.Name                   = "root";
     gridViewTextBoxColumn16.EnableExpressionEditor = false;
     gridViewTextBoxColumn16.FieldName              = "mainNo";
     gridViewTextBoxColumn16.HeaderText             = "mainNo";
     gridViewTextBoxColumn16.IsVisible              = false;
     gridViewTextBoxColumn16.Name                   = "mainNo";
     gridViewTextBoxColumn17.EnableExpressionEditor = false;
     gridViewTextBoxColumn17.FieldName              = "refNo";
     gridViewTextBoxColumn17.HeaderText             = "refNo";
     gridViewTextBoxColumn17.IsVisible              = false;
     gridViewTextBoxColumn17.Name                   = "refNo";
     gridViewTextBoxColumn18.EnableExpressionEditor = false;
     gridViewTextBoxColumn18.FieldName              = "id";
     gridViewTextBoxColumn18.HeaderText             = "id";
     gridViewTextBoxColumn18.IsVisible              = false;
     gridViewTextBoxColumn18.Name                   = "id";
     gridViewTextBoxColumn19.EnableExpressionEditor = false;
     gridViewTextBoxColumn19.FieldName              = "RefDocNo";
     gridViewTextBoxColumn19.HeaderText             = "RefDocNo";
     gridViewTextBoxColumn19.IsVisible              = false;
     gridViewTextBoxColumn19.Name                   = "RefDocNo";
     this.dgvData.MasterTemplate.Columns.AddRange(new Telerik.WinControls.UI.GridViewDataColumn[] {
         gridViewTextBoxColumn1,
         gridViewCheckBoxColumn1,
         gridViewTextBoxColumn2,
         gridViewTextBoxColumn3,
         gridViewTextBoxColumn4,
         gridViewTextBoxColumn5,
         gridViewDateTimeColumn1,
         gridViewDateTimeColumn2,
         gridViewDateTimeColumn3,
         gridViewDateTimeColumn4,
         gridViewDecimalColumn1,
         gridViewTextBoxColumn6,
         gridViewTextBoxColumn7,
         gridViewTextBoxColumn8,
         gridViewTextBoxColumn9,
         gridViewTextBoxColumn10,
         gridViewTextBoxColumn11,
         gridViewTextBoxColumn12,
         gridViewTextBoxColumn13,
         gridViewTextBoxColumn14,
         gridViewTextBoxColumn15,
         gridViewDecimalColumn2,
         gridViewCheckBoxColumn2,
         gridViewTextBoxColumn16,
         gridViewTextBoxColumn17,
         gridViewTextBoxColumn18,
         gridViewTextBoxColumn19
     });
     this.dgvData.MasterTemplate.SelectionMode  = Telerik.WinControls.UI.GridViewSelectionMode.CellSelect;
     this.dgvData.MasterTemplate.ViewDefinition = tableViewDefinition1;
     this.dgvData.Name              = "dgvData";
     this.dgvData.RightToLeft       = System.Windows.Forms.RightToLeft.No;
     this.dgvData.ShowGroupPanel    = false;
     this.dgvData.Size              = new System.Drawing.Size(964, 503);
     this.dgvData.TabIndex          = 0;
     this.dgvData.ThemeName         = "Office2010Blue";
     this.dgvData.RowFormatting    += new Telerik.WinControls.UI.RowFormattingEventHandler(this.MasterTemplate_RowFormatting);
     this.dgvData.CellFormatting   += new Telerik.WinControls.UI.CellFormattingEventHandler(this.MasterTemplate_CellFormatting);
     this.dgvData.CellBeginEdit    += new Telerik.WinControls.UI.GridViewCellCancelEventHandler(this.MasterTemplate_CellBeginEdit);
     this.dgvData.CellEndEdit      += new Telerik.WinControls.UI.GridViewCellEventHandler(this.radGridView1_CellEndEdit);
     this.dgvData.CellClick        += new Telerik.WinControls.UI.GridViewCellEventHandler(this.radGridView1_CellClick);
     this.dgvData.CellValueChanged += new Telerik.WinControls.UI.GridViewCellEventHandler(this.MasterTemplate_CellValueChanged);
     this.dgvData.PreviewKeyDown   += new System.Windows.Forms.PreviewKeyDownEventHandler(this.radGridView1_PreviewKeyDown);
     //
     // radRibbonBarButtonGroup2
     //
     this.radRibbonBarButtonGroup2.Items.AddRange(new Telerik.WinControls.RadItem[] {
         this.btnFilter,
         this.Unfilter
     });
     this.radRibbonBarButtonGroup2.Name          = "radRibbonBarButtonGroup2";
     this.radRibbonBarButtonGroup2.Orientation   = System.Windows.Forms.Orientation.Vertical;
     this.radRibbonBarButtonGroup2.Padding       = new System.Windows.Forms.Padding(1);
     this.radRibbonBarButtonGroup2.ShowBackColor = false;
     this.radRibbonBarButtonGroup2.Text          = "radRibbonBarButtonGroup2";
     //
     // btnFilter
     //
     this.btnFilter.Image             = ((System.Drawing.Image)(resources.GetObject("btnFilter.Image")));
     this.btnFilter.Name              = "btnFilter";
     this.btnFilter.Text              = "Filter";
     this.btnFilter.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageBeforeText;
     //
     // Unfilter
     //
     this.Unfilter.Image             = ((System.Drawing.Image)(resources.GetObject("Unfilter.Image")));
     this.Unfilter.Name              = "Unfilter";
     this.Unfilter.Text              = "Un Filter";
     this.Unfilter.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageBeforeText;
     //
     // radRibbonBarButtonGroup5
     //
     this.radRibbonBarButtonGroup5.Name          = "radRibbonBarButtonGroup5";
     this.radRibbonBarButtonGroup5.Orientation   = System.Windows.Forms.Orientation.Vertical;
     this.radRibbonBarButtonGroup5.Padding       = new System.Windows.Forms.Padding(1);
     this.radRibbonBarButtonGroup5.ShowBackColor = false;
     this.radRibbonBarButtonGroup5.ShowBorder    = false;
     this.radRibbonBarButtonGroup5.Text          = "radRibbonBarButtonGroup4";
     //
     // radRibbonBarGroup4
     //
     this.radRibbonBarGroup4.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(86)))), ((int)(((byte)(86)))), ((int)(((byte)(86)))));
     this.radRibbonBarGroup4.Items.AddRange(new Telerik.WinControls.RadItem[] {
         this.btnImport,
         this.btnExport,
         this.radRibbonBarButtonGroup1
     });
     this.radRibbonBarGroup4.Margin  = new System.Windows.Forms.Padding(0);
     this.radRibbonBarGroup4.MaxSize = new System.Drawing.Size(0, 0);
     this.radRibbonBarGroup4.MinSize = new System.Drawing.Size(0, 0);
     this.radRibbonBarGroup4.Name    = "radRibbonBarGroup4";
     this.radRibbonBarGroup4.Text    = "Import / Export";
     this.radRibbonBarGroup4.UseCompatibleTextRendering = false;
     //
     // btnImport
     //
     this.btnImport.Image                      = ((System.Drawing.Image)(resources.GetObject("btnImport.Image")));
     this.btnImport.ImageAlignment             = System.Drawing.ContentAlignment.MiddleCenter;
     this.btnImport.Name                       = "btnImport";
     this.btnImport.SmallImage                 = null;
     this.btnImport.Text                       = "นำข้อมูลเข้า";
     this.btnImport.TextImageRelation          = System.Windows.Forms.TextImageRelation.ImageAboveText;
     this.btnImport.UseCompatibleTextRendering = false;
     //
     // btnExport
     //
     this.btnExport.Image                      = ((System.Drawing.Image)(resources.GetObject("btnExport.Image")));
     this.btnExport.ImageAlignment             = System.Drawing.ContentAlignment.MiddleCenter;
     this.btnExport.Name                       = "btnExport";
     this.btnExport.Text                       = "ส่งข้อมูลออก";
     this.btnExport.TextImageRelation          = System.Windows.Forms.TextImageRelation.ImageAboveText;
     this.btnExport.UseCompatibleTextRendering = false;
     //
     // radRibbonBarButtonGroup1
     //
     this.radRibbonBarButtonGroup1.Name          = "radRibbonBarButtonGroup1";
     this.radRibbonBarButtonGroup1.Padding       = new System.Windows.Forms.Padding(1);
     this.radRibbonBarButtonGroup1.ShowBackColor = false;
     this.radRibbonBarButtonGroup1.ShowBorder    = false;
     this.radRibbonBarButtonGroup1.Text          = "radRibbonBarButtonGroup1";
     this.radRibbonBarButtonGroup1.UseCompatibleTextRendering = false;
     //
     // radRibbonBar1
     //
     this.radRibbonBar1.CommandTabs.AddRange(new Telerik.WinControls.RadItem[] {
         this.ribbonTab1
     });
     //
     //
     //
     this.radRibbonBar1.ExitButton.Text = "Exit";
     this.radRibbonBar1.ExitButton.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageBeforeText;
     this.radRibbonBar1.Font     = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.radRibbonBar1.Location = new System.Drawing.Point(0, 0);
     this.radRibbonBar1.Name     = "radRibbonBar1";
     //
     //
     //
     this.radRibbonBar1.OptionsButton.Text = "Options";
     this.radRibbonBar1.OptionsButton.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageBeforeText;
     this.radRibbonBar1.OptionsButton.Visibility        = Telerik.WinControls.ElementVisibility.Hidden;
     //
     //
     //
     this.radRibbonBar1.RootElement.AutoSizeMode = Telerik.WinControls.RadAutoSizeMode.WrapAroundChildren;
     this.radRibbonBar1.Size             = new System.Drawing.Size(964, 160);
     this.radRibbonBar1.StartButtonImage = ((System.Drawing.Image)(resources.GetObject("radRibbonBar1.StartButtonImage")));
     this.radRibbonBar1.StartMenuItems.AddRange(new Telerik.WinControls.RadItem[] {
         this.radMenuItem1,
         this.radMenuSeparatorItem1,
         this.radMenuItem2
     });
     this.radRibbonBar1.TabIndex  = 0;
     this.radRibbonBar1.Text      = "Planning Purchase";
     this.radRibbonBar1.ThemeName = "Office2010Blue";
     this.radRibbonBar1.Click    += new System.EventHandler(this.radRibbonBar1_Click);
     //
     // ribbonTab1
     //
     this.ribbonTab1.IsSelected = true;
     this.ribbonTab1.Items.AddRange(new Telerik.WinControls.RadItem[] {
         this.radRibbonBarGroup2,
         this.radRibbonBarGroup1,
         this.radRibbonBarGroup3,
         this.radRibbonBarGroup10,
         this.radRibbonBarGroup5,
         this.radRibbonBarGroup9,
         this.radRibbonBarGroup6,
         this.radRibbonBarGroup7,
         this.radRibbonBarGroup8
     });
     this.ribbonTab1.Name = "ribbonTab1";
     this.ribbonTab1.Text = "Action";
     //
     // radRibbonBarGroup2
     //
     this.radRibbonBarGroup2.Items.AddRange(new Telerik.WinControls.RadItem[] {
         this.btnRecal
     });
     this.radRibbonBarGroup2.Name = "radRibbonBarGroup2";
     this.radRibbonBarGroup2.Text = "Data";
     //
     // btnRecal
     //
     this.btnRecal.Image             = ((System.Drawing.Image)(resources.GetObject("btnRecal.Image")));
     this.btnRecal.ImageAlignment    = System.Drawing.ContentAlignment.MiddleCenter;
     this.btnRecal.Name              = "btnRecal";
     this.btnRecal.Text              = "Calculate Plan";
     this.btnRecal.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
     this.btnRecal.Click            += new System.EventHandler(this.btnRecal_Click);
     //
     // radRibbonBarGroup1
     //
     this.radRibbonBarGroup1.Items.AddRange(new Telerik.WinControls.RadItem[] {
         this.btnFil
     });
     this.radRibbonBarGroup1.Name       = "radRibbonBarGroup1";
     this.radRibbonBarGroup1.Text       = "Page";
     this.radRibbonBarGroup1.Visibility = Telerik.WinControls.ElementVisibility.Collapsed;
     //
     // btnFil
     //
     this.btnFil.Image             = ((System.Drawing.Image)(resources.GetObject("btnFil.Image")));
     this.btnFil.Name              = "btnFil";
     this.btnFil.Text              = "Filter";
     this.btnFil.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
     this.btnFil.Click            += new System.EventHandler(this.btnFil_Click);
     //
     // radRibbonBarGroup3
     //
     this.radRibbonBarGroup3.Items.AddRange(new Telerik.WinControls.RadItem[] {
         this.btnRefresh
     });
     this.radRibbonBarGroup3.Name = "radRibbonBarGroup3";
     this.radRibbonBarGroup3.Text = "";
     //
     // btnRefresh
     //
     this.btnRefresh.Image             = ((System.Drawing.Image)(resources.GetObject("btnRefresh.Image")));
     this.btnRefresh.ImageAlignment    = System.Drawing.ContentAlignment.MiddleCenter;
     this.btnRefresh.Name              = "btnRefresh";
     this.btnRefresh.Text              = "Refresh";
     this.btnRefresh.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
     this.btnRefresh.Click            += new System.EventHandler(this.btnRefresh_Click);
     //
     // radRibbonBarGroup10
     //
     this.radRibbonBarGroup10.Items.AddRange(new Telerik.WinControls.RadItem[] {
         this.btnClearPlan
     });
     this.radRibbonBarGroup10.Name = "radRibbonBarGroup10";
     this.radRibbonBarGroup10.Text = "List";
     //
     // btnClearPlan
     //
     this.btnClearPlan.Image             = global::StockControl.Properties.Resources.del;
     this.btnClearPlan.ImageAlignment    = System.Drawing.ContentAlignment.MiddleCenter;
     this.btnClearPlan.Name              = "btnClearPlan";
     this.btnClearPlan.Text              = "<html><p>Clear Planning</p><p>P/R</p></html>";
     this.btnClearPlan.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
     this.btnClearPlan.Click            += new System.EventHandler(this.btnClearPlan_Click);
     //
     // radRibbonBarGroup5
     //
     this.radRibbonBarGroup5.Items.AddRange(new Telerik.WinControls.RadItem[] {
         this.btnGenPR
     });
     this.radRibbonBarGroup5.Name = "radRibbonBarGroup5";
     this.radRibbonBarGroup5.Text = "Generate";
     //
     // btnGenPR
     //
     this.btnGenPR.Image             = ((System.Drawing.Image)(resources.GetObject("btnGenPR.Image")));
     this.btnGenPR.ImageAlignment    = System.Drawing.ContentAlignment.MiddleCenter;
     this.btnGenPR.Name              = "btnGenPR";
     this.btnGenPR.Text              = "<html><p>Generate</p><p>to P/R</p></html>";
     this.btnGenPR.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
     this.btnGenPR.Click            += new System.EventHandler(this.btnGenPR_Click);
     //
     // radRibbonBarGroup9
     //
     this.radRibbonBarGroup9.Items.AddRange(new Telerik.WinControls.RadItem[] {
         this.btnLinkToPR,
         this.btnLinkToJob
     });
     this.radRibbonBarGroup9.Name = "radRibbonBarGroup9";
     this.radRibbonBarGroup9.Text = "Link";
     //
     // btnLinkToPR
     //
     this.btnLinkToPR.Image             = global::StockControl.Properties.Resources.linkgoto;
     this.btnLinkToPR.ImageAlignment    = System.Drawing.ContentAlignment.MiddleCenter;
     this.btnLinkToPR.Name              = "btnLinkToPR";
     this.btnLinkToPR.Text              = "Link to P/R";
     this.btnLinkToPR.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
     this.btnLinkToPR.Click            += new System.EventHandler(this.btnLinkToPR_Click);
     //
     // btnLinkToJob
     //
     this.btnLinkToJob.Image             = global::StockControl.Properties.Resources.linkgoto;
     this.btnLinkToJob.ImageAlignment    = System.Drawing.ContentAlignment.MiddleCenter;
     this.btnLinkToJob.Name              = "btnLinkToJob";
     this.btnLinkToJob.Text              = "Link to JOB";
     this.btnLinkToJob.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
     this.btnLinkToJob.Click            += new System.EventHandler(this.btnLinkToJob_Click);
     //
     // radRibbonBarGroup6
     //
     this.radRibbonBarGroup6.Items.AddRange(new Telerik.WinControls.RadItem[] {
         this.radButtonElement1,
         this.radButtonElement2
     });
     this.radRibbonBarGroup6.Name        = "radRibbonBarGroup6";
     this.radRibbonBarGroup6.Orientation = System.Windows.Forms.Orientation.Vertical;
     this.radRibbonBarGroup6.Text        = "Filter";
     //
     // radButtonElement1
     //
     this.radButtonElement1.Image             = ((System.Drawing.Image)(resources.GetObject("radButtonElement1.Image")));
     this.radButtonElement1.Name              = "radButtonElement1";
     this.radButtonElement1.Text              = "Filter";
     this.radButtonElement1.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageBeforeText;
     this.radButtonElement1.Click            += new System.EventHandler(this.radButtonElement1_Click);
     //
     // radButtonElement2
     //
     this.radButtonElement2.Image             = ((System.Drawing.Image)(resources.GetObject("radButtonElement2.Image")));
     this.radButtonElement2.Name              = "radButtonElement2";
     this.radButtonElement2.Text              = "Cancel";
     this.radButtonElement2.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageBeforeText;
     this.radButtonElement2.Click            += new System.EventHandler(this.radButtonElement2_Click);
     //
     // radRibbonBarGroup7
     //
     this.radRibbonBarGroup7.Items.AddRange(new Telerik.WinControls.RadItem[] {
         this.radButtonElement3
     });
     this.radRibbonBarGroup7.Name = "radRibbonBarGroup7";
     this.radRibbonBarGroup7.Text = "Export";
     //
     // radButtonElement3
     //
     this.radButtonElement3.Image             = ((System.Drawing.Image)(resources.GetObject("radButtonElement3.Image")));
     this.radButtonElement3.ImageAlignment    = System.Drawing.ContentAlignment.MiddleCenter;
     this.radButtonElement3.Name              = "radButtonElement3";
     this.radButtonElement3.Text              = "Export file";
     this.radButtonElement3.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
     this.radButtonElement3.Click            += new System.EventHandler(this.radButtonElement3_Click);
     //
     // radRibbonBarGroup8
     //
     this.radRibbonBarGroup8.Items.AddRange(new Telerik.WinControls.RadItem[] {
         this.btnPrintReport
     });
     this.radRibbonBarGroup8.Name       = "radRibbonBarGroup8";
     this.radRibbonBarGroup8.Text       = "Report";
     this.radRibbonBarGroup8.Visibility = Telerik.WinControls.ElementVisibility.Collapsed;
     //
     // btnPrintReport
     //
     this.btnPrintReport.Image             = global::StockControl.Properties.Resources.printer;
     this.btnPrintReport.ImageAlignment    = System.Drawing.ContentAlignment.MiddleCenter;
     this.btnPrintReport.Name              = "btnPrintReport";
     this.btnPrintReport.Text              = "Report";
     this.btnPrintReport.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
     //
     // radMenuItem1
     //
     this.radMenuItem1.Image  = ((System.Drawing.Image)(resources.GetObject("radMenuItem1.Image")));
     this.radMenuItem1.Name   = "radMenuItem1";
     this.radMenuItem1.Text   = "Exit";
     this.radMenuItem1.Click += new System.EventHandler(this.radMenuItem1_Click);
     //
     // radMenuSeparatorItem1
     //
     this.radMenuSeparatorItem1.Name          = "radMenuSeparatorItem1";
     this.radMenuSeparatorItem1.Text          = "radMenuSeparatorItem1";
     this.radMenuSeparatorItem1.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // radMenuItem2
     //
     this.radMenuItem2.Image  = ((System.Drawing.Image)(resources.GetObject("radMenuItem2.Image")));
     this.radMenuItem2.Name   = "radMenuItem2";
     this.radMenuItem2.Text   = "History View";
     this.radMenuItem2.Click += new System.EventHandler(this.radMenuItem2_Click);
     //
     // PlanningCal
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize          = new System.Drawing.Size(964, 689);
     this.Controls.Add(this.panel1);
     this.Controls.Add(this.radStatusStrip1);
     this.Controls.Add(this.radRibbonBar1);
     this.Icon          = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.KeyPreview    = true;
     this.MainMenuStrip = null;
     this.Name          = "PlanningCal";
     //
     //
     //
     this.RootElement.ApplyShapeToControl = true;
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text          = "Planning Purchase";
     this.WindowState   = System.Windows.Forms.FormWindowState.Maximized;
     this.Load         += new System.EventHandler(this.Unit_Load);
     ((System.ComponentModel.ISupportInitialize)(this.radStatusStrip1)).EndInit();
     this.panel1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.dgvData.MasterTemplate)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dgvData)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radRibbonBar1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this)).EndInit();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
コード例 #55
0
        /// <summary>
        /// Required method for Designer support - do not modify
        /// the contents of this method with the code editor.
        /// </summary>
        private void InitializeComponent()
        {
            Telerik.WinControls.UI.GridViewCheckBoxColumn gridViewCheckBoxColumn1 = new Telerik.WinControls.UI.GridViewCheckBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn1 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewHyperlinkColumn gridViewHyperlinkColumn1 = new Telerik.WinControls.UI.GridViewHyperlinkColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn2 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn3 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn4 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn5 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn6 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn7 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn8 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            this.GridViewShowData = new Telerik.WinControls.UI.RadGridView();
            this.radButtonUnChechAll = new Telerik.WinControls.UI.RadButton();
            this.radButtonCheckAll = new Telerik.WinControls.UI.RadButton();
            this.radPanelGetdata = new Telerik.WinControls.UI.RadPanel();
            this.radGroupBox1 = new Telerik.WinControls.UI.RadGroupBox();
            this.txtDocNumber = new Telerik.WinControls.UI.RadTextBox();
            this.txtDocDate = new Telerik.WinControls.UI.RadTextBox();
            this.txtOut = new Telerik.WinControls.UI.RadTextBox();
            this.txtEmplId = new Telerik.WinControls.UI.RadTextBox();
            this.RadioEmpl = new Telerik.WinControls.UI.RadRadioButton();
            this.RadioDocId = new Telerik.WinControls.UI.RadRadioButton();
            this.RadioDimention = new Telerik.WinControls.UI.RadRadioButton();
            this.radButtonserch = new Telerik.WinControls.UI.RadButton();
            this.dtpEnd = new Telerik.WinControls.UI.RadDateTimePicker();
            this.DdlDimention = new Telerik.WinControls.UI.RadDropDownList();
            this.label4 = new System.Windows.Forms.Label();
            this.dtpStart = new Telerik.WinControls.UI.RadDateTimePicker();
            this.label3 = new System.Windows.Forms.Label();
            this.radPanelGride = new Telerik.WinControls.UI.RadPanel();
            this.radGroupBox2 = new Telerik.WinControls.UI.RadGroupBox();
            this.radPanel1 = new Telerik.WinControls.UI.RadPanel();
            this.radPanelRight = new Telerik.WinControls.UI.RadPanel();
            this.radButtonSave = new Telerik.WinControls.UI.RadButton();
            ((System.ComponentModel.ISupportInitialize)(this.GridViewShowData)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.GridViewShowData.MasterTemplate)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radButtonUnChechAll)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radButtonCheckAll)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radPanelGetdata)).BeginInit();
            this.radPanelGetdata.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.radGroupBox1)).BeginInit();
            this.radGroupBox1.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.txtDocNumber)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.txtDocDate)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.txtOut)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.txtEmplId)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.RadioEmpl)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.RadioDocId)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.RadioDimention)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radButtonserch)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.dtpEnd)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.DdlDimention)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.dtpStart)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radPanelGride)).BeginInit();
            this.radPanelGride.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.radGroupBox2)).BeginInit();
            this.radGroupBox2.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.radPanel1)).BeginInit();
            this.radPanel1.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.radPanelRight)).BeginInit();
            this.radPanelRight.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.radButtonSave)).BeginInit();
            this.SuspendLayout();
            // 
            // GridViewShowData
            // 
            this.GridViewShowData.Dock = System.Windows.Forms.DockStyle.Fill;
            this.GridViewShowData.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(222)));
            this.GridViewShowData.Location = new System.Drawing.Point(2, 18);
            this.GridViewShowData.Margin = new System.Windows.Forms.Padding(4);
            // 
            // GridViewShowData
            // 
            gridViewCheckBoxColumn1.FormatInfo = new System.Globalization.CultureInfo("");
            gridViewCheckBoxColumn1.HeaderText = "";
            gridViewCheckBoxColumn1.Name = "CHECK";
            gridViewCheckBoxColumn1.Width = 20;
            gridViewTextBoxColumn1.FieldName = "DocId";
            gridViewTextBoxColumn1.HeaderText = "เลขที่เอกสาร";
            gridViewTextBoxColumn1.Name = "DocId";
            gridViewTextBoxColumn1.ReadOnly = true;
            gridViewHyperlinkColumn1.FieldName = "OutOfficeId";
            gridViewHyperlinkColumn1.HeaderText = "ลำดับ";
            gridViewHyperlinkColumn1.Name = "OutOfficeId";
            gridViewHyperlinkColumn1.Width = 20;
            gridViewTextBoxColumn2.FieldName = "EmplId";
            gridViewTextBoxColumn2.HeaderText = "รหัสพนักงาน";
            gridViewTextBoxColumn2.Name = "EmplId";
            gridViewTextBoxColumn2.ReadOnly = true;
            gridViewTextBoxColumn3.FieldName = "EmplFullName";
            gridViewTextBoxColumn3.HeaderText = "ชื่อ-สกุล";
            gridViewTextBoxColumn3.Name = "EmplFullName";
            gridViewTextBoxColumn3.ReadOnly = true;
            gridViewTextBoxColumn4.FieldName = "Dimention";
            gridViewTextBoxColumn4.HeaderText = "แผนก";
            gridViewTextBoxColumn4.Name = "Dimention";
            gridViewTextBoxColumn4.ReadOnly = true;
            gridViewTextBoxColumn5.FieldName = "Dept";
            gridViewTextBoxColumn5.HeaderText = "ตำแหน่ง";
            gridViewTextBoxColumn5.Name = "Dept";
            gridViewTextBoxColumn5.ReadOnly = true;
            gridViewTextBoxColumn6.FieldName = "OutType";
            gridViewTextBoxColumn6.HeaderText = "ออกนอก";
            gridViewTextBoxColumn6.Name = "OutType";
            gridViewTextBoxColumn6.ReadOnly = true;
            gridViewTextBoxColumn7.FieldName = "Reason";
            gridViewTextBoxColumn7.HeaderText = "เหตุผล";
            gridViewTextBoxColumn7.Name = "Reason";
            gridViewTextBoxColumn8.FieldName = "CombackType";
            gridViewTextBoxColumn8.HeaderText = "กลับเข้ามา";
            gridViewTextBoxColumn8.Name = "CombackType";
            gridViewTextBoxColumn8.ReadOnly = true;
            this.GridViewShowData.MasterTemplate.Columns.AddRange(new Telerik.WinControls.UI.GridViewDataColumn[] {
            gridViewCheckBoxColumn1,
            gridViewTextBoxColumn1,
            gridViewHyperlinkColumn1,
            gridViewTextBoxColumn2,
            gridViewTextBoxColumn3,
            gridViewTextBoxColumn4,
            gridViewTextBoxColumn5,
            gridViewTextBoxColumn6,
            gridViewTextBoxColumn7,
            gridViewTextBoxColumn8});
            this.GridViewShowData.MasterTemplate.ShowGroupedColumns = true;
            this.GridViewShowData.Name = "GridViewShowData";
            this.GridViewShowData.ShowGroupPanel = false;
            this.GridViewShowData.Size = new System.Drawing.Size(670, 354);
            this.GridViewShowData.TabIndex = 0;
            this.GridViewShowData.Text = "radGridView1";
            this.GridViewShowData.CellClick += new Telerik.WinControls.UI.GridViewCellEventHandler(this.GridData_CellClick);
            // 
            // radButtonUnChechAll
            // 
            this.radButtonUnChechAll.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(222)));
            this.radButtonUnChechAll.Location = new System.Drawing.Point(100, 7);
            this.radButtonUnChechAll.Margin = new System.Windows.Forms.Padding(4);
            this.radButtonUnChechAll.Name = "radButtonUnChechAll";
            this.radButtonUnChechAll.Size = new System.Drawing.Size(92, 23);
            this.radButtonUnChechAll.TabIndex = 2;
            this.radButtonUnChechAll.Text = "UnCheckAll";
            this.radButtonUnChechAll.Click += new System.EventHandler(this.radButtonUnChechAll_Click);
            // 
            // radButtonCheckAll
            // 
            this.radButtonCheckAll.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(222)));
            this.radButtonCheckAll.Location = new System.Drawing.Point(8, 7);
            this.radButtonCheckAll.Margin = new System.Windows.Forms.Padding(4);
            this.radButtonCheckAll.Name = "radButtonCheckAll";
            this.radButtonCheckAll.Size = new System.Drawing.Size(84, 23);
            this.radButtonCheckAll.TabIndex = 1;
            this.radButtonCheckAll.Text = "CheckAll";
            this.radButtonCheckAll.Click += new System.EventHandler(this.radButtonCheckAll_Click);
            // 
            // radPanelGetdata
            // 
            this.radPanelGetdata.Controls.Add(this.radGroupBox1);
            this.radPanelGetdata.Dock = System.Windows.Forms.DockStyle.Top;
            this.radPanelGetdata.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(222)));
            this.radPanelGetdata.Location = new System.Drawing.Point(0, 0);
            this.radPanelGetdata.Margin = new System.Windows.Forms.Padding(4);
            this.radPanelGetdata.Name = "radPanelGetdata";
            this.radPanelGetdata.Size = new System.Drawing.Size(784, 150);
            this.radPanelGetdata.TabIndex = 14;
            // 
            // radGroupBox1
            // 
            this.radGroupBox1.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
            this.radGroupBox1.Controls.Add(this.txtDocNumber);
            this.radGroupBox1.Controls.Add(this.txtDocDate);
            this.radGroupBox1.Controls.Add(this.txtOut);
            this.radGroupBox1.Controls.Add(this.txtEmplId);
            this.radGroupBox1.Controls.Add(this.RadioEmpl);
            this.radGroupBox1.Controls.Add(this.RadioDocId);
            this.radGroupBox1.Controls.Add(this.RadioDimention);
            this.radGroupBox1.Controls.Add(this.radButtonserch);
            this.radGroupBox1.Controls.Add(this.dtpEnd);
            this.radGroupBox1.Controls.Add(this.DdlDimention);
            this.radGroupBox1.Controls.Add(this.label4);
            this.radGroupBox1.Controls.Add(this.dtpStart);
            this.radGroupBox1.Controls.Add(this.label3);
            this.radGroupBox1.Dock = System.Windows.Forms.DockStyle.Top;
            this.radGroupBox1.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(222)));
            this.radGroupBox1.HeaderText = "ค้นหาข้อมูล";
            this.radGroupBox1.Location = new System.Drawing.Point(0, 0);
            this.radGroupBox1.Margin = new System.Windows.Forms.Padding(4);
            this.radGroupBox1.Name = "radGroupBox1";
            this.radGroupBox1.Padding = new System.Windows.Forms.Padding(3, 22, 3, 2);
            // 
            // 
            // 
            this.radGroupBox1.RootElement.Padding = new System.Windows.Forms.Padding(3, 22, 3, 2);
            this.radGroupBox1.Size = new System.Drawing.Size(784, 145);
            this.radGroupBox1.TabIndex = 0;
            this.radGroupBox1.Text = "ค้นหาข้อมูล";
            // 
            // txtDocNumber
            // 
            this.txtDocNumber.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(222)));
            this.txtDocNumber.Location = new System.Drawing.Point(229, 80);
            this.txtDocNumber.Margin = new System.Windows.Forms.Padding(4);
            this.txtDocNumber.MaxLength = 4;
            this.txtDocNumber.Name = "txtDocNumber";
            this.txtDocNumber.Size = new System.Drawing.Size(47, 20);
            this.txtDocNumber.TabIndex = 12;
            this.txtDocNumber.TabStop = false;
            // 
            // txtDocDate
            // 
            this.txtDocDate.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(222)));
            this.txtDocDate.Location = new System.Drawing.Point(161, 80);
            this.txtDocDate.Margin = new System.Windows.Forms.Padding(4);
            this.txtDocDate.MaxLength = 6;
            this.txtDocDate.Name = "txtDocDate";
            this.txtDocDate.Size = new System.Drawing.Size(60, 20);
            this.txtDocDate.TabIndex = 11;
            this.txtDocDate.TabStop = false;
            // 
            // txtOut
            // 
            this.txtOut.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(222)));
            this.txtOut.Location = new System.Drawing.Point(113, 80);
            this.txtOut.Margin = new System.Windows.Forms.Padding(4);
            this.txtOut.MaxLength = 3;
            this.txtOut.Name = "txtOut";
            this.txtOut.ReadOnly = true;
            this.txtOut.Size = new System.Drawing.Size(40, 20);
            this.txtOut.TabIndex = 10;
            this.txtOut.TabStop = false;
            this.txtOut.Text = "OUT";
            // 
            // txtEmplId
            // 
            this.txtEmplId.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(222)));
            this.txtEmplId.Location = new System.Drawing.Point(113, 52);
            this.txtEmplId.Margin = new System.Windows.Forms.Padding(4);
            this.txtEmplId.Name = "txtEmplId";
            this.txtEmplId.Size = new System.Drawing.Size(250, 20);
            this.txtEmplId.TabIndex = 6;
            this.txtEmplId.TabStop = false;
            // 
            // RadioEmpl
            // 
            this.RadioEmpl.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(222)));
            this.RadioEmpl.Location = new System.Drawing.Point(19, 52);
            this.RadioEmpl.Margin = new System.Windows.Forms.Padding(4);
            this.RadioEmpl.Name = "RadioEmpl";
            this.RadioEmpl.Size = new System.Drawing.Size(85, 18);
            this.RadioEmpl.TabIndex = 5;
            this.RadioEmpl.Text = "รหัสพนักงาน";
            // 
            // RadioDocId
            // 
            this.RadioDocId.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(222)));
            this.RadioDocId.Location = new System.Drawing.Point(19, 78);
            this.RadioDocId.Margin = new System.Windows.Forms.Padding(4);
            this.RadioDocId.Name = "RadioDocId";
            this.RadioDocId.Size = new System.Drawing.Size(86, 18);
            this.RadioDocId.TabIndex = 9;
            this.RadioDocId.Text = "เลขที่เอกสาร";
            // 
            // RadioDimention
            // 
            this.RadioDimention.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(222)));
            this.RadioDimention.Location = new System.Drawing.Point(19, 26);
            this.RadioDimention.Margin = new System.Windows.Forms.Padding(4);
            this.RadioDimention.Name = "RadioDimention";
            this.RadioDimention.Size = new System.Drawing.Size(51, 18);
            this.RadioDimention.TabIndex = 1;
            this.RadioDimention.TabStop = true;
            this.RadioDimention.Text = "แผนก";
            this.RadioDimention.ToggleState = Telerik.WinControls.Enumerations.ToggleState.On;
            // 
            // radButtonserch
            // 
            this.radButtonserch.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(222)));
            this.radButtonserch.Location = new System.Drawing.Point(19, 108);
            this.radButtonserch.Margin = new System.Windows.Forms.Padding(4);
            this.radButtonserch.Name = "radButtonserch";
            this.radButtonserch.Size = new System.Drawing.Size(100, 25);
            this.radButtonserch.TabIndex = 13;
            this.radButtonserch.Text = "ค้นหา";
            // 
            // dtpEnd
            // 
            this.dtpEnd.CustomFormat = "yyyy-MM-dd";
            this.dtpEnd.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(222)));
            this.dtpEnd.Format = System.Windows.Forms.DateTimePickerFormat.Custom;
            this.dtpEnd.Location = new System.Drawing.Point(526, 26);
            this.dtpEnd.Margin = new System.Windows.Forms.Padding(4);
            this.dtpEnd.Name = "dtpEnd";
            this.dtpEnd.Size = new System.Drawing.Size(90, 20);
            this.dtpEnd.TabIndex = 4;
            this.dtpEnd.TabStop = false;
            this.dtpEnd.Text = "2014-02-12";
            this.dtpEnd.Value = new System.DateTime(2014, 2, 12, 16, 33, 8, 281);
            // 
            // DdlDimention
            // 
            this.DdlDimention.DefaultItemsCountInDropDown = 15;
            this.DdlDimention.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(222)));
            this.DdlDimention.Location = new System.Drawing.Point(113, 24);
            this.DdlDimention.Margin = new System.Windows.Forms.Padding(4);
            this.DdlDimention.Name = "DdlDimention";
            this.DdlDimention.Size = new System.Drawing.Size(250, 20);
            this.DdlDimention.TabIndex = 2;
            // 
            // label4
            // 
            this.label4.AutoSize = true;
            this.label4.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(222)));
            this.label4.Location = new System.Drawing.Point(498, 28);
            this.label4.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
            this.label4.Name = "label4";
            this.label4.Size = new System.Drawing.Size(20, 14);
            this.label4.TabIndex = 18;
            this.label4.Text = "ถึง";
            // 
            // dtpStart
            // 
            this.dtpStart.CustomFormat = "yyyy-MM-dd";
            this.dtpStart.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(222)));
            this.dtpStart.Format = System.Windows.Forms.DateTimePickerFormat.Custom;
            this.dtpStart.Location = new System.Drawing.Point(402, 26);
            this.dtpStart.Margin = new System.Windows.Forms.Padding(4);
            this.dtpStart.Name = "dtpStart";
            this.dtpStart.Size = new System.Drawing.Size(90, 20);
            this.dtpStart.TabIndex = 3;
            this.dtpStart.TabStop = false;
            this.dtpStart.Text = "2014-02-12";
            this.dtpStart.Value = new System.DateTime(2014, 2, 12, 16, 33, 8, 281);
            // 
            // label3
            // 
            this.label3.AutoSize = true;
            this.label3.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(222)));
            this.label3.Location = new System.Drawing.Point(371, 28);
            this.label3.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
            this.label3.Name = "label3";
            this.label3.Size = new System.Drawing.Size(23, 14);
            this.label3.TabIndex = 17;
            this.label3.Text = "เริ่ม";
            // 
            // radPanelGride
            // 
            this.radPanelGride.Controls.Add(this.radGroupBox2);
            this.radPanelGride.Controls.Add(this.radPanel1);
            this.radPanelGride.Dock = System.Windows.Forms.DockStyle.Fill;
            this.radPanelGride.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(222)));
            this.radPanelGride.Location = new System.Drawing.Point(0, 150);
            this.radPanelGride.Margin = new System.Windows.Forms.Padding(4);
            this.radPanelGride.Name = "radPanelGride";
            this.radPanelGride.Size = new System.Drawing.Size(674, 411);
            this.radPanelGride.TabIndex = 13;
            // 
            // radGroupBox2
            // 
            this.radGroupBox2.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
            this.radGroupBox2.Controls.Add(this.GridViewShowData);
            this.radGroupBox2.Dock = System.Windows.Forms.DockStyle.Fill;
            this.radGroupBox2.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(222)));
            this.radGroupBox2.HeaderText = "";
            this.radGroupBox2.Location = new System.Drawing.Point(0, 37);
            this.radGroupBox2.Name = "radGroupBox2";
            // 
            // 
            // 
            this.radGroupBox2.RootElement.Padding = new System.Windows.Forms.Padding(2, 18, 2, 2);
            this.radGroupBox2.Size = new System.Drawing.Size(674, 374);
            this.radGroupBox2.TabIndex = 2;
            // 
            // radPanel1
            // 
            this.radPanel1.Controls.Add(this.radButtonUnChechAll);
            this.radPanel1.Controls.Add(this.radButtonCheckAll);
            this.radPanel1.Dock = System.Windows.Forms.DockStyle.Top;
            this.radPanel1.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(222)));
            this.radPanel1.Location = new System.Drawing.Point(0, 0);
            this.radPanel1.Name = "radPanel1";
            this.radPanel1.Size = new System.Drawing.Size(674, 37);
            this.radPanel1.TabIndex = 1;
            // 
            // radPanelRight
            // 
            this.radPanelRight.Controls.Add(this.radButtonSave);
            this.radPanelRight.Dock = System.Windows.Forms.DockStyle.Right;
            this.radPanelRight.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(222)));
            this.radPanelRight.Location = new System.Drawing.Point(674, 150);
            this.radPanelRight.Margin = new System.Windows.Forms.Padding(4);
            this.radPanelRight.Name = "radPanelRight";
            this.radPanelRight.Size = new System.Drawing.Size(110, 411);
            this.radPanelRight.TabIndex = 4;
            // 
            // radButtonSave
            // 
            this.radButtonSave.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(222)));
            this.radButtonSave.Location = new System.Drawing.Point(5, 30);
            this.radButtonSave.Margin = new System.Windows.Forms.Padding(4);
            this.radButtonSave.Name = "radButtonSave";
            this.radButtonSave.Size = new System.Drawing.Size(100, 25);
            this.radButtonSave.TabIndex = 14;
            this.radButtonSave.Text = "อนุมัติ";
            // 
            // FormHdApprove
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 16F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.AutoScroll = true;
            this.ClientSize = new System.Drawing.Size(784, 561);
            this.Controls.Add(this.radPanelGride);
            this.Controls.Add(this.radPanelRight);
            this.Controls.Add(this.radPanelGetdata);
            this.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(222)));
            this.Margin = new System.Windows.Forms.Padding(4);
            this.Name = "FormHdApprove";
            this.Text = "อนุมัติเอกสาร";
            ((System.ComponentModel.ISupportInitialize)(this.GridViewShowData.MasterTemplate)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.GridViewShowData)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radButtonUnChechAll)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radButtonCheckAll)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radPanelGetdata)).EndInit();
            this.radPanelGetdata.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.radGroupBox1)).EndInit();
            this.radGroupBox1.ResumeLayout(false);
            this.radGroupBox1.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.txtDocNumber)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.txtDocDate)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.txtOut)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.txtEmplId)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.RadioEmpl)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.RadioDocId)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.RadioDimention)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radButtonserch)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.dtpEnd)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.DdlDimention)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.dtpStart)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radPanelGride)).EndInit();
            this.radPanelGride.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.radGroupBox2)).EndInit();
            this.radGroupBox2.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.radPanel1)).EndInit();
            this.radPanel1.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.radPanelRight)).EndInit();
            this.radPanelRight.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.radButtonSave)).EndInit();
            this.ResumeLayout(false);

        }
コード例 #56
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();
     Telerik.WinControls.UI.GridViewTextBoxColumn  gridViewTextBoxColumn1  = new Telerik.WinControls.UI.GridViewTextBoxColumn();
     Telerik.WinControls.UI.GridViewTextBoxColumn  gridViewTextBoxColumn2  = new Telerik.WinControls.UI.GridViewTextBoxColumn();
     Telerik.WinControls.UI.GridViewDecimalColumn  gridViewDecimalColumn1  = new Telerik.WinControls.UI.GridViewDecimalColumn();
     Telerik.WinControls.UI.GridViewDateTimeColumn gridViewDateTimeColumn1 = new Telerik.WinControls.UI.GridViewDateTimeColumn();
     Telerik.WinControls.UI.GridViewCheckBoxColumn gridViewCheckBoxColumn1 = new Telerik.WinControls.UI.GridViewCheckBoxColumn();
     this.radGridView1        = new Telerik.WinControls.UI.RadGridView();
     this.sinarekDataSet      = new NB.sinarekDataSet();
     this.memberBindingSource = new System.Windows.Forms.BindingSource(this.components);
     this.memberTableAdapter  = new NB.sinarekDataSetTableAdapters.memberTableAdapter();
     ((System.ComponentModel.ISupportInitialize)(this.radGridView1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.sinarekDataSet)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.memberBindingSource)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
     this.SuspendLayout();
     //
     // radGridView1
     //
     this.radGridView1.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.radGridView1.Font     = new System.Drawing.Font("Segoe UI", 12F);
     this.radGridView1.Location = new System.Drawing.Point(0, 0);
     //
     // radGridView1
     //
     this.radGridView1.MasterTemplate.AllowAddNewRow      = false;
     this.radGridView1.MasterTemplate.AllowColumnReorder  = false;
     this.radGridView1.MasterTemplate.AllowDeleteRow      = false;
     this.radGridView1.MasterTemplate.AllowDragToGroup    = false;
     this.radGridView1.MasterTemplate.AllowEditRow        = false;
     this.radGridView1.MasterTemplate.AutoGenerateColumns = false;
     gridViewTextBoxColumn1.AllowFiltering   = false;
     gridViewTextBoxColumn1.HeaderText       = "#";
     gridViewTextBoxColumn1.Name             = "noRow";
     gridViewTextBoxColumn1.TextAlignment    = System.Drawing.ContentAlignment.MiddleCenter;
     gridViewTextBoxColumn1.Width            = 46;
     gridViewTextBoxColumn2.FieldName        = "Name";
     gridViewTextBoxColumn2.FormatString     = "";
     gridViewTextBoxColumn2.HeaderText       = "Nama";
     gridViewTextBoxColumn2.IsAutoGenerated  = true;
     gridViewTextBoxColumn2.Name             = "Name";
     gridViewTextBoxColumn2.Width            = 150;
     gridViewDecimalColumn1.AllowFiltering   = false;
     gridViewDecimalColumn1.DataType         = typeof(short);
     gridViewDecimalColumn1.FieldName        = "FingerID";
     gridViewDecimalColumn1.FormatString     = "";
     gridViewDecimalColumn1.HeaderText       = "User ID";
     gridViewDecimalColumn1.IsAutoGenerated  = true;
     gridViewDecimalColumn1.Name             = "FingerID";
     gridViewDecimalColumn1.TextAlignment    = System.Drawing.ContentAlignment.MiddleCenter;
     gridViewDecimalColumn1.Width            = 100;
     gridViewDateTimeColumn1.AllowFiltering  = false;
     gridViewDateTimeColumn1.FieldName       = "MasukKerja";
     gridViewDateTimeColumn1.FormatString    = "{0:dd MMM yyyy}";
     gridViewDateTimeColumn1.HeaderText      = "Tanggal Masuk";
     gridViewDateTimeColumn1.IsAutoGenerated = true;
     gridViewDateTimeColumn1.Name            = "MasukKerja";
     gridViewDateTimeColumn1.TextAlignment   = System.Drawing.ContentAlignment.MiddleCenter;
     gridViewDateTimeColumn1.Width           = 150;
     gridViewCheckBoxColumn1.AllowFiltering  = false;
     gridViewCheckBoxColumn1.FieldName       = "Active";
     gridViewCheckBoxColumn1.FormatString    = "";
     gridViewCheckBoxColumn1.HeaderText      = "Active";
     gridViewCheckBoxColumn1.IsAutoGenerated = true;
     gridViewCheckBoxColumn1.IsVisible       = false;
     gridViewCheckBoxColumn1.Name            = "Active";
     gridViewCheckBoxColumn1.Width           = 63;
     this.radGridView1.MasterTemplate.Columns.AddRange(new Telerik.WinControls.UI.GridViewDataColumn[] {
         gridViewTextBoxColumn1,
         gridViewTextBoxColumn2,
         gridViewDecimalColumn1,
         gridViewDateTimeColumn1,
         gridViewCheckBoxColumn1
     });
     this.radGridView1.MasterTemplate.DataSource      = this.memberBindingSource;
     this.radGridView1.MasterTemplate.EnableFiltering = true;
     this.radGridView1.Name           = "radGridView1";
     this.radGridView1.ReadOnly       = true;
     this.radGridView1.ShowGroupPanel = false;
     this.radGridView1.Size           = new System.Drawing.Size(496, 466);
     this.radGridView1.TabIndex       = 0;
     this.radGridView1.Text           = "radGridView1";
     this.radGridView1.RowsChanged   += new Telerik.WinControls.UI.GridViewCollectionChangedEventHandler(this.radGridView1_RowsChanged);
     //
     // sinarekDataSet
     //
     this.sinarekDataSet.DataSetName             = "sinarekDataSet";
     this.sinarekDataSet.SchemaSerializationMode = System.Data.SchemaSerializationMode.IncludeSchema;
     //
     // memberBindingSource
     //
     this.memberBindingSource.DataMember = "member";
     this.memberBindingSource.DataSource = this.sinarekDataSet;
     this.memberBindingSource.Filter     = "tipememberid = 3 and active = 1";
     this.memberBindingSource.Sort       = "name";
     //
     // memberTableAdapter
     //
     this.memberTableAdapter.ClearBeforeFill = true;
     //
     // frmSatpam
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize          = new System.Drawing.Size(496, 466);
     this.Controls.Add(this.radGridView1);
     this.Font            = new System.Drawing.Font("Segoe UI", 12F);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
     this.Name            = "frmSatpam";
     //
     //
     //
     this.RootElement.ApplyShapeToControl = true;
     this.Text      = "Daftar Satpam";
     this.ThemeName = "ControlDefault";
     this.Load     += new System.EventHandler(this.frmSatpam_Load);
     ((System.ComponentModel.ISupportInitialize)(this.radGridView1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.sinarekDataSet)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.memberBindingSource)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this)).EndInit();
     this.ResumeLayout(false);
 }
コード例 #57
0
 /// <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(frmTiposContrato));
     Telerik.WinControls.UI.GridViewTextBoxColumn   gridViewTextBoxColumn1  = new Telerik.WinControls.UI.GridViewTextBoxColumn();
     Telerik.WinControls.UI.GridViewTextBoxColumn   gridViewTextBoxColumn2  = new Telerik.WinControls.UI.GridViewTextBoxColumn();
     Telerik.WinControls.UI.GridViewTextBoxColumn   gridViewTextBoxColumn3  = new Telerik.WinControls.UI.GridViewTextBoxColumn();
     Telerik.WinControls.UI.GridViewCheckBoxColumn  gridViewCheckBoxColumn1 = new Telerik.WinControls.UI.GridViewCheckBoxColumn();
     Telerik.WinControls.UI.TableViewDefinition     tableViewDefinition1    = new Telerik.WinControls.UI.TableViewDefinition();
     this.radCommandBar1          = new Telerik.WinControls.UI.RadCommandBar();
     this.commandBarRowElement1   = new Telerik.WinControls.UI.CommandBarRowElement();
     this.commandBarStripElement1 = new Telerik.WinControls.UI.CommandBarStripElement();
     this.btnNuevo             = new Telerik.WinControls.UI.CommandBarButton();
     this.commandBarSeparator1 = new Telerik.WinControls.UI.CommandBarSeparator();
     this.commandBarButton2    = new Telerik.WinControls.UI.CommandBarButton();
     this.commandBarSeparator2 = new Telerik.WinControls.UI.CommandBarSeparator();
     this.commandBarButton3    = new Telerik.WinControls.UI.CommandBarButton();
     this.commandBarSeparator3 = new Telerik.WinControls.UI.CommandBarSeparator();
     this.commandBarButton4    = new Telerik.WinControls.UI.CommandBarButton();
     this.commandBarSeparator4 = new Telerik.WinControls.UI.CommandBarSeparator();
     this.commandBarLabel1     = new Telerik.WinControls.UI.CommandBarLabel();
     this.radPanel1            = new Telerik.WinControls.UI.RadPanel();
     this.chkEstatus           = new System.Windows.Forms.CheckBox();
     this.txtAbrev             = new System.Windows.Forms.TextBox();
     this.txtId     = new System.Windows.Forms.TextBox();
     this.txtNombre = new System.Windows.Forms.TextBox();
     this.label2    = new System.Windows.Forms.Label();
     this.label1    = new System.Windows.Forms.Label();
     this.radPanel2 = new Telerik.WinControls.UI.RadPanel();
     this.gvDatos   = new Telerik.WinControls.UI.RadGridView();
     this.commandBarStripElement2 = new Telerik.WinControls.UI.CommandBarStripElement();
     ((System.ComponentModel.ISupportInitialize)(this.radCommandBar1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radPanel1)).BeginInit();
     this.radPanel1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.radPanel2)).BeginInit();
     this.radPanel2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gvDatos)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvDatos.MasterTemplate)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
     this.SuspendLayout();
     //
     // radCommandBar1
     //
     this.radCommandBar1.Dock     = System.Windows.Forms.DockStyle.Top;
     this.radCommandBar1.Location = new System.Drawing.Point(0, 0);
     this.radCommandBar1.Name     = "radCommandBar1";
     this.radCommandBar1.Rows.AddRange(new Telerik.WinControls.UI.CommandBarRowElement[] {
         this.commandBarRowElement1
     });
     this.radCommandBar1.Size     = new System.Drawing.Size(528, 53);
     this.radCommandBar1.TabIndex = 3;
     //
     // commandBarRowElement1
     //
     this.commandBarRowElement1.DisabledTextRenderingHint = System.Drawing.Text.TextRenderingHint.SystemDefault;
     this.commandBarRowElement1.MinSize = new System.Drawing.Size(25, 25);
     this.commandBarRowElement1.Name    = "commandBarRowElement1";
     this.commandBarRowElement1.Strips.AddRange(new Telerik.WinControls.UI.CommandBarStripElement[] {
         this.commandBarStripElement1
     });
     this.commandBarRowElement1.Text = "";
     this.commandBarRowElement1.TextRenderingHint          = System.Drawing.Text.TextRenderingHint.SystemDefault;
     this.commandBarRowElement1.UseCompatibleTextRendering = false;
     //
     // commandBarStripElement1
     //
     this.commandBarStripElement1.DisplayName = "commandBarStripElement1";
     this.commandBarStripElement1.Items.AddRange(new Telerik.WinControls.UI.RadCommandBarBaseItem[] {
         this.btnNuevo,
         this.commandBarSeparator1,
         this.commandBarButton2,
         this.commandBarSeparator2,
         this.commandBarButton3,
         this.commandBarSeparator3,
         this.commandBarButton4,
         this.commandBarSeparator4,
         this.commandBarLabel1
     });
     this.commandBarStripElement1.Name = "commandBarStripElement1";
     //
     //
     //
     this.commandBarStripElement1.OverflowButton.Visibility = Telerik.WinControls.ElementVisibility.Hidden;
     this.commandBarStripElement1.StretchHorizontally       = true;
     ((Telerik.WinControls.UI.RadCommandBarOverflowButton)(this.commandBarStripElement1.GetChildAt(2))).Visibility = Telerik.WinControls.ElementVisibility.Hidden;
     //
     // btnNuevo
     //
     this.btnNuevo.DisplayName       = "commandBarButton1";
     this.btnNuevo.DrawText          = true;
     this.btnNuevo.Image             = ((System.Drawing.Image)(resources.GetObject("btnNuevo.Image")));
     this.btnNuevo.Name              = "btnNuevo";
     this.btnNuevo.Text              = "Nuevo";
     this.btnNuevo.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
     this.btnNuevo.Click            += new System.EventHandler(this.btnNuevo_Click);
     //
     // commandBarSeparator1
     //
     this.commandBarSeparator1.DisplayName           = "commandBarSeparator1";
     this.commandBarSeparator1.Name                  = "commandBarSeparator1";
     this.commandBarSeparator1.VisibleInOverflowMenu = false;
     //
     // commandBarButton2
     //
     this.commandBarButton2.DisplayName       = "commandBarButton2";
     this.commandBarButton2.DrawText          = true;
     this.commandBarButton2.Image             = ((System.Drawing.Image)(resources.GetObject("commandBarButton2.Image")));
     this.commandBarButton2.Name              = "commandBarButton2";
     this.commandBarButton2.Text              = "Guardar";
     this.commandBarButton2.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
     this.commandBarButton2.Click            += new System.EventHandler(this.btnGuardar_Click);
     //
     // commandBarSeparator2
     //
     this.commandBarSeparator2.DisplayName           = "commandBarSeparator2";
     this.commandBarSeparator2.Name                  = "commandBarSeparator2";
     this.commandBarSeparator2.VisibleInOverflowMenu = false;
     //
     // commandBarButton3
     //
     this.commandBarButton3.DisplayName       = "commandBarButton3";
     this.commandBarButton3.DrawText          = true;
     this.commandBarButton3.Image             = ((System.Drawing.Image)(resources.GetObject("commandBarButton3.Image")));
     this.commandBarButton3.Name              = "commandBarButton3";
     this.commandBarButton3.Text              = "Eliminar";
     this.commandBarButton3.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
     this.commandBarButton3.Click            += new System.EventHandler(this.btnEliminar_Click);
     //
     // commandBarSeparator3
     //
     this.commandBarSeparator3.DisplayName           = "commandBarSeparator3";
     this.commandBarSeparator3.Name                  = "commandBarSeparator3";
     this.commandBarSeparator3.VisibleInOverflowMenu = false;
     //
     // commandBarButton4
     //
     this.commandBarButton4.DisplayName       = "commandBarButton4";
     this.commandBarButton4.DrawText          = true;
     this.commandBarButton4.Image             = ((System.Drawing.Image)(resources.GetObject("commandBarButton4.Image")));
     this.commandBarButton4.Name              = "commandBarButton4";
     this.commandBarButton4.Text              = "Salir";
     this.commandBarButton4.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
     this.commandBarButton4.Click            += new System.EventHandler(this.btnSalir_Click);
     //
     // commandBarSeparator4
     //
     this.commandBarSeparator4.DisplayName           = "commandBarSeparator4";
     this.commandBarSeparator4.Name                  = "commandBarSeparator4";
     this.commandBarSeparator4.VisibleInOverflowMenu = false;
     //
     // commandBarLabel1
     //
     this.commandBarLabel1.DisplayName         = "commandBarLabel1";
     this.commandBarLabel1.Font                = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold);
     this.commandBarLabel1.ForeColor           = System.Drawing.Color.Navy;
     this.commandBarLabel1.Name                = "commandBarLabel1";
     this.commandBarLabel1.StretchHorizontally = true;
     this.commandBarLabel1.Text                = "CATÁLOGO TIPOS DE CONTRATO";
     //
     // radPanel1
     //
     this.radPanel1.Controls.Add(this.chkEstatus);
     this.radPanel1.Controls.Add(this.txtAbrev);
     this.radPanel1.Controls.Add(this.txtId);
     this.radPanel1.Controls.Add(this.txtNombre);
     this.radPanel1.Controls.Add(this.label2);
     this.radPanel1.Controls.Add(this.label1);
     this.radPanel1.Dock     = System.Windows.Forms.DockStyle.Top;
     this.radPanel1.Location = new System.Drawing.Point(0, 53);
     this.radPanel1.Name     = "radPanel1";
     this.radPanel1.Size     = new System.Drawing.Size(528, 81);
     this.radPanel1.TabIndex = 4;
     //
     // chkEstatus
     //
     this.chkEstatus.AutoSize = true;
     this.chkEstatus.Location = new System.Drawing.Point(191, 44);
     this.chkEstatus.Name     = "chkEstatus";
     this.chkEstatus.Size     = new System.Drawing.Size(57, 17);
     this.chkEstatus.TabIndex = 7;
     this.chkEstatus.Text     = "Activo";
     this.chkEstatus.UseVisualStyleBackColor = true;
     //
     // txtAbrev
     //
     this.txtAbrev.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
     this.txtAbrev.Location        = new System.Drawing.Point(83, 41);
     this.txtAbrev.Name            = "txtAbrev";
     this.txtAbrev.Size            = new System.Drawing.Size(78, 20);
     this.txtAbrev.TabIndex        = 5;
     //
     // txtId
     //
     this.txtId.Location = new System.Drawing.Point(263, 15);
     this.txtId.Name     = "txtId";
     this.txtId.Size     = new System.Drawing.Size(64, 20);
     this.txtId.TabIndex = 4;
     this.txtId.Visible  = false;
     //
     // txtNombre
     //
     this.txtNombre.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
     this.txtNombre.Location        = new System.Drawing.Point(83, 15);
     this.txtNombre.Name            = "txtNombre";
     this.txtNombre.Size            = new System.Drawing.Size(147, 20);
     this.txtNombre.TabIndex        = 3;
     //
     // label2
     //
     this.label2.AutoSize = true;
     this.label2.Location = new System.Drawing.Point(25, 44);
     this.label2.Name     = "label2";
     this.label2.Size     = new System.Drawing.Size(45, 13);
     this.label2.TabIndex = 1;
     this.label2.Text     = "Abrev. :";
     //
     // label1
     //
     this.label1.AutoSize = true;
     this.label1.Location = new System.Drawing.Point(16, 18);
     this.label1.Name     = "label1";
     this.label1.Size     = new System.Drawing.Size(54, 13);
     this.label1.TabIndex = 0;
     this.label1.Text     = "Nombre :";
     //
     // radPanel2
     //
     this.radPanel2.Controls.Add(this.gvDatos);
     this.radPanel2.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.radPanel2.Location = new System.Drawing.Point(0, 134);
     this.radPanel2.Name     = "radPanel2";
     this.radPanel2.Size     = new System.Drawing.Size(528, 203);
     this.radPanel2.TabIndex = 5;
     //
     // gvDatos
     //
     this.gvDatos.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.gvDatos.Location = new System.Drawing.Point(0, 0);
     //
     //
     //
     this.gvDatos.MasterTemplate.AllowAddNewRow     = false;
     this.gvDatos.MasterTemplate.AllowColumnReorder = false;
     this.gvDatos.MasterTemplate.AllowDeleteRow     = false;
     this.gvDatos.MasterTemplate.AllowDragToGroup   = false;
     this.gvDatos.MasterTemplate.AllowEditRow       = false;
     gridViewTextBoxColumn1.FieldName      = "Id";
     gridViewTextBoxColumn1.HeaderText     = "ID";
     gridViewTextBoxColumn1.IsVisible      = false;
     gridViewTextBoxColumn1.Name           = "Id";
     gridViewTextBoxColumn2.FieldName      = "Nombre";
     gridViewTextBoxColumn2.HeaderText     = "Nombre";
     gridViewTextBoxColumn2.MaxWidth       = 300;
     gridViewTextBoxColumn2.MinWidth       = 150;
     gridViewTextBoxColumn2.Name           = "Nombre";
     gridViewTextBoxColumn2.Width          = 150;
     gridViewTextBoxColumn2.WrapText       = true;
     gridViewTextBoxColumn3.FieldName      = "Abrev";
     gridViewTextBoxColumn3.HeaderText     = "Abreviatura";
     gridViewTextBoxColumn3.MaxWidth       = 100;
     gridViewTextBoxColumn3.MinWidth       = 80;
     gridViewTextBoxColumn3.Name           = "Abrev";
     gridViewTextBoxColumn3.Width          = 80;
     gridViewCheckBoxColumn1.FieldName     = "DatosUsuario.Estatus";
     gridViewCheckBoxColumn1.HeaderText    = "Estatus";
     gridViewCheckBoxColumn1.MaxWidth      = 100;
     gridViewCheckBoxColumn1.MinWidth      = 100;
     gridViewCheckBoxColumn1.Name          = "Estatus";
     gridViewCheckBoxColumn1.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
     gridViewCheckBoxColumn1.Width         = 100;
     this.gvDatos.MasterTemplate.Columns.AddRange(new Telerik.WinControls.UI.GridViewDataColumn[] {
         gridViewTextBoxColumn1,
         gridViewTextBoxColumn2,
         gridViewTextBoxColumn3,
         gridViewCheckBoxColumn1
     });
     this.gvDatos.MasterTemplate.ShowRowHeaderColumn = false;
     this.gvDatos.MasterTemplate.ViewDefinition      = tableViewDefinition1;
     this.gvDatos.Name           = "gvDatos";
     this.gvDatos.ShowGroupPanel = false;
     this.gvDatos.ShowNoDataText = false;
     this.gvDatos.ShowRowErrors  = false;
     this.gvDatos.Size           = new System.Drawing.Size(528, 203);
     this.gvDatos.TabIndex       = 3;
     //
     // commandBarStripElement2
     //
     this.commandBarStripElement2.DisplayName = "commandBarStripElement2";
     this.commandBarStripElement2.Name        = "commandBarStripElement2";
     //
     // frmTiposContrato
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize          = new System.Drawing.Size(528, 337);
     this.Controls.Add(this.radPanel2);
     this.Controls.Add(this.radPanel1);
     this.Controls.Add(this.radCommandBar1);
     this.Name = "frmTiposContrato";
     //
     //
     //
     this.RootElement.ApplyShapeToControl = true;
     this.ShowIcon = false;
     this.Text     = "Tipos De Contrato";
     this.Load    += new System.EventHandler(this.frmTiposContrato_Load);
     ((System.ComponentModel.ISupportInitialize)(this.radCommandBar1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radPanel1)).EndInit();
     this.radPanel1.ResumeLayout(false);
     this.radPanel1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.radPanel2)).EndInit();
     this.radPanel2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gvDatos.MasterTemplate)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvDatos)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this)).EndInit();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
コード例 #58
0
 /// <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(frm_person));
     Telerik.WinControls.UI.GridViewDecimalColumn   gridViewDecimalColumn1  = new Telerik.WinControls.UI.GridViewDecimalColumn();
     Telerik.WinControls.UI.GridViewTextBoxColumn   gridViewTextBoxColumn1  = new Telerik.WinControls.UI.GridViewTextBoxColumn();
     Telerik.WinControls.UI.GridViewTextBoxColumn   gridViewTextBoxColumn2  = new Telerik.WinControls.UI.GridViewTextBoxColumn();
     Telerik.WinControls.UI.GridViewTextBoxColumn   gridViewTextBoxColumn3  = new Telerik.WinControls.UI.GridViewTextBoxColumn();
     Telerik.WinControls.UI.GridViewTextBoxColumn   gridViewTextBoxColumn4  = new Telerik.WinControls.UI.GridViewTextBoxColumn();
     Telerik.WinControls.UI.GridViewTextBoxColumn   gridViewTextBoxColumn5  = new Telerik.WinControls.UI.GridViewTextBoxColumn();
     Telerik.WinControls.UI.GridViewTextBoxColumn   gridViewTextBoxColumn6  = new Telerik.WinControls.UI.GridViewTextBoxColumn();
     Telerik.WinControls.UI.GridViewTextBoxColumn   gridViewTextBoxColumn7  = new Telerik.WinControls.UI.GridViewTextBoxColumn();
     Telerik.WinControls.UI.GridViewTextBoxColumn   gridViewTextBoxColumn8  = new Telerik.WinControls.UI.GridViewTextBoxColumn();
     Telerik.WinControls.UI.GridViewTextBoxColumn   gridViewTextBoxColumn9  = new Telerik.WinControls.UI.GridViewTextBoxColumn();
     Telerik.WinControls.UI.GridViewTextBoxColumn   gridViewTextBoxColumn10 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
     Telerik.WinControls.UI.GridViewTextBoxColumn   gridViewTextBoxColumn11 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
     Telerik.WinControls.UI.GridViewTextBoxColumn   gridViewTextBoxColumn12 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
     Telerik.WinControls.UI.GridViewCheckBoxColumn  gridViewCheckBoxColumn1 = new Telerik.WinControls.UI.GridViewCheckBoxColumn();
     Telerik.WinControls.UI.GridViewDateTimeColumn  gridViewDateTimeColumn1 = new Telerik.WinControls.UI.GridViewDateTimeColumn();
     Telerik.WinControls.UI.GridViewCheckBoxColumn  gridViewCheckBoxColumn2 = new Telerik.WinControls.UI.GridViewCheckBoxColumn();
     Telerik.WinControls.UI.GridViewImageColumn     gridViewImageColumn1    = new Telerik.WinControls.UI.GridViewImageColumn();
     Telerik.WinControls.UI.GridViewDateTimeColumn  gridViewDateTimeColumn2 = new Telerik.WinControls.UI.GridViewDateTimeColumn();
     Telerik.WinControls.UI.GridViewTextBoxColumn   gridViewTextBoxColumn13 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
     Telerik.WinControls.UI.GridViewCheckBoxColumn  gridViewCheckBoxColumn3 = new Telerik.WinControls.UI.GridViewCheckBoxColumn();
     Telerik.WinControls.UI.GridViewCheckBoxColumn  gridViewCheckBoxColumn4 = new Telerik.WinControls.UI.GridViewCheckBoxColumn();
     Telerik.WinControls.Data.SortDescriptor        sortDescriptor1         = new Telerik.WinControls.Data.SortDescriptor();
     this.radDock1 = new Telerik.WinControls.UI.Docking.RadDock();
     this.documentWindowPersons = new Telerik.WinControls.UI.Docking.DocumentWindow();
     this.radGridViewPersons    = new Telerik.WinControls.UI.RadGridView();
     this.documentContainer1    = new Telerik.WinControls.UI.Docking.DocumentContainer();
     this.documentTabStrip1     = new Telerik.WinControls.UI.Docking.DocumentTabStrip();
     this.toolTabStrip4         = new Telerik.WinControls.UI.Docking.ToolTabStrip();
     this.toolWindowProperties  = new Telerik.WinControls.UI.Docking.ToolWindow();
     this.uC_personDetails31    = new aorc.gatepass.UC_personDetails3();
     this.commandBarRowElement2 = new Telerik.WinControls.UI.CommandBarRowElement();
     this.toolTabStrip3         = new Telerik.WinControls.UI.Docking.ToolTabStrip();
     this.radSplitContainer2    = new Telerik.WinControls.UI.RadSplitContainer();
     this.rmiPersons            = new Telerik.WinControls.UI.RadMenuItem();
     this.rmiProperty           = new Telerik.WinControls.UI.RadMenuItem();
     ((System.ComponentModel.ISupportInitialize)(this.contextMenu)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radDock1)).BeginInit();
     this.radDock1.SuspendLayout();
     this.documentWindowPersons.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.radGridViewPersons)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.documentContainer1)).BeginInit();
     this.documentContainer1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.documentTabStrip1)).BeginInit();
     this.documentTabStrip1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.toolTabStrip4)).BeginInit();
     this.toolTabStrip4.SuspendLayout();
     this.toolWindowProperties.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.toolTabStrip3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radSplitContainer2)).BeginInit();
     this.SuspendLayout();
     //
     // rmiStatus
     //
     this.rmiStatus.BackColor               = System.Drawing.SystemColors.Control;
     this.rmiStatus.Bounds                  = new System.Drawing.Rectangle(0, 0, 61, 19);
     this.rmiStatus.ForeColor               = System.Drawing.Color.Black;
     this.rmiStatus.Padding                 = new System.Windows.Forms.Padding(8, 1, 8, 1);
     this.rmiStatus.RightToLeft             = true;
     this.rmiStatus.ShowArrow               = false;
     this.rmiStatus.TextImageRelation       = System.Windows.Forms.TextImageRelation.ImageBeforeText;
     this.rmiStatus.UseDefaultDisabledPaint = false;
     //
     // rmiStatusDelete
     //
     this.rmiStatusDelete.BackColor         = System.Drawing.SystemColors.Window;
     this.rmiStatusDelete.Class             = "RadMenuItem";
     this.rmiStatusDelete.RightToLeft       = true;
     this.rmiStatusDelete.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageBeforeText;
     //
     // rmiView
     //
     this.rmiView.BackColor = System.Drawing.SystemColors.Control;
     this.rmiView.Bounds    = new System.Drawing.Rectangle(0, 0, 67, 19);
     this.rmiView.Class     = "RadMenuItem";
     this.rmiView.ForeColor = System.Drawing.Color.Black;
     this.rmiView.Items.AddRange(new Telerik.WinControls.RadItem[] {
         this.rmiPersons,
         this.rmiProperty
     });
     this.rmiView.Padding                 = new System.Windows.Forms.Padding(8, 1, 8, 1);
     this.rmiView.RightToLeft             = true;
     this.rmiView.ShowArrow               = false;
     this.rmiView.TextImageRelation       = System.Windows.Forms.TextImageRelation.ImageBeforeText;
     this.rmiView.UseDefaultDisabledPaint = false;
     //
     // radLabelElementStatus
     //
     this.radLabelElementStatus.BackColor     = System.Drawing.SystemColors.Control;
     this.radLabelElementStatus.Bounds        = new System.Drawing.Rectangle(0, 0, 1144, 18);
     this.radLabelElementStatus.CanFocus      = true;
     this.radLabelElementStatus.ForeColor     = System.Drawing.Color.FromArgb(((int)(((byte)(21)))), ((int)(((byte)(66)))), ((int)(((byte)(139)))));
     this.radLabelElementStatus.RightToLeft   = true;
     this.radLabelElementStatus.SmoothingMode = System.Drawing.Drawing2D.SmoothingMode.AntiAlias;
     //
     // commandBarStripElement1MainF
     //
     this.commandBarStripElement1MainF.BackColor           = System.Drawing.Color.FromArgb(((int)(((byte)(230)))), ((int)(((byte)(240)))), ((int)(((byte)(251)))));
     this.commandBarStripElement1MainF.BackColor2          = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(235)))), ((int)(((byte)(248)))));
     this.commandBarStripElement1MainF.BackColor3          = System.Drawing.Color.FromArgb(((int)(((byte)(211)))), ((int)(((byte)(226)))), ((int)(((byte)(244)))));
     this.commandBarStripElement1MainF.BackColor4          = System.Drawing.Color.FromArgb(((int)(((byte)(211)))), ((int)(((byte)(226)))), ((int)(((byte)(244)))));
     this.commandBarStripElement1MainF.BorderBottomColor   = System.Drawing.Color.FromArgb(((int)(((byte)(211)))), ((int)(((byte)(226)))), ((int)(((byte)(244)))));
     this.commandBarStripElement1MainF.BorderBoxStyle      = Telerik.WinControls.BorderBoxStyle.OuterInnerBorders;
     this.commandBarStripElement1MainF.BorderColor         = System.Drawing.Color.FromArgb(((int)(((byte)(156)))), ((int)(((byte)(189)))), ((int)(((byte)(232)))));
     this.commandBarStripElement1MainF.BorderColor2        = System.Drawing.Color.FromArgb(((int)(((byte)(156)))), ((int)(((byte)(189)))), ((int)(((byte)(232)))));
     this.commandBarStripElement1MainF.BorderColor3        = System.Drawing.Color.FromArgb(((int)(((byte)(156)))), ((int)(((byte)(189)))), ((int)(((byte)(232)))));
     this.commandBarStripElement1MainF.BorderColor4        = System.Drawing.Color.FromArgb(((int)(((byte)(156)))), ((int)(((byte)(189)))), ((int)(((byte)(232)))));
     this.commandBarStripElement1MainF.BorderInnerColor    = System.Drawing.Color.FromArgb(((int)(((byte)(248)))), ((int)(((byte)(250)))), ((int)(((byte)(252)))));
     this.commandBarStripElement1MainF.BorderInnerColor2   = System.Drawing.Color.FromArgb(((int)(((byte)(248)))), ((int)(((byte)(250)))), ((int)(((byte)(252)))));
     this.commandBarStripElement1MainF.BorderInnerColor3   = System.Drawing.Color.FromArgb(((int)(((byte)(248)))), ((int)(((byte)(250)))), ((int)(((byte)(252)))));
     this.commandBarStripElement1MainF.BorderInnerColor4   = System.Drawing.Color.FromArgb(((int)(((byte)(248)))), ((int)(((byte)(250)))), ((int)(((byte)(252)))));
     this.commandBarStripElement1MainF.BorderLeftColor     = System.Drawing.Color.FromArgb(((int)(((byte)(211)))), ((int)(((byte)(226)))), ((int)(((byte)(244)))));
     this.commandBarStripElement1MainF.BorderRightColor    = System.Drawing.Color.FromArgb(((int)(((byte)(211)))), ((int)(((byte)(226)))), ((int)(((byte)(244)))));
     this.commandBarStripElement1MainF.BorderTopColor      = System.Drawing.Color.FromArgb(((int)(((byte)(211)))), ((int)(((byte)(226)))), ((int)(((byte)(244)))));
     this.commandBarStripElement1MainF.Bounds              = new System.Drawing.Rectangle(0, 0, 358, 55);
     this.commandBarStripElement1MainF.DesiredLocation     = ((System.Drawing.PointF)(resources.GetObject("commandBarStripElement1MainF.DesiredLocation")));
     this.commandBarStripElement1MainF.DisplayName         = "commandBarStripElement1MainF";
     this.commandBarStripElement1MainF.DrawBorder          = true;
     this.commandBarStripElement1MainF.DrawFill            = true;
     this.commandBarStripElement1MainF.DrawText            = false;
     this.commandBarStripElement1MainF.GradientPercentage2 = 0.5F;
     this.commandBarStripElement1MainF.MinSize             = new System.Drawing.Size(30, 30);
     this.commandBarStripElement1MainF.NumberOfColors      = 4;
     this.commandBarStripElement1MainF.RightToLeft         = true;
     this.commandBarStripElement1MainF.StretchHorizontally = false;
     //
     // cbbNew
     //
     this.cbbNew.Alignment           = System.Drawing.ContentAlignment.MiddleCenter;
     this.cbbNew.BackColor           = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
     this.cbbNew.BackColor2          = System.Drawing.Color.Transparent;
     this.cbbNew.BackColor3          = System.Drawing.Color.Transparent;
     this.cbbNew.BackColor4          = System.Drawing.Color.Transparent;
     this.cbbNew.BorderBoxStyle      = Telerik.WinControls.BorderBoxStyle.OuterInnerBorders;
     this.cbbNew.BorderColor         = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(255)))), ((int)(((byte)(190)))), ((int)(((byte)(106)))));
     this.cbbNew.BorderColor2        = System.Drawing.Color.FromArgb(((int)(((byte)(160)))), ((int)(((byte)(160)))), ((int)(((byte)(160)))));
     this.cbbNew.BorderColor3        = System.Drawing.Color.FromArgb(((int)(((byte)(156)))), ((int)(((byte)(189)))), ((int)(((byte)(232)))));
     this.cbbNew.BorderColor4        = System.Drawing.Color.FromArgb(((int)(((byte)(156)))), ((int)(((byte)(189)))), ((int)(((byte)(232)))));
     this.cbbNew.BorderGradientStyle = Telerik.WinControls.GradientStyles.Solid;
     this.cbbNew.BorderInnerColor    = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(254)))), ((int)(((byte)(245)))), ((int)(((byte)(195)))));
     this.cbbNew.BorderInnerColor2   = System.Drawing.Color.FromArgb(((int)(((byte)(248)))), ((int)(((byte)(250)))), ((int)(((byte)(252)))));
     this.cbbNew.BorderInnerColor3   = System.Drawing.Color.FromArgb(((int)(((byte)(248)))), ((int)(((byte)(250)))), ((int)(((byte)(252)))));
     this.cbbNew.BorderInnerColor4   = System.Drawing.Color.FromArgb(((int)(((byte)(248)))), ((int)(((byte)(250)))), ((int)(((byte)(252)))));
     this.cbbNew.BorderLeftWidth     = 3F;
     this.cbbNew.BorderWidth         = 2F;
     this.cbbNew.Bounds              = new System.Drawing.Rectangle(0, 0, 31, 51);
     this.cbbNew.DrawBorder          = true;
     this.cbbNew.DrawFill            = true;
     this.cbbNew.ForeColor           = System.Drawing.Color.Black;
     this.cbbNew.GradientPercentage  = 0.498861F;
     this.cbbNew.GradientPercentage2 = 0.5102506F;
     this.cbbNew.NumberOfColors      = 4;
     this.cbbNew.RightToLeft         = true;
     this.cbbNew.StretchHorizontally = false;
     //
     // cbbEdit
     //
     this.cbbEdit.Alignment           = System.Drawing.ContentAlignment.MiddleCenter;
     this.cbbEdit.BackColor           = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
     this.cbbEdit.BackColor2          = System.Drawing.Color.Transparent;
     this.cbbEdit.BackColor3          = System.Drawing.Color.Transparent;
     this.cbbEdit.BackColor4          = System.Drawing.Color.Transparent;
     this.cbbEdit.BorderBoxStyle      = Telerik.WinControls.BorderBoxStyle.OuterInnerBorders;
     this.cbbEdit.BorderColor         = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(255)))), ((int)(((byte)(190)))), ((int)(((byte)(106)))));
     this.cbbEdit.BorderColor2        = System.Drawing.Color.FromArgb(((int)(((byte)(160)))), ((int)(((byte)(160)))), ((int)(((byte)(160)))));
     this.cbbEdit.BorderColor3        = System.Drawing.Color.FromArgb(((int)(((byte)(156)))), ((int)(((byte)(189)))), ((int)(((byte)(232)))));
     this.cbbEdit.BorderColor4        = System.Drawing.Color.FromArgb(((int)(((byte)(156)))), ((int)(((byte)(189)))), ((int)(((byte)(232)))));
     this.cbbEdit.BorderGradientStyle = Telerik.WinControls.GradientStyles.Solid;
     this.cbbEdit.BorderInnerColor    = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(254)))), ((int)(((byte)(245)))), ((int)(((byte)(195)))));
     this.cbbEdit.BorderInnerColor2   = System.Drawing.Color.FromArgb(((int)(((byte)(248)))), ((int)(((byte)(250)))), ((int)(((byte)(252)))));
     this.cbbEdit.BorderInnerColor3   = System.Drawing.Color.FromArgb(((int)(((byte)(248)))), ((int)(((byte)(250)))), ((int)(((byte)(252)))));
     this.cbbEdit.BorderInnerColor4   = System.Drawing.Color.FromArgb(((int)(((byte)(248)))), ((int)(((byte)(250)))), ((int)(((byte)(252)))));
     this.cbbEdit.BorderLeftWidth     = 3F;
     this.cbbEdit.BorderWidth         = 2F;
     this.cbbEdit.Bounds              = new System.Drawing.Rectangle(0, 0, 41, 51);
     this.cbbEdit.DrawBorder          = true;
     this.cbbEdit.DrawFill            = true;
     this.cbbEdit.ForeColor           = System.Drawing.Color.Black;
     this.cbbEdit.GradientPercentage  = 0.498861F;
     this.cbbEdit.GradientPercentage2 = 0.5102506F;
     this.cbbEdit.NumberOfColors      = 4;
     this.cbbEdit.RightToLeft         = true;
     this.cbbEdit.StretchHorizontally = false;
     //
     // contextMenu
     //
     //
     //
     //
     this.contextMenu.RootElement.StretchHorizontally = false;
     this.contextMenu.RootElement.StretchVertically   = false;
     //
     // radDock1
     //
     this.radDock1.ActiveWindow     = this.documentWindowPersons;
     this.radDock1.CausesValidation = false;
     this.radDock1.Controls.Add(this.documentContainer1);
     this.radDock1.Controls.Add(this.toolTabStrip4);
     this.radDock1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.radDock1.DocumentManager.DocumentInsertOrder = Telerik.WinControls.UI.Docking.DockWindowInsertOrder.InFront;
     this.radDock1.Font                  = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
     this.radDock1.IsCleanUpTarget       = true;
     this.radDock1.Location              = new System.Drawing.Point(0, 74);
     this.radDock1.MainDocumentContainer = this.documentContainer1;
     this.radDock1.Name                  = "radDock1";
     this.radDock1.Padding               = new System.Windows.Forms.Padding(5);
     this.radDock1.RightToLeft           = System.Windows.Forms.RightToLeft.Yes;
     //
     //
     //
     this.radDock1.RootElement.MinSize = new System.Drawing.Size(25, 25);
     this.radDock1.RootElement.Padding = new System.Windows.Forms.Padding(5);
     this.radDock1.Size              = new System.Drawing.Size(1144, 604);
     this.radDock1.SplitterWidth     = 4;
     this.radDock1.TabIndex          = 10;
     this.radDock1.TabStop           = false;
     this.radDock1.Text              = "radDock1";
     this.radDock1.DockWindowClosed += new Telerik.WinControls.UI.Docking.DockWindowEventHandler(this.radDock1_DockWindowClosed);
     //
     // documentWindowPersons
     //
     this.documentWindowPersons.CloseAction = Telerik.WinControls.UI.Docking.DockWindowCloseAction.Hide;
     this.documentWindowPersons.Controls.Add(this.radGridViewPersons);
     this.documentWindowPersons.Font              = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
     this.documentWindowPersons.Location          = new System.Drawing.Point(6, 28);
     this.documentWindowPersons.Name              = "documentWindowPersons";
     this.documentWindowPersons.PreviousDockState = Telerik.WinControls.UI.Docking.DockState.TabbedDocument;
     this.documentWindowPersons.Size              = new System.Drawing.Size(855, 560);
     this.documentWindowPersons.Text              = "جدول کارکنان";
     //
     // radGridViewPersons
     //
     this.radGridViewPersons.BackColor        = System.Drawing.Color.FromArgb(((int)(((byte)(233)))), ((int)(((byte)(240)))), ((int)(((byte)(249)))));
     this.radGridViewPersons.CausesValidation = false;
     this.radGridViewPersons.Cursor           = System.Windows.Forms.Cursors.Default;
     this.radGridViewPersons.Dock             = System.Windows.Forms.DockStyle.Fill;
     this.radGridViewPersons.Font             = new System.Drawing.Font("Tahoma", 8.25F);
     this.radGridViewPersons.ForeColor        = System.Drawing.SystemColors.ControlText;
     this.radGridViewPersons.ImeMode          = System.Windows.Forms.ImeMode.NoControl;
     this.radGridViewPersons.Location         = new System.Drawing.Point(0, 0);
     //
     // radGridViewPersons
     //
     this.radGridViewPersons.MasterTemplate.AddNewRowPosition = Telerik.WinControls.UI.SystemRowPosition.Bottom;
     this.radGridViewPersons.MasterTemplate.AllowAddNewRow    = false;
     gridViewDecimalColumn1.EnableExpressionEditor            = false;
     gridViewDecimalColumn1.FieldName               = "Person_ID";
     gridViewDecimalColumn1.HeaderText              = "ردیف";
     gridViewDecimalColumn1.IsVisible               = false;
     gridViewDecimalColumn1.Name                    = "Person_ID";
     gridViewDecimalColumn1.Width                   = 66;
     gridViewTextBoxColumn1.EnableExpressionEditor  = false;
     gridViewTextBoxColumn1.FieldName               = "Person_Name";
     gridViewTextBoxColumn1.HeaderText              = "نام";
     gridViewTextBoxColumn1.Name                    = "Person_Name";
     gridViewTextBoxColumn1.Width                   = 119;
     gridViewTextBoxColumn2.EnableExpressionEditor  = false;
     gridViewTextBoxColumn2.FieldName               = "Person_Surname";
     gridViewTextBoxColumn2.HeaderText              = "نام خانوادگی";
     gridViewTextBoxColumn2.Name                    = "Person_Surname";
     gridViewTextBoxColumn2.Width                   = 195;
     gridViewTextBoxColumn3.EnableExpressionEditor  = false;
     gridViewTextBoxColumn3.FieldName               = "Person_NationalCode";
     gridViewTextBoxColumn3.HeaderText              = "شماره ملی";
     gridViewTextBoxColumn3.Name                    = "Person_NationalCode";
     gridViewTextBoxColumn3.Width                   = 145;
     gridViewTextBoxColumn4.EnableExpressionEditor  = false;
     gridViewTextBoxColumn4.FieldName               = "Person_IdentifyCode";
     gridViewTextBoxColumn4.HeaderText              = "شماره شناسایی";
     gridViewTextBoxColumn4.Name                    = "Person_IdentifyCode";
     gridViewTextBoxColumn4.Width                   = 103;
     gridViewTextBoxColumn5.EnableExpressionEditor  = false;
     gridViewTextBoxColumn5.FieldName               = "Person_LicenseDriverCode";
     gridViewTextBoxColumn5.HeaderText              = "شماره گواهینامه رانندگی";
     gridViewTextBoxColumn5.Name                    = "Person_LicenseDriverCode";
     gridViewTextBoxColumn5.Width                   = 168;
     gridViewTextBoxColumn6.EnableExpressionEditor  = false;
     gridViewTextBoxColumn6.FieldName               = "Person_FatherName";
     gridViewTextBoxColumn6.HeaderText              = "نام پدر";
     gridViewTextBoxColumn6.Name                    = "Person_FatherName";
     gridViewTextBoxColumn6.Width                   = 109;
     gridViewTextBoxColumn7.EnableExpressionEditor  = false;
     gridViewTextBoxColumn7.FieldName               = "Person_BirthCity";
     gridViewTextBoxColumn7.HeaderText              = "محل تولد";
     gridViewTextBoxColumn7.Name                    = "Person_BirthCity";
     gridViewTextBoxColumn7.Width                   = 106;
     gridViewTextBoxColumn8.EnableExpressionEditor  = false;
     gridViewTextBoxColumn8.FieldName               = "Person_RegisterCity";
     gridViewTextBoxColumn8.HeaderText              = "محل صدور شناسنامه";
     gridViewTextBoxColumn8.IsVisible               = false;
     gridViewTextBoxColumn8.Name                    = "Person_RegisterCity";
     gridViewTextBoxColumn9.EnableExpressionEditor  = false;
     gridViewTextBoxColumn9.FieldName               = "Person_Nationality";
     gridViewTextBoxColumn9.HeaderText              = "تابعیت";
     gridViewTextBoxColumn9.Name                    = "Person_Nationality";
     gridViewTextBoxColumn9.Width                   = 64;
     gridViewTextBoxColumn10.EnableExpressionEditor = false;
     gridViewTextBoxColumn10.FieldName              = "Person_Phone1";
     gridViewTextBoxColumn10.HeaderText             = "شماره تماس اول";
     gridViewTextBoxColumn10.IsVisible              = false;
     gridViewTextBoxColumn10.Name                   = "Person_Phone1";
     gridViewTextBoxColumn11.EnableExpressionEditor = false;
     gridViewTextBoxColumn11.FieldName              = "Person_Phone2";
     gridViewTextBoxColumn11.HeaderText             = "شماره تماس دوم";
     gridViewTextBoxColumn11.IsVisible              = false;
     gridViewTextBoxColumn11.Name                   = "Person_Phone2";
     gridViewTextBoxColumn12.EnableExpressionEditor = false;
     gridViewTextBoxColumn12.FieldName              = "Person_RegisterCode";
     gridViewTextBoxColumn12.HeaderText             = "شماره شناسنامه";
     gridViewTextBoxColumn12.Name                   = "Person_RegisterCode";
     gridViewTextBoxColumn12.Width                  = 121;
     gridViewCheckBoxColumn1.EnableExpressionEditor = false;
     gridViewCheckBoxColumn1.FieldName              = "Person_HaveForm";
     gridViewCheckBoxColumn1.HeaderText             = "فرم حفاظتی";
     gridViewCheckBoxColumn1.MinWidth               = 20;
     gridViewCheckBoxColumn1.Name                   = "Person_HaveForm";
     gridViewCheckBoxColumn1.Width                  = 106;
     gridViewDateTimeColumn1.EnableExpressionEditor = false;
     gridViewDateTimeColumn1.FieldName              = "Person_SecureFormDate";
     gridViewDateTimeColumn1.Format                 = System.Windows.Forms.DateTimePickerFormat.Long;
     gridViewDateTimeColumn1.HeaderText             = " پایان اعتبار فرم";
     gridViewDateTimeColumn1.IsVisible              = false;
     gridViewDateTimeColumn1.Name                   = "Person_SecureFormDate";
     gridViewDateTimeColumn1.Width                  = 90;
     gridViewCheckBoxColumn2.EnableExpressionEditor = false;
     gridViewCheckBoxColumn2.FieldName              = "Person_isWoman";
     gridViewCheckBoxColumn2.HeaderText             = "مونث";
     gridViewCheckBoxColumn2.IsVisible              = false;
     gridViewCheckBoxColumn2.MinWidth               = 20;
     gridViewCheckBoxColumn2.Name                   = "Person_isWoman";
     gridViewCheckBoxColumn2.Width                  = 31;
     gridViewImageColumn1.EnableExpressionEditor    = false;
     gridViewImageColumn1.FieldName                 = "Person_Picture";
     gridViewImageColumn1.HeaderText                = "عکس";
     gridViewImageColumn1.IsVisible                 = false;
     gridViewImageColumn1.Name = "Person_Picture";
     gridViewDateTimeColumn2.EnableExpressionEditor = false;
     gridViewDateTimeColumn2.FieldName              = "Person_BirthDate";
     gridViewDateTimeColumn2.Format                 = System.Windows.Forms.DateTimePickerFormat.Long;
     gridViewDateTimeColumn2.HeaderText             = "تاریخ تولد";
     gridViewDateTimeColumn2.IsVisible              = false;
     gridViewDateTimeColumn2.Name                   = "Person_BirthDate";
     gridViewTextBoxColumn13.EnableExpressionEditor = false;
     gridViewTextBoxColumn13.FieldName              = "Person_LabelIsWoman";
     gridViewTextBoxColumn13.HeaderText             = "جنسیت";
     gridViewTextBoxColumn13.Name                   = "Person_LabelIsWoman";
     gridViewTextBoxColumn13.Width                  = 57;
     gridViewCheckBoxColumn3.EnableExpressionEditor = false;
     gridViewCheckBoxColumn3.FieldName              = "Person_Temp";
     gridViewCheckBoxColumn3.HeaderText             = "موقت";
     gridViewCheckBoxColumn3.IsVisible              = false;
     gridViewCheckBoxColumn3.MinWidth               = 20;
     gridViewCheckBoxColumn3.Name                   = "Person_Temp";
     gridViewCheckBoxColumn4.FieldName              = "Person_IsBlackTemp";
     gridViewCheckBoxColumn4.HeaderText             = "Person_IsBlackTemp";
     gridViewCheckBoxColumn4.IsVisible              = false;
     gridViewCheckBoxColumn4.Name                   = "Person_IsBlackTemp";
     this.radGridViewPersons.MasterTemplate.Columns.AddRange(new Telerik.WinControls.UI.GridViewDataColumn[] {
         gridViewDecimalColumn1,
         gridViewTextBoxColumn1,
         gridViewTextBoxColumn2,
         gridViewTextBoxColumn3,
         gridViewTextBoxColumn4,
         gridViewTextBoxColumn5,
         gridViewTextBoxColumn6,
         gridViewTextBoxColumn7,
         gridViewTextBoxColumn8,
         gridViewTextBoxColumn9,
         gridViewTextBoxColumn10,
         gridViewTextBoxColumn11,
         gridViewTextBoxColumn12,
         gridViewCheckBoxColumn1,
         gridViewDateTimeColumn1,
         gridViewCheckBoxColumn2,
         gridViewImageColumn1,
         gridViewDateTimeColumn2,
         gridViewTextBoxColumn13,
         gridViewCheckBoxColumn3,
         gridViewCheckBoxColumn4
     });
     this.radGridViewPersons.MasterTemplate.EnableAlternatingRowColor = true;
     sortDescriptor1.Direction    = System.ComponentModel.ListSortDirection.Descending;
     sortDescriptor1.PropertyName = "columnnumber";
     this.radGridViewPersons.MasterTemplate.SortDescriptors.AddRange(new Telerik.WinControls.Data.SortDescriptor[] {
         sortDescriptor1
     });
     this.radGridViewPersons.Name              = "radGridViewPersons";
     this.radGridViewPersons.ReadOnly          = true;
     this.radGridViewPersons.RightToLeft       = System.Windows.Forms.RightToLeft.Yes;
     this.radGridViewPersons.Size              = new System.Drawing.Size(855, 560);
     this.radGridViewPersons.TabIndex          = 0;
     this.radGridViewPersons.Text              = "radGridView1";
     this.radGridViewPersons.RowFormatting    += new Telerik.WinControls.UI.RowFormattingEventHandler(this.radGridViewPersons_RowFormatting);
     this.radGridViewPersons.SelectionChanged += new System.EventHandler(this.radGridViewPersons_SelectionChanged);
     //
     // documentContainer1
     //
     this.documentContainer1.CausesValidation = false;
     this.documentContainer1.Controls.Add(this.documentTabStrip1);
     this.documentContainer1.Font     = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
     this.documentContainer1.Location = new System.Drawing.Point(5, 5);
     this.documentContainer1.Name     = "documentContainer1";
     this.documentContainer1.Padding  = new System.Windows.Forms.Padding(5);
     //
     //
     //
     this.documentContainer1.RootElement.MinSize = new System.Drawing.Size(25, 25);
     this.documentContainer1.RootElement.Padding = new System.Windows.Forms.Padding(5);
     this.documentContainer1.Size = new System.Drawing.Size(867, 594);
     this.documentContainer1.SizeInfo.AbsoluteSize       = new System.Drawing.Size(867, 185);
     this.documentContainer1.SizeInfo.SizeMode           = Telerik.WinControls.UI.Docking.SplitPanelSizeMode.Fill;
     this.documentContainer1.SizeInfo.SplitterCorrection = new System.Drawing.Size(59, 74);
     this.documentContainer1.SplitterWidth = 4;
     this.documentContainer1.TabIndex      = 0;
     this.documentContainer1.TabStop       = false;
     //
     // documentTabStrip1
     //
     this.documentTabStrip1.CausesValidation = false;
     this.documentTabStrip1.Controls.Add(this.documentWindowPersons);
     this.documentTabStrip1.Font     = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
     this.documentTabStrip1.Location = new System.Drawing.Point(0, 0);
     this.documentTabStrip1.Name     = "documentTabStrip1";
     //
     //
     //
     this.documentTabStrip1.RootElement.MinSize = new System.Drawing.Size(25, 25);
     this.documentTabStrip1.SelectedIndex       = 0;
     this.documentTabStrip1.Size     = new System.Drawing.Size(867, 594);
     this.documentTabStrip1.TabIndex = 0;
     this.documentTabStrip1.TabStop  = false;
     //
     // toolTabStrip4
     //
     this.toolTabStrip4.Controls.Add(this.toolWindowProperties);
     this.toolTabStrip4.Font     = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
     this.toolTabStrip4.Location = new System.Drawing.Point(876, 5);
     this.toolTabStrip4.Name     = "toolTabStrip4";
     //
     //
     //
     this.toolTabStrip4.RootElement.MinSize = new System.Drawing.Size(25, 25);
     this.toolTabStrip4.SelectedIndex       = 0;
     this.toolTabStrip4.Size = new System.Drawing.Size(263, 594);
     this.toolTabStrip4.SizeInfo.AbsoluteSize       = new System.Drawing.Size(263, 200);
     this.toolTabStrip4.SizeInfo.SplitterCorrection = new System.Drawing.Size(63, 0);
     this.toolTabStrip4.TabIndex = 0;
     this.toolTabStrip4.TabStop  = false;
     //
     // toolWindowProperties
     //
     this.toolWindowProperties.AutoScroll = true;
     this.toolWindowProperties.Caption    = null;
     this.toolWindowProperties.Controls.Add(this.uC_personDetails31);
     this.toolWindowProperties.Font              = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
     this.toolWindowProperties.Location          = new System.Drawing.Point(1, 24);
     this.toolWindowProperties.Name              = "toolWindowProperties";
     this.toolWindowProperties.PreviousDockState = Telerik.WinControls.UI.Docking.DockState.Docked;
     this.toolWindowProperties.Size              = new System.Drawing.Size(261, 568);
     this.toolWindowProperties.Text              = "خصوصیات شخص انتخاب شده";
     //
     // uC_personDetails31
     //
     this.uC_personDetails31.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.uC_personDetails31.ImgData  = new byte[0];
     this.uC_personDetails31.Location = new System.Drawing.Point(0, 0);
     this.uC_personDetails31.Name     = "uC_personDetails31";
     this.uC_personDetails31.Size     = new System.Drawing.Size(261, 568);
     this.uC_personDetails31.TabIndex = 0;
     //
     // commandBarRowElement2
     //
     this.commandBarRowElement2.DisplayName = null;
     this.commandBarRowElement2.Font        = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
     this.commandBarRowElement2.MinSize     = new System.Drawing.Size(25, 25);
     this.commandBarRowElement2.Text        = "";
     //
     // toolTabStrip3
     //
     this.toolTabStrip3.Font     = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
     this.toolTabStrip3.Location = new System.Drawing.Point(0, 0);
     this.toolTabStrip3.Name     = "toolTabStrip3";
     //
     //
     //
     this.toolTabStrip3.RootElement.MinSize = new System.Drawing.Size(25, 25);
     this.toolTabStrip3.Size     = new System.Drawing.Size(292, 266);
     this.toolTabStrip3.TabIndex = 0;
     this.toolTabStrip3.TabStop  = false;
     //
     // radSplitContainer2
     //
     this.radSplitContainer2.Font            = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
     this.radSplitContainer2.IsCleanUpTarget = true;
     this.radSplitContainer2.Location        = new System.Drawing.Point(0, 0);
     this.radSplitContainer2.Name            = "radSplitContainer2";
     //
     //
     //
     this.radSplitContainer2.RootElement.MinSize = new System.Drawing.Size(25, 25);
     this.radSplitContainer2.Size          = new System.Drawing.Size(200, 200);
     this.radSplitContainer2.SplitterWidth = 4;
     this.radSplitContainer2.TabIndex      = 0;
     this.radSplitContainer2.TabStop       = false;
     //
     // rmiPersons
     //
     this.rmiPersons.AccessibleDescription = "لیست کارکنان";
     this.rmiPersons.AccessibleName        = "لیست کارکنان";
     this.rmiPersons.Name       = "rmiPersons";
     this.rmiPersons.Text       = "لیست کارکنان";
     this.rmiPersons.Visibility = Telerik.WinControls.ElementVisibility.Visible;
     this.rmiPersons.Click     += new System.EventHandler(this.rmiPersons_Click);
     //
     // rmiProperty
     //
     this.rmiProperty.AccessibleDescription = "لیست کارکنان";
     this.rmiProperty.AccessibleName        = "لیست کارکنان";
     this.rmiProperty.Name       = "rmiProperty";
     this.rmiProperty.Text       = "خصوصیات";
     this.rmiProperty.Visibility = Telerik.WinControls.ElementVisibility.Visible;
     this.rmiProperty.Click     += new System.EventHandler(this.rmiProperty_Click);
     //
     // frm_person
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize          = new System.Drawing.Size(1144, 702);
     this.Controls.Add(this.radDock1);
     this.Font               = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
     this.Location           = new System.Drawing.Point(0, 0);
     this.MainRadGridView    = this.radGridViewPersons;
     this.Name               = "frm_person";
     this.Text               = "کارکنان";
     this.eventBlockPerson  += new aorc.gatepass.mainForm.DelegateStatusAction(this.frm_person_eventBlockPerson);
     this.eventSecureForm   += new aorc.gatepass.mainForm.DelegateStatusAction(this.frm_person_eventSecureForm);
     this.eventStatusNew    += new aorc.gatepass.mainForm.DelegateStatusAction(this.frm_person_eventStatusNew);
     this.eventStatusEdit   += new aorc.gatepass.mainForm.DelegateStatusAction(this.frm_person_eventStatusEdit);
     this.eventStatusSearch += new aorc.gatepass.mainForm.DelegateStatusAction(this.frm_person_eventStatusSearch);
     this.eventStatusView   += new aorc.gatepass.mainForm.DelegateStatusAction(this.frm_person_eventStatusView);
     this.eventStatusDelete += new aorc.gatepass.mainForm.DelegateStatusAction(this.frm_person_eventStatusDelete);
     this.eventSaveToDelete += new aorc.gatepass.mainForm.DelegateStatusAction(this.frm_person_eventSaveToDelete);
     this.eventSaveToEdit   += new aorc.gatepass.mainForm.DelegateStatusAction(this.frm_person_eventSaveToEdit);
     this.eventSaveToNew    += new aorc.gatepass.mainForm.DelegateStatusAction(this.frm_person_eventSaveToNew);
     this.eventSaveToView   += new aorc.gatepass.mainForm.DelegateStatusAction(this.frm_person_eventSaveToView);
     this.eventAfterSave    += new aorc.gatepass.mainForm.DelegateStatusAction(this.frm_person_eventAfterSave);
     this.eventSaveToSearch += new aorc.gatepass.mainForm.DelegateStatusAction(this.frm_person_eventSaveToSearch);
     this.Load              += new System.EventHandler(this.frm_person_Load);
     this.Controls.SetChildIndex(this.radDock1, 0);
     ((System.ComponentModel.ISupportInitialize)(this.contextMenu)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radDock1)).EndInit();
     this.radDock1.ResumeLayout(false);
     this.documentWindowPersons.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.radGridViewPersons)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.documentContainer1)).EndInit();
     this.documentContainer1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.documentTabStrip1)).EndInit();
     this.documentTabStrip1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.toolTabStrip4)).EndInit();
     this.toolTabStrip4.ResumeLayout(false);
     this.toolWindowProperties.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.toolTabStrip3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radSplitContainer2)).EndInit();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
コード例 #59
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     Telerik.WinControls.UI.GridViewDateTimeColumn gridViewDateTimeColumn3 = new Telerik.WinControls.UI.GridViewDateTimeColumn();
     Telerik.WinControls.UI.GridViewTextBoxColumn  gridViewTextBoxColumn16 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
     Telerik.WinControls.UI.GridViewTextBoxColumn  gridViewTextBoxColumn17 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
     Telerik.WinControls.UI.GridViewTextBoxColumn  gridViewTextBoxColumn18 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
     Telerik.WinControls.UI.GridViewTextBoxColumn  gridViewTextBoxColumn19 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
     Telerik.WinControls.UI.GridViewTextBoxColumn  gridViewTextBoxColumn20 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
     Telerik.WinControls.UI.GridViewTextBoxColumn  gridViewTextBoxColumn21 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
     Telerik.WinControls.UI.GridViewTextBoxColumn  gridViewTextBoxColumn22 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
     Telerik.WinControls.UI.GridViewTextBoxColumn  gridViewTextBoxColumn23 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
     Telerik.WinControls.UI.GridViewTextBoxColumn  gridViewTextBoxColumn24 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
     Telerik.WinControls.UI.GridViewTextBoxColumn  gridViewTextBoxColumn25 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
     Telerik.WinControls.UI.GridViewTextBoxColumn  gridViewTextBoxColumn26 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
     Telerik.WinControls.UI.GridViewTextBoxColumn  gridViewTextBoxColumn27 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
     Telerik.WinControls.UI.GridViewTextBoxColumn  gridViewTextBoxColumn28 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
     Telerik.WinControls.UI.TableViewDefinition    tableViewDefinition3    = new Telerik.WinControls.UI.TableViewDefinition();
     Telerik.WinControls.UI.GridViewCheckBoxColumn gridViewCheckBoxColumn2 = new Telerik.WinControls.UI.GridViewCheckBoxColumn();
     Telerik.WinControls.UI.GridViewTextBoxColumn  gridViewTextBoxColumn29 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
     Telerik.WinControls.UI.GridViewDateTimeColumn gridViewDateTimeColumn4 = new Telerik.WinControls.UI.GridViewDateTimeColumn();
     Telerik.WinControls.UI.GridViewTextBoxColumn  gridViewTextBoxColumn30 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
     Telerik.WinControls.UI.TableViewDefinition    tableViewDefinition4    = new Telerik.WinControls.UI.TableViewDefinition();
     this.RdPanelHeader        = new Telerik.WinControls.UI.RadPanel();
     this.RdProgressBar        = new Telerik.WinControls.UI.RadProgressBar();
     this.RdLlbMessage         = new Telerik.WinControls.UI.RadLabel();
     this.RdBtnSaveFileOnly    = new Telerik.WinControls.UI.RadButton();
     this.RdBtnDownloadAndSave = new Telerik.WinControls.UI.RadButton();
     this.radLabel3            = new Telerik.WinControls.UI.RadLabel();
     this.RdDtpTo             = new Telerik.WinControls.UI.RadDateTimePicker();
     this.radLabel2           = new Telerik.WinControls.UI.RadLabel();
     this.RdRbtYear           = new Telerik.WinControls.UI.RadRadioButton();
     this.RdDtpFrom           = new Telerik.WinControls.UI.RadDateTimePicker();
     this.RdRbtMonth          = new Telerik.WinControls.UI.RadRadioButton();
     this.RdRbtDate           = new Telerik.WinControls.UI.RadRadioButton();
     this.radLabel1           = new Telerik.WinControls.UI.RadLabel();
     this.RdGrdBhavCopyData   = new Telerik.WinControls.UI.RadGridView();
     this.RdGrdBhavCopyFile   = new Telerik.WinControls.UI.RadGridView();
     this.radSplitContainer1  = new Telerik.WinControls.UI.RadSplitContainer();
     this.splitPanel1         = new Telerik.WinControls.UI.SplitPanel();
     this.RdPanelDownLoadFile = new Telerik.WinControls.UI.RadPanel();
     this.RdBtnReload         = new Telerik.WinControls.UI.RadButton();
     this.RdBtnSearch         = new Telerik.WinControls.UI.RadButton();
     this.RdBtnClearSearch    = new Telerik.WinControls.UI.RadButton();
     this.RdTxtSearchCompany  = new Telerik.WinControls.UI.RadTextBox();
     this.RdBtnSelectAll      = new Telerik.WinControls.UI.RadButton();
     this.radLabel4           = new Telerik.WinControls.UI.RadLabel();
     this.RdBtnUnSelectAll    = new Telerik.WinControls.UI.RadButton();
     this.splitPanel2         = new Telerik.WinControls.UI.SplitPanel();
     this.toolTip1            = new System.Windows.Forms.ToolTip(this.components);
     ((System.ComponentModel.ISupportInitialize)(this.RdPanelHeader)).BeginInit();
     this.RdPanelHeader.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.RdProgressBar)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.RdLlbMessage)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.RdBtnSaveFileOnly)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.RdBtnDownloadAndSave)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.RdDtpTo)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.RdRbtYear)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.RdDtpFrom)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.RdRbtMonth)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.RdRbtDate)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.RdGrdBhavCopyData)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.RdGrdBhavCopyData.MasterTemplate)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.RdGrdBhavCopyFile)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.RdGrdBhavCopyFile.MasterTemplate)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radSplitContainer1)).BeginInit();
     this.radSplitContainer1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.splitPanel1)).BeginInit();
     this.splitPanel1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.RdPanelDownLoadFile)).BeginInit();
     this.RdPanelDownLoadFile.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.RdBtnReload)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.RdBtnSearch)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.RdBtnClearSearch)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.RdTxtSearchCompany)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.RdBtnSelectAll)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel4)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.RdBtnUnSelectAll)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.splitPanel2)).BeginInit();
     this.splitPanel2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
     this.SuspendLayout();
     //
     // RdPanelHeader
     //
     this.RdPanelHeader.Controls.Add(this.RdProgressBar);
     this.RdPanelHeader.Controls.Add(this.RdLlbMessage);
     this.RdPanelHeader.Controls.Add(this.RdBtnSaveFileOnly);
     this.RdPanelHeader.Controls.Add(this.RdBtnDownloadAndSave);
     this.RdPanelHeader.Controls.Add(this.radLabel3);
     this.RdPanelHeader.Controls.Add(this.RdDtpTo);
     this.RdPanelHeader.Controls.Add(this.radLabel2);
     this.RdPanelHeader.Controls.Add(this.RdRbtYear);
     this.RdPanelHeader.Controls.Add(this.RdDtpFrom);
     this.RdPanelHeader.Controls.Add(this.RdRbtMonth);
     this.RdPanelHeader.Controls.Add(this.RdRbtDate);
     this.RdPanelHeader.Controls.Add(this.radLabel1);
     this.RdPanelHeader.Dock     = System.Windows.Forms.DockStyle.Top;
     this.RdPanelHeader.Location = new System.Drawing.Point(0, 0);
     this.RdPanelHeader.Name     = "RdPanelHeader";
     this.RdPanelHeader.Size     = new System.Drawing.Size(888, 83);
     this.RdPanelHeader.TabIndex = 0;
     //
     // RdProgressBar
     //
     this.RdProgressBar.Dock     = System.Windows.Forms.DockStyle.Bottom;
     this.RdProgressBar.Location = new System.Drawing.Point(0, 63);
     this.RdProgressBar.Name     = "RdProgressBar";
     this.RdProgressBar.Size     = new System.Drawing.Size(888, 20);
     this.RdProgressBar.TabIndex = 4;
     this.RdProgressBar.TabStop  = false;
     this.RdProgressBar.Text     = "....";
     //
     // RdLlbMessage
     //
     this.RdLlbMessage.ForeColor = System.Drawing.Color.Red;
     this.RdLlbMessage.Location  = new System.Drawing.Point(12, 36);
     this.RdLlbMessage.Name      = "RdLlbMessage";
     this.RdLlbMessage.Size      = new System.Drawing.Size(11, 18);
     this.RdLlbMessage.TabIndex  = 6;
     this.RdLlbMessage.Text      = "..";
     //
     // RdBtnSaveFileOnly
     //
     this.RdBtnSaveFileOnly.Image             = global::A3DBhavCopy.Properties.Resources.save_all;
     this.RdBtnSaveFileOnly.ImageAlignment    = System.Drawing.ContentAlignment.MiddleCenter;
     this.RdBtnSaveFileOnly.Location          = new System.Drawing.Point(564, 10);
     this.RdBtnSaveFileOnly.Name              = "RdBtnSaveFileOnly";
     this.RdBtnSaveFileOnly.Size              = new System.Drawing.Size(124, 24);
     this.RdBtnSaveFileOnly.TabIndex          = 3;
     this.RdBtnSaveFileOnly.Text              = "Save File Only";
     this.RdBtnSaveFileOnly.TextAlignment     = System.Drawing.ContentAlignment.MiddleLeft;
     this.RdBtnSaveFileOnly.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageBeforeText;
     this.RdBtnSaveFileOnly.Click            += new System.EventHandler(this.RdBtnSaveFileOnly_Click);
     //
     // RdBtnDownloadAndSave
     //
     this.RdBtnDownloadAndSave.Image             = global::A3DBhavCopy.Properties.Resources.DownloadAndSave24X24;
     this.RdBtnDownloadAndSave.ImageAlignment    = System.Drawing.ContentAlignment.MiddleCenter;
     this.RdBtnDownloadAndSave.Location          = new System.Drawing.Point(421, 10);
     this.RdBtnDownloadAndSave.Name              = "RdBtnDownloadAndSave";
     this.RdBtnDownloadAndSave.Size              = new System.Drawing.Size(137, 24);
     this.RdBtnDownloadAndSave.TabIndex          = 2;
     this.RdBtnDownloadAndSave.Text              = "Download && Save";
     this.RdBtnDownloadAndSave.TextAlignment     = System.Drawing.ContentAlignment.MiddleLeft;
     this.RdBtnDownloadAndSave.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageBeforeText;
     this.RdBtnDownloadAndSave.Click            += new System.EventHandler(this.RdBtnDownloadAndSave_Click);
     //
     // radLabel3
     //
     this.radLabel3.Location = new System.Drawing.Point(245, 13);
     this.radLabel3.Name     = "radLabel3";
     this.radLabel3.Size     = new System.Drawing.Size(73, 18);
     this.radLabel3.TabIndex = 3;
     this.radLabel3.Text     = "Download To";
     //
     // RdDtpTo
     //
     this.RdDtpTo.CustomFormat = "dd/MMM/yyyy";
     this.RdDtpTo.Format       = System.Windows.Forms.DateTimePickerFormat.Custom;
     this.RdDtpTo.Location     = new System.Drawing.Point(324, 12);
     this.RdDtpTo.MinDate      = new System.DateTime(2000, 1, 1, 0, 0, 0, 0);
     this.RdDtpTo.Name         = "RdDtpTo";
     this.RdDtpTo.Size         = new System.Drawing.Size(91, 20);
     this.RdDtpTo.TabIndex     = 1;
     this.RdDtpTo.TabStop      = false;
     this.RdDtpTo.Text         = "24/Dec/2019";
     this.RdDtpTo.Value        = new System.DateTime(2019, 12, 24, 11, 4, 10, 689);
     //
     // radLabel2
     //
     this.radLabel2.Location = new System.Drawing.Point(8, 14);
     this.radLabel2.Name     = "radLabel2";
     this.radLabel2.Size     = new System.Drawing.Size(86, 18);
     this.radLabel2.TabIndex = 2;
     this.radLabel2.Text     = "Download From";
     //
     // RdRbtYear
     //
     this.RdRbtYear.Location            = new System.Drawing.Point(834, 66);
     this.RdRbtYear.Name                = "RdRbtYear";
     this.RdRbtYear.Size                = new System.Drawing.Size(42, 18);
     this.RdRbtYear.TabIndex            = 5;
     this.RdRbtYear.Text                = "Year";
     this.RdRbtYear.Visible             = false;
     this.RdRbtYear.ToggleStateChanged += new Telerik.WinControls.UI.StateChangedEventHandler(this.RdRbtDate_ToggleStateChanged);
     //
     // RdDtpFrom
     //
     this.RdDtpFrom.CustomFormat = "dd/MMM/yyyy";
     this.RdDtpFrom.Format       = System.Windows.Forms.DateTimePickerFormat.Custom;
     this.RdDtpFrom.Location     = new System.Drawing.Point(148, 12);
     this.RdDtpFrom.MinDate      = new System.DateTime(2000, 1, 1, 0, 0, 0, 0);
     this.RdDtpFrom.Name         = "RdDtpFrom";
     this.RdDtpFrom.Size         = new System.Drawing.Size(91, 20);
     this.RdDtpFrom.TabIndex     = 0;
     this.RdDtpFrom.TabStop      = false;
     this.RdDtpFrom.Text         = "24/Dec/2019";
     this.RdDtpFrom.Value        = new System.DateTime(2019, 12, 24, 11, 4, 10, 689);
     //
     // RdRbtMonth
     //
     this.RdRbtMonth.Location            = new System.Drawing.Point(755, 66);
     this.RdRbtMonth.Name                = "RdRbtMonth";
     this.RdRbtMonth.Size                = new System.Drawing.Size(54, 18);
     this.RdRbtMonth.TabIndex            = 5;
     this.RdRbtMonth.Text                = "Month";
     this.RdRbtMonth.Visible             = false;
     this.RdRbtMonth.ToggleStateChanged += new Telerik.WinControls.UI.StateChangedEventHandler(this.RdRbtDate_ToggleStateChanged);
     //
     // RdRbtDate
     //
     this.RdRbtDate.Location            = new System.Drawing.Point(658, 66);
     this.RdRbtDate.Name                = "RdRbtDate";
     this.RdRbtDate.Size                = new System.Drawing.Size(44, 18);
     this.RdRbtDate.TabIndex            = 4;
     this.RdRbtDate.Text                = "Date";
     this.RdRbtDate.Visible             = false;
     this.RdRbtDate.ToggleStateChanged += new Telerik.WinControls.UI.StateChangedEventHandler(this.RdRbtDate_ToggleStateChanged);
     //
     // radLabel1
     //
     this.radLabel1.Location = new System.Drawing.Point(518, 66);
     this.radLabel1.Name     = "radLabel1";
     this.radLabel1.Size     = new System.Drawing.Size(123, 18);
     this.radLabel1.TabIndex = 1;
     this.radLabel1.Text     = "Download Type(Range)";
     this.radLabel1.Visible  = false;
     //
     // RdGrdBhavCopyData
     //
     this.RdGrdBhavCopyData.BackColor            = System.Drawing.Color.White;
     this.RdGrdBhavCopyData.Cursor               = System.Windows.Forms.Cursors.Default;
     this.RdGrdBhavCopyData.Dock                 = System.Windows.Forms.DockStyle.Fill;
     this.RdGrdBhavCopyData.EnableCustomGrouping = true;
     this.RdGrdBhavCopyData.EnableCustomSorting  = true;
     this.RdGrdBhavCopyData.Font                 = new System.Drawing.Font("Segoe UI", 8.25F);
     this.RdGrdBhavCopyData.ForeColor            = System.Drawing.Color.Black;
     this.RdGrdBhavCopyData.ImeMode              = System.Windows.Forms.ImeMode.NoControl;
     this.RdGrdBhavCopyData.Location             = new System.Drawing.Point(0, 0);
     //
     //
     //
     this.RdGrdBhavCopyData.MasterTemplate.AllowAddNewRow      = false;
     this.RdGrdBhavCopyData.MasterTemplate.AllowDeleteRow      = false;
     this.RdGrdBhavCopyData.MasterTemplate.AllowEditRow        = false;
     this.RdGrdBhavCopyData.MasterTemplate.AllowSearchRow      = true;
     this.RdGrdBhavCopyData.MasterTemplate.AutoGenerateColumns = false;
     this.RdGrdBhavCopyData.MasterTemplate.AutoSizeColumnsMode = Telerik.WinControls.UI.GridViewAutoSizeColumnsMode.Fill;
     gridViewDateTimeColumn3.CustomFormat           = "dd-MMM-yyyy";
     gridViewDateTimeColumn3.EnableExpressionEditor = false;
     gridViewDateTimeColumn3.FieldName              = "dTIMESTAMP";
     gridViewDateTimeColumn3.FilteringMode          = ((Telerik.WinControls.UI.GridViewTimeFilteringMode)((Telerik.WinControls.UI.GridViewTimeFilteringMode.Time | Telerik.WinControls.UI.GridViewTimeFilteringMode.Date)));
     gridViewDateTimeColumn3.Format                 = System.Windows.Forms.DateTimePickerFormat.Short;
     gridViewDateTimeColumn3.HeaderText             = "Bhav-Copy Date";
     gridViewDateTimeColumn3.Name                   = "dTIMESTAMP";
     gridViewDateTimeColumn3.Width                  = 44;
     gridViewTextBoxColumn16.EnableExpressionEditor = false;
     gridViewTextBoxColumn16.FieldName              = "cSYMBOL";
     gridViewTextBoxColumn16.HeaderText             = "SYMBOL";
     gridViewTextBoxColumn16.Name                   = "cSYMBOL";
     gridViewTextBoxColumn16.Width                  = 40;
     gridViewTextBoxColumn17.EnableExpressionEditor = false;
     gridViewTextBoxColumn17.FieldName              = "cSERIES";
     gridViewTextBoxColumn17.HeaderText             = "SERIES";
     gridViewTextBoxColumn17.Name                   = "cSERIES";
     gridViewTextBoxColumn17.Width                  = 32;
     gridViewTextBoxColumn18.EnableExpressionEditor = false;
     gridViewTextBoxColumn18.FieldName              = "cOPEN";
     gridViewTextBoxColumn18.HeaderText             = "OPEN";
     gridViewTextBoxColumn18.Name                   = "cOPEN";
     gridViewTextBoxColumn18.Width                  = 28;
     gridViewTextBoxColumn19.EnableExpressionEditor = false;
     gridViewTextBoxColumn19.FieldName              = "cHIGH";
     gridViewTextBoxColumn19.HeaderText             = "HIGH";
     gridViewTextBoxColumn19.Name                   = "cHIGH";
     gridViewTextBoxColumn19.Width                  = 28;
     gridViewTextBoxColumn20.EnableExpressionEditor = false;
     gridViewTextBoxColumn20.FieldName              = "cLOW";
     gridViewTextBoxColumn20.HeaderText             = "LOW";
     gridViewTextBoxColumn20.Name                   = "cLOW";
     gridViewTextBoxColumn20.Width                  = 26;
     gridViewTextBoxColumn21.EnableExpressionEditor = false;
     gridViewTextBoxColumn21.FieldName              = "cCLOSE";
     gridViewTextBoxColumn21.HeaderText             = "CLOSE";
     gridViewTextBoxColumn21.Name                   = "cCLOSE";
     gridViewTextBoxColumn21.Width                  = 32;
     gridViewTextBoxColumn22.EnableExpressionEditor = false;
     gridViewTextBoxColumn22.FieldName              = "cLAST";
     gridViewTextBoxColumn22.HeaderText             = "LAST";
     gridViewTextBoxColumn22.Name                   = "cLAST";
     gridViewTextBoxColumn22.Width                  = 26;
     gridViewTextBoxColumn23.EnableExpressionEditor = false;
     gridViewTextBoxColumn23.FieldName              = "cPREVCLOSE";
     gridViewTextBoxColumn23.HeaderText             = "PREVCLOSE";
     gridViewTextBoxColumn23.Name                   = "cPREVCLOSE";
     gridViewTextBoxColumn23.Width                  = 52;
     gridViewTextBoxColumn24.EnableExpressionEditor = false;
     gridViewTextBoxColumn24.FieldName              = "cTOTTRDQTY";
     gridViewTextBoxColumn24.HeaderText             = "TOTTRDQTY";
     gridViewTextBoxColumn24.Name                   = "cTOTTRDQTY";
     gridViewTextBoxColumn24.Width                  = 54;
     gridViewTextBoxColumn25.EnableExpressionEditor = false;
     gridViewTextBoxColumn25.FieldName              = "cTOTTRDVAL";
     gridViewTextBoxColumn25.HeaderText             = "TOTTRDVAL";
     gridViewTextBoxColumn25.Name                   = "cTOTTRDVAL";
     gridViewTextBoxColumn25.Width                  = 54;
     gridViewTextBoxColumn26.EnableExpressionEditor = false;
     gridViewTextBoxColumn26.FieldName              = "cTIMESTAMP";
     gridViewTextBoxColumn26.HeaderText             = "TIMESTAMP";
     gridViewTextBoxColumn26.Name                   = "cTIMESTAMP";
     gridViewTextBoxColumn26.Width                  = 53;
     gridViewTextBoxColumn27.EnableExpressionEditor = false;
     gridViewTextBoxColumn27.FieldName              = "cTOTALTRADES";
     gridViewTextBoxColumn27.HeaderText             = "TOTALTRADES";
     gridViewTextBoxColumn27.Name                   = "cTOTALTRADES";
     gridViewTextBoxColumn27.Width                  = 45;
     gridViewTextBoxColumn28.EnableExpressionEditor = false;
     gridViewTextBoxColumn28.FieldName              = "cISIN";
     gridViewTextBoxColumn28.HeaderText             = "ISIN";
     gridViewTextBoxColumn28.Name                   = "cISIN";
     gridViewTextBoxColumn28.Width                  = 33;
     this.RdGrdBhavCopyData.MasterTemplate.Columns.AddRange(new Telerik.WinControls.UI.GridViewDataColumn[] {
         gridViewDateTimeColumn3,
         gridViewTextBoxColumn16,
         gridViewTextBoxColumn17,
         gridViewTextBoxColumn18,
         gridViewTextBoxColumn19,
         gridViewTextBoxColumn20,
         gridViewTextBoxColumn21,
         gridViewTextBoxColumn22,
         gridViewTextBoxColumn23,
         gridViewTextBoxColumn24,
         gridViewTextBoxColumn25,
         gridViewTextBoxColumn26,
         gridViewTextBoxColumn27,
         gridViewTextBoxColumn28
     });
     this.RdGrdBhavCopyData.MasterTemplate.EnableCustomGrouping = true;
     this.RdGrdBhavCopyData.MasterTemplate.EnableCustomSorting  = true;
     this.RdGrdBhavCopyData.MasterTemplate.EnableFiltering      = true;
     this.RdGrdBhavCopyData.MasterTemplate.ShowGroupedColumns   = true;
     this.RdGrdBhavCopyData.MasterTemplate.ViewDefinition       = tableViewDefinition3;
     this.RdGrdBhavCopyData.Name        = "RdGrdBhavCopyData";
     this.RdGrdBhavCopyData.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.RdGrdBhavCopyData.Size        = new System.Drawing.Size(555, 405);
     this.RdGrdBhavCopyData.TabIndex    = 0;
     this.RdGrdBhavCopyData.Text        = "radGridView1";
     //
     // RdGrdBhavCopyFile
     //
     this.RdGrdBhavCopyFile.BackColor             = System.Drawing.Color.White;
     this.RdGrdBhavCopyFile.Cursor                = System.Windows.Forms.Cursors.Default;
     this.RdGrdBhavCopyFile.Dock                  = System.Windows.Forms.DockStyle.Fill;
     this.RdGrdBhavCopyFile.EnableCustomFiltering = true;
     this.RdGrdBhavCopyFile.EnableCustomGrouping  = true;
     this.RdGrdBhavCopyFile.EnableCustomSorting   = true;
     this.RdGrdBhavCopyFile.Font                  = new System.Drawing.Font("Segoe UI", 8.25F);
     this.RdGrdBhavCopyFile.ForeColor             = System.Drawing.Color.Black;
     this.RdGrdBhavCopyFile.ImeMode               = System.Windows.Forms.ImeMode.NoControl;
     this.RdGrdBhavCopyFile.Location              = new System.Drawing.Point(0, 0);
     //
     //
     //
     this.RdGrdBhavCopyFile.MasterTemplate.AllowAddNewRow      = false;
     this.RdGrdBhavCopyFile.MasterTemplate.AllowDeleteRow      = false;
     this.RdGrdBhavCopyFile.MasterTemplate.AllowEditRow        = false;
     this.RdGrdBhavCopyFile.MasterTemplate.AllowSearchRow      = true;
     this.RdGrdBhavCopyFile.MasterTemplate.AutoGenerateColumns = false;
     this.RdGrdBhavCopyFile.MasterTemplate.AutoSizeColumnsMode = Telerik.WinControls.UI.GridViewAutoSizeColumnsMode.Fill;
     gridViewCheckBoxColumn2.EnableExpressionEditor            = false;
     gridViewCheckBoxColumn2.FieldName              = "lSelect";
     gridViewCheckBoxColumn2.HeaderText             = "[ ? ]";
     gridViewCheckBoxColumn2.MinWidth               = 20;
     gridViewCheckBoxColumn2.Name                   = "lSelect";
     gridViewCheckBoxColumn2.Width                  = 57;
     gridViewTextBoxColumn29.EnableExpressionEditor = false;
     gridViewTextBoxColumn29.FieldName              = "cFileName";
     gridViewTextBoxColumn29.HeaderText             = "File Name";
     gridViewTextBoxColumn29.Name                   = "cFileName";
     gridViewTextBoxColumn29.Width                  = 80;
     gridViewDateTimeColumn4.EnableExpressionEditor = false;
     gridViewDateTimeColumn4.FieldName              = "dFileDate";
     gridViewDateTimeColumn4.Format                 = System.Windows.Forms.DateTimePickerFormat.Long;
     gridViewDateTimeColumn4.HeaderText             = "File Date";
     gridViewDateTimeColumn4.Name                   = "dFileDate";
     gridViewDateTimeColumn4.Width                  = 72;
     gridViewTextBoxColumn30.EnableExpressionEditor = false;
     gridViewTextBoxColumn30.FieldName              = "cFileDownLoadStatus";
     gridViewTextBoxColumn30.HeaderText             = "Download Status";
     gridViewTextBoxColumn30.Name                   = "cFileDownLoadStatus";
     gridViewTextBoxColumn30.Width                  = 102;
     this.RdGrdBhavCopyFile.MasterTemplate.Columns.AddRange(new Telerik.WinControls.UI.GridViewDataColumn[] {
         gridViewCheckBoxColumn2,
         gridViewTextBoxColumn29,
         gridViewDateTimeColumn4,
         gridViewTextBoxColumn30
     });
     this.RdGrdBhavCopyFile.MasterTemplate.EnableCustomFiltering = true;
     this.RdGrdBhavCopyFile.MasterTemplate.EnableCustomGrouping  = true;
     this.RdGrdBhavCopyFile.MasterTemplate.EnableCustomSorting   = true;
     this.RdGrdBhavCopyFile.MasterTemplate.EnableFiltering       = true;
     this.RdGrdBhavCopyFile.MasterTemplate.ShowGroupedColumns    = true;
     this.RdGrdBhavCopyFile.MasterTemplate.ViewDefinition        = tableViewDefinition4;
     this.RdGrdBhavCopyFile.Name        = "RdGrdBhavCopyFile";
     this.RdGrdBhavCopyFile.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.RdGrdBhavCopyFile.Size        = new System.Drawing.Size(329, 373);
     this.RdGrdBhavCopyFile.TabIndex    = 0;
     this.RdGrdBhavCopyFile.Text        = "radGridView2";
     //
     // radSplitContainer1
     //
     this.radSplitContainer1.Controls.Add(this.splitPanel1);
     this.radSplitContainer1.Controls.Add(this.splitPanel2);
     this.radSplitContainer1.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.radSplitContainer1.Location = new System.Drawing.Point(0, 83);
     this.radSplitContainer1.Name     = "radSplitContainer1";
     //
     //
     //
     this.radSplitContainer1.RootElement.MinSize = new System.Drawing.Size(0, 0);
     this.radSplitContainer1.Size     = new System.Drawing.Size(888, 405);
     this.radSplitContainer1.TabIndex = 3;
     this.radSplitContainer1.TabStop  = false;
     this.radSplitContainer1.Text     = "radSplitContainer1";
     //
     // splitPanel1
     //
     this.splitPanel1.Controls.Add(this.RdGrdBhavCopyFile);
     this.splitPanel1.Controls.Add(this.RdPanelDownLoadFile);
     this.splitPanel1.Location = new System.Drawing.Point(0, 0);
     this.splitPanel1.Name     = "splitPanel1";
     //
     //
     //
     this.splitPanel1.RootElement.MinSize = new System.Drawing.Size(0, 0);
     this.splitPanel1.Size = new System.Drawing.Size(329, 405);
     this.splitPanel1.SizeInfo.AutoSizeScale      = new System.Drawing.SizeF(-0.1278281F, 0F);
     this.splitPanel1.SizeInfo.SplitterCorrection = new System.Drawing.Size(-113, 0);
     this.splitPanel1.TabIndex = 0;
     this.splitPanel1.TabStop  = false;
     this.splitPanel1.Text     = "splitPanel1";
     //
     // RdPanelDownLoadFile
     //
     this.RdPanelDownLoadFile.Controls.Add(this.RdBtnReload);
     this.RdPanelDownLoadFile.Controls.Add(this.RdBtnSearch);
     this.RdPanelDownLoadFile.Controls.Add(this.RdBtnClearSearch);
     this.RdPanelDownLoadFile.Controls.Add(this.RdTxtSearchCompany);
     this.RdPanelDownLoadFile.Controls.Add(this.RdBtnSelectAll);
     this.RdPanelDownLoadFile.Controls.Add(this.radLabel4);
     this.RdPanelDownLoadFile.Controls.Add(this.RdBtnUnSelectAll);
     this.RdPanelDownLoadFile.Dock     = System.Windows.Forms.DockStyle.Bottom;
     this.RdPanelDownLoadFile.Location = new System.Drawing.Point(0, 373);
     this.RdPanelDownLoadFile.Name     = "RdPanelDownLoadFile";
     this.RdPanelDownLoadFile.Size     = new System.Drawing.Size(329, 32);
     this.RdPanelDownLoadFile.TabIndex = 1;
     //
     // RdBtnReload
     //
     this.RdBtnReload.Anchor            = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.RdBtnReload.Image             = global::A3DBhavCopy.Properties.Resources.Reload16X16;
     this.RdBtnReload.ImageAlignment    = System.Drawing.ContentAlignment.MiddleCenter;
     this.RdBtnReload.Location          = new System.Drawing.Point(300, 4);
     this.RdBtnReload.Name              = "RdBtnReload";
     this.RdBtnReload.Size              = new System.Drawing.Size(27, 24);
     this.RdBtnReload.TabIndex          = 7;
     this.RdBtnReload.TextAlignment     = System.Drawing.ContentAlignment.MiddleLeft;
     this.RdBtnReload.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageBeforeText;
     this.RdBtnReload.Visible           = false;
     this.RdBtnReload.Click            += new System.EventHandler(this.RdBtnReload_Click);
     //
     // RdBtnSearch
     //
     this.RdBtnSearch.Anchor            = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.RdBtnSearch.Image             = global::A3DBhavCopy.Properties.Resources.searchicon;
     this.RdBtnSearch.ImageAlignment    = System.Drawing.ContentAlignment.MiddleCenter;
     this.RdBtnSearch.Location          = new System.Drawing.Point(243, 4);
     this.RdBtnSearch.Name              = "RdBtnSearch";
     this.RdBtnSearch.Size              = new System.Drawing.Size(27, 24);
     this.RdBtnSearch.TabIndex          = 3;
     this.RdBtnSearch.TextAlignment     = System.Drawing.ContentAlignment.MiddleLeft;
     this.RdBtnSearch.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageBeforeText;
     this.RdBtnSearch.Click            += new System.EventHandler(this.RdBtnSearch_Click);
     //
     // RdBtnClearSearch
     //
     this.RdBtnClearSearch.Anchor            = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.RdBtnClearSearch.Image             = global::A3DBhavCopy.Properties.Resources.Close16X16;
     this.RdBtnClearSearch.ImageAlignment    = System.Drawing.ContentAlignment.MiddleCenter;
     this.RdBtnClearSearch.Location          = new System.Drawing.Point(272, 4);
     this.RdBtnClearSearch.Name              = "RdBtnClearSearch";
     this.RdBtnClearSearch.Size              = new System.Drawing.Size(27, 24);
     this.RdBtnClearSearch.TabIndex          = 4;
     this.RdBtnClearSearch.TextAlignment     = System.Drawing.ContentAlignment.MiddleLeft;
     this.RdBtnClearSearch.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageBeforeText;
     this.RdBtnClearSearch.Click            += new System.EventHandler(this.RdBtnClearSearch_Click);
     //
     // RdTxtSearchCompany
     //
     this.RdTxtSearchCompany.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                            | System.Windows.Forms.AnchorStyles.Right)));
     this.RdTxtSearchCompany.Location  = new System.Drawing.Point(130, 6);
     this.RdTxtSearchCompany.Name      = "RdTxtSearchCompany";
     this.RdTxtSearchCompany.NullText  = "Enter Date(Ex. 01Jan2020) Or File Name";
     this.RdTxtSearchCompany.Size      = new System.Drawing.Size(112, 20);
     this.RdTxtSearchCompany.TabIndex  = 2;
     this.RdTxtSearchCompany.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.RdTxtSearchCompany_KeyPress);
     //
     // RdBtnSelectAll
     //
     this.RdBtnSelectAll.Image             = global::A3DBhavCopy.Properties.Resources.CheckAll16X16;
     this.RdBtnSelectAll.ImageAlignment    = System.Drawing.ContentAlignment.MiddleCenter;
     this.RdBtnSelectAll.Location          = new System.Drawing.Point(3, 4);
     this.RdBtnSelectAll.Name              = "RdBtnSelectAll";
     this.RdBtnSelectAll.Size              = new System.Drawing.Size(27, 24);
     this.RdBtnSelectAll.TabIndex          = 1;
     this.RdBtnSelectAll.TextAlignment     = System.Drawing.ContentAlignment.MiddleLeft;
     this.RdBtnSelectAll.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageBeforeText;
     this.RdBtnSelectAll.Click            += new System.EventHandler(this.RdBtnSelectAll_Click);
     //
     // radLabel4
     //
     this.radLabel4.Font      = new System.Drawing.Font("Segoe UI", 10F);
     this.radLabel4.ForeColor = System.Drawing.Color.Blue;
     this.radLabel4.Location  = new System.Drawing.Point(62, 6);
     this.radLabel4.Name      = "radLabel4";
     this.radLabel4.Size      = new System.Drawing.Size(72, 21);
     this.radLabel4.TabIndex  = 2;
     this.radLabel4.Text      = "Search File";
     //
     // RdBtnUnSelectAll
     //
     this.RdBtnUnSelectAll.Image             = global::A3DBhavCopy.Properties.Resources.UnCheckAll16X16;
     this.RdBtnUnSelectAll.ImageAlignment    = System.Drawing.ContentAlignment.MiddleCenter;
     this.RdBtnUnSelectAll.Location          = new System.Drawing.Point(32, 4);
     this.RdBtnUnSelectAll.Name              = "RdBtnUnSelectAll";
     this.RdBtnUnSelectAll.Size              = new System.Drawing.Size(27, 24);
     this.RdBtnUnSelectAll.TabIndex          = 4;
     this.RdBtnUnSelectAll.TextAlignment     = System.Drawing.ContentAlignment.MiddleLeft;
     this.RdBtnUnSelectAll.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageBeforeText;
     this.RdBtnUnSelectAll.Click            += new System.EventHandler(this.RdBtnSelectAll_Click);
     //
     // splitPanel2
     //
     this.splitPanel2.Controls.Add(this.RdGrdBhavCopyData);
     this.splitPanel2.Location = new System.Drawing.Point(333, 0);
     this.splitPanel2.Name     = "splitPanel2";
     //
     //
     //
     this.splitPanel2.RootElement.MinSize = new System.Drawing.Size(0, 0);
     this.splitPanel2.Size = new System.Drawing.Size(555, 405);
     this.splitPanel2.SizeInfo.AutoSizeScale      = new System.Drawing.SizeF(0.1278281F, 0F);
     this.splitPanel2.SizeInfo.SplitterCorrection = new System.Drawing.Size(113, 0);
     this.splitPanel2.TabIndex = 1;
     this.splitPanel2.TabStop  = false;
     this.splitPanel2.Text     = "splitPanel2";
     //
     // FrmDownload
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.BackColor           = System.Drawing.Color.White;
     this.ClientSize          = new System.Drawing.Size(888, 488);
     this.Controls.Add(this.radSplitContainer1);
     this.Controls.Add(this.RdPanelHeader);
     this.Name = "FrmDownload";
     //
     //
     //
     this.RootElement.ApplyShapeToControl = true;
     this.Text  = "Download & Save Bhav-Copy ";
     this.Load += new System.EventHandler(this.FrmDownload_Load);
     ((System.ComponentModel.ISupportInitialize)(this.RdPanelHeader)).EndInit();
     this.RdPanelHeader.ResumeLayout(false);
     this.RdPanelHeader.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.RdProgressBar)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.RdLlbMessage)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.RdBtnSaveFileOnly)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.RdBtnDownloadAndSave)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.RdDtpTo)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.RdRbtYear)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.RdDtpFrom)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.RdRbtMonth)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.RdRbtDate)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.RdGrdBhavCopyData.MasterTemplate)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.RdGrdBhavCopyData)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.RdGrdBhavCopyFile.MasterTemplate)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.RdGrdBhavCopyFile)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radSplitContainer1)).EndInit();
     this.radSplitContainer1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.splitPanel1)).EndInit();
     this.splitPanel1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.RdPanelDownLoadFile)).EndInit();
     this.RdPanelDownLoadFile.ResumeLayout(false);
     this.RdPanelDownLoadFile.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.RdBtnReload)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.RdBtnSearch)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.RdBtnClearSearch)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.RdTxtSearchCompany)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.RdBtnSelectAll)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel4)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.RdBtnUnSelectAll)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.splitPanel2)).EndInit();
     this.splitPanel2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this)).EndInit();
     this.ResumeLayout(false);
 }
コード例 #60
0
        /// <summary>
        /// Required method for Designer support - do not modify
        /// the contents of this method with the code editor.
        /// </summary>
        private void InitializeComponent()
        {
            Telerik.Charting.ChartSeries chartSeries1 = new Telerik.Charting.ChartSeries();
            Telerik.Charting.ChartSeries chartSeries2 = new Telerik.Charting.ChartSeries();
            Telerik.Charting.ChartSeries chartSeries3 = new Telerik.Charting.ChartSeries();
            Telerik.Charting.ChartSeries chartSeries4 = new Telerik.Charting.ChartSeries();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn1 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn2 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn3 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn4 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn5 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn6 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn7 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn8 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn9 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn10 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn11 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn12 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn13 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn14 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn15 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn16 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn17 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn18 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn19 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn20 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn21 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn22 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn23 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn24 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn25 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn26 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn27 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn28 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn29 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn30 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn31 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn32 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn33 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn34 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.Data.SortDescriptor sortDescriptor1 = new Telerik.WinControls.Data.SortDescriptor();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn35 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn36 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn37 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn38 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn39 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn40 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn41 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn42 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn43 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn44 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn45 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn46 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn47 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn48 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn49 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.Data.SortDescriptor sortDescriptor2 = new Telerik.WinControls.Data.SortDescriptor();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn50 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn51 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn52 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn53 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewComboBoxColumn gridViewComboBoxColumn1 = new Telerik.WinControls.UI.GridViewComboBoxColumn();
            Telerik.WinControls.UI.GridViewComboBoxColumn gridViewComboBoxColumn2 = new Telerik.WinControls.UI.GridViewComboBoxColumn();
            Telerik.WinControls.UI.GridViewComboBoxColumn gridViewComboBoxColumn3 = new Telerik.WinControls.UI.GridViewComboBoxColumn();
            Telerik.WinControls.UI.GridViewComboBoxColumn gridViewComboBoxColumn4 = new Telerik.WinControls.UI.GridViewComboBoxColumn();
            Telerik.WinControls.UI.GridViewComboBoxColumn gridViewComboBoxColumn5 = new Telerik.WinControls.UI.GridViewComboBoxColumn();
            Telerik.WinControls.UI.GridViewComboBoxColumn gridViewComboBoxColumn6 = new Telerik.WinControls.UI.GridViewComboBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn54 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn55 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.Data.SortDescriptor sortDescriptor3 = new Telerik.WinControls.Data.SortDescriptor();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn56 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn57 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewComboBoxColumn gridViewComboBoxColumn7 = new Telerik.WinControls.UI.GridViewComboBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn58 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewComboBoxColumn gridViewComboBoxColumn8 = new Telerik.WinControls.UI.GridViewComboBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn59 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn60 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn61 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.Data.SortDescriptor sortDescriptor4 = new Telerik.WinControls.Data.SortDescriptor();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn62 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn63 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn64 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn65 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn66 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn67 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn68 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.Data.SortDescriptor sortDescriptor5 = new Telerik.WinControls.Data.SortDescriptor();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn69 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn70 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn71 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn72 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewComboBoxColumn gridViewComboBoxColumn9 = new Telerik.WinControls.UI.GridViewComboBoxColumn();
            Telerik.WinControls.UI.GridViewComboBoxColumn gridViewComboBoxColumn10 = new Telerik.WinControls.UI.GridViewComboBoxColumn();
            Telerik.WinControls.UI.GridViewComboBoxColumn gridViewComboBoxColumn11 = new Telerik.WinControls.UI.GridViewComboBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn73 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn74 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn75 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn76 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewComboBoxColumn gridViewComboBoxColumn12 = new Telerik.WinControls.UI.GridViewComboBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn77 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewComboBoxColumn gridViewComboBoxColumn13 = new Telerik.WinControls.UI.GridViewComboBoxColumn();
            Telerik.WinControls.UI.GridViewCheckBoxColumn gridViewCheckBoxColumn1 = new Telerik.WinControls.UI.GridViewCheckBoxColumn();
            Telerik.WinControls.Data.SortDescriptor sortDescriptor6 = new Telerik.WinControls.Data.SortDescriptor();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn78 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn79 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn80 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn81 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn82 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn83 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn84 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.Data.SortDescriptor sortDescriptor7 = new Telerik.WinControls.Data.SortDescriptor();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn85 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn86 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewComboBoxColumn gridViewComboBoxColumn14 = new Telerik.WinControls.UI.GridViewComboBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn87 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn88 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn89 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.Data.SortDescriptor sortDescriptor8 = new Telerik.WinControls.Data.SortDescriptor();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn90 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn91 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn92 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn93 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn94 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn95 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn96 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn97 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn98 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn99 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn100 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn101 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn102 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn103 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn104 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn105 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn106 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            this.radStatusStrip1 = new Telerik.WinControls.UI.RadStatusStrip();
            this.panel1 = new System.Windows.Forms.Panel();
            this.TabPrincipal = new Telerik.WinControls.UI.RadPageView();
            this.tabInicio = new Telerik.WinControls.UI.RadPageViewPage();
            this.radPageView4 = new Telerik.WinControls.UI.RadPageView();
            this.radPageViewPage28 = new Telerik.WinControls.UI.RadPageViewPage();
            this.radChart1 = new Telerik.WinControls.UI.RadChart();
            this.radPageViewPage29 = new Telerik.WinControls.UI.RadPageViewPage();
            this.radChart2 = new Telerik.WinControls.UI.RadChart();
            this.tabImportSellout = new Telerik.WinControls.UI.RadPageViewPage();
            this.radScrollablePanel2 = new Telerik.WinControls.UI.RadScrollablePanel();
            this.radButton2 = new Telerik.WinControls.UI.RadButton();
            this.radButton3 = new Telerik.WinControls.UI.RadButton();
            this.radButton4 = new Telerik.WinControls.UI.RadButton();
            this.radButton5 = new Telerik.WinControls.UI.RadButton();
            this.radTextBox2 = new Telerik.WinControls.UI.RadTextBox();
            this.textBox4 = new System.Windows.Forms.TextBox();
            this.textBox3 = new System.Windows.Forms.TextBox();
            this.radGroupBox4 = new Telerik.WinControls.UI.RadGroupBox();
            this.radButton6 = new Telerik.WinControls.UI.RadButton();
            this.radLabel7 = new Telerik.WinControls.UI.RadLabel();
            this.radLabel8 = new Telerik.WinControls.UI.RadLabel();
            this.radGroupBox5 = new Telerik.WinControls.UI.RadGroupBox();
            this.radButton7 = new Telerik.WinControls.UI.RadButton();
            this.radLabel9 = new Telerik.WinControls.UI.RadLabel();
            this.radLabel10 = new Telerik.WinControls.UI.RadLabel();
            this.radButton8 = new Telerik.WinControls.UI.RadButton();
            this.radGroupBox6 = new Telerik.WinControls.UI.RadGroupBox();
            this.radButton9 = new Telerik.WinControls.UI.RadButton();
            this.radLabel11 = new Telerik.WinControls.UI.RadLabel();
            this.radLabel12 = new Telerik.WinControls.UI.RadLabel();
            this.gridSellout = new Telerik.WinControls.UI.RadGridView();
            this.tabImportCliente = new Telerik.WinControls.UI.RadPageViewPage();
            this.radScrollablePanel1 = new Telerik.WinControls.UI.RadScrollablePanel();
            this.textBox1 = new System.Windows.Forms.TextBox();
            this.radButton12 = new Telerik.WinControls.UI.RadButton();
            this.radGroupBox1 = new Telerik.WinControls.UI.RadGroupBox();
            this.radButton14 = new Telerik.WinControls.UI.RadButton();
            this.radLabel1 = new Telerik.WinControls.UI.RadLabel();
            this.radLabel2 = new Telerik.WinControls.UI.RadLabel();
            this.radGroupBox2 = new Telerik.WinControls.UI.RadGroupBox();
            this.radLabel3 = new Telerik.WinControls.UI.RadLabel();
            this.radLabel4 = new Telerik.WinControls.UI.RadLabel();
            this.radGroupBox3 = new Telerik.WinControls.UI.RadGroupBox();
            this.radButton16 = new Telerik.WinControls.UI.RadButton();
            this.radLabel5 = new Telerik.WinControls.UI.RadLabel();
            this.radLabel6 = new Telerik.WinControls.UI.RadLabel();
            this.radGridView2 = new Telerik.WinControls.UI.RadGridView();
            this.tabClientes = new Telerik.WinControls.UI.RadPageViewPage();
            this.radGroupBox25 = new Telerik.WinControls.UI.RadGroupBox();
            this.btEditar = new Telerik.WinControls.UI.RadButton();
            this.btSelect = new Telerik.WinControls.UI.RadButton();
            this.btDeselect = new Telerik.WinControls.UI.RadButton();
            this.btVerificarCli = new Telerik.WinControls.UI.RadButton();
            this.btLimpiar = new Telerik.WinControls.UI.RadButton();
            this.btSalir = new Telerik.WinControls.UI.RadButton();
            this.radGridView3 = new Telerik.WinControls.UI.RadGridView();
            this.tabAgruparC = new Telerik.WinControls.UI.RadPageViewPage();
            this.radGroupBox7 = new Telerik.WinControls.UI.RadGroupBox();
            this.radGridView4 = new Telerik.WinControls.UI.RadGridView();
            this.tabMasterP = new Telerik.WinControls.UI.RadPageViewPage();
            this.btLimpiarMP = new Telerik.WinControls.UI.RadButton();
            this.btAbrirMP = new Telerik.WinControls.UI.RadButton();
            this.txtDir = new Telerik.WinControls.UI.RadTextBox();
            this.radLabel13 = new Telerik.WinControls.UI.RadLabel();
            this.radGridView5 = new Telerik.WinControls.UI.RadGridView();
            this.tabProductosE = new Telerik.WinControls.UI.RadPageViewPage();
            this.radGridView6 = new Telerik.WinControls.UI.RadGridView();
            this.radGroupBox8 = new Telerik.WinControls.UI.RadGroupBox();
            this.cbDist = new Telerik.WinControls.UI.RadDropDownList();
            this.cbPais = new Telerik.WinControls.UI.RadDropDownList();
            this.radLabel14 = new Telerik.WinControls.UI.RadLabel();
            this.radLabel15 = new Telerik.WinControls.UI.RadLabel();
            this.tabAgruparP = new Telerik.WinControls.UI.RadPageViewPage();
            this.btNuevoAP = new Telerik.WinControls.UI.RadButton();
            this.btActualAP = new Telerik.WinControls.UI.RadButton();
            this.radGridView13 = new Telerik.WinControls.UI.RadGridView();
            this.tabDistribuidor = new Telerik.WinControls.UI.RadPageViewPage();
            this.btLimpiarD = new Telerik.WinControls.UI.RadButton();
            this.btKam = new Telerik.WinControls.UI.RadButton();
            this.radGridView7 = new Telerik.WinControls.UI.RadGridView();
            this.tabKAM = new Telerik.WinControls.UI.RadPageViewPage();
            this.btNuevo = new Telerik.WinControls.UI.RadButton();
            this.radGridView8 = new Telerik.WinControls.UI.RadGridView();
            this.tabPais = new Telerik.WinControls.UI.RadPageViewPage();
            this.radGridView9 = new Telerik.WinControls.UI.RadGridView();
            this.tabSegmento = new Telerik.WinControls.UI.RadPageViewPage();
            this.btNew = new Telerik.WinControls.UI.RadButton();
            this.radGridView10 = new Telerik.WinControls.UI.RadGridView();
            this.tabNuevosSegmentos = new Telerik.WinControls.UI.RadPageViewPage();
            this.tabConglomerados = new Telerik.WinControls.UI.RadPageViewPage();
            this.textBox2 = new System.Windows.Forms.TextBox();
            this.btActualCon = new Telerik.WinControls.UI.RadButton();
            this.radGridView11 = new Telerik.WinControls.UI.RadGridView();
            this.txtGrupoCliente = new Telerik.WinControls.UI.RadTextBox();
            this.radLabel17 = new Telerik.WinControls.UI.RadLabel();
            this.radLabel16 = new Telerik.WinControls.UI.RadLabel();
            this.cbGAN = new Telerik.WinControls.UI.RadDropDownList();
            this.radGroupBox9 = new Telerik.WinControls.UI.RadGroupBox();
            this.cbSegmento = new Telerik.WinControls.UI.RadDropDownList();
            this.cbPlataformas = new Telerik.WinControls.UI.RadDropDownList();
            this.radRadioButton5 = new Telerik.WinControls.UI.RadRadioButton();
            this.radRadioButton4 = new Telerik.WinControls.UI.RadRadioButton();
            this.radRadioButton3 = new Telerik.WinControls.UI.RadRadioButton();
            this.radRadioButton2 = new Telerik.WinControls.UI.RadRadioButton();
            this.radRadioButton1 = new Telerik.WinControls.UI.RadRadioButton();
            this.tabCuentasGlobales = new Telerik.WinControls.UI.RadPageViewPage();
            this.radGridView12 = new Telerik.WinControls.UI.RadGridView();
            this.radPageViewPage14 = new Telerik.WinControls.UI.RadPageViewPage();
            this.tabCalculoABC = new Telerik.WinControls.UI.RadPageViewPage();
            this.radPageView1 = new Telerik.WinControls.UI.RadPageView();
            this.radPageViewPage18 = new Telerik.WinControls.UI.RadPageViewPage();
            this.btCalcularD = new Telerik.WinControls.UI.RadButton();
            this.textBox5 = new System.Windows.Forms.TextBox();
            this.radGroupBox10 = new Telerik.WinControls.UI.RadGroupBox();
            this.radTextBox1 = new Telerik.WinControls.UI.RadTextBox();
            this.radLabel22 = new Telerik.WinControls.UI.RadLabel();
            this.radLabel21 = new Telerik.WinControls.UI.RadLabel();
            this.radLabel20 = new Telerik.WinControls.UI.RadLabel();
            this.cbHasta = new Telerik.WinControls.UI.RadDropDownList();
            this.cbDesde = new Telerik.WinControls.UI.RadDropDownList();
            this.radLabel19 = new Telerik.WinControls.UI.RadLabel();
            this.radLabel18 = new Telerik.WinControls.UI.RadLabel();
            this.cbDistD = new Telerik.WinControls.UI.RadDropDownList();
            this.cbPaisDis = new Telerik.WinControls.UI.RadDropDownList();
            this.radRadioButton7 = new Telerik.WinControls.UI.RadRadioButton();
            this.radRadioButton6 = new Telerik.WinControls.UI.RadRadioButton();
            this.radPageViewPage19 = new Telerik.WinControls.UI.RadPageViewPage();
            this.btCalcularP = new Telerik.WinControls.UI.RadButton();
            this.textBox6 = new System.Windows.Forms.TextBox();
            this.radGroupBox11 = new Telerik.WinControls.UI.RadGroupBox();
            this.txtMesP = new Telerik.WinControls.UI.RadTextBox();
            this.radLabel23 = new Telerik.WinControls.UI.RadLabel();
            this.radLabel24 = new Telerik.WinControls.UI.RadLabel();
            this.radLabel25 = new Telerik.WinControls.UI.RadLabel();
            this.cbHastaP = new Telerik.WinControls.UI.RadDropDownList();
            this.cbDesdeP = new Telerik.WinControls.UI.RadDropDownList();
            this.radLabel27 = new Telerik.WinControls.UI.RadLabel();
            this.cbPaisP = new Telerik.WinControls.UI.RadDropDownList();
            this.radPageViewPage20 = new Telerik.WinControls.UI.RadPageViewPage();
            this.btCalcularR = new Telerik.WinControls.UI.RadButton();
            this.textBox7 = new System.Windows.Forms.TextBox();
            this.radGroupBox12 = new Telerik.WinControls.UI.RadGroupBox();
            this.txtMesR = new Telerik.WinControls.UI.RadTextBox();
            this.radLabel28 = new Telerik.WinControls.UI.RadLabel();
            this.radLabel29 = new Telerik.WinControls.UI.RadLabel();
            this.radLabel30 = new Telerik.WinControls.UI.RadLabel();
            this.cbHastaR = new Telerik.WinControls.UI.RadDropDownList();
            this.cbDesdeR = new Telerik.WinControls.UI.RadDropDownList();
            this.radLabel31 = new Telerik.WinControls.UI.RadLabel();
            this.cbRegion = new Telerik.WinControls.UI.RadDropDownList();
            this.radPageViewPage21 = new Telerik.WinControls.UI.RadPageViewPage();
            this.btCalcularSR = new Telerik.WinControls.UI.RadButton();
            this.textBox8 = new System.Windows.Forms.TextBox();
            this.radGroupBox13 = new Telerik.WinControls.UI.RadGroupBox();
            this.txtMesSR = new Telerik.WinControls.UI.RadTextBox();
            this.radLabel33 = new Telerik.WinControls.UI.RadLabel();
            this.radLabel34 = new Telerik.WinControls.UI.RadLabel();
            this.radLabel35 = new Telerik.WinControls.UI.RadLabel();
            this.cbHastaSR = new Telerik.WinControls.UI.RadDropDownList();
            this.cbDesdeSR = new Telerik.WinControls.UI.RadDropDownList();
            this.radLabel37 = new Telerik.WinControls.UI.RadLabel();
            this.cbSubReg = new Telerik.WinControls.UI.RadDropDownList();
            this.tabCalculoOP = new Telerik.WinControls.UI.RadPageViewPage();
            this.radPageView2 = new Telerik.WinControls.UI.RadPageView();
            this.radPageViewPage22 = new Telerik.WinControls.UI.RadPageViewPage();
            this.radGroupBox17 = new Telerik.WinControls.UI.RadGroupBox();
            this.radRadioButton8 = new Telerik.WinControls.UI.RadRadioButton();
            this.radRadioButton9 = new Telerik.WinControls.UI.RadRadioButton();
            this.txtResumenPR = new System.Windows.Forms.TextBox();
            this.radGroupBox14 = new Telerik.WinControls.UI.RadGroupBox();
            this.btProcesarOP = new Telerik.WinControls.UI.RadButton();
            this.radLabel36 = new Telerik.WinControls.UI.RadLabel();
            this.cbSecPR = new Telerik.WinControls.UI.RadDropDownList();
            this.radLabel38 = new Telerik.WinControls.UI.RadLabel();
            this.radLabel39 = new Telerik.WinControls.UI.RadLabel();
            this.cbDistPR = new Telerik.WinControls.UI.RadDropDownList();
            this.cbPaisPR = new Telerik.WinControls.UI.RadDropDownList();
            this.radPageViewPage23 = new Telerik.WinControls.UI.RadPageViewPage();
            this.radGroupBox16 = new Telerik.WinControls.UI.RadGroupBox();
            this.rdDist = new Telerik.WinControls.UI.RadRadioButton();
            this.rdPais = new Telerik.WinControls.UI.RadRadioButton();
            this.txtResumenPP = new System.Windows.Forms.TextBox();
            this.radGroupBox15 = new Telerik.WinControls.UI.RadGroupBox();
            this.btProcesarPP = new Telerik.WinControls.UI.RadButton();
            this.radLabel26 = new Telerik.WinControls.UI.RadLabel();
            this.cbSecPP = new Telerik.WinControls.UI.RadDropDownList();
            this.radLabel32 = new Telerik.WinControls.UI.RadLabel();
            this.radLabel40 = new Telerik.WinControls.UI.RadLabel();
            this.cbDistPP = new Telerik.WinControls.UI.RadDropDownList();
            this.cbPaisPP = new Telerik.WinControls.UI.RadDropDownList();
            this.tabCalculoKPI = new Telerik.WinControls.UI.RadPageViewPage();
            this.radPageView3 = new Telerik.WinControls.UI.RadPageView();
            this.radPageViewPage24 = new Telerik.WinControls.UI.RadPageViewPage();
            this.radGroupBox18 = new Telerik.WinControls.UI.RadGroupBox();
            this.radRadioButton10 = new Telerik.WinControls.UI.RadRadioButton();
            this.radRadioButton11 = new Telerik.WinControls.UI.RadRadioButton();
            this.textBox9 = new System.Windows.Forms.TextBox();
            this.radGroupBox19 = new Telerik.WinControls.UI.RadGroupBox();
            this.radButton1 = new Telerik.WinControls.UI.RadButton();
            this.radLabel41 = new Telerik.WinControls.UI.RadLabel();
            this.radDropDownList1 = new Telerik.WinControls.UI.RadDropDownList();
            this.radLabel42 = new Telerik.WinControls.UI.RadLabel();
            this.radLabel43 = new Telerik.WinControls.UI.RadLabel();
            this.radDropDownList2 = new Telerik.WinControls.UI.RadDropDownList();
            this.radDropDownList3 = new Telerik.WinControls.UI.RadDropDownList();
            this.radPageViewPage25 = new Telerik.WinControls.UI.RadPageViewPage();
            this.radGroupBox20 = new Telerik.WinControls.UI.RadGroupBox();
            this.radRadioButton12 = new Telerik.WinControls.UI.RadRadioButton();
            this.radRadioButton13 = new Telerik.WinControls.UI.RadRadioButton();
            this.textBox10 = new System.Windows.Forms.TextBox();
            this.radGroupBox21 = new Telerik.WinControls.UI.RadGroupBox();
            this.radButton10 = new Telerik.WinControls.UI.RadButton();
            this.radLabel44 = new Telerik.WinControls.UI.RadLabel();
            this.radDropDownList4 = new Telerik.WinControls.UI.RadDropDownList();
            this.radLabel45 = new Telerik.WinControls.UI.RadLabel();
            this.radLabel46 = new Telerik.WinControls.UI.RadLabel();
            this.radDropDownList5 = new Telerik.WinControls.UI.RadDropDownList();
            this.radDropDownList6 = new Telerik.WinControls.UI.RadDropDownList();
            this.radPageViewPage26 = new Telerik.WinControls.UI.RadPageViewPage();
            this.radGroupBox22 = new Telerik.WinControls.UI.RadGroupBox();
            this.radRadioButton14 = new Telerik.WinControls.UI.RadRadioButton();
            this.radRadioButton15 = new Telerik.WinControls.UI.RadRadioButton();
            this.textBox11 = new System.Windows.Forms.TextBox();
            this.radGroupBox23 = new Telerik.WinControls.UI.RadGroupBox();
            this.radButton11 = new Telerik.WinControls.UI.RadButton();
            this.radLabel47 = new Telerik.WinControls.UI.RadLabel();
            this.radDropDownList7 = new Telerik.WinControls.UI.RadDropDownList();
            this.radLabel48 = new Telerik.WinControls.UI.RadLabel();
            this.radLabel49 = new Telerik.WinControls.UI.RadLabel();
            this.radDropDownList8 = new Telerik.WinControls.UI.RadDropDownList();
            this.radDropDownList9 = new Telerik.WinControls.UI.RadDropDownList();
            this.radPageViewPage27 = new Telerik.WinControls.UI.RadPageViewPage();
            this.btProcesarS = new Telerik.WinControls.UI.RadButton();
            this.radGroupBox24 = new Telerik.WinControls.UI.RadGroupBox();
            this.radRadioButton18 = new Telerik.WinControls.UI.RadRadioButton();
            this.radRadioButton19 = new Telerik.WinControls.UI.RadRadioButton();
            this.radRadioButton16 = new Telerik.WinControls.UI.RadRadioButton();
            this.radRadioButton17 = new Telerik.WinControls.UI.RadRadioButton();
            this.tabImportSellin = new Telerik.WinControls.UI.RadPageViewPage();
            this.radScrollablePanel3 = new Telerik.WinControls.UI.RadScrollablePanel();
            this.textBox12 = new System.Windows.Forms.TextBox();
            this.radButton13 = new Telerik.WinControls.UI.RadButton();
            this.radButton15 = new Telerik.WinControls.UI.RadButton();
            this.radButton17 = new Telerik.WinControls.UI.RadButton();
            this.radButton18 = new Telerik.WinControls.UI.RadButton();
            this.radGroupBox26 = new Telerik.WinControls.UI.RadGroupBox();
            this.radButton19 = new Telerik.WinControls.UI.RadButton();
            this.radLabel50 = new Telerik.WinControls.UI.RadLabel();
            this.radLabel51 = new Telerik.WinControls.UI.RadLabel();
            this.radGroupBox27 = new Telerik.WinControls.UI.RadGroupBox();
            this.radButton20 = new Telerik.WinControls.UI.RadButton();
            this.radLabel52 = new Telerik.WinControls.UI.RadLabel();
            this.radLabel53 = new Telerik.WinControls.UI.RadLabel();
            this.radButton21 = new Telerik.WinControls.UI.RadButton();
            this.radGroupBox28 = new Telerik.WinControls.UI.RadGroupBox();
            this.radButton22 = new Telerik.WinControls.UI.RadButton();
            this.radLabel54 = new Telerik.WinControls.UI.RadLabel();
            this.radLabel55 = new Telerik.WinControls.UI.RadLabel();
            this.radGridView14 = new Telerik.WinControls.UI.RadGridView();
            this.radPageViewPage2 = new Telerik.WinControls.UI.RadPageViewPage();
            this.radGroupBox34 = new Telerik.WinControls.UI.RadGroupBox();
            this.radLabel59 = new Telerik.WinControls.UI.RadLabel();
            this.radLabel58 = new Telerik.WinControls.UI.RadLabel();
            this.radTextBox6 = new Telerik.WinControls.UI.RadTextBox();
            this.radTextBox5 = new Telerik.WinControls.UI.RadTextBox();
            this.radGroupBox33 = new Telerik.WinControls.UI.RadGroupBox();
            this.radLabel57 = new Telerik.WinControls.UI.RadLabel();
            this.radLabel56 = new Telerik.WinControls.UI.RadLabel();
            this.radTextBox4 = new Telerik.WinControls.UI.RadTextBox();
            this.radTextBox3 = new Telerik.WinControls.UI.RadTextBox();
            this.btCancel = new Telerik.WinControls.UI.RadButton();
            this.btReiniciar = new Telerik.WinControls.UI.RadButton();
            this.btFiltrar = new Telerik.WinControls.UI.RadButton();
            this.radGroupBox32 = new Telerik.WinControls.UI.RadGroupBox();
            this.radCheckBox3 = new Telerik.WinControls.UI.RadCheckBox();
            this.radCheckBox4 = new Telerik.WinControls.UI.RadCheckBox();
            this.radCheckBox5 = new Telerik.WinControls.UI.RadCheckBox();
            this.radGroupBox31 = new Telerik.WinControls.UI.RadGroupBox();
            this.rdC = new Telerik.WinControls.UI.RadCheckBox();
            this.rdB = new Telerik.WinControls.UI.RadCheckBox();
            this.rdA = new Telerik.WinControls.UI.RadCheckBox();
            this.radGroupBox30 = new Telerik.WinControls.UI.RadGroupBox();
            this.rdOther = new Telerik.WinControls.UI.RadCheckBox();
            this.rdNA = new Telerik.WinControls.UI.RadCheckBox();
            this.rdNEC = new Telerik.WinControls.UI.RadCheckBox();
            this.rdOffice = new Telerik.WinControls.UI.RadCheckBox();
            this.rdManufact = new Telerik.WinControls.UI.RadCheckBox();
            this.rdLodging = new Telerik.WinControls.UI.RadCheckBox();
            this.rdHighT = new Telerik.WinControls.UI.RadCheckBox();
            this.rdHeatlhC = new Telerik.WinControls.UI.RadCheckBox();
            this.rdGroceryR = new Telerik.WinControls.UI.RadCheckBox();
            this.rdGovernment = new Telerik.WinControls.UI.RadCheckBox();
            this.rdFoodP = new Telerik.WinControls.UI.RadCheckBox();
            this.rdFoodS = new Telerik.WinControls.UI.RadCheckBox();
            this.rdEducation = new Telerik.WinControls.UI.RadCheckBox();
            this.radGroupBox29 = new Telerik.WinControls.UI.RadGroupBox();
            this.radCheckBox2 = new Telerik.WinControls.UI.RadCheckBox();
            this.radCheckBox1 = new Telerik.WinControls.UI.RadCheckBox();
            this.radPageView5 = new Telerik.WinControls.UI.RadPageView();
            this.radPageViewPage1 = new Telerik.WinControls.UI.RadPageViewPage();
            this.radGroupBox40 = new Telerik.WinControls.UI.RadGroupBox();
            this.rdPA = new Telerik.WinControls.UI.RadCheckBox();
            this.rdSV = new Telerik.WinControls.UI.RadCheckBox();
            this.rdCR = new Telerik.WinControls.UI.RadCheckBox();
            this.rdNI = new Telerik.WinControls.UI.RadCheckBox();
            this.rdHN = new Telerik.WinControls.UI.RadCheckBox();
            this.rdGT = new Telerik.WinControls.UI.RadCheckBox();
            this.rdCA = new Telerik.WinControls.UI.RadCheckBox();
            this.radGroupBox39 = new Telerik.WinControls.UI.RadGroupBox();
            this.rdSuriname = new Telerik.WinControls.UI.RadCheckBox();
            this.rdPBJ = new Telerik.WinControls.UI.RadCheckBox();
            this.rdTrinidadT = new Telerik.WinControls.UI.RadCheckBox();
            this.rdRD = new Telerik.WinControls.UI.RadCheckBox();
            this.rdCaribe = new Telerik.WinControls.UI.RadCheckBox();
            this.radGroupBox37 = new Telerik.WinControls.UI.RadGroupBox();
            this.rdChile = new Telerik.WinControls.UI.RadCheckBox();
            this.rdParaguay = new Telerik.WinControls.UI.RadCheckBox();
            this.rdArgentina = new Telerik.WinControls.UI.RadCheckBox();
            this.rdAustral = new Telerik.WinControls.UI.RadCheckBox();
            this.radGroupBox38 = new Telerik.WinControls.UI.RadGroupBox();
            this.rdBrasil = new Telerik.WinControls.UI.RadCheckBox();
            this.radGroupBox36 = new Telerik.WinControls.UI.RadGroupBox();
            this.rdPeru = new Telerik.WinControls.UI.RadCheckBox();
            this.rdEcuador = new Telerik.WinControls.UI.RadCheckBox();
            this.rdColombia = new Telerik.WinControls.UI.RadCheckBox();
            this.rdVenezuela = new Telerik.WinControls.UI.RadCheckBox();
            this.rdAndino = new Telerik.WinControls.UI.RadCheckBox();
            this.radGroupBox35 = new Telerik.WinControls.UI.RadGroupBox();
            this.rdLAO = new Telerik.WinControls.UI.RadCheckBox();
            this.radPageViewPage3 = new Telerik.WinControls.UI.RadPageViewPage();
            this.radGroupBox42 = new Telerik.WinControls.UI.RadGroupBox();
            this.rdHSNO = new Telerik.WinControls.UI.RadRadioButton();
            this.rdHSSI = new Telerik.WinControls.UI.RadRadioButton();
            this.rdHandS = new Telerik.WinControls.UI.RadCheckBox();
            this.radGroupBox41 = new Telerik.WinControls.UI.RadGroupBox();
            this.rdSTNO = new Telerik.WinControls.UI.RadRadioButton();
            this.rdSTSI = new Telerik.WinControls.UI.RadRadioButton();
            this.rdCNO = new Telerik.WinControls.UI.RadRadioButton();
            this.radRadioButton22 = new Telerik.WinControls.UI.RadRadioButton();
            this.rdBUNO = new Telerik.WinControls.UI.RadRadioButton();
            this.rdBUSI = new Telerik.WinControls.UI.RadRadioButton();
            this.rdBNO = new Telerik.WinControls.UI.RadRadioButton();
            this.rdBSI = new Telerik.WinControls.UI.RadRadioButton();
            this.rdBBNO = new Telerik.WinControls.UI.RadRadioButton();
            this.rdBBSI = new Telerik.WinControls.UI.RadRadioButton();
            this.rdST = new Telerik.WinControls.UI.RadCheckBox();
            this.rdCassette = new Telerik.WinControls.UI.RadCheckBox();
            this.rdBulk = new Telerik.WinControls.UI.RadCheckBox();
            this.rdBottles = new Telerik.WinControls.UI.RadCheckBox();
            this.rdBIB = new Telerik.WinControls.UI.RadCheckBox();
            this.rdSkinCare = new Telerik.WinControls.UI.RadCheckBox();
            this.radPageViewPage4 = new Telerik.WinControls.UI.RadPageViewPage();
            this.radGroupBox43 = new Telerik.WinControls.UI.RadGroupBox();
            this.rdKRNO = new Telerik.WinControls.UI.RadRadioButton();
            this.rdKRSI = new Telerik.WinControls.UI.RadRadioButton();
            this.rdHRTNO = new Telerik.WinControls.UI.RadRadioButton();
            this.rdHRTSI = new Telerik.WinControls.UI.RadRadioButton();
            this.rdFTNO = new Telerik.WinControls.UI.RadRadioButton();
            this.rdFTSI = new Telerik.WinControls.UI.RadRadioButton();
            this.rdCTPNO = new Telerik.WinControls.UI.RadRadioButton();
            this.rdCTPSI = new Telerik.WinControls.UI.RadRadioButton();
            this.rdKR = new Telerik.WinControls.UI.RadCheckBox();
            this.rdHRT = new Telerik.WinControls.UI.RadCheckBox();
            this.rdFT = new Telerik.WinControls.UI.RadCheckBox();
            this.rdCPT = new Telerik.WinControls.UI.RadCheckBox();
            this.radCheckBox11 = new Telerik.WinControls.UI.RadCheckBox();
            this.radPageViewPage5 = new Telerik.WinControls.UI.RadPageViewPage();
            this.radGroupBox47 = new Telerik.WinControls.UI.RadGroupBox();
            this.radCheckBox16 = new Telerik.WinControls.UI.RadCheckBox();
            this.radGroupBox46 = new Telerik.WinControls.UI.RadGroupBox();
            this.rdTDNO = new Telerik.WinControls.UI.RadRadioButton();
            this.rdTDSI = new Telerik.WinControls.UI.RadRadioButton();
            this.rdPLNO = new Telerik.WinControls.UI.RadRadioButton();
            this.rdPLSI = new Telerik.WinControls.UI.RadRadioButton();
            this.rdPDNO = new Telerik.WinControls.UI.RadRadioButton();
            this.rdPDSI = new Telerik.WinControls.UI.RadRadioButton();
            this.rdPBNO = new Telerik.WinControls.UI.RadRadioButton();
            this.rdPBSI = new Telerik.WinControls.UI.RadRadioButton();
            this.rdTD = new Telerik.WinControls.UI.RadCheckBox();
            this.rdPL = new Telerik.WinControls.UI.RadCheckBox();
            this.rdPD = new Telerik.WinControls.UI.RadCheckBox();
            this.rdPB = new Telerik.WinControls.UI.RadCheckBox();
            this.rdTT = new Telerik.WinControls.UI.RadCheckBox();
            this.radGroupBox45 = new Telerik.WinControls.UI.RadGroupBox();
            this.radRadioButton20 = new Telerik.WinControls.UI.RadRadioButton();
            this.radRadioButton21 = new Telerik.WinControls.UI.RadRadioButton();
            this.radRadioButton23 = new Telerik.WinControls.UI.RadRadioButton();
            this.radRadioButton24 = new Telerik.WinControls.UI.RadRadioButton();
            this.radRadioButton25 = new Telerik.WinControls.UI.RadRadioButton();
            this.radRadioButton26 = new Telerik.WinControls.UI.RadRadioButton();
            this.radCheckBox6 = new Telerik.WinControls.UI.RadCheckBox();
            this.radCheckBox7 = new Telerik.WinControls.UI.RadCheckBox();
            this.radCheckBox8 = new Telerik.WinControls.UI.RadCheckBox();
            this.radCheckBox9 = new Telerik.WinControls.UI.RadCheckBox();
            this.radGroupBox44 = new Telerik.WinControls.UI.RadGroupBox();
            this.rdSRBNO = new Telerik.WinControls.UI.RadRadioButton();
            this.rdSRBSI = new Telerik.WinControls.UI.RadRadioButton();
            this.rdJRBNO = new Telerik.WinControls.UI.RadRadioButton();
            this.rdJRBSI = new Telerik.WinControls.UI.RadRadioButton();
            this.rdFBathNo = new Telerik.WinControls.UI.RadRadioButton();
            this.rdFBathSi = new Telerik.WinControls.UI.RadRadioButton();
            this.rdSRB = new Telerik.WinControls.UI.RadCheckBox();
            this.rdJRB = new Telerik.WinControls.UI.RadCheckBox();
            this.rdFBath = new Telerik.WinControls.UI.RadCheckBox();
            this.rdBath = new Telerik.WinControls.UI.RadCheckBox();
            this.radPageViewPage6 = new Telerik.WinControls.UI.RadPageViewPage();
            this.radGroupBox51 = new Telerik.WinControls.UI.RadGroupBox();
            this.rdSWNO = new Telerik.WinControls.UI.RadRadioButton();
            this.rdSWSI = new Telerik.WinControls.UI.RadRadioButton();
            this.rdSW = new Telerik.WinControls.UI.RadCheckBox();
            this.radGroupBox50 = new Telerik.WinControls.UI.RadGroupBox();
            this.rdOWNO = new Telerik.WinControls.UI.RadRadioButton();
            this.rdOWSI = new Telerik.WinControls.UI.RadRadioButton();
            this.rdOW = new Telerik.WinControls.UI.RadCheckBox();
            this.radGroupBox49 = new Telerik.WinControls.UI.RadGroupBox();
            this.rdEUWNO = new Telerik.WinControls.UI.RadRadioButton();
            this.rdEUWSI = new Telerik.WinControls.UI.RadRadioButton();
            this.rdEUW = new Telerik.WinControls.UI.RadCheckBox();
            this.radGroupBox48 = new Telerik.WinControls.UI.RadGroupBox();
            this.rdLUWNO = new Telerik.WinControls.UI.RadRadioButton();
            this.rdLUWSI = new Telerik.WinControls.UI.RadRadioButton();
            this.rdLUW = new Telerik.WinControls.UI.RadCheckBox();
            this.radPageViewPage7 = new Telerik.WinControls.UI.RadPageViewPage();
            this.radGroupBox54 = new Telerik.WinControls.UI.RadGroupBox();
            this.rdWHNO = new Telerik.WinControls.UI.RadRadioButton();
            this.rdWHSI = new Telerik.WinControls.UI.RadRadioButton();
            this.rdWANO = new Telerik.WinControls.UI.RadRadioButton();
            this.rdWASI = new Telerik.WinControls.UI.RadRadioButton();
            this.rdWH = new Telerik.WinControls.UI.RadCheckBox();
            this.rdWA = new Telerik.WinControls.UI.RadCheckBox();
            this.radCheckBox21 = new Telerik.WinControls.UI.RadCheckBox();
            this.radGroupBox53 = new Telerik.WinControls.UI.RadGroupBox();
            this.rdOISNO = new Telerik.WinControls.UI.RadRadioButton();
            this.rdOISSI = new Telerik.WinControls.UI.RadRadioButton();
            this.rdSANO = new Telerik.WinControls.UI.RadRadioButton();
            this.rdSASI = new Telerik.WinControls.UI.RadRadioButton();
            this.radHSNNO = new Telerik.WinControls.UI.RadRadioButton();
            this.radHSSI = new Telerik.WinControls.UI.RadRadioButton();
            this.rdCDCNO = new Telerik.WinControls.UI.RadRadioButton();
            this.rdCDCSI = new Telerik.WinControls.UI.RadRadioButton();
            this.rdOIS = new Telerik.WinControls.UI.RadCheckBox();
            this.rdSA = new Telerik.WinControls.UI.RadCheckBox();
            this.radHS = new Telerik.WinControls.UI.RadCheckBox();
            this.rdCDC = new Telerik.WinControls.UI.RadCheckBox();
            this.radCheckBox15 = new Telerik.WinControls.UI.RadCheckBox();
            this.radGroupBox52 = new Telerik.WinControls.UI.RadGroupBox();
            this.radVNO = new Telerik.WinControls.UI.RadRadioButton();
            this.radRNO = new Telerik.WinControls.UI.RadRadioButton();
            this.radVSI = new Telerik.WinControls.UI.RadRadioButton();
            this.radRSI = new Telerik.WinControls.UI.RadRadioButton();
            this.rdVision = new Telerik.WinControls.UI.RadCheckBox();
            this.rdRespi = new Telerik.WinControls.UI.RadCheckBox();
            this.radHNO = new Telerik.WinControls.UI.RadRadioButton();
            this.radHSI = new Telerik.WinControls.UI.RadRadioButton();
            this.rdHPNO = new Telerik.WinControls.UI.RadRadioButton();
            this.rdHPSI = new Telerik.WinControls.UI.RadRadioButton();
            this.rdGloveNO = new Telerik.WinControls.UI.RadRadioButton();
            this.rdGloveSI = new Telerik.WinControls.UI.RadRadioButton();
            this.rdFPNO = new Telerik.WinControls.UI.RadRadioButton();
            this.rdFPSI = new Telerik.WinControls.UI.RadRadioButton();
            this.rdAppNO = new Telerik.WinControls.UI.RadRadioButton();
            this.rdAppSI = new Telerik.WinControls.UI.RadRadioButton();
            this.rdHearing = new Telerik.WinControls.UI.RadCheckBox();
            this.rdHeadP = new Telerik.WinControls.UI.RadCheckBox();
            this.rdGlove = new Telerik.WinControls.UI.RadCheckBox();
            this.rdFP = new Telerik.WinControls.UI.RadCheckBox();
            this.rdApp = new Telerik.WinControls.UI.RadCheckBox();
            this.rdIP = new Telerik.WinControls.UI.RadCheckBox();
            this.radPageViewPage8 = new Telerik.WinControls.UI.RadPageViewPage();
            this.radGroupBox55 = new Telerik.WinControls.UI.RadGroupBox();
            this.rdOKCPNO = new Telerik.WinControls.UI.RadRadioButton();
            this.OKCPSI = new Telerik.WinControls.UI.RadRadioButton();
            this.rdOKCP = new Telerik.WinControls.UI.RadCheckBox();
            this.radGroupBox56 = new Telerik.WinControls.UI.RadGroupBox();
            this.rdSPPNO = new Telerik.WinControls.UI.RadRadioButton();
            this.rdSPPSI = new Telerik.WinControls.UI.RadRadioButton();
            this.rdSPP = new Telerik.WinControls.UI.RadCheckBox();
            this.radDock2 = new Telerik.WinControls.UI.Docking.RadDock();
            this.toolWindow3 = new Telerik.WinControls.UI.Docking.ToolWindow();
            this.proyectsTV = new Telerik.WinControls.UI.RadTreeView();
            this.toolTabStrip2 = new Telerik.WinControls.UI.Docking.ToolTabStrip();
            this.documentContainer2 = new Telerik.WinControls.UI.Docking.DocumentContainer();
            this.detailsToolWindow = new Telerik.WinControls.UI.Docking.ToolWindow();
            this.detailsPageView = new Telerik.WinControls.UI.RadPageView();
            this.generalPageViewPage = new Telerik.WinControls.UI.RadPageViewPage();
            this.ownerDropDownList = new Telerik.WinControls.UI.RadDropDownList();
            this.ownerLabel = new Telerik.WinControls.UI.RadLabel();
            this.idSpinEditor = new Telerik.WinControls.UI.RadSpinEditor();
            this.priorityDropDownList = new Telerik.WinControls.UI.RadDropDownList();
            this.dateDateTimePicker = new Telerik.WinControls.UI.RadDateTimePicker();
            this.statusDropDownList = new Telerik.WinControls.UI.RadDropDownList();
            this.titleTextBox = new Telerik.WinControls.UI.RadTextBox();
            this.priorityLabel = new Telerik.WinControls.UI.RadLabel();
            this.dateLabel = new Telerik.WinControls.UI.RadLabel();
            this.statusLabel = new Telerik.WinControls.UI.RadLabel();
            this.titleLabel = new Telerik.WinControls.UI.RadLabel();
            this.idLabel = new Telerik.WinControls.UI.RadLabel();
            this.descriptionPageViewPage = new Telerik.WinControls.UI.RadPageViewPage();
            this.descriptionTextBox = new Telerik.WinControls.UI.RadTextBox();
            this.stepsToReproducePageViewPage = new Telerik.WinControls.UI.RadPageViewPage();
            this.stepsToReproduceTextBox = new Telerik.WinControls.UI.RadTextBox();
            this.documentWindow2 = new Telerik.WinControls.UI.Docking.DocumentWindow();
            this.radGridView1 = new Telerik.WinControls.UI.RadGridView();
            this.documentWindow1 = new Telerik.WinControls.UI.Docking.DocumentWindow();
            this.bugsGrid = new Telerik.WinControls.UI.RadGridView();
            this.projectsToolWindow = new Telerik.WinControls.UI.Docking.ToolWindow();
            this.projectsTreeView = new Telerik.WinControls.UI.RadTreeView();
            this.telerikMetroBlueTheme1 = new Telerik.WinControls.Themes.TelerikMetroBlueTheme();
            this.radSplitContainer1 = new Telerik.WinControls.UI.RadSplitContainer();
            this.radSplitContainer2 = new Telerik.WinControls.UI.RadSplitContainer();
            this.radButtonElement1 = new Telerik.WinControls.UI.RadButtonElement();
            this.ribbonTab1 = new Telerik.WinControls.UI.RibbonTab();
            this.radRibbonBar1 = new Telerik.WinControls.UI.RadRibbonBar();
            this.toolTabStrip3 = new Telerik.WinControls.UI.Docking.ToolTabStrip();
            this.toolTabStrip5 = new Telerik.WinControls.UI.Docking.ToolTabStrip();
            this.radThemeManager1 = new Telerik.WinControls.RadThemeManager();
            this.toolWindow2 = new Telerik.WinControls.UI.Docking.ToolWindow();
            this.proyectTV = new Telerik.WinControls.UI.RadTreeView();
            this.object_fef4475c_6fff_4e7b_b9a3_68b71b26348d = new Telerik.WinControls.RootRadElement();
            this.telerikMetroTheme1 = new Telerik.WinControls.Themes.TelerikMetroTheme();
            this.windows7Theme1 = new Telerik.WinControls.Themes.Windows7Theme();
            ((System.ComponentModel.ISupportInitialize)(this.radStatusStrip1)).BeginInit();
            this.panel1.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.TabPrincipal)).BeginInit();
            this.TabPrincipal.SuspendLayout();
            this.tabInicio.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.radPageView4)).BeginInit();
            this.radPageView4.SuspendLayout();
            this.radPageViewPage28.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.radChart1)).BeginInit();
            this.radPageViewPage29.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.radChart2)).BeginInit();
            this.tabImportSellout.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.radScrollablePanel2)).BeginInit();
            this.radScrollablePanel2.PanelContainer.SuspendLayout();
            this.radScrollablePanel2.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.radButton2)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radButton3)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radButton4)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radButton5)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radTextBox2)).BeginInit();
            this.radTextBox2.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.radGroupBox4)).BeginInit();
            this.radGroupBox4.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.radButton6)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel7)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel8)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radGroupBox5)).BeginInit();
            this.radGroupBox5.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.radButton7)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel9)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel10)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radButton8)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radGroupBox6)).BeginInit();
            this.radGroupBox6.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.radButton9)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel11)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel12)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.gridSellout)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.gridSellout.MasterTemplate)).BeginInit();
            this.tabImportCliente.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.radScrollablePanel1)).BeginInit();
            this.radScrollablePanel1.PanelContainer.SuspendLayout();
            this.radScrollablePanel1.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.radButton12)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radGroupBox1)).BeginInit();
            this.radGroupBox1.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.radButton14)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel2)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radGroupBox2)).BeginInit();
            this.radGroupBox2.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel3)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel4)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radGroupBox3)).BeginInit();
            this.radGroupBox3.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.radButton16)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel5)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel6)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radGridView2)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radGridView2.MasterTemplate)).BeginInit();
            this.tabClientes.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.radGroupBox25)).BeginInit();
            this.radGroupBox25.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.btEditar)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.btSelect)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.btDeselect)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.btVerificarCli)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.btLimpiar)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.btSalir)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radGridView3)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radGridView3.MasterTemplate)).BeginInit();
            this.tabAgruparC.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.radGroupBox7)).BeginInit();
            this.radGroupBox7.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.radGridView4)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radGridView4.MasterTemplate)).BeginInit();
            this.tabMasterP.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.btLimpiarMP)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.btAbrirMP)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.txtDir)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel13)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radGridView5)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radGridView5.MasterTemplate)).BeginInit();
            this.tabProductosE.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.radGridView6)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radGridView6.MasterTemplate)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radGroupBox8)).BeginInit();
            this.radGroupBox8.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.cbDist)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.cbPais)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel14)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel15)).BeginInit();
            this.tabAgruparP.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.btNuevoAP)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.btActualAP)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radGridView13)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radGridView13.MasterTemplate)).BeginInit();
            this.tabDistribuidor.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.btLimpiarD)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.btKam)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radGridView7)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radGridView7.MasterTemplate)).BeginInit();
            this.tabKAM.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.btNuevo)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radGridView8)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radGridView8.MasterTemplate)).BeginInit();
            this.tabPais.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.radGridView9)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radGridView9.MasterTemplate)).BeginInit();
            this.tabSegmento.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.btNew)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radGridView10)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radGridView10.MasterTemplate)).BeginInit();
            this.tabConglomerados.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.btActualCon)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radGridView11)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radGridView11.MasterTemplate)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.txtGrupoCliente)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel17)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel16)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.cbGAN)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radGroupBox9)).BeginInit();
            this.radGroupBox9.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.cbSegmento)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.cbPlataformas)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radRadioButton5)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radRadioButton4)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radRadioButton3)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radRadioButton2)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radRadioButton1)).BeginInit();
            this.tabCuentasGlobales.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.radGridView12)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radGridView12.MasterTemplate)).BeginInit();
            this.tabCalculoABC.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.radPageView1)).BeginInit();
            this.radPageView1.SuspendLayout();
            this.radPageViewPage18.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.btCalcularD)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radGroupBox10)).BeginInit();
            this.radGroupBox10.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.radTextBox1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel22)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel21)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel20)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.cbHasta)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.cbDesde)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel19)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel18)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.cbDistD)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.cbPaisDis)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radRadioButton7)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radRadioButton6)).BeginInit();
            this.radPageViewPage19.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.btCalcularP)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radGroupBox11)).BeginInit();
            this.radGroupBox11.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.txtMesP)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel23)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel24)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel25)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.cbHastaP)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.cbDesdeP)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel27)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.cbPaisP)).BeginInit();
            this.radPageViewPage20.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.btCalcularR)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radGroupBox12)).BeginInit();
            this.radGroupBox12.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.txtMesR)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel28)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel29)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel30)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.cbHastaR)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.cbDesdeR)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel31)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.cbRegion)).BeginInit();
            this.radPageViewPage21.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.btCalcularSR)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radGroupBox13)).BeginInit();
            this.radGroupBox13.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.txtMesSR)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel33)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel34)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel35)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.cbHastaSR)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.cbDesdeSR)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel37)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.cbSubReg)).BeginInit();
            this.tabCalculoOP.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.radPageView2)).BeginInit();
            this.radPageView2.SuspendLayout();
            this.radPageViewPage22.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.radGroupBox17)).BeginInit();
            this.radGroupBox17.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.radRadioButton8)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radRadioButton9)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radGroupBox14)).BeginInit();
            this.radGroupBox14.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.btProcesarOP)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel36)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.cbSecPR)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel38)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel39)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.cbDistPR)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.cbPaisPR)).BeginInit();
            this.radPageViewPage23.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.radGroupBox16)).BeginInit();
            this.radGroupBox16.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.rdDist)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.rdPais)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radGroupBox15)).BeginInit();
            this.radGroupBox15.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.btProcesarPP)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel26)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.cbSecPP)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel32)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel40)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.cbDistPP)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.cbPaisPP)).BeginInit();
            this.tabCalculoKPI.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.radPageView3)).BeginInit();
            this.radPageView3.SuspendLayout();
            this.radPageViewPage24.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.radGroupBox18)).BeginInit();
            this.radGroupBox18.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.radRadioButton10)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radRadioButton11)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radGroupBox19)).BeginInit();
            this.radGroupBox19.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.radButton1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel41)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radDropDownList1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel42)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel43)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radDropDownList2)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radDropDownList3)).BeginInit();
            this.radPageViewPage25.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.radGroupBox20)).BeginInit();
            this.radGroupBox20.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.radRadioButton12)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radRadioButton13)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radGroupBox21)).BeginInit();
            this.radGroupBox21.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.radButton10)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel44)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radDropDownList4)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel45)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel46)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radDropDownList5)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radDropDownList6)).BeginInit();
            this.radPageViewPage26.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.radGroupBox22)).BeginInit();
            this.radGroupBox22.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.radRadioButton14)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radRadioButton15)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radGroupBox23)).BeginInit();
            this.radGroupBox23.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.radButton11)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel47)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radDropDownList7)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel48)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel49)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radDropDownList8)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radDropDownList9)).BeginInit();
            this.radPageViewPage27.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.btProcesarS)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radGroupBox24)).BeginInit();
            this.radGroupBox24.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.radRadioButton18)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radRadioButton19)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radRadioButton16)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radRadioButton17)).BeginInit();
            this.tabImportSellin.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.radScrollablePanel3)).BeginInit();
            this.radScrollablePanel3.PanelContainer.SuspendLayout();
            this.radScrollablePanel3.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.radButton13)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radButton15)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radButton17)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radButton18)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radGroupBox26)).BeginInit();
            this.radGroupBox26.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.radButton19)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel50)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel51)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radGroupBox27)).BeginInit();
            this.radGroupBox27.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.radButton20)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel52)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel53)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radButton21)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radGroupBox28)).BeginInit();
            this.radGroupBox28.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.radButton22)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel54)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel55)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radGridView14)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radGridView14.MasterTemplate)).BeginInit();
            this.radPageViewPage2.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.radGroupBox34)).BeginInit();
            this.radGroupBox34.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel59)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel58)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radTextBox6)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radTextBox5)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radGroupBox33)).BeginInit();
            this.radGroupBox33.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel57)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel56)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radTextBox4)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radTextBox3)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.btCancel)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.btReiniciar)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.btFiltrar)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radGroupBox32)).BeginInit();
            this.radGroupBox32.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.radCheckBox3)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radCheckBox4)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radCheckBox5)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radGroupBox31)).BeginInit();
            this.radGroupBox31.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.rdC)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.rdB)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.rdA)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radGroupBox30)).BeginInit();
            this.radGroupBox30.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.rdOther)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.rdNA)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.rdNEC)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.rdOffice)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.rdManufact)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.rdLodging)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.rdHighT)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.rdHeatlhC)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.rdGroceryR)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.rdGovernment)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.rdFoodP)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.rdFoodS)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.rdEducation)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radGroupBox29)).BeginInit();
            this.radGroupBox29.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.radCheckBox2)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radCheckBox1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radPageView5)).BeginInit();
            this.radPageView5.SuspendLayout();
            this.radPageViewPage1.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.radGroupBox40)).BeginInit();
            this.radGroupBox40.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.rdPA)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.rdSV)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.rdCR)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.rdNI)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.rdHN)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.rdGT)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.rdCA)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radGroupBox39)).BeginInit();
            this.radGroupBox39.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.rdSuriname)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.rdPBJ)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.rdTrinidadT)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.rdRD)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.rdCaribe)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radGroupBox37)).BeginInit();
            this.radGroupBox37.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.rdChile)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.rdParaguay)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.rdArgentina)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.rdAustral)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radGroupBox38)).BeginInit();
            this.radGroupBox38.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.rdBrasil)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radGroupBox36)).BeginInit();
            this.radGroupBox36.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.rdPeru)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.rdEcuador)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.rdColombia)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.rdVenezuela)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.rdAndino)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radGroupBox35)).BeginInit();
            this.radGroupBox35.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.rdLAO)).BeginInit();
            this.radPageViewPage3.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.radGroupBox42)).BeginInit();
            this.radGroupBox42.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.rdHSNO)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.rdHSSI)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.rdHandS)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radGroupBox41)).BeginInit();
            this.radGroupBox41.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.rdSTNO)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.rdSTSI)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.rdCNO)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radRadioButton22)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.rdBUNO)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.rdBUSI)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.rdBNO)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.rdBSI)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.rdBBNO)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.rdBBSI)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.rdST)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.rdCassette)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.rdBulk)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.rdBottles)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.rdBIB)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.rdSkinCare)).BeginInit();
            this.radPageViewPage4.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.radGroupBox43)).BeginInit();
            this.radGroupBox43.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.rdKRNO)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.rdKRSI)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.rdHRTNO)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.rdHRTSI)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.rdFTNO)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.rdFTSI)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.rdCTPNO)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.rdCTPSI)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.rdKR)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.rdHRT)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.rdFT)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.rdCPT)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radCheckBox11)).BeginInit();
            this.radPageViewPage5.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.radGroupBox47)).BeginInit();
            this.radGroupBox47.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.radCheckBox16)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radGroupBox46)).BeginInit();
            this.radGroupBox46.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.rdTDNO)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.rdTDSI)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.rdPLNO)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.rdPLSI)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.rdPDNO)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.rdPDSI)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.rdPBNO)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.rdPBSI)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.rdTD)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.rdPL)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.rdPD)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.rdPB)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.rdTT)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radGroupBox45)).BeginInit();
            this.radGroupBox45.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.radRadioButton20)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radRadioButton21)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radRadioButton23)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radRadioButton24)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radRadioButton25)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radRadioButton26)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radCheckBox6)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radCheckBox7)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radCheckBox8)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radCheckBox9)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radGroupBox44)).BeginInit();
            this.radGroupBox44.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.rdSRBNO)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.rdSRBSI)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.rdJRBNO)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.rdJRBSI)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.rdFBathNo)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.rdFBathSi)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.rdSRB)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.rdJRB)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.rdFBath)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.rdBath)).BeginInit();
            this.radPageViewPage6.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.radGroupBox51)).BeginInit();
            this.radGroupBox51.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.rdSWNO)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.rdSWSI)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.rdSW)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radGroupBox50)).BeginInit();
            this.radGroupBox50.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.rdOWNO)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.rdOWSI)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.rdOW)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radGroupBox49)).BeginInit();
            this.radGroupBox49.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.rdEUWNO)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.rdEUWSI)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.rdEUW)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radGroupBox48)).BeginInit();
            this.radGroupBox48.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.rdLUWNO)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.rdLUWSI)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.rdLUW)).BeginInit();
            this.radPageViewPage7.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.radGroupBox54)).BeginInit();
            this.radGroupBox54.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.rdWHNO)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.rdWHSI)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.rdWANO)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.rdWASI)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.rdWH)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.rdWA)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radCheckBox21)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radGroupBox53)).BeginInit();
            this.radGroupBox53.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.rdOISNO)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.rdOISSI)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.rdSANO)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.rdSASI)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radHSNNO)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radHSSI)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.rdCDCNO)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.rdCDCSI)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.rdOIS)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.rdSA)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radHS)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.rdCDC)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radCheckBox15)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radGroupBox52)).BeginInit();
            this.radGroupBox52.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.radVNO)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radRNO)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radVSI)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radRSI)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.rdVision)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.rdRespi)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radHNO)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radHSI)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.rdHPNO)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.rdHPSI)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.rdGloveNO)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.rdGloveSI)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.rdFPNO)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.rdFPSI)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.rdAppNO)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.rdAppSI)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.rdHearing)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.rdHeadP)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.rdGlove)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.rdFP)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.rdApp)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.rdIP)).BeginInit();
            this.radPageViewPage8.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.radGroupBox55)).BeginInit();
            this.radGroupBox55.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.rdOKCPNO)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.OKCPSI)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.rdOKCP)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radGroupBox56)).BeginInit();
            this.radGroupBox56.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.rdSPPNO)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.rdSPPSI)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.rdSPP)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radDock2)).BeginInit();
            this.radDock2.SuspendLayout();
            this.toolWindow3.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.proyectsTV)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.toolTabStrip2)).BeginInit();
            this.toolTabStrip2.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.documentContainer2)).BeginInit();
            this.detailsToolWindow.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.detailsPageView)).BeginInit();
            this.detailsPageView.SuspendLayout();
            this.generalPageViewPage.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.ownerDropDownList)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.ownerLabel)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.idSpinEditor)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.priorityDropDownList)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.dateDateTimePicker)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.statusDropDownList)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.titleTextBox)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.priorityLabel)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.dateLabel)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.statusLabel)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.titleLabel)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.idLabel)).BeginInit();
            this.descriptionPageViewPage.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.descriptionTextBox)).BeginInit();
            this.stepsToReproducePageViewPage.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.stepsToReproduceTextBox)).BeginInit();
            this.documentWindow2.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.radGridView1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radGridView1.MasterTemplate)).BeginInit();
            this.documentWindow1.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.bugsGrid)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.bugsGrid.MasterTemplate)).BeginInit();
            this.projectsToolWindow.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.projectsTreeView)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radSplitContainer1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radSplitContainer2)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radRibbonBar1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.toolTabStrip3)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.toolTabStrip5)).BeginInit();
            this.toolWindow2.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.proyectTV)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
            this.SuspendLayout();
            // 
            // radStatusStrip1
            // 
            this.radStatusStrip1.AutoSize = true;
            this.radStatusStrip1.LayoutStyle = Telerik.WinControls.UI.RadStatusBarLayoutStyle.Stack;
            this.radStatusStrip1.Location = new System.Drawing.Point(0, 883);
            this.radStatusStrip1.Name = "radStatusStrip1";
            this.radStatusStrip1.Size = new System.Drawing.Size(1444, 24);
            this.radStatusStrip1.SizingGrip = false;
            this.radStatusStrip1.TabIndex = 1;
            this.radStatusStrip1.Text = "radStatusStrip1";
            // 
            // panel1
            // 
            this.panel1.Controls.Add(this.TabPrincipal);
            this.panel1.Controls.Add(this.radDock2);
            this.panel1.Dock = System.Windows.Forms.DockStyle.Fill;
            this.panel1.Location = new System.Drawing.Point(0, 154);
            this.panel1.Name = "panel1";
            this.panel1.Size = new System.Drawing.Size(1444, 729);
            this.panel1.TabIndex = 2;
            // 
            // TabPrincipal
            // 
            this.TabPrincipal.Controls.Add(this.tabInicio);
            this.TabPrincipal.Controls.Add(this.tabImportSellout);
            this.TabPrincipal.Controls.Add(this.tabImportCliente);
            this.TabPrincipal.Controls.Add(this.tabClientes);
            this.TabPrincipal.Controls.Add(this.tabAgruparC);
            this.TabPrincipal.Controls.Add(this.tabMasterP);
            this.TabPrincipal.Controls.Add(this.tabProductosE);
            this.TabPrincipal.Controls.Add(this.tabAgruparP);
            this.TabPrincipal.Controls.Add(this.tabDistribuidor);
            this.TabPrincipal.Controls.Add(this.tabKAM);
            this.TabPrincipal.Controls.Add(this.tabPais);
            this.TabPrincipal.Controls.Add(this.tabSegmento);
            this.TabPrincipal.Controls.Add(this.tabNuevosSegmentos);
            this.TabPrincipal.Controls.Add(this.tabConglomerados);
            this.TabPrincipal.Controls.Add(this.tabCuentasGlobales);
            this.TabPrincipal.Controls.Add(this.radPageViewPage14);
            this.TabPrincipal.Controls.Add(this.tabCalculoABC);
            this.TabPrincipal.Controls.Add(this.tabCalculoOP);
            this.TabPrincipal.Controls.Add(this.tabCalculoKPI);
            this.TabPrincipal.Controls.Add(this.tabImportSellin);
            this.TabPrincipal.Controls.Add(this.radPageViewPage2);
            this.TabPrincipal.Location = new System.Drawing.Point(260, 23);
            this.TabPrincipal.Name = "TabPrincipal";
            this.TabPrincipal.SelectedPage = this.tabInicio;
            this.TabPrincipal.Size = new System.Drawing.Size(1180, 660);
            this.TabPrincipal.TabIndex = 1;
            this.TabPrincipal.Text = "Importar Sellout";
            this.TabPrincipal.ThemeName = "TelerikMetroBlue";
            ((Telerik.WinControls.UI.RadPageViewStripButtonElement)(this.TabPrincipal.GetChildAt(0).GetChildAt(0).GetChildAt(1).GetChildAt(0))).Text = "";
            ((Telerik.WinControls.UI.RadPageViewStripButtonElement)(this.TabPrincipal.GetChildAt(0).GetChildAt(0).GetChildAt(1).GetChildAt(0))).Enabled = false;
            // 
            // tabInicio
            // 
            this.tabInicio.Controls.Add(this.radPageView4);
            this.tabInicio.Location = new System.Drawing.Point(5, 31);
            this.tabInicio.Name = "tabInicio";
            this.tabInicio.Size = new System.Drawing.Size(1170, 624);
            this.tabInicio.Text = "Inicio";
            // 
            // radPageView4
            // 
            this.radPageView4.Controls.Add(this.radPageViewPage28);
            this.radPageView4.Controls.Add(this.radPageViewPage29);
            this.radPageView4.Location = new System.Drawing.Point(3, 3);
            this.radPageView4.Name = "radPageView4";
            this.radPageView4.SelectedPage = this.radPageViewPage29;
            this.radPageView4.Size = new System.Drawing.Size(1164, 568);
            this.radPageView4.TabIndex = 0;
            this.radPageView4.Text = "radPageView4";
            // 
            // radPageViewPage28
            // 
            this.radPageViewPage28.Controls.Add(this.radChart1);
            this.radPageViewPage28.Location = new System.Drawing.Point(10, 37);
            this.radPageViewPage28.Name = "radPageViewPage28";
            this.radPageViewPage28.Size = new System.Drawing.Size(1071, 428);
            this.radPageViewPage28.Text = "Indicadores";
            // 
            // radChart1
            // 
            this.radChart1.DefaultType = Telerik.Charting.ChartSeriesType.Pie;
            this.radChart1.Location = new System.Drawing.Point(120, 3);
            this.radChart1.Name = "radChart1";
            this.radChart1.PlotArea.XAxis.MinValue = 1D;
            chartSeries1.Appearance.FillStyle.MainColor = System.Drawing.Color.FromArgb(((int)(((byte)(213)))), ((int)(((byte)(247)))), ((int)(((byte)(255)))));
            chartSeries1.Name = "Series 1";
            chartSeries1.Type = Telerik.Charting.ChartSeriesType.Pie;
            chartSeries2.Appearance.FillStyle.MainColor = System.Drawing.Color.FromArgb(((int)(((byte)(218)))), ((int)(((byte)(254)))), ((int)(((byte)(122)))));
            chartSeries2.Name = "Series 2";
            chartSeries2.Type = Telerik.Charting.ChartSeriesType.Pie;
            this.radChart1.Series.AddRange(new Telerik.Charting.ChartSeries[] {
            chartSeries1,
            chartSeries2});
            this.radChart1.Size = new System.Drawing.Size(805, 422);
            this.radChart1.TabIndex = 1;
            // 
            // radPageViewPage29
            // 
            this.radPageViewPage29.Controls.Add(this.radChart2);
            this.radPageViewPage29.Location = new System.Drawing.Point(10, 37);
            this.radPageViewPage29.Name = "radPageViewPage29";
            this.radPageViewPage29.Size = new System.Drawing.Size(1143, 520);
            this.radPageViewPage29.Text = "Datos Requeridos";
            // 
            // radChart2
            // 
            this.radChart2.ChartTitle.TextBlock.Text = "Datos Requeridos";
            this.radChart2.DefaultType = Telerik.Charting.ChartSeriesType.Line;
            this.radChart2.Location = new System.Drawing.Point(118, 3);
            this.radChart2.Name = "radChart2";
            this.radChart2.PlotArea.XAxis.MinValue = 1D;
            this.radChart2.PlotArea.YAxis.MaxValue = 100D;
            this.radChart2.PlotArea.YAxis.Step = 10D;
            chartSeries3.Appearance.FillStyle.MainColor = System.Drawing.Color.FromArgb(((int)(((byte)(213)))), ((int)(((byte)(247)))), ((int)(((byte)(255)))));
            chartSeries3.Name = "Series 1";
            chartSeries3.Type = Telerik.Charting.ChartSeriesType.Line;
            chartSeries4.Appearance.FillStyle.MainColor = System.Drawing.Color.FromArgb(((int)(((byte)(218)))), ((int)(((byte)(254)))), ((int)(((byte)(122)))));
            chartSeries4.Name = "Series 2";
            chartSeries4.Type = Telerik.Charting.ChartSeriesType.Line;
            this.radChart2.Series.AddRange(new Telerik.Charting.ChartSeries[] {
            chartSeries3,
            chartSeries4});
            this.radChart2.Size = new System.Drawing.Size(776, 409);
            this.radChart2.TabIndex = 0;
            // 
            // tabImportSellout
            // 
            this.tabImportSellout.Controls.Add(this.radScrollablePanel2);
            this.tabImportSellout.Enabled = false;
            this.tabImportSellout.Location = new System.Drawing.Point(5, 31);
            this.tabImportSellout.Name = "tabImportSellout";
            this.tabImportSellout.Size = new System.Drawing.Size(1170, 624);
            this.tabImportSellout.Text = "Importar Sellout";
            // 
            // radScrollablePanel2
            // 
            this.radScrollablePanel2.AutoScrollMargin = new System.Drawing.Size(0, 0);
            this.radScrollablePanel2.AutoScrollMinSize = new System.Drawing.Size(0, 0);
            this.radScrollablePanel2.Location = new System.Drawing.Point(14, 3);
            this.radScrollablePanel2.Name = "radScrollablePanel2";
            this.radScrollablePanel2.Padding = new System.Windows.Forms.Padding(1);
            // 
            // radScrollablePanel2.PanelContainer
            // 
            this.radScrollablePanel2.PanelContainer.AutoScroll = true;
            this.radScrollablePanel2.PanelContainer.Controls.Add(this.radButton2);
            this.radScrollablePanel2.PanelContainer.Controls.Add(this.radButton3);
            this.radScrollablePanel2.PanelContainer.Controls.Add(this.radButton4);
            this.radScrollablePanel2.PanelContainer.Controls.Add(this.radButton5);
            this.radScrollablePanel2.PanelContainer.Controls.Add(this.radTextBox2);
            this.radScrollablePanel2.PanelContainer.Controls.Add(this.radGroupBox4);
            this.radScrollablePanel2.PanelContainer.Controls.Add(this.radGroupBox5);
            this.radScrollablePanel2.PanelContainer.Controls.Add(this.radGroupBox6);
            this.radScrollablePanel2.PanelContainer.Controls.Add(this.gridSellout);
            this.radScrollablePanel2.PanelContainer.Dock = System.Windows.Forms.DockStyle.Fill;
            this.radScrollablePanel2.PanelContainer.Location = new System.Drawing.Point(1, 1);
            this.radScrollablePanel2.PanelContainer.Name = "PanelContainer";
            this.radScrollablePanel2.PanelContainer.Size = new System.Drawing.Size(1113, 554);
            this.radScrollablePanel2.PanelContainer.TabIndex = 0;
            // 
            // 
            // 
            this.radScrollablePanel2.RootElement.Padding = new System.Windows.Forms.Padding(1);
            this.radScrollablePanel2.Size = new System.Drawing.Size(1115, 556);
            this.radScrollablePanel2.TabIndex = 3;
            this.radScrollablePanel2.Text = "radScrollablePanel2";
            // 
            // radButton2
            // 
            this.radButton2.Location = new System.Drawing.Point(993, 119);
            this.radButton2.Name = "radButton2";
            this.radButton2.Size = new System.Drawing.Size(99, 24);
            this.radButton2.TabIndex = 19;
            this.radButton2.Text = "Paises";
            this.radButton2.ThemeName = "TelerikMetroBlue";
            // 
            // radButton3
            // 
            this.radButton3.Location = new System.Drawing.Point(993, 89);
            this.radButton3.Name = "radButton3";
            this.radButton3.Size = new System.Drawing.Size(99, 24);
            this.radButton3.TabIndex = 19;
            this.radButton3.Text = "Distribuidor";
            this.radButton3.ThemeName = "TelerikMetroBlue";
            // 
            // radButton4
            // 
            this.radButton4.Location = new System.Drawing.Point(993, 59);
            this.radButton4.Name = "radButton4";
            this.radButton4.Size = new System.Drawing.Size(99, 24);
            this.radButton4.TabIndex = 0;
            this.radButton4.Text = "Productos";
            this.radButton4.ThemeName = "TelerikMetroBlue";
            // 
            // radButton5
            // 
            this.radButton5.Location = new System.Drawing.Point(993, 29);
            this.radButton5.Name = "radButton5";
            this.radButton5.Size = new System.Drawing.Size(99, 24);
            this.radButton5.TabIndex = 18;
            this.radButton5.Text = "Clientes";
            this.radButton5.ThemeName = "TelerikMetroBlue";
            // 
            // radTextBox2
            // 
            this.radTextBox2.Controls.Add(this.textBox4);
            this.radTextBox2.Controls.Add(this.textBox3);
            this.radTextBox2.Location = new System.Drawing.Point(642, 29);
            this.radTextBox2.Multiline = true;
            this.radTextBox2.Name = "radTextBox2";
            // 
            // 
            // 
            this.radTextBox2.RootElement.StretchVertically = true;
            this.radTextBox2.Size = new System.Drawing.Size(332, 183);
            this.radTextBox2.TabIndex = 17;
            this.radTextBox2.TabStop = false;
            // 
            // textBox4
            // 
            this.textBox4.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
            this.textBox4.Location = new System.Drawing.Point(184, 18);
            this.textBox4.Multiline = true;
            this.textBox4.Name = "textBox4";
            this.textBox4.ReadOnly = true;
            this.textBox4.Size = new System.Drawing.Size(126, 147);
            this.textBox4.TabIndex = 25;
            // 
            // textBox3
            // 
            this.textBox3.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(224)))), ((int)(((byte)(192)))));
            this.textBox3.Location = new System.Drawing.Point(23, 18);
            this.textBox3.Multiline = true;
            this.textBox3.Name = "textBox3";
            this.textBox3.ReadOnly = true;
            this.textBox3.Size = new System.Drawing.Size(142, 146);
            this.textBox3.TabIndex = 24;
            // 
            // radGroupBox4
            // 
            this.radGroupBox4.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
            this.radGroupBox4.BackColor = System.Drawing.Color.White;
            this.radGroupBox4.Controls.Add(this.radButton6);
            this.radGroupBox4.Controls.Add(this.radLabel7);
            this.radGroupBox4.Controls.Add(this.radLabel8);
            this.radGroupBox4.FooterImageIndex = -1;
            this.radGroupBox4.FooterImageKey = "";
            this.radGroupBox4.HeaderImageIndex = -1;
            this.radGroupBox4.HeaderImageKey = "";
            this.radGroupBox4.HeaderMargin = new System.Windows.Forms.Padding(0);
            this.radGroupBox4.HeaderText = "";
            this.radGroupBox4.Location = new System.Drawing.Point(446, 29);
            this.radGroupBox4.Name = "radGroupBox4";
            this.radGroupBox4.Padding = new System.Windows.Forms.Padding(2, 18, 2, 2);
            // 
            // 
            // 
            this.radGroupBox4.RootElement.Padding = new System.Windows.Forms.Padding(2, 18, 2, 2);
            this.radGroupBox4.Size = new System.Drawing.Size(190, 183);
            this.radGroupBox4.TabIndex = 16;
            // 
            // radButton6
            // 
            this.radButton6.Location = new System.Drawing.Point(44, 140);
            this.radButton6.Name = "radButton6";
            this.radButton6.Size = new System.Drawing.Size(99, 24);
            this.radButton6.TabIndex = 8;
            this.radButton6.Text = "Transferir";
            this.radButton6.ThemeName = "TelerikMetro";
            // 
            // radLabel7
            // 
            this.radLabel7.Location = new System.Drawing.Point(70, 29);
            this.radLabel7.Name = "radLabel7";
            this.radLabel7.Size = new System.Drawing.Size(46, 18);
            this.radLabel7.TabIndex = 4;
            this.radLabel7.Text = "Paso #3";
            // 
            // radLabel8
            // 
            this.radLabel8.Location = new System.Drawing.Point(63, 45);
            this.radLabel8.Name = "radLabel8";
            this.radLabel8.Size = new System.Drawing.Size(53, 18);
            this.radLabel8.TabIndex = 7;
            this.radLabel8.Text = "Transferir";
            // 
            // radGroupBox5
            // 
            this.radGroupBox5.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
            this.radGroupBox5.BackColor = System.Drawing.Color.White;
            this.radGroupBox5.Controls.Add(this.radButton7);
            this.radGroupBox5.Controls.Add(this.radLabel9);
            this.radGroupBox5.Controls.Add(this.radLabel10);
            this.radGroupBox5.Controls.Add(this.radButton8);
            this.radGroupBox5.FooterImageIndex = -1;
            this.radGroupBox5.FooterImageKey = "";
            this.radGroupBox5.ForeColor = System.Drawing.Color.Black;
            this.radGroupBox5.HeaderImageIndex = -1;
            this.radGroupBox5.HeaderImageKey = "";
            this.radGroupBox5.HeaderMargin = new System.Windows.Forms.Padding(0);
            this.radGroupBox5.HeaderText = "";
            this.radGroupBox5.Location = new System.Drawing.Point(215, 29);
            this.radGroupBox5.Name = "radGroupBox5";
            this.radGroupBox5.Padding = new System.Windows.Forms.Padding(2, 18, 2, 2);
            // 
            // 
            // 
            this.radGroupBox5.RootElement.Padding = new System.Windows.Forms.Padding(2, 18, 2, 2);
            this.radGroupBox5.Size = new System.Drawing.Size(225, 183);
            this.radGroupBox5.TabIndex = 15;
            // 
            // radButton7
            // 
            this.radButton7.Location = new System.Drawing.Point(135, 140);
            this.radButton7.Name = "radButton7";
            this.radButton7.Size = new System.Drawing.Size(81, 24);
            this.radButton7.TabIndex = 10;
            this.radButton7.Text = "Procesar";
            this.radButton7.ThemeName = "TelerikMetro";
            // 
            // radLabel9
            // 
            this.radLabel9.Location = new System.Drawing.Point(82, 29);
            this.radLabel9.Name = "radLabel9";
            this.radLabel9.Size = new System.Drawing.Size(46, 18);
            this.radLabel9.TabIndex = 3;
            this.radLabel9.Text = "Paso #2";
            // 
            // radLabel10
            // 
            this.radLabel10.Location = new System.Drawing.Point(47, 45);
            this.radLabel10.Name = "radLabel10";
            this.radLabel10.Size = new System.Drawing.Size(133, 18);
            this.radLabel10.TabIndex = 6;
            this.radLabel10.Text = "Eliminar Datos Anteriores";
            // 
            // radButton8
            // 
            this.radButton8.Location = new System.Drawing.Point(26, 140);
            this.radButton8.Name = "radButton8";
            this.radButton8.Size = new System.Drawing.Size(91, 24);
            this.radButton8.TabIndex = 9;
            this.radButton8.Text = "Verificar";
            this.radButton8.ThemeName = "TelerikMetro";
            // 
            // radGroupBox6
            // 
            this.radGroupBox6.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
            this.radGroupBox6.BackColor = System.Drawing.Color.White;
            this.radGroupBox6.Controls.Add(this.radButton9);
            this.radGroupBox6.Controls.Add(this.radLabel11);
            this.radGroupBox6.Controls.Add(this.radLabel12);
            this.radGroupBox6.FooterImageIndex = -1;
            this.radGroupBox6.FooterImageKey = "";
            this.radGroupBox6.HeaderImageIndex = -1;
            this.radGroupBox6.HeaderImageKey = "";
            this.radGroupBox6.HeaderMargin = new System.Windows.Forms.Padding(0);
            this.radGroupBox6.HeaderText = "";
            this.radGroupBox6.Location = new System.Drawing.Point(19, 29);
            this.radGroupBox6.Name = "radGroupBox6";
            this.radGroupBox6.Padding = new System.Windows.Forms.Padding(2, 18, 2, 2);
            // 
            // 
            // 
            this.radGroupBox6.RootElement.Padding = new System.Windows.Forms.Padding(2, 18, 2, 2);
            this.radGroupBox6.Size = new System.Drawing.Size(190, 183);
            this.radGroupBox6.TabIndex = 14;
            // 
            // radButton9
            // 
            this.radButton9.Location = new System.Drawing.Point(35, 140);
            this.radButton9.Name = "radButton9";
            this.radButton9.Size = new System.Drawing.Size(112, 24);
            this.radButton9.TabIndex = 8;
            this.radButton9.Text = "Mostrar Tabla";
            this.radButton9.ThemeName = "TelerikMetro";
            // 
            // radLabel11
            // 
            this.radLabel11.Location = new System.Drawing.Point(62, 21);
            this.radLabel11.Name = "radLabel11";
            this.radLabel11.Size = new System.Drawing.Size(46, 18);
            this.radLabel11.TabIndex = 2;
            this.radLabel11.Text = "Paso #1";
            // 
            // radLabel12
            // 
            this.radLabel12.Location = new System.Drawing.Point(35, 45);
            this.radLabel12.Name = "radLabel12";
            this.radLabel12.Size = new System.Drawing.Size(112, 18);
            this.radLabel12.TabIndex = 5;
            this.radLabel12.Text = "Copiar Datos Nuevos";
            // 
            // gridSellout
            // 
            this.gridSellout.BackColor = System.Drawing.Color.White;
            this.gridSellout.Cursor = System.Windows.Forms.Cursors.Default;
            this.gridSellout.Font = new System.Drawing.Font("Segoe UI", 8.25F);
            this.gridSellout.ForeColor = System.Drawing.Color.Black;
            this.gridSellout.ImeMode = System.Windows.Forms.ImeMode.NoControl;
            this.gridSellout.Location = new System.Drawing.Point(19, 264);
            // 
            // gridSellout
            // 
            gridViewTextBoxColumn1.EnableExpressionEditor = false;
            gridViewTextBoxColumn1.FormatString = "";
            gridViewTextBoxColumn1.HeaderText = "Año";
            gridViewTextBoxColumn1.Name = "clAnio";
            gridViewTextBoxColumn1.Width = 49;
            gridViewTextBoxColumn2.EnableExpressionEditor = false;
            gridViewTextBoxColumn2.FormatString = "";
            gridViewTextBoxColumn2.HeaderText = "Secuencia";
            gridViewTextBoxColumn2.Name = "clSecuencia";
            gridViewTextBoxColumn2.Width = 71;
            gridViewTextBoxColumn3.EnableExpressionEditor = false;
            gridViewTextBoxColumn3.FormatString = "";
            gridViewTextBoxColumn3.HeaderText = "Mes";
            gridViewTextBoxColumn3.Name = "clMes";
            gridViewTextBoxColumn4.EnableExpressionEditor = false;
            gridViewTextBoxColumn4.FormatString = "";
            gridViewTextBoxColumn4.HeaderText = "Dia";
            gridViewTextBoxColumn4.Name = "clDia";
            gridViewTextBoxColumn5.EnableExpressionEditor = false;
            gridViewTextBoxColumn5.FormatString = "";
            gridViewTextBoxColumn5.HeaderText = "Fecha";
            gridViewTextBoxColumn5.Name = "clFecha";
            gridViewTextBoxColumn6.EnableExpressionEditor = false;
            gridViewTextBoxColumn6.FormatString = "";
            gridViewTextBoxColumn6.HeaderText = "Pais";
            gridViewTextBoxColumn6.Name = "clPais";
            gridViewTextBoxColumn7.EnableExpressionEditor = false;
            gridViewTextBoxColumn7.FormatString = "";
            gridViewTextBoxColumn7.HeaderText = "Codigo Distribuidor";
            gridViewTextBoxColumn7.Name = "clCodDist";
            gridViewTextBoxColumn7.Width = 171;
            gridViewTextBoxColumn8.EnableExpressionEditor = false;
            gridViewTextBoxColumn8.FormatString = "";
            gridViewTextBoxColumn8.HeaderText = "Nombre Distribuidor";
            gridViewTextBoxColumn8.Name = "clNomDist";
            gridViewTextBoxColumn8.Width = 182;
            gridViewTextBoxColumn9.EnableExpressionEditor = false;
            gridViewTextBoxColumn9.FormatString = "";
            gridViewTextBoxColumn9.HeaderText = "Codigo Cliente";
            gridViewTextBoxColumn9.Name = "clCodCli";
            gridViewTextBoxColumn9.Width = 126;
            gridViewTextBoxColumn10.EnableExpressionEditor = false;
            gridViewTextBoxColumn10.FormatString = "";
            gridViewTextBoxColumn10.HeaderText = "Nombre Cliente Final";
            gridViewTextBoxColumn10.Name = "clNomCli";
            gridViewTextBoxColumn10.Width = 175;
            gridViewTextBoxColumn11.EnableExpressionEditor = false;
            gridViewTextBoxColumn11.FormatString = "";
            gridViewTextBoxColumn11.HeaderText = "Codigo Cliente Compuesto";
            gridViewTextBoxColumn11.Name = "clCodCliComp";
            gridViewTextBoxColumn11.Width = 234;
            gridViewTextBoxColumn12.EnableExpressionEditor = false;
            gridViewTextBoxColumn12.HeaderText = "Codigo Vendedor";
            gridViewTextBoxColumn12.Name = "clCodVen";
            gridViewTextBoxColumn12.Width = 172;
            gridViewTextBoxColumn13.EnableExpressionEditor = false;
            gridViewTextBoxColumn13.HeaderText = "Nombre Vendedor";
            gridViewTextBoxColumn13.Name = "clNomVen";
            gridViewTextBoxColumn13.Width = 173;
            gridViewTextBoxColumn14.EnableExpressionEditor = false;
            gridViewTextBoxColumn14.HeaderText = "Codigo Producto Distribuidor";
            gridViewTextBoxColumn14.Name = "clCodProdDist";
            gridViewTextBoxColumn14.Width = 228;
            gridViewTextBoxColumn15.EnableExpressionEditor = false;
            gridViewTextBoxColumn15.HeaderText = "Codigo Producto SAP";
            gridViewTextBoxColumn15.Name = "clCodProdSAP";
            gridViewTextBoxColumn15.Width = 184;
            gridViewTextBoxColumn16.EnableExpressionEditor = false;
            gridViewTextBoxColumn16.HeaderText = "Nombre Producto";
            gridViewTextBoxColumn16.Name = "clNomProd";
            gridViewTextBoxColumn16.Width = 171;
            gridViewTextBoxColumn17.EnableExpressionEditor = false;
            gridViewTextBoxColumn17.HeaderText = "Bultos";
            gridViewTextBoxColumn17.Name = "clBultos";
            gridViewTextBoxColumn18.EnableExpressionEditor = false;
            gridViewTextBoxColumn18.HeaderText = "Vta Monedas Local";
            gridViewTextBoxColumn18.Name = "clVtaLocal";
            gridViewTextBoxColumn18.Width = 139;
            gridViewTextBoxColumn19.EnableExpressionEditor = false;
            gridViewTextBoxColumn19.HeaderText = "VtaDols";
            gridViewTextBoxColumn19.Name = "clVtaDols";
            this.gridSellout.MasterTemplate.Columns.AddRange(new Telerik.WinControls.UI.GridViewDataColumn[] {
            gridViewTextBoxColumn1,
            gridViewTextBoxColumn2,
            gridViewTextBoxColumn3,
            gridViewTextBoxColumn4,
            gridViewTextBoxColumn5,
            gridViewTextBoxColumn6,
            gridViewTextBoxColumn7,
            gridViewTextBoxColumn8,
            gridViewTextBoxColumn9,
            gridViewTextBoxColumn10,
            gridViewTextBoxColumn11,
            gridViewTextBoxColumn12,
            gridViewTextBoxColumn13,
            gridViewTextBoxColumn14,
            gridViewTextBoxColumn15,
            gridViewTextBoxColumn16,
            gridViewTextBoxColumn17,
            gridViewTextBoxColumn18,
            gridViewTextBoxColumn19});
            this.gridSellout.Name = "gridSellout";
            this.gridSellout.RightToLeft = System.Windows.Forms.RightToLeft.No;
            this.gridSellout.Size = new System.Drawing.Size(1073, 229);
            this.gridSellout.TabIndex = 0;
            this.gridSellout.Text = "radGridView2";
            this.gridSellout.ThemeName = "TelerikMetroBlue";
            // 
            // tabImportCliente
            // 
            this.tabImportCliente.Controls.Add(this.radScrollablePanel1);
            this.tabImportCliente.Enabled = false;
            this.tabImportCliente.Location = new System.Drawing.Point(5, 31);
            this.tabImportCliente.Name = "tabImportCliente";
            this.tabImportCliente.Size = new System.Drawing.Size(1170, 624);
            this.tabImportCliente.Text = "Importar Cliente";
            // 
            // radScrollablePanel1
            // 
            this.radScrollablePanel1.AutoScrollMargin = new System.Drawing.Size(0, 0);
            this.radScrollablePanel1.AutoScrollMinSize = new System.Drawing.Size(0, 0);
            this.radScrollablePanel1.Location = new System.Drawing.Point(3, 3);
            this.radScrollablePanel1.Name = "radScrollablePanel1";
            this.radScrollablePanel1.Padding = new System.Windows.Forms.Padding(1);
            // 
            // radScrollablePanel1.PanelContainer
            // 
            this.radScrollablePanel1.PanelContainer.AutoScroll = true;
            this.radScrollablePanel1.PanelContainer.Controls.Add(this.textBox1);
            this.radScrollablePanel1.PanelContainer.Controls.Add(this.radButton12);
            this.radScrollablePanel1.PanelContainer.Controls.Add(this.radGroupBox1);
            this.radScrollablePanel1.PanelContainer.Controls.Add(this.radGroupBox2);
            this.radScrollablePanel1.PanelContainer.Controls.Add(this.radGroupBox3);
            this.radScrollablePanel1.PanelContainer.Controls.Add(this.radGridView2);
            this.radScrollablePanel1.PanelContainer.Dock = System.Windows.Forms.DockStyle.Fill;
            this.radScrollablePanel1.PanelContainer.Location = new System.Drawing.Point(1, 1);
            this.radScrollablePanel1.PanelContainer.Name = "PanelContainer";
            this.radScrollablePanel1.PanelContainer.Size = new System.Drawing.Size(1162, 538);
            this.radScrollablePanel1.PanelContainer.TabIndex = 0;
            // 
            // 
            // 
            this.radScrollablePanel1.RootElement.Padding = new System.Windows.Forms.Padding(1);
            this.radScrollablePanel1.Size = new System.Drawing.Size(1164, 540);
            this.radScrollablePanel1.TabIndex = 0;
            this.radScrollablePanel1.Text = "radScrollablePanel1";
            // 
            // textBox1
            // 
            this.textBox1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
            this.textBox1.Location = new System.Drawing.Point(669, 37);
            this.textBox1.Multiline = true;
            this.textBox1.Name = "textBox1";
            this.textBox1.Size = new System.Drawing.Size(161, 183);
            this.textBox1.TabIndex = 25;
            // 
            // radButton12
            // 
            this.radButton12.Location = new System.Drawing.Point(845, 108);
            this.radButton12.Name = "radButton12";
            this.radButton12.Size = new System.Drawing.Size(99, 24);
            this.radButton12.TabIndex = 24;
            this.radButton12.Text = "Clientes";
            this.radButton12.ThemeName = "TelerikMetroBlue";
            // 
            // radGroupBox1
            // 
            this.radGroupBox1.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
            this.radGroupBox1.BackColor = System.Drawing.Color.White;
            this.radGroupBox1.Controls.Add(this.radButton14);
            this.radGroupBox1.Controls.Add(this.radLabel1);
            this.radGroupBox1.Controls.Add(this.radLabel2);
            this.radGroupBox1.FooterImageIndex = -1;
            this.radGroupBox1.FooterImageKey = "";
            this.radGroupBox1.HeaderImageIndex = -1;
            this.radGroupBox1.HeaderImageKey = "";
            this.radGroupBox1.HeaderMargin = new System.Windows.Forms.Padding(0);
            this.radGroupBox1.HeaderText = "";
            this.radGroupBox1.Location = new System.Drawing.Point(472, 37);
            this.radGroupBox1.Name = "radGroupBox1";
            this.radGroupBox1.Padding = new System.Windows.Forms.Padding(2, 18, 2, 2);
            // 
            // 
            // 
            this.radGroupBox1.RootElement.Padding = new System.Windows.Forms.Padding(2, 18, 2, 2);
            this.radGroupBox1.Size = new System.Drawing.Size(190, 183);
            this.radGroupBox1.TabIndex = 23;
            // 
            // radButton14
            // 
            this.radButton14.Location = new System.Drawing.Point(51, 140);
            this.radButton14.Name = "radButton14";
            this.radButton14.Size = new System.Drawing.Size(81, 24);
            this.radButton14.TabIndex = 10;
            this.radButton14.Text = "Procesar";
            this.radButton14.ThemeName = "TelerikMetro";
            // 
            // radLabel1
            // 
            this.radLabel1.Location = new System.Drawing.Point(70, 29);
            this.radLabel1.Name = "radLabel1";
            this.radLabel1.Size = new System.Drawing.Size(46, 18);
            this.radLabel1.TabIndex = 4;
            this.radLabel1.Text = "Paso #3";
            // 
            // radLabel2
            // 
            this.radLabel2.Location = new System.Drawing.Point(51, 45);
            this.radLabel2.Name = "radLabel2";
            this.radLabel2.Size = new System.Drawing.Size(81, 18);
            this.radLabel2.TabIndex = 7;
            this.radLabel2.Text = "Procesar Datos";
            // 
            // radGroupBox2
            // 
            this.radGroupBox2.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
            this.radGroupBox2.BackColor = System.Drawing.Color.White;
            this.radGroupBox2.Controls.Add(this.radLabel3);
            this.radGroupBox2.Controls.Add(this.radLabel4);
            this.radGroupBox2.FooterImageIndex = -1;
            this.radGroupBox2.FooterImageKey = "";
            this.radGroupBox2.ForeColor = System.Drawing.Color.Black;
            this.radGroupBox2.HeaderImageIndex = -1;
            this.radGroupBox2.HeaderImageKey = "";
            this.radGroupBox2.HeaderMargin = new System.Windows.Forms.Padding(0);
            this.radGroupBox2.HeaderText = "";
            this.radGroupBox2.Location = new System.Drawing.Point(241, 37);
            this.radGroupBox2.Name = "radGroupBox2";
            this.radGroupBox2.Padding = new System.Windows.Forms.Padding(2, 18, 2, 2);
            // 
            // 
            // 
            this.radGroupBox2.RootElement.Padding = new System.Windows.Forms.Padding(2, 18, 2, 2);
            this.radGroupBox2.Size = new System.Drawing.Size(225, 183);
            this.radGroupBox2.TabIndex = 22;
            // 
            // radLabel3
            // 
            this.radLabel3.Location = new System.Drawing.Point(82, 29);
            this.radLabel3.Name = "radLabel3";
            this.radLabel3.Size = new System.Drawing.Size(46, 18);
            this.radLabel3.TabIndex = 3;
            this.radLabel3.Text = "Paso #2";
            // 
            // radLabel4
            // 
            this.radLabel4.Location = new System.Drawing.Point(25, 45);
            this.radLabel4.Name = "radLabel4";
            this.radLabel4.Size = new System.Drawing.Size(170, 18);
            this.radLabel4.TabIndex = 6;
            this.radLabel4.Text = "Seleccion de Accion en los Datos";
            // 
            // radGroupBox3
            // 
            this.radGroupBox3.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
            this.radGroupBox3.BackColor = System.Drawing.Color.White;
            this.radGroupBox3.Controls.Add(this.radButton16);
            this.radGroupBox3.Controls.Add(this.radLabel5);
            this.radGroupBox3.Controls.Add(this.radLabel6);
            this.radGroupBox3.FooterImageIndex = -1;
            this.radGroupBox3.FooterImageKey = "";
            this.radGroupBox3.HeaderImageIndex = -1;
            this.radGroupBox3.HeaderImageKey = "";
            this.radGroupBox3.HeaderMargin = new System.Windows.Forms.Padding(0);
            this.radGroupBox3.HeaderText = "";
            this.radGroupBox3.Location = new System.Drawing.Point(45, 37);
            this.radGroupBox3.Name = "radGroupBox3";
            this.radGroupBox3.Padding = new System.Windows.Forms.Padding(2, 18, 2, 2);
            // 
            // 
            // 
            this.radGroupBox3.RootElement.Padding = new System.Windows.Forms.Padding(2, 18, 2, 2);
            this.radGroupBox3.Size = new System.Drawing.Size(190, 183);
            this.radGroupBox3.TabIndex = 21;
            // 
            // radButton16
            // 
            this.radButton16.Location = new System.Drawing.Point(35, 140);
            this.radButton16.Name = "radButton16";
            this.radButton16.Size = new System.Drawing.Size(112, 24);
            this.radButton16.TabIndex = 8;
            this.radButton16.Text = "Mostrar Tabla";
            this.radButton16.ThemeName = "TelerikMetro";
            // 
            // radLabel5
            // 
            this.radLabel5.Location = new System.Drawing.Point(62, 21);
            this.radLabel5.Name = "radLabel5";
            this.radLabel5.Size = new System.Drawing.Size(46, 18);
            this.radLabel5.TabIndex = 2;
            this.radLabel5.Text = "Paso #1";
            // 
            // radLabel6
            // 
            this.radLabel6.Location = new System.Drawing.Point(35, 45);
            this.radLabel6.Name = "radLabel6";
            this.radLabel6.Size = new System.Drawing.Size(112, 18);
            this.radLabel6.TabIndex = 5;
            this.radLabel6.Text = "Copiar Datos Nuevos";
            // 
            // radGridView2
            // 
            this.radGridView2.BackColor = System.Drawing.Color.White;
            this.radGridView2.Cursor = System.Windows.Forms.Cursors.Default;
            this.radGridView2.Font = new System.Drawing.Font("Segoe UI", 8.25F);
            this.radGridView2.ForeColor = System.Drawing.Color.Black;
            this.radGridView2.ImeMode = System.Windows.Forms.ImeMode.NoControl;
            this.radGridView2.Location = new System.Drawing.Point(45, 272);
            // 
            // radGridView2
            // 
            this.radGridView2.MasterTemplate.AutoGenerateColumns = false;
            gridViewTextBoxColumn20.EnableExpressionEditor = false;
            gridViewTextBoxColumn20.FormatString = "";
            gridViewTextBoxColumn20.HeaderText = "Codigo Cliente Compuesto";
            gridViewTextBoxColumn20.Name = "clCodCliComp";
            gridViewTextBoxColumn20.Width = 234;
            gridViewTextBoxColumn21.EnableExpressionEditor = false;
            gridViewTextBoxColumn21.FormatString = "";
            gridViewTextBoxColumn21.HeaderText = "Codigo Cliente";
            gridViewTextBoxColumn21.Name = "clCodCli";
            gridViewTextBoxColumn21.Width = 126;
            gridViewTextBoxColumn22.EnableExpressionEditor = false;
            gridViewTextBoxColumn22.FormatString = "";
            gridViewTextBoxColumn22.HeaderText = "Nombre Cliente Final";
            gridViewTextBoxColumn22.Name = "clNomCli";
            gridViewTextBoxColumn22.Width = 175;
            gridViewTextBoxColumn23.EnableExpressionEditor = false;
            gridViewTextBoxColumn23.FormatString = "";
            gridViewTextBoxColumn23.HeaderText = "Codigo Distribuidor";
            gridViewTextBoxColumn23.Name = "clCodDist";
            gridViewTextBoxColumn23.Width = 171;
            gridViewTextBoxColumn24.EnableExpressionEditor = false;
            gridViewTextBoxColumn24.FormatString = "";
            gridViewTextBoxColumn24.HeaderText = "Nombre Distribuidor";
            gridViewTextBoxColumn24.Name = "clNomDist";
            gridViewTextBoxColumn24.Width = 182;
            gridViewTextBoxColumn25.EnableExpressionEditor = false;
            gridViewTextBoxColumn25.FormatString = "";
            gridViewTextBoxColumn25.HeaderText = "Codigo Vendedor";
            gridViewTextBoxColumn25.Name = "clCodVen";
            gridViewTextBoxColumn25.Width = 172;
            gridViewTextBoxColumn26.EnableExpressionEditor = false;
            gridViewTextBoxColumn26.HeaderText = "Nombre Vendedor";
            gridViewTextBoxColumn26.Name = "clNomVen";
            gridViewTextBoxColumn26.Width = 173;
            gridViewTextBoxColumn27.EnableExpressionEditor = false;
            gridViewTextBoxColumn27.HeaderText = "Direccion";
            gridViewTextBoxColumn27.Name = "clDireccion";
            gridViewTextBoxColumn27.Width = 71;
            gridViewTextBoxColumn28.EnableExpressionEditor = false;
            gridViewTextBoxColumn28.HeaderText = "Ciudad";
            gridViewTextBoxColumn28.Name = "clCiudad";
            gridViewTextBoxColumn28.SortOrder = Telerik.WinControls.UI.RadSortOrder.Ascending;
            gridViewTextBoxColumn28.Width = 65;
            gridViewTextBoxColumn29.EnableExpressionEditor = false;
            gridViewTextBoxColumn29.HeaderText = "Telefono";
            gridViewTextBoxColumn29.Name = "clTelefono";
            gridViewTextBoxColumn29.Width = 75;
            gridViewTextBoxColumn30.EnableExpressionEditor = false;
            gridViewTextBoxColumn30.HeaderText = "Cedula Juridica";
            gridViewTextBoxColumn30.Name = "clCedula";
            gridViewTextBoxColumn30.Width = 101;
            gridViewTextBoxColumn31.EnableExpressionEditor = false;
            gridViewTextBoxColumn31.HeaderText = "Nombre Contacto";
            gridViewTextBoxColumn31.Name = "clNomCont";
            gridViewTextBoxColumn31.Width = 142;
            gridViewTextBoxColumn32.EnableExpressionEditor = false;
            gridViewTextBoxColumn32.HeaderText = "Nombre Comercial";
            gridViewTextBoxColumn32.Name = "clNomComer";
            gridViewTextBoxColumn32.Width = 128;
            gridViewTextBoxColumn33.EnableExpressionEditor = false;
            gridViewTextBoxColumn33.HeaderText = "Codigo Segmento SC";
            gridViewTextBoxColumn33.Name = "clCodSeg";
            gridViewTextBoxColumn33.Width = 137;
            gridViewTextBoxColumn34.EnableExpressionEditor = false;
            gridViewTextBoxColumn34.HeaderText = "Pais";
            gridViewTextBoxColumn34.Name = "clPais";
            gridViewTextBoxColumn34.Width = 60;
            this.radGridView2.MasterTemplate.Columns.AddRange(new Telerik.WinControls.UI.GridViewDataColumn[] {
            gridViewTextBoxColumn20,
            gridViewTextBoxColumn21,
            gridViewTextBoxColumn22,
            gridViewTextBoxColumn23,
            gridViewTextBoxColumn24,
            gridViewTextBoxColumn25,
            gridViewTextBoxColumn26,
            gridViewTextBoxColumn27,
            gridViewTextBoxColumn28,
            gridViewTextBoxColumn29,
            gridViewTextBoxColumn30,
            gridViewTextBoxColumn31,
            gridViewTextBoxColumn32,
            gridViewTextBoxColumn33,
            gridViewTextBoxColumn34});
            sortDescriptor1.PropertyName = "clCiudad";
            this.radGridView2.MasterTemplate.SortDescriptors.AddRange(new Telerik.WinControls.Data.SortDescriptor[] {
            sortDescriptor1});
            this.radGridView2.Name = "radGridView2";
            this.radGridView2.RightToLeft = System.Windows.Forms.RightToLeft.No;
            this.radGridView2.Size = new System.Drawing.Size(1073, 229);
            this.radGridView2.TabIndex = 20;
            this.radGridView2.Text = "radGridView2";
            this.radGridView2.ThemeName = "TelerikMetroBlue";
            // 
            // tabClientes
            // 
            this.tabClientes.Controls.Add(this.radGroupBox25);
            this.tabClientes.Controls.Add(this.btVerificarCli);
            this.tabClientes.Controls.Add(this.btLimpiar);
            this.tabClientes.Controls.Add(this.btSalir);
            this.tabClientes.Controls.Add(this.radGridView3);
            this.tabClientes.Enabled = false;
            this.tabClientes.Location = new System.Drawing.Point(5, 31);
            this.tabClientes.Name = "tabClientes";
            this.tabClientes.Size = new System.Drawing.Size(1170, 624);
            this.tabClientes.Text = "Clientes";
            // 
            // radGroupBox25
            // 
            this.radGroupBox25.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
            this.radGroupBox25.Controls.Add(this.btEditar);
            this.radGroupBox25.Controls.Add(this.btSelect);
            this.radGroupBox25.Controls.Add(this.btDeselect);
            this.radGroupBox25.FooterImageIndex = -1;
            this.radGroupBox25.FooterImageKey = "";
            this.radGroupBox25.HeaderImageIndex = -1;
            this.radGroupBox25.HeaderImageKey = "";
            this.radGroupBox25.HeaderMargin = new System.Windows.Forms.Padding(0);
            this.radGroupBox25.HeaderText = "";
            this.radGroupBox25.Location = new System.Drawing.Point(3, 34);
            this.radGroupBox25.Name = "radGroupBox25";
            this.radGroupBox25.Padding = new System.Windows.Forms.Padding(2, 18, 2, 2);
            // 
            // 
            // 
            this.radGroupBox25.RootElement.Padding = new System.Windows.Forms.Padding(2, 18, 2, 2);
            this.radGroupBox25.Size = new System.Drawing.Size(222, 129);
            this.radGroupBox25.TabIndex = 7;
            // 
            // btEditar
            // 
            this.btEditar.Location = new System.Drawing.Point(54, 30);
            this.btEditar.Name = "btEditar";
            this.btEditar.Size = new System.Drawing.Size(90, 24);
            this.btEditar.TabIndex = 5;
            this.btEditar.Text = "Editar";
            // 
            // btSelect
            // 
            this.btSelect.Location = new System.Drawing.Point(22, 68);
            this.btSelect.Name = "btSelect";
            this.btSelect.Size = new System.Drawing.Size(90, 24);
            this.btSelect.TabIndex = 4;
            this.btSelect.Text = "Select";
            // 
            // btDeselect
            // 
            this.btDeselect.Location = new System.Drawing.Point(118, 68);
            this.btDeselect.Name = "btDeselect";
            this.btDeselect.Size = new System.Drawing.Size(76, 24);
            this.btDeselect.TabIndex = 5;
            this.btDeselect.Text = "DesSelect";
            // 
            // btVerificarCli
            // 
            this.btVerificarCli.Location = new System.Drawing.Point(905, 22);
            this.btVerificarCli.Name = "btVerificarCli";
            this.btVerificarCli.Size = new System.Drawing.Size(100, 24);
            this.btVerificarCli.TabIndex = 6;
            this.btVerificarCli.Text = "Verificar Clientes";
            // 
            // btLimpiar
            // 
            this.btLimpiar.Location = new System.Drawing.Point(1011, 22);
            this.btLimpiar.Name = "btLimpiar";
            this.btLimpiar.Size = new System.Drawing.Size(73, 24);
            this.btLimpiar.TabIndex = 3;
            this.btLimpiar.Text = "Limpiar ";
            // 
            // btSalir
            // 
            this.btSalir.Location = new System.Drawing.Point(1090, 22);
            this.btSalir.Name = "btSalir";
            this.btSalir.Size = new System.Drawing.Size(65, 24);
            this.btSalir.TabIndex = 2;
            this.btSalir.Text = "Salir";
            // 
            // radGridView3
            // 
            this.radGridView3.BackColor = System.Drawing.Color.White;
            this.radGridView3.Cursor = System.Windows.Forms.Cursors.Default;
            this.radGridView3.Font = new System.Drawing.Font("Segoe UI", 8.25F);
            this.radGridView3.ForeColor = System.Drawing.Color.Black;
            this.radGridView3.ImeMode = System.Windows.Forms.ImeMode.NoControl;
            this.radGridView3.Location = new System.Drawing.Point(3, 169);
            // 
            // radGridView3
            // 
            this.radGridView3.MasterTemplate.AutoGenerateColumns = false;
            gridViewTextBoxColumn35.EnableExpressionEditor = false;
            gridViewTextBoxColumn35.FormatString = "";
            gridViewTextBoxColumn35.HeaderText = "Codigo Cliente";
            gridViewTextBoxColumn35.Name = "clCodCli";
            gridViewTextBoxColumn35.Width = 126;
            gridViewTextBoxColumn36.EnableExpressionEditor = false;
            gridViewTextBoxColumn36.FormatString = "";
            gridViewTextBoxColumn36.HeaderText = "Nombre Cliente Final";
            gridViewTextBoxColumn36.Name = "clNomCli";
            gridViewTextBoxColumn36.Width = 175;
            gridViewTextBoxColumn37.EnableExpressionEditor = false;
            gridViewTextBoxColumn37.FormatString = "";
            gridViewTextBoxColumn37.HeaderText = "Nombre Distribuidor";
            gridViewTextBoxColumn37.Name = "clNomDist";
            gridViewTextBoxColumn37.Width = 182;
            gridViewTextBoxColumn38.EnableExpressionEditor = false;
            gridViewTextBoxColumn38.FormatString = "";
            gridViewTextBoxColumn38.HeaderText = "Segmento KC";
            gridViewTextBoxColumn38.Name = "clSegKC";
            gridViewTextBoxColumn38.Width = 171;
            gridViewTextBoxColumn39.EnableExpressionEditor = false;
            gridViewTextBoxColumn39.FormatString = "";
            gridViewTextBoxColumn39.HeaderText = "Segmento SC";
            gridViewTextBoxColumn39.Name = "clSegSC";
            gridViewTextBoxColumn39.Width = 156;
            gridViewTextBoxColumn40.EnableExpressionEditor = false;
            gridViewTextBoxColumn40.FormatString = "";
            gridViewTextBoxColumn40.HeaderText = "ABC Distribuidor";
            gridViewTextBoxColumn40.Name = "clABCDist";
            gridViewTextBoxColumn40.Width = 98;
            gridViewTextBoxColumn41.EnableExpressionEditor = false;
            gridViewTextBoxColumn41.FormatString = "";
            gridViewTextBoxColumn41.HeaderText = "ABC Pais";
            gridViewTextBoxColumn41.Name = "clABCPais";
            gridViewTextBoxColumn41.Width = 72;
            gridViewTextBoxColumn42.EnableExpressionEditor = false;
            gridViewTextBoxColumn42.FormatString = "";
            gridViewTextBoxColumn42.HeaderText = "Grupo Cliente";
            gridViewTextBoxColumn42.Name = "clGrupoCli";
            gridViewTextBoxColumn42.Width = 91;
            gridViewTextBoxColumn43.EnableExpressionEditor = false;
            gridViewTextBoxColumn43.HeaderText = "Plataformas";
            gridViewTextBoxColumn43.Name = "clPlataformas";
            gridViewTextBoxColumn43.Width = 101;
            gridViewTextBoxColumn44.EnableExpressionEditor = false;
            gridViewTextBoxColumn44.HeaderText = "Global Account Name";
            gridViewTextBoxColumn44.Name = "clGAN";
            gridViewTextBoxColumn44.Width = 150;
            gridViewTextBoxColumn45.EnableExpressionEditor = false;
            gridViewTextBoxColumn45.HeaderText = "Inactivar";
            gridViewTextBoxColumn45.Name = "clInac";
            gridViewTextBoxColumn45.Width = 58;
            gridViewTextBoxColumn46.EnableExpressionEditor = false;
            gridViewTextBoxColumn46.HeaderText = "Pais";
            gridViewTextBoxColumn46.Name = "clPais";
            gridViewTextBoxColumn46.Width = 60;
            gridViewTextBoxColumn47.EnableExpressionEditor = false;
            gridViewTextBoxColumn47.HeaderText = "Ciudad";
            gridViewTextBoxColumn47.Name = "clCiudad";
            gridViewTextBoxColumn47.Width = 70;
            gridViewTextBoxColumn48.EnableExpressionEditor = false;
            gridViewTextBoxColumn48.HeaderText = "Creacion";
            gridViewTextBoxColumn48.Name = "clCreacion";
            gridViewTextBoxColumn48.SortOrder = Telerik.WinControls.UI.RadSortOrder.Ascending;
            gridViewTextBoxColumn48.Width = 66;
            gridViewTextBoxColumn49.EnableExpressionEditor = false;
            gridViewTextBoxColumn49.HeaderText = "Actualizacion";
            gridViewTextBoxColumn49.Name = "clActua";
            gridViewTextBoxColumn49.Width = 89;
            this.radGridView3.MasterTemplate.Columns.AddRange(new Telerik.WinControls.UI.GridViewDataColumn[] {
            gridViewTextBoxColumn35,
            gridViewTextBoxColumn36,
            gridViewTextBoxColumn37,
            gridViewTextBoxColumn38,
            gridViewTextBoxColumn39,
            gridViewTextBoxColumn40,
            gridViewTextBoxColumn41,
            gridViewTextBoxColumn42,
            gridViewTextBoxColumn43,
            gridViewTextBoxColumn44,
            gridViewTextBoxColumn45,
            gridViewTextBoxColumn46,
            gridViewTextBoxColumn47,
            gridViewTextBoxColumn48,
            gridViewTextBoxColumn49});
            sortDescriptor2.PropertyName = "clCreacion";
            this.radGridView3.MasterTemplate.SortDescriptors.AddRange(new Telerik.WinControls.Data.SortDescriptor[] {
            sortDescriptor2});
            this.radGridView3.Name = "radGridView3";
            this.radGridView3.RightToLeft = System.Windows.Forms.RightToLeft.No;
            this.radGridView3.Size = new System.Drawing.Size(1170, 229);
            this.radGridView3.TabIndex = 1;
            this.radGridView3.Text = "radGridView3";
            this.radGridView3.ThemeName = "TelerikMetroBlue";
            // 
            // tabAgruparC
            // 
            this.tabAgruparC.Controls.Add(this.radGroupBox7);
            this.tabAgruparC.Enabled = false;
            this.tabAgruparC.Location = new System.Drawing.Point(5, 31);
            this.tabAgruparC.Name = "tabAgruparC";
            this.tabAgruparC.Size = new System.Drawing.Size(1170, 624);
            this.tabAgruparC.Text = "Agrupaciones de Clientes";
            // 
            // radGroupBox7
            // 
            this.radGroupBox7.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
            this.radGroupBox7.Controls.Add(this.radGridView4);
            this.radGroupBox7.FooterImageIndex = -1;
            this.radGroupBox7.FooterImageKey = "";
            this.radGroupBox7.HeaderImageIndex = -1;
            this.radGroupBox7.HeaderImageKey = "";
            this.radGroupBox7.HeaderMargin = new System.Windows.Forms.Padding(0);
            this.radGroupBox7.HeaderText = "";
            this.radGroupBox7.Location = new System.Drawing.Point(252, 62);
            this.radGroupBox7.Name = "radGroupBox7";
            this.radGroupBox7.Padding = new System.Windows.Forms.Padding(2, 18, 2, 2);
            // 
            // 
            // 
            this.radGroupBox7.RootElement.Padding = new System.Windows.Forms.Padding(2, 18, 2, 2);
            this.radGroupBox7.Size = new System.Drawing.Size(478, 309);
            this.radGroupBox7.TabIndex = 0;
            // 
            // radGridView4
            // 
            this.radGridView4.BackColor = System.Drawing.Color.White;
            this.radGridView4.Cursor = System.Windows.Forms.Cursors.Default;
            this.radGridView4.Font = new System.Drawing.Font("Segoe UI", 8.25F);
            this.radGridView4.ForeColor = System.Drawing.Color.Black;
            this.radGridView4.ImeMode = System.Windows.Forms.ImeMode.NoControl;
            this.radGridView4.Location = new System.Drawing.Point(119, 92);
            // 
            // radGridView4
            // 
            gridViewTextBoxColumn50.EnableExpressionEditor = false;
            gridViewTextBoxColumn50.FormatString = "";
            gridViewTextBoxColumn50.HeaderText = "Plataformas";
            gridViewTextBoxColumn50.Name = "clPlataformas";
            gridViewTextBoxColumn50.Width = 195;
            this.radGridView4.MasterTemplate.Columns.AddRange(new Telerik.WinControls.UI.GridViewDataColumn[] {
            gridViewTextBoxColumn50});
            this.radGridView4.Name = "radGridView4";
            this.radGridView4.RightToLeft = System.Windows.Forms.RightToLeft.No;
            this.radGridView4.Size = new System.Drawing.Size(264, 150);
            this.radGridView4.TabIndex = 0;
            this.radGridView4.Text = "radGridView4";
            this.radGridView4.ThemeName = "TelerikMetroBlue";
            // 
            // tabMasterP
            // 
            this.tabMasterP.Controls.Add(this.btLimpiarMP);
            this.tabMasterP.Controls.Add(this.btAbrirMP);
            this.tabMasterP.Controls.Add(this.txtDir);
            this.tabMasterP.Controls.Add(this.radLabel13);
            this.tabMasterP.Controls.Add(this.radGridView5);
            this.tabMasterP.Enabled = false;
            this.tabMasterP.Location = new System.Drawing.Point(5, 31);
            this.tabMasterP.Name = "tabMasterP";
            this.tabMasterP.Size = new System.Drawing.Size(1170, 624);
            this.tabMasterP.Text = "Master Productos KC";
            // 
            // btLimpiarMP
            // 
            this.btLimpiarMP.Location = new System.Drawing.Point(612, 126);
            this.btLimpiarMP.Name = "btLimpiarMP";
            this.btLimpiarMP.Size = new System.Drawing.Size(75, 24);
            this.btLimpiarMP.TabIndex = 4;
            this.btLimpiarMP.Text = "Limpiar";
            // 
            // btAbrirMP
            // 
            this.btAbrirMP.Location = new System.Drawing.Point(531, 126);
            this.btAbrirMP.Name = "btAbrirMP";
            this.btAbrirMP.Size = new System.Drawing.Size(75, 24);
            this.btAbrirMP.TabIndex = 3;
            this.btAbrirMP.Text = "Abrir";
            // 
            // txtDir
            // 
            this.txtDir.Location = new System.Drawing.Point(18, 126);
            this.txtDir.Name = "txtDir";
            this.txtDir.Size = new System.Drawing.Size(494, 20);
            this.txtDir.TabIndex = 2;
            this.txtDir.TabStop = false;
            // 
            // radLabel13
            // 
            this.radLabel13.Location = new System.Drawing.Point(18, 100);
            this.radLabel13.Name = "radLabel13";
            this.radLabel13.Size = new System.Drawing.Size(88, 19);
            this.radLabel13.TabIndex = 1;
            this.radLabel13.Text = "Direccion Excel";
            // 
            // radGridView5
            // 
            this.radGridView5.BackColor = System.Drawing.Color.White;
            this.radGridView5.Cursor = System.Windows.Forms.Cursors.Default;
            this.radGridView5.Font = new System.Drawing.Font("Segoe UI", 8.25F);
            this.radGridView5.ForeColor = System.Drawing.SystemColors.ControlText;
            this.radGridView5.ImeMode = System.Windows.Forms.ImeMode.NoControl;
            this.radGridView5.Location = new System.Drawing.Point(18, 223);
            // 
            // radGridView5
            // 
            gridViewTextBoxColumn51.EnableExpressionEditor = false;
            gridViewTextBoxColumn51.FormatString = "";
            gridViewTextBoxColumn51.HeaderText = "Codigo SAP";
            gridViewTextBoxColumn51.Name = "clCodSAP";
            gridViewTextBoxColumn51.Width = 104;
            gridViewTextBoxColumn52.EnableExpressionEditor = false;
            gridViewTextBoxColumn52.FormatString = "";
            gridViewTextBoxColumn52.HeaderText = "Nombre Producto";
            gridViewTextBoxColumn52.Name = "clNombre";
            gridViewTextBoxColumn52.Width = 374;
            gridViewTextBoxColumn53.EnableExpressionEditor = false;
            gridViewTextBoxColumn53.FormatString = "";
            gridViewTextBoxColumn53.HeaderText = "LAO Group";
            gridViewTextBoxColumn53.Name = "clLAO";
            gridViewTextBoxColumn53.Width = 92;
            gridViewComboBoxColumn1.DisplayMember = null;
            gridViewComboBoxColumn1.EnableExpressionEditor = false;
            gridViewComboBoxColumn1.FormatString = "";
            gridViewComboBoxColumn1.HeaderText = "Strategic Group";
            gridViewComboBoxColumn1.Name = "clStrategic";
            gridViewComboBoxColumn1.ValueMember = null;
            gridViewComboBoxColumn1.Width = 126;
            gridViewComboBoxColumn2.DisplayMember = null;
            gridViewComboBoxColumn2.EnableExpressionEditor = false;
            gridViewComboBoxColumn2.FormatString = "";
            gridViewComboBoxColumn2.HeaderText = "Nivel 1";
            gridViewComboBoxColumn2.Name = "clN1";
            gridViewComboBoxColumn2.ValueMember = null;
            gridViewComboBoxColumn2.Width = 112;
            gridViewComboBoxColumn3.DisplayMember = null;
            gridViewComboBoxColumn3.EnableExpressionEditor = false;
            gridViewComboBoxColumn3.FormatString = "";
            gridViewComboBoxColumn3.HeaderText = "Nivel 2";
            gridViewComboBoxColumn3.Name = "clN2";
            gridViewComboBoxColumn3.ValueMember = null;
            gridViewComboBoxColumn3.Width = 109;
            gridViewComboBoxColumn4.DisplayMember = null;
            gridViewComboBoxColumn4.EnableExpressionEditor = false;
            gridViewComboBoxColumn4.FormatString = "";
            gridViewComboBoxColumn4.HeaderText = "Nivel 3";
            gridViewComboBoxColumn4.Name = "clN3";
            gridViewComboBoxColumn4.ValueMember = null;
            gridViewComboBoxColumn4.Width = 110;
            gridViewComboBoxColumn5.DisplayMember = null;
            gridViewComboBoxColumn5.EnableExpressionEditor = false;
            gridViewComboBoxColumn5.FormatString = "";
            gridViewComboBoxColumn5.HeaderText = "Nivel 4";
            gridViewComboBoxColumn5.Name = "clN4";
            gridViewComboBoxColumn5.ValueMember = null;
            gridViewComboBoxColumn5.Width = 106;
            gridViewComboBoxColumn6.DisplayMember = null;
            gridViewComboBoxColumn6.EnableExpressionEditor = false;
            gridViewComboBoxColumn6.HeaderText = "Nivel 5";
            gridViewComboBoxColumn6.Name = "clN5";
            gridViewComboBoxColumn6.ValueMember = null;
            gridViewComboBoxColumn6.Width = 100;
            gridViewTextBoxColumn54.EnableExpressionEditor = false;
            gridViewTextBoxColumn54.HeaderText = "Creacion ";
            gridViewTextBoxColumn54.Name = "clCreacion ";
            gridViewTextBoxColumn54.Width = 97;
            gridViewTextBoxColumn55.EnableExpressionEditor = false;
            gridViewTextBoxColumn55.HeaderText = "Actualizacion";
            gridViewTextBoxColumn55.Name = "clActual";
            gridViewTextBoxColumn55.Width = 107;
            this.radGridView5.MasterTemplate.Columns.AddRange(new Telerik.WinControls.UI.GridViewDataColumn[] {
            gridViewTextBoxColumn51,
            gridViewTextBoxColumn52,
            gridViewTextBoxColumn53,
            gridViewComboBoxColumn1,
            gridViewComboBoxColumn2,
            gridViewComboBoxColumn3,
            gridViewComboBoxColumn4,
            gridViewComboBoxColumn5,
            gridViewComboBoxColumn6,
            gridViewTextBoxColumn54,
            gridViewTextBoxColumn55});
            sortDescriptor3.PropertyName = "column1";
            this.radGridView5.MasterTemplate.SortDescriptors.AddRange(new Telerik.WinControls.Data.SortDescriptor[] {
            sortDescriptor3});
            this.radGridView5.Name = "radGridView5";
            this.radGridView5.RightToLeft = System.Windows.Forms.RightToLeft.No;
            this.radGridView5.Size = new System.Drawing.Size(1134, 218);
            this.radGridView5.TabIndex = 0;
            this.radGridView5.Text = "radGridView5";
            this.radGridView5.ThemeName = "TelerikMetroBlue";
            // 
            // tabProductosE
            // 
            this.tabProductosE.Controls.Add(this.radGridView6);
            this.tabProductosE.Controls.Add(this.radGroupBox8);
            this.tabProductosE.Enabled = false;
            this.tabProductosE.Location = new System.Drawing.Point(5, 31);
            this.tabProductosE.Name = "tabProductosE";
            this.tabProductosE.Size = new System.Drawing.Size(1170, 624);
            this.tabProductosE.Text = "Productos Equivalentes";
            // 
            // radGridView6
            // 
            this.radGridView6.BackColor = System.Drawing.Color.White;
            this.radGridView6.Cursor = System.Windows.Forms.Cursors.Default;
            this.radGridView6.Font = new System.Drawing.Font("Segoe UI", 8.25F);
            this.radGridView6.ForeColor = System.Drawing.SystemColors.ControlText;
            this.radGridView6.ImeMode = System.Windows.Forms.ImeMode.NoControl;
            this.radGridView6.Location = new System.Drawing.Point(27, 242);
            // 
            // radGridView6
            // 
            this.radGridView6.MasterTemplate.AutoGenerateColumns = false;
            gridViewTextBoxColumn56.EnableExpressionEditor = false;
            gridViewTextBoxColumn56.FormatString = "";
            gridViewTextBoxColumn56.HeaderText = "Codigo Producto Distribuidor";
            gridViewTextBoxColumn56.Name = "clCodProdDist";
            gridViewTextBoxColumn56.Width = 222;
            gridViewTextBoxColumn57.EnableExpressionEditor = false;
            gridViewTextBoxColumn57.FormatString = "";
            gridViewTextBoxColumn57.HeaderText = "Nombre Producto Distribuidor";
            gridViewTextBoxColumn57.Name = "clNomProDist";
            gridViewTextBoxColumn57.Width = 209;
            gridViewComboBoxColumn7.DisplayMember = null;
            gridViewComboBoxColumn7.EnableExpressionEditor = false;
            gridViewComboBoxColumn7.FormatString = "";
            gridViewComboBoxColumn7.HeaderText = "Codigo Producto SAP";
            gridViewComboBoxColumn7.Name = "clCodProSap";
            gridViewComboBoxColumn7.ValueMember = null;
            gridViewComboBoxColumn7.Width = 180;
            gridViewTextBoxColumn58.EnableExpressionEditor = false;
            gridViewTextBoxColumn58.FormatString = "";
            gridViewTextBoxColumn58.HeaderText = "Nombre Prodcuto SAP";
            gridViewTextBoxColumn58.Name = "clNomSap";
            gridViewTextBoxColumn58.Width = 192;
            gridViewComboBoxColumn8.DisplayMember = null;
            gridViewComboBoxColumn8.EnableExpressionEditor = false;
            gridViewComboBoxColumn8.FormatString = "";
            gridViewComboBoxColumn8.HeaderText = "Tipo Medida";
            gridViewComboBoxColumn8.Name = "clTipoMed";
            gridViewComboBoxColumn8.ValueMember = null;
            gridViewComboBoxColumn8.Width = 114;
            gridViewTextBoxColumn59.EnableExpressionEditor = false;
            gridViewTextBoxColumn59.FormatString = "";
            gridViewTextBoxColumn59.HeaderText = "Cantidad";
            gridViewTextBoxColumn59.Name = "clCanti";
            gridViewTextBoxColumn59.Width = 112;
            gridViewTextBoxColumn60.EnableExpressionEditor = false;
            gridViewTextBoxColumn60.FormatString = "";
            gridViewTextBoxColumn60.HeaderText = "VC";
            gridViewTextBoxColumn60.Name = "clVC";
            gridViewTextBoxColumn60.Width = 59;
            gridViewTextBoxColumn61.EnableExpressionEditor = false;
            gridViewTextBoxColumn61.FormatString = "";
            gridViewTextBoxColumn61.HeaderText = "Resultado";
            gridViewTextBoxColumn61.Name = "clResultado";
            gridViewTextBoxColumn61.Width = 88;
            this.radGridView6.MasterTemplate.Columns.AddRange(new Telerik.WinControls.UI.GridViewDataColumn[] {
            gridViewTextBoxColumn56,
            gridViewTextBoxColumn57,
            gridViewComboBoxColumn7,
            gridViewTextBoxColumn58,
            gridViewComboBoxColumn8,
            gridViewTextBoxColumn59,
            gridViewTextBoxColumn60,
            gridViewTextBoxColumn61});
            sortDescriptor4.PropertyName = "column3";
            this.radGridView6.MasterTemplate.SortDescriptors.AddRange(new Telerik.WinControls.Data.SortDescriptor[] {
            sortDescriptor4});
            this.radGridView6.Name = "radGridView6";
            this.radGridView6.RightToLeft = System.Windows.Forms.RightToLeft.No;
            this.radGridView6.Size = new System.Drawing.Size(1102, 209);
            this.radGridView6.TabIndex = 3;
            this.radGridView6.Text = "radGridView6";
            this.radGridView6.ThemeName = "TelerikMetroBlue";
            // 
            // radGroupBox8
            // 
            this.radGroupBox8.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
            this.radGroupBox8.Controls.Add(this.cbDist);
            this.radGroupBox8.Controls.Add(this.cbPais);
            this.radGroupBox8.Controls.Add(this.radLabel14);
            this.radGroupBox8.Controls.Add(this.radLabel15);
            this.radGroupBox8.FooterImageIndex = -1;
            this.radGroupBox8.FooterImageKey = "";
            this.radGroupBox8.HeaderImageIndex = -1;
            this.radGroupBox8.HeaderImageKey = "";
            this.radGroupBox8.HeaderMargin = new System.Windows.Forms.Padding(0);
            this.radGroupBox8.HeaderText = "";
            this.radGroupBox8.Location = new System.Drawing.Point(27, 33);
            this.radGroupBox8.Name = "radGroupBox8";
            this.radGroupBox8.Padding = new System.Windows.Forms.Padding(2, 18, 2, 2);
            // 
            // 
            // 
            this.radGroupBox8.RootElement.Padding = new System.Windows.Forms.Padding(2, 18, 2, 2);
            this.radGroupBox8.Size = new System.Drawing.Size(476, 167);
            this.radGroupBox8.TabIndex = 2;
            this.radGroupBox8.ThemeName = "TelerikMetroBlue";
            // 
            // cbDist
            // 
            this.cbDist.DropDownAnimationEnabled = true;
            this.cbDist.Location = new System.Drawing.Point(36, 106);
            this.cbDist.Name = "cbDist";
            this.cbDist.ShowImageInEditorArea = true;
            this.cbDist.Size = new System.Drawing.Size(389, 20);
            this.cbDist.TabIndex = 3;
            // 
            // cbPais
            // 
            this.cbPais.DropDownAnimationEnabled = true;
            this.cbPais.Location = new System.Drawing.Point(36, 45);
            this.cbPais.Name = "cbPais";
            this.cbPais.ShowImageInEditorArea = true;
            this.cbPais.Size = new System.Drawing.Size(141, 20);
            this.cbPais.TabIndex = 2;
            // 
            // radLabel14
            // 
            this.radLabel14.Location = new System.Drawing.Point(36, 21);
            this.radLabel14.Name = "radLabel14";
            this.radLabel14.Size = new System.Drawing.Size(28, 19);
            this.radLabel14.TabIndex = 0;
            this.radLabel14.Text = "Pais";
            // 
            // radLabel15
            // 
            this.radLabel15.Location = new System.Drawing.Point(36, 82);
            this.radLabel15.Name = "radLabel15";
            this.radLabel15.Size = new System.Drawing.Size(71, 19);
            this.radLabel15.TabIndex = 1;
            this.radLabel15.Text = "Distribuidor";
            // 
            // tabAgruparP
            // 
            this.tabAgruparP.Controls.Add(this.btNuevoAP);
            this.tabAgruparP.Controls.Add(this.btActualAP);
            this.tabAgruparP.Controls.Add(this.radGridView13);
            this.tabAgruparP.Enabled = false;
            this.tabAgruparP.Location = new System.Drawing.Point(5, 31);
            this.tabAgruparP.Name = "tabAgruparP";
            this.tabAgruparP.Size = new System.Drawing.Size(1170, 624);
            this.tabAgruparP.Text = "Agrupaciones de Productos";
            // 
            // btNuevoAP
            // 
            this.btNuevoAP.Location = new System.Drawing.Point(106, 27);
            this.btNuevoAP.Name = "btNuevoAP";
            this.btNuevoAP.Size = new System.Drawing.Size(86, 24);
            this.btNuevoAP.TabIndex = 2;
            this.btNuevoAP.Text = "Nuevo";
            // 
            // btActualAP
            // 
            this.btActualAP.Location = new System.Drawing.Point(22, 27);
            this.btActualAP.Name = "btActualAP";
            this.btActualAP.Size = new System.Drawing.Size(78, 24);
            this.btActualAP.TabIndex = 1;
            this.btActualAP.Text = "Refresh";
            // 
            // radGridView13
            // 
            this.radGridView13.BackColor = System.Drawing.Color.White;
            this.radGridView13.Cursor = System.Windows.Forms.Cursors.Default;
            this.radGridView13.Font = new System.Drawing.Font("Segoe UI", 8.25F);
            this.radGridView13.ForeColor = System.Drawing.SystemColors.ControlText;
            this.radGridView13.ImeMode = System.Windows.Forms.ImeMode.NoControl;
            this.radGridView13.Location = new System.Drawing.Point(22, 60);
            // 
            // radGridView13
            // 
            gridViewTextBoxColumn62.EnableExpressionEditor = false;
            gridViewTextBoxColumn62.FormatString = "";
            gridViewTextBoxColumn62.HeaderText = "LAO Group";
            gridViewTextBoxColumn62.Name = "clLAOG";
            gridViewTextBoxColumn62.Width = 169;
            gridViewTextBoxColumn63.EnableExpressionEditor = false;
            gridViewTextBoxColumn63.FormatString = "";
            gridViewTextBoxColumn63.HeaderText = "Estrategic Group";
            gridViewTextBoxColumn63.Name = "clEstrategic";
            gridViewTextBoxColumn63.Width = 149;
            gridViewTextBoxColumn64.EnableExpressionEditor = false;
            gridViewTextBoxColumn64.FormatString = "";
            gridViewTextBoxColumn64.HeaderText = "Nivel 1";
            gridViewTextBoxColumn64.Name = "clN1";
            gridViewTextBoxColumn64.Width = 175;
            gridViewTextBoxColumn65.EnableExpressionEditor = false;
            gridViewTextBoxColumn65.FormatString = "";
            gridViewTextBoxColumn65.HeaderText = "Nivel 2";
            gridViewTextBoxColumn65.Name = "clN2";
            gridViewTextBoxColumn65.Width = 148;
            gridViewTextBoxColumn66.EnableExpressionEditor = false;
            gridViewTextBoxColumn66.FormatString = "";
            gridViewTextBoxColumn66.HeaderText = "Nivel 3";
            gridViewTextBoxColumn66.Name = "clN3";
            gridViewTextBoxColumn66.Width = 148;
            gridViewTextBoxColumn67.EnableExpressionEditor = false;
            gridViewTextBoxColumn67.FormatString = "";
            gridViewTextBoxColumn67.HeaderText = "Nivel 4";
            gridViewTextBoxColumn67.Name = "clN4";
            gridViewTextBoxColumn67.Width = 132;
            gridViewTextBoxColumn68.EnableExpressionEditor = false;
            gridViewTextBoxColumn68.FormatString = "";
            gridViewTextBoxColumn68.HeaderText = "Nivel 5";
            gridViewTextBoxColumn68.Name = "clN5";
            gridViewTextBoxColumn68.Width = 115;
            this.radGridView13.MasterTemplate.Columns.AddRange(new Telerik.WinControls.UI.GridViewDataColumn[] {
            gridViewTextBoxColumn62,
            gridViewTextBoxColumn63,
            gridViewTextBoxColumn64,
            gridViewTextBoxColumn65,
            gridViewTextBoxColumn66,
            gridViewTextBoxColumn67,
            gridViewTextBoxColumn68});
            sortDescriptor5.PropertyName = "column1";
            this.radGridView13.MasterTemplate.SortDescriptors.AddRange(new Telerik.WinControls.Data.SortDescriptor[] {
            sortDescriptor5});
            this.radGridView13.Name = "radGridView13";
            this.radGridView13.RightToLeft = System.Windows.Forms.RightToLeft.No;
            this.radGridView13.Size = new System.Drawing.Size(1055, 150);
            this.radGridView13.TabIndex = 0;
            this.radGridView13.Text = "radGridView13";
            this.radGridView13.ThemeName = "TelerikMetroBlue";
            // 
            // tabDistribuidor
            // 
            this.tabDistribuidor.Controls.Add(this.btLimpiarD);
            this.tabDistribuidor.Controls.Add(this.btKam);
            this.tabDistribuidor.Controls.Add(this.radGridView7);
            this.tabDistribuidor.Enabled = false;
            this.tabDistribuidor.Location = new System.Drawing.Point(5, 31);
            this.tabDistribuidor.Name = "tabDistribuidor";
            this.tabDistribuidor.Size = new System.Drawing.Size(1170, 624);
            this.tabDistribuidor.Text = "Distribuidores";
            // 
            // btLimpiarD
            // 
            this.btLimpiarD.Location = new System.Drawing.Point(125, 17);
            this.btLimpiarD.Name = "btLimpiarD";
            this.btLimpiarD.Size = new System.Drawing.Size(70, 24);
            this.btLimpiarD.TabIndex = 2;
            this.btLimpiarD.Text = "Limpiar";
            // 
            // btKam
            // 
            this.btKam.Location = new System.Drawing.Point(45, 17);
            this.btKam.Name = "btKam";
            this.btKam.Size = new System.Drawing.Size(74, 24);
            this.btKam.TabIndex = 1;
            this.btKam.Text = "KAM";
            // 
            // radGridView7
            // 
            this.radGridView7.BackColor = System.Drawing.Color.White;
            this.radGridView7.Cursor = System.Windows.Forms.Cursors.Default;
            this.radGridView7.Font = new System.Drawing.Font("Segoe UI", 8.25F);
            this.radGridView7.ForeColor = System.Drawing.SystemColors.ControlText;
            this.radGridView7.ImeMode = System.Windows.Forms.ImeMode.NoControl;
            this.radGridView7.Location = new System.Drawing.Point(45, 57);
            // 
            // radGridView7
            // 
            this.radGridView7.MasterTemplate.AutoGenerateColumns = false;
            gridViewTextBoxColumn69.EnableExpressionEditor = false;
            gridViewTextBoxColumn69.FormatString = "";
            gridViewTextBoxColumn69.HeaderText = "Pais";
            gridViewTextBoxColumn69.Name = "clPais";
            gridViewTextBoxColumn69.Width = 54;
            gridViewTextBoxColumn70.EnableExpressionEditor = false;
            gridViewTextBoxColumn70.FormatString = "";
            gridViewTextBoxColumn70.HeaderText = "Nombre Distribuidor";
            gridViewTextBoxColumn70.Name = "clNomDis";
            gridViewTextBoxColumn70.Width = 161;
            gridViewTextBoxColumn71.EnableExpressionEditor = false;
            gridViewTextBoxColumn71.FormatString = "";
            gridViewTextBoxColumn71.HeaderText = "Nombre Corto";
            gridViewTextBoxColumn71.Name = "clNomCor";
            gridViewTextBoxColumn71.Width = 162;
            gridViewTextBoxColumn72.EnableExpressionEditor = false;
            gridViewTextBoxColumn72.FormatString = "";
            gridViewTextBoxColumn72.HeaderText = "KAM";
            gridViewTextBoxColumn72.Name = "clKam";
            gridViewTextBoxColumn72.Width = 136;
            gridViewComboBoxColumn9.DisplayMember = null;
            gridViewComboBoxColumn9.EnableExpressionEditor = false;
            gridViewComboBoxColumn9.FormatString = "";
            gridViewComboBoxColumn9.HeaderText = "Import";
            gridViewComboBoxColumn9.Name = "clImport";
            gridViewComboBoxColumn9.ValueMember = null;
            gridViewComboBoxColumn9.Width = 78;
            gridViewComboBoxColumn10.DisplayMember = null;
            gridViewComboBoxColumn10.EnableExpressionEditor = false;
            gridViewComboBoxColumn10.FormatString = "";
            gridViewComboBoxColumn10.HeaderText = "UseOnKPLs";
            gridViewComboBoxColumn10.Name = "clUse";
            gridViewComboBoxColumn10.ValueMember = null;
            gridViewComboBoxColumn10.Width = 116;
            gridViewComboBoxColumn11.DisplayMember = null;
            gridViewComboBoxColumn11.EnableExpressionEditor = false;
            gridViewComboBoxColumn11.FormatString = "";
            gridViewComboBoxColumn11.HeaderText = "Codigo Distribuidor";
            gridViewComboBoxColumn11.Name = "clCodDis";
            gridViewComboBoxColumn11.ValueMember = null;
            gridViewComboBoxColumn11.Width = 140;
            gridViewTextBoxColumn73.EnableExpressionEditor = false;
            gridViewTextBoxColumn73.FormatString = "";
            gridViewTextBoxColumn73.HeaderText = "GBA";
            gridViewTextBoxColumn73.Name = "clGBA";
            gridViewTextBoxColumn74.EnableExpressionEditor = false;
            gridViewTextBoxColumn74.FormatString = "";
            gridViewTextBoxColumn74.HeaderText = "Creacion";
            gridViewTextBoxColumn74.Name = "clCreacion";
            gridViewTextBoxColumn74.Width = 86;
            gridViewTextBoxColumn75.EnableExpressionEditor = false;
            gridViewTextBoxColumn75.FormatString = "";
            gridViewTextBoxColumn75.HeaderText = "Actualizacion";
            gridViewTextBoxColumn75.Name = "clActual";
            gridViewTextBoxColumn75.Width = 118;
            this.radGridView7.MasterTemplate.Columns.AddRange(new Telerik.WinControls.UI.GridViewDataColumn[] {
            gridViewTextBoxColumn69,
            gridViewTextBoxColumn70,
            gridViewTextBoxColumn71,
            gridViewTextBoxColumn72,
            gridViewComboBoxColumn9,
            gridViewComboBoxColumn10,
            gridViewComboBoxColumn11,
            gridViewTextBoxColumn73,
            gridViewTextBoxColumn74,
            gridViewTextBoxColumn75});
            this.radGridView7.Name = "radGridView7";
            this.radGridView7.RightToLeft = System.Windows.Forms.RightToLeft.No;
            this.radGridView7.Size = new System.Drawing.Size(1116, 460);
            this.radGridView7.TabIndex = 0;
            this.radGridView7.Text = "radGridView7";
            this.radGridView7.ThemeName = "TelerikMetroBlue";
            // 
            // tabKAM
            // 
            this.tabKAM.Controls.Add(this.btNuevo);
            this.tabKAM.Controls.Add(this.radGridView8);
            this.tabKAM.Enabled = false;
            this.tabKAM.Location = new System.Drawing.Point(5, 31);
            this.tabKAM.Name = "tabKAM";
            this.tabKAM.Size = new System.Drawing.Size(1170, 624);
            this.tabKAM.Text = "KAM\'S";
            // 
            // btNuevo
            // 
            this.btNuevo.Image = global::CRM_TOOLS.Properties.Resources.Add;
            this.btNuevo.ImageAlignment = System.Drawing.ContentAlignment.MiddleCenter;
            this.btNuevo.Location = new System.Drawing.Point(160, 14);
            this.btNuevo.Name = "btNuevo";
            this.btNuevo.Size = new System.Drawing.Size(46, 43);
            this.btNuevo.TabIndex = 1;
            // 
            // radGridView8
            // 
            this.radGridView8.BackColor = System.Drawing.Color.White;
            this.radGridView8.Cursor = System.Windows.Forms.Cursors.Default;
            this.radGridView8.Font = new System.Drawing.Font("Segoe UI", 8.25F);
            this.radGridView8.ForeColor = System.Drawing.SystemColors.ControlText;
            this.radGridView8.ImeMode = System.Windows.Forms.ImeMode.NoControl;
            this.radGridView8.Location = new System.Drawing.Point(222, 14);
            // 
            // 
            // 
            this.radGridView8.MasterTemplate.AutoGenerateColumns = false;
            gridViewTextBoxColumn76.EnableExpressionEditor = false;
            gridViewTextBoxColumn76.FormatString = "";
            gridViewTextBoxColumn76.HeaderText = "Codigo KAM";
            gridViewTextBoxColumn76.Name = "clCodKam";
            gridViewTextBoxColumn76.SortOrder = Telerik.WinControls.UI.RadSortOrder.Ascending;
            gridViewTextBoxColumn76.Width = 185;
            gridViewComboBoxColumn12.DisplayMember = null;
            gridViewComboBoxColumn12.EnableExpressionEditor = false;
            gridViewComboBoxColumn12.FormatString = "";
            gridViewComboBoxColumn12.HeaderText = "Pais";
            gridViewComboBoxColumn12.Name = "clPais";
            gridViewComboBoxColumn12.ValueMember = null;
            gridViewComboBoxColumn12.Width = 111;
            gridViewTextBoxColumn77.EnableExpressionEditor = false;
            gridViewTextBoxColumn77.FormatString = "";
            gridViewTextBoxColumn77.HeaderText = "Key Accounts Manager";
            gridViewTextBoxColumn77.Name = "clKey";
            gridViewTextBoxColumn77.Width = 224;
            gridViewComboBoxColumn13.DisplayMember = null;
            gridViewComboBoxColumn13.EnableExpressionEditor = false;
            gridViewComboBoxColumn13.FormatString = "";
            gridViewComboBoxColumn13.HeaderText = "Territorio GBA";
            gridViewComboBoxColumn13.Name = "clTerritorio ";
            gridViewComboBoxColumn13.ValueMember = null;
            gridViewComboBoxColumn13.Width = 142;
            gridViewCheckBoxColumn1.EnableExpressionEditor = false;
            gridViewCheckBoxColumn1.FormatString = "";
            gridViewCheckBoxColumn1.HeaderText = "Estado";
            gridViewCheckBoxColumn1.MinWidth = 20;
            gridViewCheckBoxColumn1.Name = "clEstado";
            gridViewCheckBoxColumn1.Width = 62;
            this.radGridView8.MasterTemplate.Columns.AddRange(new Telerik.WinControls.UI.GridViewDataColumn[] {
            gridViewTextBoxColumn76,
            gridViewComboBoxColumn12,
            gridViewTextBoxColumn77,
            gridViewComboBoxColumn13,
            gridViewCheckBoxColumn1});
            sortDescriptor6.PropertyName = "clCodKam";
            this.radGridView8.MasterTemplate.SortDescriptors.AddRange(new Telerik.WinControls.Data.SortDescriptor[] {
            sortDescriptor6});
            this.radGridView8.Name = "radGridView8";
            this.radGridView8.RightToLeft = System.Windows.Forms.RightToLeft.No;
            this.radGridView8.Size = new System.Drawing.Size(750, 469);
            this.radGridView8.TabIndex = 0;
            this.radGridView8.Text = "radGridView8";
            this.radGridView8.ThemeName = "TelerikMetroBlue";
            // 
            // tabPais
            // 
            this.tabPais.Controls.Add(this.radGridView9);
            this.tabPais.Enabled = false;
            this.tabPais.Location = new System.Drawing.Point(5, 31);
            this.tabPais.Name = "tabPais";
            this.tabPais.Size = new System.Drawing.Size(1170, 624);
            this.tabPais.Text = "Paises";
            // 
            // radGridView9
            // 
            this.radGridView9.BackColor = System.Drawing.Color.White;
            this.radGridView9.Cursor = System.Windows.Forms.Cursors.Default;
            this.radGridView9.Font = new System.Drawing.Font("Segoe UI", 8.25F);
            this.radGridView9.ForeColor = System.Drawing.SystemColors.ControlText;
            this.radGridView9.ImeMode = System.Windows.Forms.ImeMode.NoControl;
            this.radGridView9.Location = new System.Drawing.Point(58, 27);
            // 
            // 
            // 
            gridViewTextBoxColumn78.EnableExpressionEditor = false;
            gridViewTextBoxColumn78.FormatString = "";
            gridViewTextBoxColumn78.HeaderText = "Codigo";
            gridViewTextBoxColumn78.Name = "clCod";
            gridViewTextBoxColumn78.Width = 180;
            gridViewTextBoxColumn79.EnableExpressionEditor = false;
            gridViewTextBoxColumn79.FormatString = "";
            gridViewTextBoxColumn79.HeaderText = "Descripcion Pais";
            gridViewTextBoxColumn79.Name = "clDes";
            gridViewTextBoxColumn79.SortOrder = Telerik.WinControls.UI.RadSortOrder.Ascending;
            gridViewTextBoxColumn79.Width = 218;
            gridViewTextBoxColumn80.EnableExpressionEditor = false;
            gridViewTextBoxColumn80.FormatString = "";
            gridViewTextBoxColumn80.HeaderText = "Modena Pais";
            gridViewTextBoxColumn80.Name = "clMoneda";
            gridViewTextBoxColumn80.Width = 123;
            gridViewTextBoxColumn81.EnableExpressionEditor = false;
            gridViewTextBoxColumn81.FormatString = "";
            gridViewTextBoxColumn81.HeaderText = "Region";
            gridViewTextBoxColumn81.Name = "clRegion";
            gridViewTextBoxColumn81.Width = 148;
            gridViewTextBoxColumn82.EnableExpressionEditor = false;
            gridViewTextBoxColumn82.FormatString = "";
            gridViewTextBoxColumn82.HeaderText = "SubRegion";
            gridViewTextBoxColumn82.Name = "clSubReg";
            gridViewTextBoxColumn82.Width = 152;
            gridViewTextBoxColumn83.EnableExpressionEditor = false;
            gridViewTextBoxColumn83.FormatString = "";
            gridViewTextBoxColumn83.HeaderText = "Creacion";
            gridViewTextBoxColumn83.Name = "clCreacion";
            gridViewTextBoxColumn83.Width = 115;
            gridViewTextBoxColumn84.EnableExpressionEditor = false;
            gridViewTextBoxColumn84.FormatString = "";
            gridViewTextBoxColumn84.HeaderText = "Actualizacion";
            gridViewTextBoxColumn84.Name = "clActual";
            gridViewTextBoxColumn84.Width = 97;
            this.radGridView9.MasterTemplate.Columns.AddRange(new Telerik.WinControls.UI.GridViewDataColumn[] {
            gridViewTextBoxColumn78,
            gridViewTextBoxColumn79,
            gridViewTextBoxColumn80,
            gridViewTextBoxColumn81,
            gridViewTextBoxColumn82,
            gridViewTextBoxColumn83,
            gridViewTextBoxColumn84});
            sortDescriptor7.PropertyName = "clDes";
            this.radGridView9.MasterTemplate.SortDescriptors.AddRange(new Telerik.WinControls.Data.SortDescriptor[] {
            sortDescriptor7});
            this.radGridView9.Name = "radGridView9";
            this.radGridView9.RightToLeft = System.Windows.Forms.RightToLeft.No;
            this.radGridView9.Size = new System.Drawing.Size(1058, 344);
            this.radGridView9.TabIndex = 0;
            this.radGridView9.Text = "radGridView9";
            this.radGridView9.ThemeName = "TelerikMetroBlue";
            // 
            // tabSegmento
            // 
            this.tabSegmento.Controls.Add(this.btNew);
            this.tabSegmento.Controls.Add(this.radGridView10);
            this.tabSegmento.Enabled = false;
            this.tabSegmento.Location = new System.Drawing.Point(5, 31);
            this.tabSegmento.Name = "tabSegmento";
            this.tabSegmento.Size = new System.Drawing.Size(1170, 624);
            this.tabSegmento.Text = "Segmentos";
            // 
            // btNew
            // 
            this.btNew.Image = global::CRM_TOOLS.Properties.Resources.Add;
            this.btNew.ImageAlignment = System.Drawing.ContentAlignment.MiddleCenter;
            this.btNew.Location = new System.Drawing.Point(177, 16);
            this.btNew.Name = "btNew";
            this.btNew.Size = new System.Drawing.Size(45, 42);
            this.btNew.TabIndex = 1;
            // 
            // radGridView10
            // 
            this.radGridView10.BackColor = System.Drawing.Color.White;
            this.radGridView10.Cursor = System.Windows.Forms.Cursors.Default;
            this.radGridView10.Font = new System.Drawing.Font("Segoe UI", 8.25F);
            this.radGridView10.ForeColor = System.Drawing.SystemColors.ControlText;
            this.radGridView10.ImeMode = System.Windows.Forms.ImeMode.NoControl;
            this.radGridView10.Location = new System.Drawing.Point(228, 16);
            // 
            // 
            // 
            gridViewTextBoxColumn85.EnableExpressionEditor = false;
            gridViewTextBoxColumn85.FormatString = "";
            gridViewTextBoxColumn85.HeaderText = "Codigo";
            gridViewTextBoxColumn85.Name = "clCod";
            gridViewTextBoxColumn85.Width = 106;
            gridViewTextBoxColumn86.EnableExpressionEditor = false;
            gridViewTextBoxColumn86.FormatString = "";
            gridViewTextBoxColumn86.HeaderText = "Descripcion";
            gridViewTextBoxColumn86.Name = "clDes";
            gridViewTextBoxColumn86.Width = 139;
            gridViewComboBoxColumn14.DisplayMember = null;
            gridViewComboBoxColumn14.EnableExpressionEditor = false;
            gridViewComboBoxColumn14.FormatString = "";
            gridViewComboBoxColumn14.HeaderText = "ID";
            gridViewComboBoxColumn14.Name = "clId";
            gridViewComboBoxColumn14.ValueMember = null;
            gridViewComboBoxColumn14.Width = 57;
            gridViewTextBoxColumn87.EnableExpressionEditor = false;
            gridViewTextBoxColumn87.FormatString = "";
            gridViewTextBoxColumn87.HeaderText = "Segmento";
            gridViewTextBoxColumn87.Name = "clSeg";
            gridViewTextBoxColumn87.Width = 182;
            gridViewTextBoxColumn88.EnableExpressionEditor = false;
            gridViewTextBoxColumn88.FormatString = "";
            gridViewTextBoxColumn88.HeaderText = "Creacion";
            gridViewTextBoxColumn88.Name = "clCreacion";
            gridViewTextBoxColumn88.Width = 132;
            gridViewTextBoxColumn89.EnableExpressionEditor = false;
            gridViewTextBoxColumn89.FormatString = "";
            gridViewTextBoxColumn89.HeaderText = "Actualizacion";
            gridViewTextBoxColumn89.Name = "clActual";
            gridViewTextBoxColumn89.Width = 116;
            this.radGridView10.MasterTemplate.Columns.AddRange(new Telerik.WinControls.UI.GridViewDataColumn[] {
            gridViewTextBoxColumn85,
            gridViewTextBoxColumn86,
            gridViewComboBoxColumn14,
            gridViewTextBoxColumn87,
            gridViewTextBoxColumn88,
            gridViewTextBoxColumn89});
            sortDescriptor8.PropertyName = "column1";
            this.radGridView10.MasterTemplate.SortDescriptors.AddRange(new Telerik.WinControls.Data.SortDescriptor[] {
            sortDescriptor8});
            this.radGridView10.Name = "radGridView10";
            this.radGridView10.RightToLeft = System.Windows.Forms.RightToLeft.No;
            this.radGridView10.Size = new System.Drawing.Size(753, 455);
            this.radGridView10.TabIndex = 0;
            this.radGridView10.Text = "radGridView10";
            this.radGridView10.ThemeName = "TelerikMetroBlue";
            // 
            // tabNuevosSegmentos
            // 
            this.tabNuevosSegmentos.Enabled = false;
            this.tabNuevosSegmentos.Location = new System.Drawing.Point(5, 31);
            this.tabNuevosSegmentos.Name = "tabNuevosSegmentos";
            this.tabNuevosSegmentos.Size = new System.Drawing.Size(1170, 624);
            this.tabNuevosSegmentos.Text = "Nuevos Segmentos";
            // 
            // tabConglomerados
            // 
            this.tabConglomerados.Controls.Add(this.textBox2);
            this.tabConglomerados.Controls.Add(this.btActualCon);
            this.tabConglomerados.Controls.Add(this.radGridView11);
            this.tabConglomerados.Controls.Add(this.txtGrupoCliente);
            this.tabConglomerados.Controls.Add(this.radLabel17);
            this.tabConglomerados.Controls.Add(this.radLabel16);
            this.tabConglomerados.Controls.Add(this.cbGAN);
            this.tabConglomerados.Controls.Add(this.radGroupBox9);
            this.tabConglomerados.Enabled = false;
            this.tabConglomerados.Location = new System.Drawing.Point(5, 31);
            this.tabConglomerados.Name = "tabConglomerados";
            this.tabConglomerados.Size = new System.Drawing.Size(1170, 624);
            this.tabConglomerados.Text = "Conglomerados";
            // 
            // textBox2
            // 
            this.textBox2.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
            this.textBox2.Location = new System.Drawing.Point(554, 40);
            this.textBox2.Multiline = true;
            this.textBox2.Name = "textBox2";
            this.textBox2.Size = new System.Drawing.Size(207, 214);
            this.textBox2.TabIndex = 7;
            // 
            // btActualCon
            // 
            this.btActualCon.Location = new System.Drawing.Point(726, 276);
            this.btActualCon.Name = "btActualCon";
            this.btActualCon.Size = new System.Drawing.Size(58, 31);
            this.btActualCon.TabIndex = 6;
            // 
            // radGridView11
            // 
            this.radGridView11.BackColor = System.Drawing.Color.White;
            this.radGridView11.Cursor = System.Windows.Forms.Cursors.Default;
            this.radGridView11.Font = new System.Drawing.Font("Segoe UI", 8.25F);
            this.radGridView11.ForeColor = System.Drawing.SystemColors.ControlText;
            this.radGridView11.ImeMode = System.Windows.Forms.ImeMode.NoControl;
            this.radGridView11.Location = new System.Drawing.Point(93, 323);
            // 
            // 
            // 
            gridViewTextBoxColumn90.EnableExpressionEditor = false;
            gridViewTextBoxColumn90.FormatString = "";
            gridViewTextBoxColumn90.HeaderText = "Codigo Cliente Compuesto";
            gridViewTextBoxColumn90.Name = "clCodClieComp";
            gridViewTextBoxColumn90.Width = 295;
            gridViewTextBoxColumn91.EnableExpressionEditor = false;
            gridViewTextBoxColumn91.FormatString = "";
            gridViewTextBoxColumn91.HeaderText = "Nombre Cliente";
            gridViewTextBoxColumn91.Name = "clNomClie";
            gridViewTextBoxColumn91.Width = 374;
            this.radGridView11.MasterTemplate.Columns.AddRange(new Telerik.WinControls.UI.GridViewDataColumn[] {
            gridViewTextBoxColumn90,
            gridViewTextBoxColumn91});
            this.radGridView11.Name = "radGridView11";
            this.radGridView11.RightToLeft = System.Windows.Forms.RightToLeft.No;
            this.radGridView11.Size = new System.Drawing.Size(691, 201);
            this.radGridView11.TabIndex = 5;
            this.radGridView11.Text = "radGridView11";
            this.radGridView11.ThemeName = "TelerikMetroBlue";
            // 
            // txtGrupoCliente
            // 
            this.txtGrupoCliente.Location = new System.Drawing.Point(195, 287);
            this.txtGrupoCliente.Name = "txtGrupoCliente";
            this.txtGrupoCliente.Size = new System.Drawing.Size(333, 20);
            this.txtGrupoCliente.TabIndex = 4;
            this.txtGrupoCliente.TabStop = false;
            this.txtGrupoCliente.Visible = false;
            // 
            // radLabel17
            // 
            this.radLabel17.Location = new System.Drawing.Point(107, 287);
            this.radLabel17.Name = "radLabel17";
            this.radLabel17.Size = new System.Drawing.Size(82, 19);
            this.radLabel17.TabIndex = 3;
            this.radLabel17.Text = "Grupo Cliente";
            this.radLabel17.Visible = false;
            // 
            // radLabel16
            // 
            this.radLabel16.Location = new System.Drawing.Point(107, 262);
            this.radLabel16.Name = "radLabel16";
            this.radLabel16.Size = new System.Drawing.Size(129, 19);
            this.radLabel16.TabIndex = 2;
            this.radLabel16.Text = "Global Account Name ";
            this.radLabel16.Visible = false;
            // 
            // cbGAN
            // 
            this.cbGAN.DropDownAnimationEnabled = true;
            this.cbGAN.Location = new System.Drawing.Point(242, 262);
            this.cbGAN.Name = "cbGAN";
            this.cbGAN.ShowImageInEditorArea = true;
            this.cbGAN.Size = new System.Drawing.Size(286, 20);
            this.cbGAN.TabIndex = 1;
            this.cbGAN.Visible = false;
            // 
            // radGroupBox9
            // 
            this.radGroupBox9.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
            this.radGroupBox9.Controls.Add(this.cbSegmento);
            this.radGroupBox9.Controls.Add(this.cbPlataformas);
            this.radGroupBox9.Controls.Add(this.radRadioButton5);
            this.radGroupBox9.Controls.Add(this.radRadioButton4);
            this.radGroupBox9.Controls.Add(this.radRadioButton3);
            this.radGroupBox9.Controls.Add(this.radRadioButton2);
            this.radGroupBox9.Controls.Add(this.radRadioButton1);
            this.radGroupBox9.FooterImageIndex = -1;
            this.radGroupBox9.FooterImageKey = "";
            this.radGroupBox9.HeaderImageIndex = -1;
            this.radGroupBox9.HeaderImageKey = "";
            this.radGroupBox9.HeaderMargin = new System.Windows.Forms.Padding(0);
            this.radGroupBox9.HeaderText = "Opciones";
            this.radGroupBox9.Location = new System.Drawing.Point(93, 28);
            this.radGroupBox9.Name = "radGroupBox9";
            this.radGroupBox9.Padding = new System.Windows.Forms.Padding(2, 18, 2, 2);
            // 
            // 
            // 
            this.radGroupBox9.RootElement.Padding = new System.Windows.Forms.Padding(2, 18, 2, 2);
            this.radGroupBox9.Size = new System.Drawing.Size(431, 226);
            this.radGroupBox9.TabIndex = 0;
            this.radGroupBox9.Text = "Opciones";
            // 
            // cbSegmento
            // 
            this.cbSegmento.DropDownAnimationEnabled = true;
            this.cbSegmento.Location = new System.Drawing.Point(123, 188);
            this.cbSegmento.Name = "cbSegmento";
            this.cbSegmento.ShowImageInEditorArea = true;
            this.cbSegmento.Size = new System.Drawing.Size(152, 20);
            this.cbSegmento.TabIndex = 6;
            // 
            // cbPlataformas
            // 
            this.cbPlataformas.DropDownAnimationEnabled = true;
            this.cbPlataformas.Location = new System.Drawing.Point(123, 144);
            this.cbPlataformas.Name = "cbPlataformas";
            this.cbPlataformas.ShowImageInEditorArea = true;
            this.cbPlataformas.Size = new System.Drawing.Size(118, 20);
            this.cbPlataformas.TabIndex = 5;
            // 
            // radRadioButton5
            // 
            this.radRadioButton5.Location = new System.Drawing.Point(24, 190);
            this.radRadioButton5.Name = "radRadioButton5";
            this.radRadioButton5.Size = new System.Drawing.Size(110, 18);
            this.radRadioButton5.TabIndex = 4;
            this.radRadioButton5.Text = "Segmento";
            // 
            // radRadioButton4
            // 
            this.radRadioButton4.Location = new System.Drawing.Point(24, 146);
            this.radRadioButton4.Name = "radRadioButton4";
            this.radRadioButton4.Size = new System.Drawing.Size(110, 18);
            this.radRadioButton4.TabIndex = 3;
            this.radRadioButton4.Text = "Plataformas";
            // 
            // radRadioButton3
            // 
            this.radRadioButton3.Location = new System.Drawing.Point(24, 105);
            this.radRadioButton3.Name = "radRadioButton3";
            this.radRadioButton3.Size = new System.Drawing.Size(110, 18);
            this.radRadioButton3.TabIndex = 2;
            this.radRadioButton3.Text = "Grupo Cliente";
            // 
            // radRadioButton2
            // 
            this.radRadioButton2.Location = new System.Drawing.Point(24, 69);
            this.radRadioButton2.Name = "radRadioButton2";
            this.radRadioButton2.Size = new System.Drawing.Size(146, 18);
            this.radRadioButton2.TabIndex = 1;
            this.radRadioButton2.Text = "Global Account Name";
            // 
            // radRadioButton1
            // 
            this.radRadioButton1.Location = new System.Drawing.Point(24, 31);
            this.radRadioButton1.Name = "radRadioButton1";
            this.radRadioButton1.Size = new System.Drawing.Size(110, 18);
            this.radRadioButton1.TabIndex = 0;
            this.radRadioButton1.Text = "Inactivo";
            // 
            // tabCuentasGlobales
            // 
            this.tabCuentasGlobales.Controls.Add(this.radGridView12);
            this.tabCuentasGlobales.Enabled = false;
            this.tabCuentasGlobales.Location = new System.Drawing.Point(5, 31);
            this.tabCuentasGlobales.Name = "tabCuentasGlobales";
            this.tabCuentasGlobales.Size = new System.Drawing.Size(1170, 624);
            this.tabCuentasGlobales.Text = "Cuentas Globales";
            // 
            // radGridView12
            // 
            this.radGridView12.BackColor = System.Drawing.Color.White;
            this.radGridView12.Cursor = System.Windows.Forms.Cursors.Default;
            this.radGridView12.Font = new System.Drawing.Font("Segoe UI", 8.25F);
            this.radGridView12.ForeColor = System.Drawing.SystemColors.ControlText;
            this.radGridView12.ImeMode = System.Windows.Forms.ImeMode.NoControl;
            this.radGridView12.Location = new System.Drawing.Point(418, 77);
            // 
            // 
            // 
            gridViewTextBoxColumn92.EnableExpressionEditor = false;
            gridViewTextBoxColumn92.FormatString = "";
            gridViewTextBoxColumn92.HeaderText = "Codigo";
            gridViewTextBoxColumn92.Name = "clCod";
            gridViewTextBoxColumn92.Width = 131;
            gridViewTextBoxColumn93.EnableExpressionEditor = false;
            gridViewTextBoxColumn93.FormatString = "";
            gridViewTextBoxColumn93.HeaderText = "Nombre";
            gridViewTextBoxColumn93.Name = "clNom";
            gridViewTextBoxColumn93.Width = 205;
            this.radGridView12.MasterTemplate.Columns.AddRange(new Telerik.WinControls.UI.GridViewDataColumn[] {
            gridViewTextBoxColumn92,
            gridViewTextBoxColumn93});
            this.radGridView12.Name = "radGridView12";
            this.radGridView12.RightToLeft = System.Windows.Forms.RightToLeft.No;
            this.radGridView12.Size = new System.Drawing.Size(363, 437);
            this.radGridView12.TabIndex = 0;
            this.radGridView12.Text = "radGridView12";
            this.radGridView12.ThemeName = "TelerikMetroBlue";
            // 
            // radPageViewPage14
            // 
            this.radPageViewPage14.Location = new System.Drawing.Point(5, 31);
            this.radPageViewPage14.Name = "radPageViewPage14";
            this.radPageViewPage14.Size = new System.Drawing.Size(1170, 543);
            // 
            // tabCalculoABC
            // 
            this.tabCalculoABC.Controls.Add(this.radPageView1);
            this.tabCalculoABC.Enabled = false;
            this.tabCalculoABC.Location = new System.Drawing.Point(5, 31);
            this.tabCalculoABC.Name = "tabCalculoABC";
            this.tabCalculoABC.Size = new System.Drawing.Size(1170, 624);
            this.tabCalculoABC.Text = "Calculos Analisis de ABC";
            // 
            // radPageView1
            // 
            this.radPageView1.Controls.Add(this.radPageViewPage18);
            this.radPageView1.Controls.Add(this.radPageViewPage19);
            this.radPageView1.Controls.Add(this.radPageViewPage20);
            this.radPageView1.Controls.Add(this.radPageViewPage21);
            this.radPageView1.Location = new System.Drawing.Point(18, 3);
            this.radPageView1.Name = "radPageView1";
            this.radPageView1.SelectedPage = this.radPageViewPage18;
            this.radPageView1.Size = new System.Drawing.Size(1133, 497);
            this.radPageView1.TabIndex = 0;
            this.radPageView1.ThemeName = "Windows7";
            // 
            // radPageViewPage18
            // 
            this.radPageViewPage18.Controls.Add(this.btCalcularD);
            this.radPageViewPage18.Controls.Add(this.textBox5);
            this.radPageViewPage18.Controls.Add(this.radGroupBox10);
            this.radPageViewPage18.Location = new System.Drawing.Point(11, 37);
            this.radPageViewPage18.Name = "radPageViewPage18";
            this.radPageViewPage18.Size = new System.Drawing.Size(1111, 449);
            this.radPageViewPage18.Text = "Distribuidor";
            // 
            // btCalcularD
            // 
            this.btCalcularD.Location = new System.Drawing.Point(103, 310);
            this.btCalcularD.Name = "btCalcularD";
            this.btCalcularD.Size = new System.Drawing.Size(89, 42);
            this.btCalcularD.TabIndex = 2;
            this.btCalcularD.Text = "Calcular";
            // 
            // textBox5
            // 
            this.textBox5.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
            this.textBox5.Location = new System.Drawing.Point(520, 39);
            this.textBox5.Multiline = true;
            this.textBox5.Name = "textBox5";
            this.textBox5.Size = new System.Drawing.Size(375, 367);
            this.textBox5.TabIndex = 1;
            // 
            // radGroupBox10
            // 
            this.radGroupBox10.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
            this.radGroupBox10.Controls.Add(this.radTextBox1);
            this.radGroupBox10.Controls.Add(this.radLabel22);
            this.radGroupBox10.Controls.Add(this.radLabel21);
            this.radGroupBox10.Controls.Add(this.radLabel20);
            this.radGroupBox10.Controls.Add(this.cbHasta);
            this.radGroupBox10.Controls.Add(this.cbDesde);
            this.radGroupBox10.Controls.Add(this.radLabel19);
            this.radGroupBox10.Controls.Add(this.radLabel18);
            this.radGroupBox10.Controls.Add(this.cbDistD);
            this.radGroupBox10.Controls.Add(this.cbPaisDis);
            this.radGroupBox10.Controls.Add(this.radRadioButton7);
            this.radGroupBox10.Controls.Add(this.radRadioButton6);
            this.radGroupBox10.FooterImageIndex = -1;
            this.radGroupBox10.FooterImageKey = "";
            this.radGroupBox10.HeaderImageIndex = -1;
            this.radGroupBox10.HeaderImageKey = "";
            this.radGroupBox10.HeaderMargin = new System.Windows.Forms.Padding(0);
            this.radGroupBox10.HeaderText = "Opcion";
            this.radGroupBox10.Location = new System.Drawing.Point(41, 41);
            this.radGroupBox10.Name = "radGroupBox10";
            this.radGroupBox10.Padding = new System.Windows.Forms.Padding(2, 18, 2, 2);
            // 
            // 
            // 
            this.radGroupBox10.RootElement.Padding = new System.Windows.Forms.Padding(2, 18, 2, 2);
            this.radGroupBox10.Size = new System.Drawing.Size(447, 241);
            this.radGroupBox10.TabIndex = 0;
            this.radGroupBox10.Text = "Opcion";
            this.radGroupBox10.ThemeName = "Windows7";
            // 
            // radTextBox1
            // 
            this.radTextBox1.Location = new System.Drawing.Point(267, 196);
            this.radTextBox1.Name = "radTextBox1";
            this.radTextBox1.Size = new System.Drawing.Size(100, 20);
            this.radTextBox1.TabIndex = 11;
            this.radTextBox1.TabStop = false;
            // 
            // radLabel22
            // 
            this.radLabel22.Location = new System.Drawing.Point(267, 172);
            this.radLabel22.Name = "radLabel22";
            this.radLabel22.Size = new System.Drawing.Size(40, 16);
            this.radLabel22.TabIndex = 10;
            this.radLabel22.Text = "Meses";
            // 
            // radLabel21
            // 
            this.radLabel21.Location = new System.Drawing.Point(141, 172);
            this.radLabel21.Name = "radLabel21";
            this.radLabel21.Size = new System.Drawing.Size(36, 16);
            this.radLabel21.TabIndex = 9;
            this.radLabel21.Text = "Hasta";
            // 
            // radLabel20
            // 
            this.radLabel20.Location = new System.Drawing.Point(15, 172);
            this.radLabel20.Name = "radLabel20";
            this.radLabel20.Size = new System.Drawing.Size(39, 16);
            this.radLabel20.TabIndex = 8;
            this.radLabel20.Text = "Desde";
            // 
            // cbHasta
            // 
            this.cbHasta.DropDownAnimationEnabled = true;
            this.cbHasta.Location = new System.Drawing.Point(141, 196);
            this.cbHasta.Name = "cbHasta";
            this.cbHasta.ShowImageInEditorArea = true;
            this.cbHasta.Size = new System.Drawing.Size(106, 20);
            this.cbHasta.TabIndex = 7;
            // 
            // cbDesde
            // 
            this.cbDesde.DropDownAnimationEnabled = true;
            this.cbDesde.Location = new System.Drawing.Point(15, 196);
            this.cbDesde.Name = "cbDesde";
            this.cbDesde.ShowImageInEditorArea = true;
            this.cbDesde.Size = new System.Drawing.Size(106, 20);
            this.cbDesde.TabIndex = 6;
            // 
            // radLabel19
            // 
            this.radLabel19.Location = new System.Drawing.Point(15, 126);
            this.radLabel19.Name = "radLabel19";
            this.radLabel19.Size = new System.Drawing.Size(64, 16);
            this.radLabel19.TabIndex = 5;
            this.radLabel19.Text = "Distribuidor";
            // 
            // radLabel18
            // 
            this.radLabel18.Location = new System.Drawing.Point(15, 98);
            this.radLabel18.Name = "radLabel18";
            this.radLabel18.Size = new System.Drawing.Size(28, 16);
            this.radLabel18.TabIndex = 4;
            this.radLabel18.Text = "Pais";
            // 
            // cbDistD
            // 
            this.cbDistD.DropDownAnimationEnabled = true;
            this.cbDistD.Location = new System.Drawing.Point(86, 124);
            this.cbDistD.Name = "cbDistD";
            this.cbDistD.ShowImageInEditorArea = true;
            this.cbDistD.Size = new System.Drawing.Size(182, 20);
            this.cbDistD.TabIndex = 3;
            // 
            // cbPaisDis
            // 
            this.cbPaisDis.DropDownAnimationEnabled = true;
            this.cbPaisDis.Location = new System.Drawing.Point(86, 98);
            this.cbPaisDis.Name = "cbPaisDis";
            this.cbPaisDis.ShowImageInEditorArea = true;
            this.cbPaisDis.Size = new System.Drawing.Size(182, 20);
            this.cbPaisDis.TabIndex = 2;
            // 
            // radRadioButton7
            // 
            this.radRadioButton7.Location = new System.Drawing.Point(25, 58);
            this.radRadioButton7.Name = "radRadioButton7";
            this.radRadioButton7.Size = new System.Drawing.Size(126, 18);
            this.radRadioButton7.TabIndex = 1;
            this.radRadioButton7.Text = "Solo un Distribuidor";
            // 
            // radRadioButton6
            // 
            this.radRadioButton6.Location = new System.Drawing.Point(25, 34);
            this.radRadioButton6.Name = "radRadioButton6";
            this.radRadioButton6.Size = new System.Drawing.Size(152, 18);
            this.radRadioButton6.TabIndex = 0;
            this.radRadioButton6.Text = "Todos los Distribuidores";
            // 
            // radPageViewPage19
            // 
            this.radPageViewPage19.Controls.Add(this.btCalcularP);
            this.radPageViewPage19.Controls.Add(this.textBox6);
            this.radPageViewPage19.Controls.Add(this.radGroupBox11);
            this.radPageViewPage19.Location = new System.Drawing.Point(11, 37);
            this.radPageViewPage19.Name = "radPageViewPage19";
            this.radPageViewPage19.Size = new System.Drawing.Size(1111, 449);
            this.radPageViewPage19.Text = "Pais";
            // 
            // btCalcularP
            // 
            this.btCalcularP.Location = new System.Drawing.Point(101, 311);
            this.btCalcularP.Name = "btCalcularP";
            this.btCalcularP.Size = new System.Drawing.Size(89, 42);
            this.btCalcularP.TabIndex = 5;
            this.btCalcularP.Text = "Calcular";
            // 
            // textBox6
            // 
            this.textBox6.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
            this.textBox6.Location = new System.Drawing.Point(518, 40);
            this.textBox6.Multiline = true;
            this.textBox6.Name = "textBox6";
            this.textBox6.Size = new System.Drawing.Size(375, 367);
            this.textBox6.TabIndex = 4;
            // 
            // radGroupBox11
            // 
            this.radGroupBox11.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
            this.radGroupBox11.Controls.Add(this.txtMesP);
            this.radGroupBox11.Controls.Add(this.radLabel23);
            this.radGroupBox11.Controls.Add(this.radLabel24);
            this.radGroupBox11.Controls.Add(this.radLabel25);
            this.radGroupBox11.Controls.Add(this.cbHastaP);
            this.radGroupBox11.Controls.Add(this.cbDesdeP);
            this.radGroupBox11.Controls.Add(this.radLabel27);
            this.radGroupBox11.Controls.Add(this.cbPaisP);
            this.radGroupBox11.FooterImageIndex = -1;
            this.radGroupBox11.FooterImageKey = "";
            this.radGroupBox11.HeaderImageIndex = -1;
            this.radGroupBox11.HeaderImageKey = "";
            this.radGroupBox11.HeaderMargin = new System.Windows.Forms.Padding(0);
            this.radGroupBox11.HeaderText = "Opcion";
            this.radGroupBox11.Location = new System.Drawing.Point(39, 42);
            this.radGroupBox11.Name = "radGroupBox11";
            this.radGroupBox11.Padding = new System.Windows.Forms.Padding(2, 18, 2, 2);
            // 
            // 
            // 
            this.radGroupBox11.RootElement.Padding = new System.Windows.Forms.Padding(2, 18, 2, 2);
            this.radGroupBox11.Size = new System.Drawing.Size(447, 225);
            this.radGroupBox11.TabIndex = 3;
            this.radGroupBox11.Text = "Opcion";
            this.radGroupBox11.ThemeName = "Windows7";
            // 
            // txtMesP
            // 
            this.txtMesP.Location = new System.Drawing.Point(278, 144);
            this.txtMesP.Name = "txtMesP";
            this.txtMesP.Size = new System.Drawing.Size(100, 20);
            this.txtMesP.TabIndex = 11;
            this.txtMesP.TabStop = false;
            // 
            // radLabel23
            // 
            this.radLabel23.Location = new System.Drawing.Point(278, 120);
            this.radLabel23.Name = "radLabel23";
            this.radLabel23.Size = new System.Drawing.Size(40, 16);
            this.radLabel23.TabIndex = 10;
            this.radLabel23.Text = "Meses";
            // 
            // radLabel24
            // 
            this.radLabel24.Location = new System.Drawing.Point(152, 120);
            this.radLabel24.Name = "radLabel24";
            this.radLabel24.Size = new System.Drawing.Size(36, 16);
            this.radLabel24.TabIndex = 9;
            this.radLabel24.Text = "Hasta";
            // 
            // radLabel25
            // 
            this.radLabel25.Location = new System.Drawing.Point(26, 120);
            this.radLabel25.Name = "radLabel25";
            this.radLabel25.Size = new System.Drawing.Size(39, 16);
            this.radLabel25.TabIndex = 8;
            this.radLabel25.Text = "Desde";
            // 
            // cbHastaP
            // 
            this.cbHastaP.DropDownAnimationEnabled = true;
            this.cbHastaP.Location = new System.Drawing.Point(152, 144);
            this.cbHastaP.Name = "cbHastaP";
            this.cbHastaP.ShowImageInEditorArea = true;
            this.cbHastaP.Size = new System.Drawing.Size(106, 20);
            this.cbHastaP.TabIndex = 7;
            // 
            // cbDesdeP
            // 
            this.cbDesdeP.DropDownAnimationEnabled = true;
            this.cbDesdeP.Location = new System.Drawing.Point(26, 144);
            this.cbDesdeP.Name = "cbDesdeP";
            this.cbDesdeP.ShowImageInEditorArea = true;
            this.cbDesdeP.Size = new System.Drawing.Size(106, 20);
            this.cbDesdeP.TabIndex = 6;
            // 
            // radLabel27
            // 
            this.radLabel27.Location = new System.Drawing.Point(26, 60);
            this.radLabel27.Name = "radLabel27";
            this.radLabel27.Size = new System.Drawing.Size(28, 16);
            this.radLabel27.TabIndex = 4;
            this.radLabel27.Text = "Pais";
            // 
            // cbPaisP
            // 
            this.cbPaisP.DropDownAnimationEnabled = true;
            this.cbPaisP.Location = new System.Drawing.Point(97, 60);
            this.cbPaisP.Name = "cbPaisP";
            this.cbPaisP.ShowImageInEditorArea = true;
            this.cbPaisP.Size = new System.Drawing.Size(182, 20);
            this.cbPaisP.TabIndex = 2;
            // 
            // radPageViewPage20
            // 
            this.radPageViewPage20.Controls.Add(this.btCalcularR);
            this.radPageViewPage20.Controls.Add(this.textBox7);
            this.radPageViewPage20.Controls.Add(this.radGroupBox12);
            this.radPageViewPage20.Location = new System.Drawing.Point(11, 37);
            this.radPageViewPage20.Name = "radPageViewPage20";
            this.radPageViewPage20.Size = new System.Drawing.Size(1111, 449);
            this.radPageViewPage20.Text = "Region";
            // 
            // btCalcularR
            // 
            this.btCalcularR.Location = new System.Drawing.Point(106, 311);
            this.btCalcularR.Name = "btCalcularR";
            this.btCalcularR.Size = new System.Drawing.Size(89, 42);
            this.btCalcularR.TabIndex = 5;
            this.btCalcularR.Text = "Calcular";
            // 
            // textBox7
            // 
            this.textBox7.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
            this.textBox7.Location = new System.Drawing.Point(523, 40);
            this.textBox7.Multiline = true;
            this.textBox7.Name = "textBox7";
            this.textBox7.Size = new System.Drawing.Size(375, 367);
            this.textBox7.TabIndex = 4;
            // 
            // radGroupBox12
            // 
            this.radGroupBox12.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
            this.radGroupBox12.Controls.Add(this.txtMesR);
            this.radGroupBox12.Controls.Add(this.radLabel28);
            this.radGroupBox12.Controls.Add(this.radLabel29);
            this.radGroupBox12.Controls.Add(this.radLabel30);
            this.radGroupBox12.Controls.Add(this.cbHastaR);
            this.radGroupBox12.Controls.Add(this.cbDesdeR);
            this.radGroupBox12.Controls.Add(this.radLabel31);
            this.radGroupBox12.Controls.Add(this.cbRegion);
            this.radGroupBox12.FooterImageIndex = -1;
            this.radGroupBox12.FooterImageKey = "";
            this.radGroupBox12.HeaderImageIndex = -1;
            this.radGroupBox12.HeaderImageKey = "";
            this.radGroupBox12.HeaderMargin = new System.Windows.Forms.Padding(0);
            this.radGroupBox12.HeaderText = "Opcion";
            this.radGroupBox12.Location = new System.Drawing.Point(44, 42);
            this.radGroupBox12.Name = "radGroupBox12";
            this.radGroupBox12.Padding = new System.Windows.Forms.Padding(2, 18, 2, 2);
            // 
            // 
            // 
            this.radGroupBox12.RootElement.Padding = new System.Windows.Forms.Padding(2, 18, 2, 2);
            this.radGroupBox12.Size = new System.Drawing.Size(447, 230);
            this.radGroupBox12.TabIndex = 3;
            this.radGroupBox12.Text = "Opcion";
            this.radGroupBox12.ThemeName = "Windows7";
            // 
            // txtMesR
            // 
            this.txtMesR.Location = new System.Drawing.Point(267, 138);
            this.txtMesR.Name = "txtMesR";
            this.txtMesR.Size = new System.Drawing.Size(100, 20);
            this.txtMesR.TabIndex = 11;
            this.txtMesR.TabStop = false;
            // 
            // radLabel28
            // 
            this.radLabel28.Location = new System.Drawing.Point(267, 114);
            this.radLabel28.Name = "radLabel28";
            this.radLabel28.Size = new System.Drawing.Size(40, 16);
            this.radLabel28.TabIndex = 10;
            this.radLabel28.Text = "Meses";
            // 
            // radLabel29
            // 
            this.radLabel29.Location = new System.Drawing.Point(141, 114);
            this.radLabel29.Name = "radLabel29";
            this.radLabel29.Size = new System.Drawing.Size(36, 16);
            this.radLabel29.TabIndex = 9;
            this.radLabel29.Text = "Hasta";
            // 
            // radLabel30
            // 
            this.radLabel30.Location = new System.Drawing.Point(15, 114);
            this.radLabel30.Name = "radLabel30";
            this.radLabel30.Size = new System.Drawing.Size(39, 16);
            this.radLabel30.TabIndex = 8;
            this.radLabel30.Text = "Desde";
            // 
            // cbHastaR
            // 
            this.cbHastaR.DropDownAnimationEnabled = true;
            this.cbHastaR.Location = new System.Drawing.Point(141, 138);
            this.cbHastaR.Name = "cbHastaR";
            this.cbHastaR.ShowImageInEditorArea = true;
            this.cbHastaR.Size = new System.Drawing.Size(106, 20);
            this.cbHastaR.TabIndex = 7;
            // 
            // cbDesdeR
            // 
            this.cbDesdeR.DropDownAnimationEnabled = true;
            this.cbDesdeR.Location = new System.Drawing.Point(15, 138);
            this.cbDesdeR.Name = "cbDesdeR";
            this.cbDesdeR.ShowImageInEditorArea = true;
            this.cbDesdeR.Size = new System.Drawing.Size(106, 20);
            this.cbDesdeR.TabIndex = 6;
            // 
            // radLabel31
            // 
            this.radLabel31.Location = new System.Drawing.Point(15, 57);
            this.radLabel31.Name = "radLabel31";
            this.radLabel31.Size = new System.Drawing.Size(42, 16);
            this.radLabel31.TabIndex = 5;
            this.radLabel31.Text = "Region";
            // 
            // cbRegion
            // 
            this.cbRegion.DropDownAnimationEnabled = true;
            this.cbRegion.Location = new System.Drawing.Point(86, 55);
            this.cbRegion.Name = "cbRegion";
            this.cbRegion.ShowImageInEditorArea = true;
            this.cbRegion.Size = new System.Drawing.Size(182, 20);
            this.cbRegion.TabIndex = 3;
            // 
            // radPageViewPage21
            // 
            this.radPageViewPage21.Controls.Add(this.btCalcularSR);
            this.radPageViewPage21.Controls.Add(this.textBox8);
            this.radPageViewPage21.Controls.Add(this.radGroupBox13);
            this.radPageViewPage21.Location = new System.Drawing.Point(11, 37);
            this.radPageViewPage21.Name = "radPageViewPage21";
            this.radPageViewPage21.Size = new System.Drawing.Size(1111, 449);
            this.radPageViewPage21.Text = "SubRegion";
            // 
            // btCalcularSR
            // 
            this.btCalcularSR.Location = new System.Drawing.Point(100, 311);
            this.btCalcularSR.Name = "btCalcularSR";
            this.btCalcularSR.Size = new System.Drawing.Size(89, 42);
            this.btCalcularSR.TabIndex = 5;
            this.btCalcularSR.Text = "Calcular";
            // 
            // textBox8
            // 
            this.textBox8.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
            this.textBox8.Location = new System.Drawing.Point(517, 40);
            this.textBox8.Multiline = true;
            this.textBox8.Name = "textBox8";
            this.textBox8.Size = new System.Drawing.Size(375, 367);
            this.textBox8.TabIndex = 4;
            // 
            // radGroupBox13
            // 
            this.radGroupBox13.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
            this.radGroupBox13.Controls.Add(this.txtMesSR);
            this.radGroupBox13.Controls.Add(this.radLabel33);
            this.radGroupBox13.Controls.Add(this.radLabel34);
            this.radGroupBox13.Controls.Add(this.radLabel35);
            this.radGroupBox13.Controls.Add(this.cbHastaSR);
            this.radGroupBox13.Controls.Add(this.cbDesdeSR);
            this.radGroupBox13.Controls.Add(this.radLabel37);
            this.radGroupBox13.Controls.Add(this.cbSubReg);
            this.radGroupBox13.FooterImageIndex = -1;
            this.radGroupBox13.FooterImageKey = "";
            this.radGroupBox13.HeaderImageIndex = -1;
            this.radGroupBox13.HeaderImageKey = "";
            this.radGroupBox13.HeaderMargin = new System.Windows.Forms.Padding(0);
            this.radGroupBox13.HeaderText = "Opcion";
            this.radGroupBox13.Location = new System.Drawing.Point(38, 42);
            this.radGroupBox13.Name = "radGroupBox13";
            this.radGroupBox13.Padding = new System.Windows.Forms.Padding(2, 18, 2, 2);
            // 
            // 
            // 
            this.radGroupBox13.RootElement.Padding = new System.Windows.Forms.Padding(2, 18, 2, 2);
            this.radGroupBox13.Size = new System.Drawing.Size(447, 226);
            this.radGroupBox13.TabIndex = 3;
            this.radGroupBox13.Text = "Opcion";
            this.radGroupBox13.ThemeName = "Windows7";
            // 
            // txtMesSR
            // 
            this.txtMesSR.Location = new System.Drawing.Point(267, 154);
            this.txtMesSR.Name = "txtMesSR";
            this.txtMesSR.Size = new System.Drawing.Size(100, 20);
            this.txtMesSR.TabIndex = 11;
            this.txtMesSR.TabStop = false;
            // 
            // radLabel33
            // 
            this.radLabel33.Location = new System.Drawing.Point(267, 130);
            this.radLabel33.Name = "radLabel33";
            this.radLabel33.Size = new System.Drawing.Size(40, 16);
            this.radLabel33.TabIndex = 10;
            this.radLabel33.Text = "Meses";
            // 
            // radLabel34
            // 
            this.radLabel34.Location = new System.Drawing.Point(141, 130);
            this.radLabel34.Name = "radLabel34";
            this.radLabel34.Size = new System.Drawing.Size(36, 16);
            this.radLabel34.TabIndex = 9;
            this.radLabel34.Text = "Hasta";
            // 
            // radLabel35
            // 
            this.radLabel35.Location = new System.Drawing.Point(15, 130);
            this.radLabel35.Name = "radLabel35";
            this.radLabel35.Size = new System.Drawing.Size(39, 16);
            this.radLabel35.TabIndex = 8;
            this.radLabel35.Text = "Desde";
            // 
            // cbHastaSR
            // 
            this.cbHastaSR.DropDownAnimationEnabled = true;
            this.cbHastaSR.Location = new System.Drawing.Point(141, 154);
            this.cbHastaSR.Name = "cbHastaSR";
            this.cbHastaSR.ShowImageInEditorArea = true;
            this.cbHastaSR.Size = new System.Drawing.Size(106, 20);
            this.cbHastaSR.TabIndex = 7;
            // 
            // cbDesdeSR
            // 
            this.cbDesdeSR.DropDownAnimationEnabled = true;
            this.cbDesdeSR.Location = new System.Drawing.Point(15, 154);
            this.cbDesdeSR.Name = "cbDesdeSR";
            this.cbDesdeSR.ShowImageInEditorArea = true;
            this.cbDesdeSR.Size = new System.Drawing.Size(106, 20);
            this.cbDesdeSR.TabIndex = 6;
            // 
            // radLabel37
            // 
            this.radLabel37.Location = new System.Drawing.Point(15, 73);
            this.radLabel37.Name = "radLabel37";
            this.radLabel37.Size = new System.Drawing.Size(62, 16);
            this.radLabel37.TabIndex = 4;
            this.radLabel37.Text = "SubRegion";
            // 
            // cbSubReg
            // 
            this.cbSubReg.DropDownAnimationEnabled = true;
            this.cbSubReg.Location = new System.Drawing.Point(86, 73);
            this.cbSubReg.Name = "cbSubReg";
            this.cbSubReg.ShowImageInEditorArea = true;
            this.cbSubReg.Size = new System.Drawing.Size(182, 20);
            this.cbSubReg.TabIndex = 2;
            // 
            // tabCalculoOP
            // 
            this.tabCalculoOP.Controls.Add(this.radPageView2);
            this.tabCalculoOP.Enabled = false;
            this.tabCalculoOP.Location = new System.Drawing.Point(5, 31);
            this.tabCalculoOP.Name = "tabCalculoOP";
            this.tabCalculoOP.Size = new System.Drawing.Size(1170, 624);
            this.tabCalculoOP.Text = "Calculos Oportunidades ";
            // 
            // radPageView2
            // 
            this.radPageView2.Controls.Add(this.radPageViewPage22);
            this.radPageView2.Controls.Add(this.radPageViewPage23);
            this.radPageView2.Location = new System.Drawing.Point(18, 3);
            this.radPageView2.Name = "radPageView2";
            this.radPageView2.SelectedPage = this.radPageViewPage22;
            this.radPageView2.Size = new System.Drawing.Size(1087, 522);
            this.radPageView2.TabIndex = 0;
            this.radPageView2.ThemeName = "Windows7";
            // 
            // radPageViewPage22
            // 
            this.radPageViewPage22.Controls.Add(this.radGroupBox17);
            this.radPageViewPage22.Controls.Add(this.txtResumenPR);
            this.radPageViewPage22.Controls.Add(this.radGroupBox14);
            this.radPageViewPage22.Location = new System.Drawing.Point(11, 37);
            this.radPageViewPage22.Name = "radPageViewPage22";
            this.radPageViewPage22.Size = new System.Drawing.Size(1065, 474);
            this.radPageViewPage22.Text = "Oportunidad Recuperacion";
            // 
            // radGroupBox17
            // 
            this.radGroupBox17.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
            this.radGroupBox17.Controls.Add(this.radRadioButton8);
            this.radGroupBox17.Controls.Add(this.radRadioButton9);
            this.radGroupBox17.FooterImageIndex = -1;
            this.radGroupBox17.FooterImageKey = "";
            this.radGroupBox17.HeaderImageIndex = -1;
            this.radGroupBox17.HeaderImageKey = "";
            this.radGroupBox17.HeaderMargin = new System.Windows.Forms.Padding(0);
            this.radGroupBox17.HeaderText = "Filtro";
            this.radGroupBox17.Location = new System.Drawing.Point(18, 28);
            this.radGroupBox17.Name = "radGroupBox17";
            this.radGroupBox17.Padding = new System.Windows.Forms.Padding(2, 18, 2, 2);
            // 
            // 
            // 
            this.radGroupBox17.RootElement.Padding = new System.Windows.Forms.Padding(2, 18, 2, 2);
            this.radGroupBox17.Size = new System.Drawing.Size(160, 100);
            this.radGroupBox17.TabIndex = 8;
            this.radGroupBox17.Text = "Filtro";
            this.radGroupBox17.ThemeName = "Windows7";
            // 
            // radRadioButton8
            // 
            this.radRadioButton8.Location = new System.Drawing.Point(19, 63);
            this.radRadioButton8.Name = "radRadioButton8";
            this.radRadioButton8.Size = new System.Drawing.Size(110, 18);
            this.radRadioButton8.TabIndex = 1;
            this.radRadioButton8.Text = "Distribuidor";
            // 
            // radRadioButton9
            // 
            this.radRadioButton9.Location = new System.Drawing.Point(19, 36);
            this.radRadioButton9.Name = "radRadioButton9";
            this.radRadioButton9.Size = new System.Drawing.Size(110, 18);
            this.radRadioButton9.TabIndex = 0;
            this.radRadioButton9.Text = "Pais";
            // 
            // txtResumenPR
            // 
            this.txtResumenPR.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
            this.txtResumenPR.Location = new System.Drawing.Point(676, 26);
            this.txtResumenPR.Multiline = true;
            this.txtResumenPR.Name = "txtResumenPR";
            this.txtResumenPR.Size = new System.Drawing.Size(375, 428);
            this.txtResumenPR.TabIndex = 6;
            // 
            // radGroupBox14
            // 
            this.radGroupBox14.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
            this.radGroupBox14.Controls.Add(this.btProcesarOP);
            this.radGroupBox14.Controls.Add(this.radLabel36);
            this.radGroupBox14.Controls.Add(this.cbSecPR);
            this.radGroupBox14.Controls.Add(this.radLabel38);
            this.radGroupBox14.Controls.Add(this.radLabel39);
            this.radGroupBox14.Controls.Add(this.cbDistPR);
            this.radGroupBox14.Controls.Add(this.cbPaisPR);
            this.radGroupBox14.FooterImageIndex = -1;
            this.radGroupBox14.FooterImageKey = "";
            this.radGroupBox14.HeaderImageIndex = -1;
            this.radGroupBox14.HeaderImageKey = "";
            this.radGroupBox14.HeaderMargin = new System.Windows.Forms.Padding(0);
            this.radGroupBox14.HeaderText = "Opcion";
            this.radGroupBox14.Location = new System.Drawing.Point(197, 28);
            this.radGroupBox14.Name = "radGroupBox14";
            this.radGroupBox14.Padding = new System.Windows.Forms.Padding(2, 18, 2, 2);
            // 
            // 
            // 
            this.radGroupBox14.RootElement.Padding = new System.Windows.Forms.Padding(2, 18, 2, 2);
            this.radGroupBox14.Size = new System.Drawing.Size(447, 307);
            this.radGroupBox14.TabIndex = 5;
            this.radGroupBox14.Text = "Opcion";
            this.radGroupBox14.ThemeName = "Windows7";
            // 
            // btProcesarOP
            // 
            this.btProcesarOP.Location = new System.Drawing.Point(158, 231);
            this.btProcesarOP.Name = "btProcesarOP";
            this.btProcesarOP.Size = new System.Drawing.Size(107, 34);
            this.btProcesarOP.TabIndex = 9;
            this.btProcesarOP.Text = "Procesar";
            // 
            // radLabel36
            // 
            this.radLabel36.Location = new System.Drawing.Point(15, 144);
            this.radLabel36.Name = "radLabel36";
            this.radLabel36.Size = new System.Drawing.Size(59, 16);
            this.radLabel36.TabIndex = 8;
            this.radLabel36.Text = "Secuencia";
            // 
            // cbSecPR
            // 
            this.cbSecPR.DropDownAnimationEnabled = true;
            this.cbSecPR.Location = new System.Drawing.Point(15, 168);
            this.cbSecPR.Name = "cbSecPR";
            this.cbSecPR.ShowImageInEditorArea = true;
            this.cbSecPR.Size = new System.Drawing.Size(106, 20);
            this.cbSecPR.TabIndex = 6;
            // 
            // radLabel38
            // 
            this.radLabel38.Location = new System.Drawing.Point(15, 90);
            this.radLabel38.Name = "radLabel38";
            this.radLabel38.Size = new System.Drawing.Size(64, 16);
            this.radLabel38.TabIndex = 5;
            this.radLabel38.Text = "Distribuidor";
            // 
            // radLabel39
            // 
            this.radLabel39.Location = new System.Drawing.Point(15, 39);
            this.radLabel39.Name = "radLabel39";
            this.radLabel39.Size = new System.Drawing.Size(28, 16);
            this.radLabel39.TabIndex = 4;
            this.radLabel39.Text = "Pais";
            // 
            // cbDistPR
            // 
            this.cbDistPR.DropDownAnimationEnabled = true;
            this.cbDistPR.Location = new System.Drawing.Point(15, 113);
            this.cbDistPR.Name = "cbDistPR";
            this.cbDistPR.ShowImageInEditorArea = true;
            this.cbDistPR.Size = new System.Drawing.Size(182, 20);
            this.cbDistPR.TabIndex = 3;
            // 
            // cbPaisPR
            // 
            this.cbPaisPR.DropDownAnimationEnabled = true;
            this.cbPaisPR.Location = new System.Drawing.Point(15, 61);
            this.cbPaisPR.Name = "cbPaisPR";
            this.cbPaisPR.ShowImageInEditorArea = true;
            this.cbPaisPR.Size = new System.Drawing.Size(182, 20);
            this.cbPaisPR.TabIndex = 2;
            // 
            // radPageViewPage23
            // 
            this.radPageViewPage23.Controls.Add(this.radGroupBox16);
            this.radPageViewPage23.Controls.Add(this.txtResumenPP);
            this.radPageViewPage23.Controls.Add(this.radGroupBox15);
            this.radPageViewPage23.Location = new System.Drawing.Point(11, 37);
            this.radPageViewPage23.Name = "radPageViewPage23";
            this.radPageViewPage23.Size = new System.Drawing.Size(1065, 474);
            this.radPageViewPage23.Text = "Oportunidad Penetracion";
            // 
            // radGroupBox16
            // 
            this.radGroupBox16.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
            this.radGroupBox16.Controls.Add(this.rdDist);
            this.radGroupBox16.Controls.Add(this.rdPais);
            this.radGroupBox16.FooterImageIndex = -1;
            this.radGroupBox16.FooterImageKey = "";
            this.radGroupBox16.HeaderImageIndex = -1;
            this.radGroupBox16.HeaderImageKey = "";
            this.radGroupBox16.HeaderMargin = new System.Windows.Forms.Padding(0);
            this.radGroupBox16.HeaderText = "Filtro";
            this.radGroupBox16.Location = new System.Drawing.Point(15, 15);
            this.radGroupBox16.Name = "radGroupBox16";
            this.radGroupBox16.Padding = new System.Windows.Forms.Padding(2, 18, 2, 2);
            // 
            // 
            // 
            this.radGroupBox16.RootElement.Padding = new System.Windows.Forms.Padding(2, 18, 2, 2);
            this.radGroupBox16.Size = new System.Drawing.Size(160, 100);
            this.radGroupBox16.TabIndex = 7;
            this.radGroupBox16.Text = "Filtro";
            this.radGroupBox16.ThemeName = "Windows7";
            // 
            // rdDist
            // 
            this.rdDist.Location = new System.Drawing.Point(19, 63);
            this.rdDist.Name = "rdDist";
            this.rdDist.Size = new System.Drawing.Size(110, 18);
            this.rdDist.TabIndex = 1;
            this.rdDist.Text = "Distribuidor";
            // 
            // rdPais
            // 
            this.rdPais.Location = new System.Drawing.Point(19, 36);
            this.rdPais.Name = "rdPais";
            this.rdPais.Size = new System.Drawing.Size(110, 18);
            this.rdPais.TabIndex = 0;
            this.rdPais.Text = "Pais";
            // 
            // txtResumenPP
            // 
            this.txtResumenPP.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
            this.txtResumenPP.Location = new System.Drawing.Point(670, 13);
            this.txtResumenPP.Multiline = true;
            this.txtResumenPP.Name = "txtResumenPP";
            this.txtResumenPP.Size = new System.Drawing.Size(375, 428);
            this.txtResumenPP.TabIndex = 6;
            // 
            // radGroupBox15
            // 
            this.radGroupBox15.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
            this.radGroupBox15.Controls.Add(this.btProcesarPP);
            this.radGroupBox15.Controls.Add(this.radLabel26);
            this.radGroupBox15.Controls.Add(this.cbSecPP);
            this.radGroupBox15.Controls.Add(this.radLabel32);
            this.radGroupBox15.Controls.Add(this.radLabel40);
            this.radGroupBox15.Controls.Add(this.cbDistPP);
            this.radGroupBox15.Controls.Add(this.cbPaisPP);
            this.radGroupBox15.FooterImageIndex = -1;
            this.radGroupBox15.FooterImageKey = "";
            this.radGroupBox15.HeaderImageIndex = -1;
            this.radGroupBox15.HeaderImageKey = "";
            this.radGroupBox15.HeaderMargin = new System.Windows.Forms.Padding(0);
            this.radGroupBox15.HeaderText = "Opcion";
            this.radGroupBox15.Location = new System.Drawing.Point(191, 15);
            this.radGroupBox15.Name = "radGroupBox15";
            this.radGroupBox15.Padding = new System.Windows.Forms.Padding(2, 18, 2, 2);
            // 
            // 
            // 
            this.radGroupBox15.RootElement.Padding = new System.Windows.Forms.Padding(2, 18, 2, 2);
            this.radGroupBox15.Size = new System.Drawing.Size(447, 307);
            this.radGroupBox15.TabIndex = 5;
            this.radGroupBox15.Text = "Opcion";
            this.radGroupBox15.ThemeName = "Windows7";
            // 
            // btProcesarPP
            // 
            this.btProcesarPP.Location = new System.Drawing.Point(158, 231);
            this.btProcesarPP.Name = "btProcesarPP";
            this.btProcesarPP.Size = new System.Drawing.Size(107, 34);
            this.btProcesarPP.TabIndex = 9;
            this.btProcesarPP.Text = "Procesar";
            // 
            // radLabel26
            // 
            this.radLabel26.Location = new System.Drawing.Point(15, 144);
            this.radLabel26.Name = "radLabel26";
            this.radLabel26.Size = new System.Drawing.Size(59, 16);
            this.radLabel26.TabIndex = 8;
            this.radLabel26.Text = "Secuencia";
            // 
            // cbSecPP
            // 
            this.cbSecPP.DropDownAnimationEnabled = true;
            this.cbSecPP.Location = new System.Drawing.Point(15, 168);
            this.cbSecPP.Name = "cbSecPP";
            this.cbSecPP.ShowImageInEditorArea = true;
            this.cbSecPP.Size = new System.Drawing.Size(106, 20);
            this.cbSecPP.TabIndex = 6;
            // 
            // radLabel32
            // 
            this.radLabel32.Location = new System.Drawing.Point(15, 90);
            this.radLabel32.Name = "radLabel32";
            this.radLabel32.Size = new System.Drawing.Size(64, 16);
            this.radLabel32.TabIndex = 5;
            this.radLabel32.Text = "Distribuidor";
            // 
            // radLabel40
            // 
            this.radLabel40.Location = new System.Drawing.Point(15, 39);
            this.radLabel40.Name = "radLabel40";
            this.radLabel40.Size = new System.Drawing.Size(28, 16);
            this.radLabel40.TabIndex = 4;
            this.radLabel40.Text = "Pais";
            // 
            // cbDistPP
            // 
            this.cbDistPP.DropDownAnimationEnabled = true;
            this.cbDistPP.Location = new System.Drawing.Point(15, 113);
            this.cbDistPP.Name = "cbDistPP";
            this.cbDistPP.ShowImageInEditorArea = true;
            this.cbDistPP.Size = new System.Drawing.Size(182, 20);
            this.cbDistPP.TabIndex = 3;
            // 
            // cbPaisPP
            // 
            this.cbPaisPP.DropDownAnimationEnabled = true;
            this.cbPaisPP.Location = new System.Drawing.Point(15, 61);
            this.cbPaisPP.Name = "cbPaisPP";
            this.cbPaisPP.ShowImageInEditorArea = true;
            this.cbPaisPP.Size = new System.Drawing.Size(182, 20);
            this.cbPaisPP.TabIndex = 2;
            // 
            // tabCalculoKPI
            // 
            this.tabCalculoKPI.Controls.Add(this.radPageView3);
            this.tabCalculoKPI.Enabled = false;
            this.tabCalculoKPI.Location = new System.Drawing.Point(5, 31);
            this.tabCalculoKPI.Name = "tabCalculoKPI";
            this.tabCalculoKPI.Size = new System.Drawing.Size(1170, 624);
            this.tabCalculoKPI.Text = "Calculos KPI\'S";
            // 
            // radPageView3
            // 
            this.radPageView3.Controls.Add(this.radPageViewPage24);
            this.radPageView3.Controls.Add(this.radPageViewPage25);
            this.radPageView3.Controls.Add(this.radPageViewPage26);
            this.radPageView3.Controls.Add(this.radPageViewPage27);
            this.radPageView3.Location = new System.Drawing.Point(18, 3);
            this.radPageView3.Name = "radPageView3";
            this.radPageView3.SelectedPage = this.radPageViewPage26;
            this.radPageView3.Size = new System.Drawing.Size(1135, 527);
            this.radPageView3.TabIndex = 0;
            this.radPageView3.Text = "radPageView3";
            this.radPageView3.ThemeName = "Windows7";
            // 
            // radPageViewPage24
            // 
            this.radPageViewPage24.Controls.Add(this.radGroupBox18);
            this.radPageViewPage24.Controls.Add(this.textBox9);
            this.radPageViewPage24.Controls.Add(this.radGroupBox19);
            this.radPageViewPage24.Location = new System.Drawing.Point(10, 37);
            this.radPageViewPage24.Name = "radPageViewPage24";
            this.radPageViewPage24.Size = new System.Drawing.Size(1114, 479);
            this.radPageViewPage24.Text = "Penetracion";
            // 
            // radGroupBox18
            // 
            this.radGroupBox18.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
            this.radGroupBox18.Controls.Add(this.radRadioButton10);
            this.radGroupBox18.Controls.Add(this.radRadioButton11);
            this.radGroupBox18.FooterImageIndex = -1;
            this.radGroupBox18.FooterImageKey = "";
            this.radGroupBox18.HeaderImageIndex = -1;
            this.radGroupBox18.HeaderImageKey = "";
            this.radGroupBox18.HeaderMargin = new System.Windows.Forms.Padding(0);
            this.radGroupBox18.HeaderText = "Filtro";
            this.radGroupBox18.Location = new System.Drawing.Point(41, 27);
            this.radGroupBox18.Name = "radGroupBox18";
            this.radGroupBox18.Padding = new System.Windows.Forms.Padding(2, 18, 2, 2);
            // 
            // 
            // 
            this.radGroupBox18.RootElement.Padding = new System.Windows.Forms.Padding(2, 18, 2, 2);
            this.radGroupBox18.Size = new System.Drawing.Size(160, 100);
            this.radGroupBox18.TabIndex = 11;
            this.radGroupBox18.Text = "Filtro";
            this.radGroupBox18.ThemeName = "Windows7";
            // 
            // radRadioButton10
            // 
            this.radRadioButton10.Location = new System.Drawing.Point(19, 63);
            this.radRadioButton10.Name = "radRadioButton10";
            this.radRadioButton10.Size = new System.Drawing.Size(110, 18);
            this.radRadioButton10.TabIndex = 1;
            this.radRadioButton10.Text = "Distribuidor";
            // 
            // radRadioButton11
            // 
            this.radRadioButton11.Location = new System.Drawing.Point(19, 36);
            this.radRadioButton11.Name = "radRadioButton11";
            this.radRadioButton11.Size = new System.Drawing.Size(110, 18);
            this.radRadioButton11.TabIndex = 0;
            this.radRadioButton11.Text = "Pais";
            // 
            // textBox9
            // 
            this.textBox9.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
            this.textBox9.Location = new System.Drawing.Point(699, 25);
            this.textBox9.Multiline = true;
            this.textBox9.Name = "textBox9";
            this.textBox9.Size = new System.Drawing.Size(375, 428);
            this.textBox9.TabIndex = 10;
            // 
            // radGroupBox19
            // 
            this.radGroupBox19.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
            this.radGroupBox19.Controls.Add(this.radButton1);
            this.radGroupBox19.Controls.Add(this.radLabel41);
            this.radGroupBox19.Controls.Add(this.radDropDownList1);
            this.radGroupBox19.Controls.Add(this.radLabel42);
            this.radGroupBox19.Controls.Add(this.radLabel43);
            this.radGroupBox19.Controls.Add(this.radDropDownList2);
            this.radGroupBox19.Controls.Add(this.radDropDownList3);
            this.radGroupBox19.FooterImageIndex = -1;
            this.radGroupBox19.FooterImageKey = "";
            this.radGroupBox19.HeaderImageIndex = -1;
            this.radGroupBox19.HeaderImageKey = "";
            this.radGroupBox19.HeaderMargin = new System.Windows.Forms.Padding(0);
            this.radGroupBox19.HeaderText = "Opcion";
            this.radGroupBox19.Location = new System.Drawing.Point(220, 27);
            this.radGroupBox19.Name = "radGroupBox19";
            this.radGroupBox19.Padding = new System.Windows.Forms.Padding(2, 18, 2, 2);
            // 
            // 
            // 
            this.radGroupBox19.RootElement.Padding = new System.Windows.Forms.Padding(2, 18, 2, 2);
            this.radGroupBox19.Size = new System.Drawing.Size(447, 307);
            this.radGroupBox19.TabIndex = 9;
            this.radGroupBox19.Text = "Opcion";
            this.radGroupBox19.ThemeName = "Windows7";
            // 
            // radButton1
            // 
            this.radButton1.Location = new System.Drawing.Point(158, 231);
            this.radButton1.Name = "radButton1";
            this.radButton1.Size = new System.Drawing.Size(107, 34);
            this.radButton1.TabIndex = 9;
            this.radButton1.Text = "Procesar";
            // 
            // radLabel41
            // 
            this.radLabel41.Location = new System.Drawing.Point(15, 144);
            this.radLabel41.Name = "radLabel41";
            this.radLabel41.Size = new System.Drawing.Size(59, 16);
            this.radLabel41.TabIndex = 8;
            this.radLabel41.Text = "Secuencia";
            // 
            // radDropDownList1
            // 
            this.radDropDownList1.DropDownAnimationEnabled = true;
            this.radDropDownList1.Location = new System.Drawing.Point(15, 168);
            this.radDropDownList1.Name = "radDropDownList1";
            this.radDropDownList1.ShowImageInEditorArea = true;
            this.radDropDownList1.Size = new System.Drawing.Size(106, 20);
            this.radDropDownList1.TabIndex = 6;
            // 
            // radLabel42
            // 
            this.radLabel42.Location = new System.Drawing.Point(15, 90);
            this.radLabel42.Name = "radLabel42";
            this.radLabel42.Size = new System.Drawing.Size(64, 16);
            this.radLabel42.TabIndex = 5;
            this.radLabel42.Text = "Distribuidor";
            // 
            // radLabel43
            // 
            this.radLabel43.Location = new System.Drawing.Point(15, 39);
            this.radLabel43.Name = "radLabel43";
            this.radLabel43.Size = new System.Drawing.Size(28, 16);
            this.radLabel43.TabIndex = 4;
            this.radLabel43.Text = "Pais";
            // 
            // radDropDownList2
            // 
            this.radDropDownList2.DropDownAnimationEnabled = true;
            this.radDropDownList2.Location = new System.Drawing.Point(15, 113);
            this.radDropDownList2.Name = "radDropDownList2";
            this.radDropDownList2.ShowImageInEditorArea = true;
            this.radDropDownList2.Size = new System.Drawing.Size(182, 20);
            this.radDropDownList2.TabIndex = 3;
            // 
            // radDropDownList3
            // 
            this.radDropDownList3.DropDownAnimationEnabled = true;
            this.radDropDownList3.Location = new System.Drawing.Point(15, 61);
            this.radDropDownList3.Name = "radDropDownList3";
            this.radDropDownList3.ShowImageInEditorArea = true;
            this.radDropDownList3.Size = new System.Drawing.Size(182, 20);
            this.radDropDownList3.TabIndex = 2;
            // 
            // radPageViewPage25
            // 
            this.radPageViewPage25.Controls.Add(this.radGroupBox20);
            this.radPageViewPage25.Controls.Add(this.textBox10);
            this.radPageViewPage25.Controls.Add(this.radGroupBox21);
            this.radPageViewPage25.Location = new System.Drawing.Point(10, 37);
            this.radPageViewPage25.Name = "radPageViewPage25";
            this.radPageViewPage25.Size = new System.Drawing.Size(1114, 479);
            this.radPageViewPage25.Text = "Ventas Clientes Nuevos";
            // 
            // radGroupBox20
            // 
            this.radGroupBox20.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
            this.radGroupBox20.Controls.Add(this.radRadioButton12);
            this.radGroupBox20.Controls.Add(this.radRadioButton13);
            this.radGroupBox20.FooterImageIndex = -1;
            this.radGroupBox20.FooterImageKey = "";
            this.radGroupBox20.HeaderImageIndex = -1;
            this.radGroupBox20.HeaderImageKey = "";
            this.radGroupBox20.HeaderMargin = new System.Windows.Forms.Padding(0);
            this.radGroupBox20.HeaderText = "Filtro";
            this.radGroupBox20.Location = new System.Drawing.Point(41, 27);
            this.radGroupBox20.Name = "radGroupBox20";
            this.radGroupBox20.Padding = new System.Windows.Forms.Padding(2, 18, 2, 2);
            // 
            // 
            // 
            this.radGroupBox20.RootElement.Padding = new System.Windows.Forms.Padding(2, 18, 2, 2);
            this.radGroupBox20.Size = new System.Drawing.Size(160, 100);
            this.radGroupBox20.TabIndex = 11;
            this.radGroupBox20.Text = "Filtro";
            this.radGroupBox20.ThemeName = "Windows7";
            // 
            // radRadioButton12
            // 
            this.radRadioButton12.Location = new System.Drawing.Point(19, 63);
            this.radRadioButton12.Name = "radRadioButton12";
            this.radRadioButton12.Size = new System.Drawing.Size(110, 18);
            this.radRadioButton12.TabIndex = 1;
            this.radRadioButton12.Text = "Distribuidor";
            // 
            // radRadioButton13
            // 
            this.radRadioButton13.Location = new System.Drawing.Point(19, 36);
            this.radRadioButton13.Name = "radRadioButton13";
            this.radRadioButton13.Size = new System.Drawing.Size(110, 18);
            this.radRadioButton13.TabIndex = 0;
            this.radRadioButton13.Text = "Pais";
            // 
            // textBox10
            // 
            this.textBox10.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
            this.textBox10.Location = new System.Drawing.Point(699, 25);
            this.textBox10.Multiline = true;
            this.textBox10.Name = "textBox10";
            this.textBox10.Size = new System.Drawing.Size(375, 428);
            this.textBox10.TabIndex = 10;
            // 
            // radGroupBox21
            // 
            this.radGroupBox21.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
            this.radGroupBox21.Controls.Add(this.radButton10);
            this.radGroupBox21.Controls.Add(this.radLabel44);
            this.radGroupBox21.Controls.Add(this.radDropDownList4);
            this.radGroupBox21.Controls.Add(this.radLabel45);
            this.radGroupBox21.Controls.Add(this.radLabel46);
            this.radGroupBox21.Controls.Add(this.radDropDownList5);
            this.radGroupBox21.Controls.Add(this.radDropDownList6);
            this.radGroupBox21.FooterImageIndex = -1;
            this.radGroupBox21.FooterImageKey = "";
            this.radGroupBox21.HeaderImageIndex = -1;
            this.radGroupBox21.HeaderImageKey = "";
            this.radGroupBox21.HeaderMargin = new System.Windows.Forms.Padding(0);
            this.radGroupBox21.HeaderText = "Opcion";
            this.radGroupBox21.Location = new System.Drawing.Point(220, 27);
            this.radGroupBox21.Name = "radGroupBox21";
            this.radGroupBox21.Padding = new System.Windows.Forms.Padding(2, 18, 2, 2);
            // 
            // 
            // 
            this.radGroupBox21.RootElement.Padding = new System.Windows.Forms.Padding(2, 18, 2, 2);
            this.radGroupBox21.Size = new System.Drawing.Size(447, 307);
            this.radGroupBox21.TabIndex = 9;
            this.radGroupBox21.Text = "Opcion";
            this.radGroupBox21.ThemeName = "Windows7";
            // 
            // radButton10
            // 
            this.radButton10.Location = new System.Drawing.Point(158, 231);
            this.radButton10.Name = "radButton10";
            this.radButton10.Size = new System.Drawing.Size(107, 34);
            this.radButton10.TabIndex = 9;
            this.radButton10.Text = "Procesar";
            // 
            // radLabel44
            // 
            this.radLabel44.Location = new System.Drawing.Point(15, 144);
            this.radLabel44.Name = "radLabel44";
            this.radLabel44.Size = new System.Drawing.Size(59, 16);
            this.radLabel44.TabIndex = 8;
            this.radLabel44.Text = "Secuencia";
            // 
            // radDropDownList4
            // 
            this.radDropDownList4.DropDownAnimationEnabled = true;
            this.radDropDownList4.Location = new System.Drawing.Point(15, 168);
            this.radDropDownList4.Name = "radDropDownList4";
            this.radDropDownList4.ShowImageInEditorArea = true;
            this.radDropDownList4.Size = new System.Drawing.Size(106, 20);
            this.radDropDownList4.TabIndex = 6;
            // 
            // radLabel45
            // 
            this.radLabel45.Location = new System.Drawing.Point(15, 90);
            this.radLabel45.Name = "radLabel45";
            this.radLabel45.Size = new System.Drawing.Size(64, 16);
            this.radLabel45.TabIndex = 5;
            this.radLabel45.Text = "Distribuidor";
            // 
            // radLabel46
            // 
            this.radLabel46.Location = new System.Drawing.Point(15, 39);
            this.radLabel46.Name = "radLabel46";
            this.radLabel46.Size = new System.Drawing.Size(28, 16);
            this.radLabel46.TabIndex = 4;
            this.radLabel46.Text = "Pais";
            // 
            // radDropDownList5
            // 
            this.radDropDownList5.DropDownAnimationEnabled = true;
            this.radDropDownList5.Location = new System.Drawing.Point(15, 113);
            this.radDropDownList5.Name = "radDropDownList5";
            this.radDropDownList5.ShowImageInEditorArea = true;
            this.radDropDownList5.Size = new System.Drawing.Size(182, 20);
            this.radDropDownList5.TabIndex = 3;
            // 
            // radDropDownList6
            // 
            this.radDropDownList6.DropDownAnimationEnabled = true;
            this.radDropDownList6.Location = new System.Drawing.Point(15, 61);
            this.radDropDownList6.Name = "radDropDownList6";
            this.radDropDownList6.ShowImageInEditorArea = true;
            this.radDropDownList6.Size = new System.Drawing.Size(182, 20);
            this.radDropDownList6.TabIndex = 2;
            // 
            // radPageViewPage26
            // 
            this.radPageViewPage26.Controls.Add(this.radGroupBox22);
            this.radPageViewPage26.Controls.Add(this.textBox11);
            this.radPageViewPage26.Controls.Add(this.radGroupBox23);
            this.radPageViewPage26.Location = new System.Drawing.Point(11, 37);
            this.radPageViewPage26.Name = "radPageViewPage26";
            this.radPageViewPage26.Size = new System.Drawing.Size(1113, 479);
            this.radPageViewPage26.Text = "Cobertura";
            // 
            // radGroupBox22
            // 
            this.radGroupBox22.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
            this.radGroupBox22.Controls.Add(this.radRadioButton14);
            this.radGroupBox22.Controls.Add(this.radRadioButton15);
            this.radGroupBox22.FooterImageIndex = -1;
            this.radGroupBox22.FooterImageKey = "";
            this.radGroupBox22.HeaderImageIndex = -1;
            this.radGroupBox22.HeaderImageKey = "";
            this.radGroupBox22.HeaderMargin = new System.Windows.Forms.Padding(0);
            this.radGroupBox22.HeaderText = "Filtro";
            this.radGroupBox22.Location = new System.Drawing.Point(41, 27);
            this.radGroupBox22.Name = "radGroupBox22";
            this.radGroupBox22.Padding = new System.Windows.Forms.Padding(2, 18, 2, 2);
            // 
            // 
            // 
            this.radGroupBox22.RootElement.Padding = new System.Windows.Forms.Padding(2, 18, 2, 2);
            this.radGroupBox22.Size = new System.Drawing.Size(160, 100);
            this.radGroupBox22.TabIndex = 11;
            this.radGroupBox22.Text = "Filtro";
            this.radGroupBox22.ThemeName = "Windows7";
            // 
            // radRadioButton14
            // 
            this.radRadioButton14.Location = new System.Drawing.Point(19, 63);
            this.radRadioButton14.Name = "radRadioButton14";
            this.radRadioButton14.Size = new System.Drawing.Size(110, 18);
            this.radRadioButton14.TabIndex = 1;
            this.radRadioButton14.Text = "Distribuidor";
            // 
            // radRadioButton15
            // 
            this.radRadioButton15.Location = new System.Drawing.Point(19, 36);
            this.radRadioButton15.Name = "radRadioButton15";
            this.radRadioButton15.Size = new System.Drawing.Size(110, 18);
            this.radRadioButton15.TabIndex = 0;
            this.radRadioButton15.Text = "Pais";
            // 
            // textBox11
            // 
            this.textBox11.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
            this.textBox11.Location = new System.Drawing.Point(699, 25);
            this.textBox11.Multiline = true;
            this.textBox11.Name = "textBox11";
            this.textBox11.Size = new System.Drawing.Size(375, 428);
            this.textBox11.TabIndex = 10;
            // 
            // radGroupBox23
            // 
            this.radGroupBox23.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
            this.radGroupBox23.Controls.Add(this.radButton11);
            this.radGroupBox23.Controls.Add(this.radLabel47);
            this.radGroupBox23.Controls.Add(this.radDropDownList7);
            this.radGroupBox23.Controls.Add(this.radLabel48);
            this.radGroupBox23.Controls.Add(this.radLabel49);
            this.radGroupBox23.Controls.Add(this.radDropDownList8);
            this.radGroupBox23.Controls.Add(this.radDropDownList9);
            this.radGroupBox23.FooterImageIndex = -1;
            this.radGroupBox23.FooterImageKey = "";
            this.radGroupBox23.HeaderImageIndex = -1;
            this.radGroupBox23.HeaderImageKey = "";
            this.radGroupBox23.HeaderMargin = new System.Windows.Forms.Padding(0);
            this.radGroupBox23.HeaderText = "Opcion";
            this.radGroupBox23.Location = new System.Drawing.Point(220, 27);
            this.radGroupBox23.Name = "radGroupBox23";
            this.radGroupBox23.Padding = new System.Windows.Forms.Padding(2, 18, 2, 2);
            // 
            // 
            // 
            this.radGroupBox23.RootElement.Padding = new System.Windows.Forms.Padding(2, 18, 2, 2);
            this.radGroupBox23.Size = new System.Drawing.Size(447, 307);
            this.radGroupBox23.TabIndex = 9;
            this.radGroupBox23.Text = "Opcion";
            this.radGroupBox23.ThemeName = "Windows7";
            // 
            // radButton11
            // 
            this.radButton11.Location = new System.Drawing.Point(158, 231);
            this.radButton11.Name = "radButton11";
            this.radButton11.Size = new System.Drawing.Size(107, 34);
            this.radButton11.TabIndex = 9;
            this.radButton11.Text = "Procesar";
            this.radButton11.ThemeName = "TelerikMetro";
            // 
            // radLabel47
            // 
            this.radLabel47.Location = new System.Drawing.Point(15, 144);
            this.radLabel47.Name = "radLabel47";
            this.radLabel47.Size = new System.Drawing.Size(59, 16);
            this.radLabel47.TabIndex = 8;
            this.radLabel47.Text = "Secuencia";
            // 
            // radDropDownList7
            // 
            this.radDropDownList7.DropDownAnimationEnabled = true;
            this.radDropDownList7.Location = new System.Drawing.Point(15, 168);
            this.radDropDownList7.Name = "radDropDownList7";
            this.radDropDownList7.ShowImageInEditorArea = true;
            this.radDropDownList7.Size = new System.Drawing.Size(106, 20);
            this.radDropDownList7.TabIndex = 6;
            // 
            // radLabel48
            // 
            this.radLabel48.Location = new System.Drawing.Point(15, 90);
            this.radLabel48.Name = "radLabel48";
            this.radLabel48.Size = new System.Drawing.Size(64, 16);
            this.radLabel48.TabIndex = 5;
            this.radLabel48.Text = "Distribuidor";
            // 
            // radLabel49
            // 
            this.radLabel49.Location = new System.Drawing.Point(15, 39);
            this.radLabel49.Name = "radLabel49";
            this.radLabel49.Size = new System.Drawing.Size(28, 16);
            this.radLabel49.TabIndex = 4;
            this.radLabel49.Text = "Pais";
            // 
            // radDropDownList8
            // 
            this.radDropDownList8.DropDownAnimationEnabled = true;
            this.radDropDownList8.Location = new System.Drawing.Point(15, 113);
            this.radDropDownList8.Name = "radDropDownList8";
            this.radDropDownList8.ShowImageInEditorArea = true;
            this.radDropDownList8.Size = new System.Drawing.Size(182, 20);
            this.radDropDownList8.TabIndex = 3;
            // 
            // radDropDownList9
            // 
            this.radDropDownList9.DropDownAnimationEnabled = true;
            this.radDropDownList9.Location = new System.Drawing.Point(15, 61);
            this.radDropDownList9.Name = "radDropDownList9";
            this.radDropDownList9.ShowImageInEditorArea = true;
            this.radDropDownList9.Size = new System.Drawing.Size(182, 20);
            this.radDropDownList9.TabIndex = 2;
            // 
            // radPageViewPage27
            // 
            this.radPageViewPage27.Controls.Add(this.btProcesarS);
            this.radPageViewPage27.Controls.Add(this.radGroupBox24);
            this.radPageViewPage27.Location = new System.Drawing.Point(10, 37);
            this.radPageViewPage27.Name = "radPageViewPage27";
            this.radPageViewPage27.Size = new System.Drawing.Size(1114, 479);
            this.radPageViewPage27.Text = "Semaforo";
            // 
            // btProcesarS
            // 
            this.btProcesarS.Location = new System.Drawing.Point(201, 37);
            this.btProcesarS.Name = "btProcesarS";
            this.btProcesarS.Size = new System.Drawing.Size(130, 24);
            this.btProcesarS.TabIndex = 13;
            this.btProcesarS.Text = "Procesar";
            this.btProcesarS.ThemeName = "TelerikMetro";
            // 
            // radGroupBox24
            // 
            this.radGroupBox24.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
            this.radGroupBox24.Controls.Add(this.radRadioButton18);
            this.radGroupBox24.Controls.Add(this.radRadioButton19);
            this.radGroupBox24.Controls.Add(this.radRadioButton16);
            this.radGroupBox24.Controls.Add(this.radRadioButton17);
            this.radGroupBox24.FooterImageIndex = -1;
            this.radGroupBox24.FooterImageKey = "";
            this.radGroupBox24.HeaderImageIndex = -1;
            this.radGroupBox24.HeaderImageKey = "";
            this.radGroupBox24.HeaderMargin = new System.Windows.Forms.Padding(0);
            this.radGroupBox24.HeaderText = "Filtro";
            this.radGroupBox24.Location = new System.Drawing.Point(35, 28);
            this.radGroupBox24.Name = "radGroupBox24";
            this.radGroupBox24.Padding = new System.Windows.Forms.Padding(2, 18, 2, 2);
            // 
            // 
            // 
            this.radGroupBox24.RootElement.Padding = new System.Windows.Forms.Padding(2, 18, 2, 2);
            this.radGroupBox24.Size = new System.Drawing.Size(160, 183);
            this.radGroupBox24.TabIndex = 12;
            this.radGroupBox24.Text = "Filtro";
            this.radGroupBox24.ThemeName = "Windows7";
            // 
            // radRadioButton18
            // 
            this.radRadioButton18.Location = new System.Drawing.Point(19, 114);
            this.radRadioButton18.Name = "radRadioButton18";
            this.radRadioButton18.Size = new System.Drawing.Size(110, 18);
            this.radRadioButton18.TabIndex = 3;
            this.radRadioButton18.Text = "Nuevo";
            // 
            // radRadioButton19
            // 
            this.radRadioButton19.Location = new System.Drawing.Point(19, 87);
            this.radRadioButton19.Name = "radRadioButton19";
            this.radRadioButton19.Size = new System.Drawing.Size(110, 18);
            this.radRadioButton19.TabIndex = 2;
            this.radRadioButton19.Text = "Emergencia";
            // 
            // radRadioButton16
            // 
            this.radRadioButton16.Location = new System.Drawing.Point(19, 63);
            this.radRadioButton16.Name = "radRadioButton16";
            this.radRadioButton16.Size = new System.Drawing.Size(110, 18);
            this.radRadioButton16.TabIndex = 1;
            this.radRadioButton16.Text = "Recuperacion";
            // 
            // radRadioButton17
            // 
            this.radRadioButton17.Location = new System.Drawing.Point(19, 36);
            this.radRadioButton17.Name = "radRadioButton17";
            this.radRadioButton17.Size = new System.Drawing.Size(110, 18);
            this.radRadioButton17.TabIndex = 0;
            this.radRadioButton17.Text = "Perdido";
            // 
            // tabImportSellin
            // 
            this.tabImportSellin.Controls.Add(this.radScrollablePanel3);
            this.tabImportSellin.Location = new System.Drawing.Point(5, 31);
            this.tabImportSellin.Name = "tabImportSellin";
            this.tabImportSellin.Size = new System.Drawing.Size(1170, 624);
            this.tabImportSellin.Text = "Import Sellin";
            // 
            // radScrollablePanel3
            // 
            this.radScrollablePanel3.AutoScrollMargin = new System.Drawing.Size(0, 0);
            this.radScrollablePanel3.AutoScrollMinSize = new System.Drawing.Size(0, 0);
            this.radScrollablePanel3.Location = new System.Drawing.Point(18, 14);
            this.radScrollablePanel3.Name = "radScrollablePanel3";
            this.radScrollablePanel3.Padding = new System.Windows.Forms.Padding(1);
            // 
            // radScrollablePanel3.PanelContainer
            // 
            this.radScrollablePanel3.PanelContainer.AutoScroll = true;
            this.radScrollablePanel3.PanelContainer.Controls.Add(this.textBox12);
            this.radScrollablePanel3.PanelContainer.Controls.Add(this.radButton13);
            this.radScrollablePanel3.PanelContainer.Controls.Add(this.radButton15);
            this.radScrollablePanel3.PanelContainer.Controls.Add(this.radButton17);
            this.radScrollablePanel3.PanelContainer.Controls.Add(this.radButton18);
            this.radScrollablePanel3.PanelContainer.Controls.Add(this.radGroupBox26);
            this.radScrollablePanel3.PanelContainer.Controls.Add(this.radGroupBox27);
            this.radScrollablePanel3.PanelContainer.Controls.Add(this.radGroupBox28);
            this.radScrollablePanel3.PanelContainer.Controls.Add(this.radGridView14);
            this.radScrollablePanel3.PanelContainer.Dock = System.Windows.Forms.DockStyle.Fill;
            this.radScrollablePanel3.PanelContainer.Location = new System.Drawing.Point(1, 1);
            this.radScrollablePanel3.PanelContainer.Name = "PanelContainer";
            this.radScrollablePanel3.PanelContainer.Size = new System.Drawing.Size(1113, 554);
            this.radScrollablePanel3.PanelContainer.TabIndex = 0;
            // 
            // 
            // 
            this.radScrollablePanel3.RootElement.Padding = new System.Windows.Forms.Padding(1);
            this.radScrollablePanel3.Size = new System.Drawing.Size(1115, 556);
            this.radScrollablePanel3.TabIndex = 4;
            this.radScrollablePanel3.Text = "radScrollablePanel3";
            // 
            // textBox12
            // 
            this.textBox12.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
            this.textBox12.Location = new System.Drawing.Point(654, 29);
            this.textBox12.Multiline = true;
            this.textBox12.Name = "textBox12";
            this.textBox12.Size = new System.Drawing.Size(185, 183);
            this.textBox12.TabIndex = 20;
            // 
            // radButton13
            // 
            this.radButton13.Location = new System.Drawing.Point(976, 119);
            this.radButton13.Name = "radButton13";
            this.radButton13.Size = new System.Drawing.Size(99, 24);
            this.radButton13.TabIndex = 19;
            this.radButton13.Text = "Paises";
            this.radButton13.ThemeName = "TelerikMetroBlue";
            // 
            // radButton15
            // 
            this.radButton15.Location = new System.Drawing.Point(976, 89);
            this.radButton15.Name = "radButton15";
            this.radButton15.Size = new System.Drawing.Size(99, 24);
            this.radButton15.TabIndex = 19;
            this.radButton15.Text = "Distribuidor";
            this.radButton15.ThemeName = "TelerikMetroBlue";
            // 
            // radButton17
            // 
            this.radButton17.Location = new System.Drawing.Point(976, 59);
            this.radButton17.Name = "radButton17";
            this.radButton17.Size = new System.Drawing.Size(99, 24);
            this.radButton17.TabIndex = 0;
            this.radButton17.Text = "Productos";
            this.radButton17.ThemeName = "TelerikMetroBlue";
            // 
            // radButton18
            // 
            this.radButton18.Location = new System.Drawing.Point(976, 29);
            this.radButton18.Name = "radButton18";
            this.radButton18.Size = new System.Drawing.Size(99, 24);
            this.radButton18.TabIndex = 18;
            this.radButton18.Text = "Clientes";
            this.radButton18.ThemeName = "TelerikMetroBlue";
            // 
            // radGroupBox26
            // 
            this.radGroupBox26.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
            this.radGroupBox26.BackColor = System.Drawing.Color.White;
            this.radGroupBox26.Controls.Add(this.radButton19);
            this.radGroupBox26.Controls.Add(this.radLabel50);
            this.radGroupBox26.Controls.Add(this.radLabel51);
            this.radGroupBox26.FooterImageIndex = -1;
            this.radGroupBox26.FooterImageKey = "";
            this.radGroupBox26.HeaderImageIndex = -1;
            this.radGroupBox26.HeaderImageKey = "";
            this.radGroupBox26.HeaderMargin = new System.Windows.Forms.Padding(0);
            this.radGroupBox26.HeaderText = "";
            this.radGroupBox26.Location = new System.Drawing.Point(446, 29);
            this.radGroupBox26.Name = "radGroupBox26";
            this.radGroupBox26.Padding = new System.Windows.Forms.Padding(2, 18, 2, 2);
            // 
            // 
            // 
            this.radGroupBox26.RootElement.Padding = new System.Windows.Forms.Padding(2, 18, 2, 2);
            this.radGroupBox26.Size = new System.Drawing.Size(190, 183);
            this.radGroupBox26.TabIndex = 16;
            // 
            // radButton19
            // 
            this.radButton19.Location = new System.Drawing.Point(44, 140);
            this.radButton19.Name = "radButton19";
            this.radButton19.Size = new System.Drawing.Size(99, 24);
            this.radButton19.TabIndex = 8;
            this.radButton19.Text = "Transferir";
            this.radButton19.ThemeName = "TelerikMetro";
            // 
            // radLabel50
            // 
            this.radLabel50.Location = new System.Drawing.Point(70, 29);
            this.radLabel50.Name = "radLabel50";
            this.radLabel50.Size = new System.Drawing.Size(46, 18);
            this.radLabel50.TabIndex = 4;
            this.radLabel50.Text = "Paso #3";
            // 
            // radLabel51
            // 
            this.radLabel51.Location = new System.Drawing.Point(63, 45);
            this.radLabel51.Name = "radLabel51";
            this.radLabel51.Size = new System.Drawing.Size(53, 18);
            this.radLabel51.TabIndex = 7;
            this.radLabel51.Text = "Transferir";
            // 
            // radGroupBox27
            // 
            this.radGroupBox27.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
            this.radGroupBox27.BackColor = System.Drawing.Color.White;
            this.radGroupBox27.Controls.Add(this.radButton20);
            this.radGroupBox27.Controls.Add(this.radLabel52);
            this.radGroupBox27.Controls.Add(this.radLabel53);
            this.radGroupBox27.Controls.Add(this.radButton21);
            this.radGroupBox27.FooterImageIndex = -1;
            this.radGroupBox27.FooterImageKey = "";
            this.radGroupBox27.ForeColor = System.Drawing.Color.Black;
            this.radGroupBox27.HeaderImageIndex = -1;
            this.radGroupBox27.HeaderImageKey = "";
            this.radGroupBox27.HeaderMargin = new System.Windows.Forms.Padding(0);
            this.radGroupBox27.HeaderText = "";
            this.radGroupBox27.Location = new System.Drawing.Point(215, 29);
            this.radGroupBox27.Name = "radGroupBox27";
            this.radGroupBox27.Padding = new System.Windows.Forms.Padding(2, 18, 2, 2);
            // 
            // 
            // 
            this.radGroupBox27.RootElement.Padding = new System.Windows.Forms.Padding(2, 18, 2, 2);
            this.radGroupBox27.Size = new System.Drawing.Size(225, 183);
            this.radGroupBox27.TabIndex = 15;
            // 
            // radButton20
            // 
            this.radButton20.Location = new System.Drawing.Point(135, 140);
            this.radButton20.Name = "radButton20";
            this.radButton20.Size = new System.Drawing.Size(81, 24);
            this.radButton20.TabIndex = 10;
            this.radButton20.Text = "Procesar";
            this.radButton20.ThemeName = "TelerikMetro";
            // 
            // radLabel52
            // 
            this.radLabel52.Location = new System.Drawing.Point(82, 29);
            this.radLabel52.Name = "radLabel52";
            this.radLabel52.Size = new System.Drawing.Size(46, 18);
            this.radLabel52.TabIndex = 3;
            this.radLabel52.Text = "Paso #2";
            // 
            // radLabel53
            // 
            this.radLabel53.Location = new System.Drawing.Point(47, 45);
            this.radLabel53.Name = "radLabel53";
            this.radLabel53.Size = new System.Drawing.Size(133, 18);
            this.radLabel53.TabIndex = 6;
            this.radLabel53.Text = "Eliminar Datos Anteriores";
            // 
            // radButton21
            // 
            this.radButton21.Location = new System.Drawing.Point(26, 140);
            this.radButton21.Name = "radButton21";
            this.radButton21.Size = new System.Drawing.Size(91, 24);
            this.radButton21.TabIndex = 9;
            this.radButton21.Text = "Verificar";
            this.radButton21.ThemeName = "TelerikMetro";
            // 
            // radGroupBox28
            // 
            this.radGroupBox28.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
            this.radGroupBox28.BackColor = System.Drawing.Color.White;
            this.radGroupBox28.Controls.Add(this.radButton22);
            this.radGroupBox28.Controls.Add(this.radLabel54);
            this.radGroupBox28.Controls.Add(this.radLabel55);
            this.radGroupBox28.FooterImageIndex = -1;
            this.radGroupBox28.FooterImageKey = "";
            this.radGroupBox28.HeaderImageIndex = -1;
            this.radGroupBox28.HeaderImageKey = "";
            this.radGroupBox28.HeaderMargin = new System.Windows.Forms.Padding(0);
            this.radGroupBox28.HeaderText = "";
            this.radGroupBox28.Location = new System.Drawing.Point(19, 29);
            this.radGroupBox28.Name = "radGroupBox28";
            this.radGroupBox28.Padding = new System.Windows.Forms.Padding(2, 18, 2, 2);
            // 
            // 
            // 
            this.radGroupBox28.RootElement.Padding = new System.Windows.Forms.Padding(2, 18, 2, 2);
            this.radGroupBox28.Size = new System.Drawing.Size(190, 183);
            this.radGroupBox28.TabIndex = 14;
            // 
            // radButton22
            // 
            this.radButton22.Location = new System.Drawing.Point(35, 140);
            this.radButton22.Name = "radButton22";
            this.radButton22.Size = new System.Drawing.Size(112, 24);
            this.radButton22.TabIndex = 8;
            this.radButton22.Text = "Mostrar Tabla";
            this.radButton22.ThemeName = "TelerikMetro";
            // 
            // radLabel54
            // 
            this.radLabel54.Location = new System.Drawing.Point(62, 21);
            this.radLabel54.Name = "radLabel54";
            this.radLabel54.Size = new System.Drawing.Size(46, 18);
            this.radLabel54.TabIndex = 2;
            this.radLabel54.Text = "Paso #1";
            // 
            // radLabel55
            // 
            this.radLabel55.Location = new System.Drawing.Point(35, 45);
            this.radLabel55.Name = "radLabel55";
            this.radLabel55.Size = new System.Drawing.Size(112, 18);
            this.radLabel55.TabIndex = 5;
            this.radLabel55.Text = "Copiar Datos Nuevos";
            // 
            // radGridView14
            // 
            this.radGridView14.BackColor = System.Drawing.Color.White;
            this.radGridView14.Cursor = System.Windows.Forms.Cursors.Default;
            this.radGridView14.Font = new System.Drawing.Font("Segoe UI", 8.25F);
            this.radGridView14.ForeColor = System.Drawing.Color.Black;
            this.radGridView14.ImeMode = System.Windows.Forms.ImeMode.NoControl;
            this.radGridView14.Location = new System.Drawing.Point(19, 264);
            // 
            // 
            // 
            this.radGridView14.MasterTemplate.AutoGenerateColumns = false;
            gridViewTextBoxColumn94.EnableExpressionEditor = false;
            gridViewTextBoxColumn94.FormatString = "";
            gridViewTextBoxColumn94.HeaderText = "Concepto";
            gridViewTextBoxColumn94.Name = "clConcepto";
            gridViewTextBoxColumn94.Width = 177;
            gridViewTextBoxColumn95.EnableExpressionEditor = false;
            gridViewTextBoxColumn95.FormatString = "";
            gridViewTextBoxColumn95.HeaderText = "Tipo";
            gridViewTextBoxColumn95.Name = "clTipo";
            gridViewTextBoxColumn95.Width = 119;
            gridViewTextBoxColumn96.EnableExpressionEditor = false;
            gridViewTextBoxColumn96.FormatString = "";
            gridViewTextBoxColumn96.HeaderText = "Mes";
            gridViewTextBoxColumn96.Name = "clMes";
            gridViewTextBoxColumn96.Width = 57;
            gridViewTextBoxColumn97.EnableExpressionEditor = false;
            gridViewTextBoxColumn97.FormatString = "";
            gridViewTextBoxColumn97.HeaderText = "Año";
            gridViewTextBoxColumn97.Name = "clAnio";
            gridViewTextBoxColumn97.Width = 64;
            gridViewTextBoxColumn98.EnableExpressionEditor = false;
            gridViewTextBoxColumn98.FormatString = "";
            gridViewTextBoxColumn98.HeaderText = "Codigo Cliente";
            gridViewTextBoxColumn98.Name = "clCodCli";
            gridViewTextBoxColumn98.Width = 187;
            gridViewTextBoxColumn99.EnableExpressionEditor = false;
            gridViewTextBoxColumn99.FormatString = "";
            gridViewTextBoxColumn99.HeaderText = "Nombre Cliente Final";
            gridViewTextBoxColumn99.Name = "clNomCli";
            gridViewTextBoxColumn99.Width = 175;
            gridViewTextBoxColumn100.EnableExpressionEditor = false;
            gridViewTextBoxColumn100.FormatString = "";
            gridViewTextBoxColumn100.HeaderText = "Codigo Producto SAP";
            gridViewTextBoxColumn100.Name = "clCodProdSAP";
            gridViewTextBoxColumn100.Width = 231;
            gridViewTextBoxColumn101.EnableExpressionEditor = false;
            gridViewTextBoxColumn101.FormatString = "";
            gridViewTextBoxColumn101.HeaderText = "Nombre Producto";
            gridViewTextBoxColumn101.Name = "clNomProd";
            gridViewTextBoxColumn101.Width = 221;
            gridViewTextBoxColumn102.EnableExpressionEditor = false;
            gridViewTextBoxColumn102.HeaderText = "NetSales_US";
            gridViewTextBoxColumn102.Name = "clNetSales";
            gridViewTextBoxColumn102.Width = 141;
            gridViewTextBoxColumn103.EnableExpressionEditor = false;
            gridViewTextBoxColumn103.HeaderText = "SalesCases_US";
            gridViewTextBoxColumn103.Name = "clSalesCases";
            gridViewTextBoxColumn103.Width = 135;
            gridViewTextBoxColumn104.EnableExpressionEditor = false;
            gridViewTextBoxColumn104.HeaderText = "Open_US";
            gridViewTextBoxColumn104.Name = "clOpenUS";
            gridViewTextBoxColumn104.Width = 126;
            gridViewTextBoxColumn105.EnableExpressionEditor = false;
            gridViewTextBoxColumn105.HeaderText = "Forecast_Cases";
            gridViewTextBoxColumn105.Name = "clForecastCases";
            gridViewTextBoxColumn105.Width = 147;
            gridViewTextBoxColumn106.EnableExpressionEditor = false;
            gridViewTextBoxColumn106.HeaderText = "Pais";
            gridViewTextBoxColumn106.Name = "clPais";
            this.radGridView14.MasterTemplate.Columns.AddRange(new Telerik.WinControls.UI.GridViewDataColumn[] {
            gridViewTextBoxColumn94,
            gridViewTextBoxColumn95,
            gridViewTextBoxColumn96,
            gridViewTextBoxColumn97,
            gridViewTextBoxColumn98,
            gridViewTextBoxColumn99,
            gridViewTextBoxColumn100,
            gridViewTextBoxColumn101,
            gridViewTextBoxColumn102,
            gridViewTextBoxColumn103,
            gridViewTextBoxColumn104,
            gridViewTextBoxColumn105,
            gridViewTextBoxColumn106});
            this.radGridView14.Name = "radGridView14";
            this.radGridView14.RightToLeft = System.Windows.Forms.RightToLeft.No;
            this.radGridView14.Size = new System.Drawing.Size(1073, 229);
            this.radGridView14.TabIndex = 0;
            this.radGridView14.Text = "radGridView2";
            this.radGridView14.ThemeName = "TelerikMetroBlue";
            // 
            // radPageViewPage2
            // 
            this.radPageViewPage2.Controls.Add(this.radGroupBox34);
            this.radPageViewPage2.Controls.Add(this.radGroupBox33);
            this.radPageViewPage2.Controls.Add(this.btCancel);
            this.radPageViewPage2.Controls.Add(this.btReiniciar);
            this.radPageViewPage2.Controls.Add(this.btFiltrar);
            this.radPageViewPage2.Controls.Add(this.radGroupBox32);
            this.radPageViewPage2.Controls.Add(this.radGroupBox31);
            this.radPageViewPage2.Controls.Add(this.radGroupBox30);
            this.radPageViewPage2.Controls.Add(this.radGroupBox29);
            this.radPageViewPage2.Controls.Add(this.radPageView5);
            this.radPageViewPage2.Location = new System.Drawing.Point(5, 31);
            this.radPageViewPage2.Name = "radPageViewPage2";
            this.radPageViewPage2.Size = new System.Drawing.Size(1170, 624);
            this.radPageViewPage2.Text = "MKTTOOLS";
            // 
            // radGroupBox34
            // 
            this.radGroupBox34.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
            this.radGroupBox34.Controls.Add(this.radLabel59);
            this.radGroupBox34.Controls.Add(this.radLabel58);
            this.radGroupBox34.Controls.Add(this.radTextBox6);
            this.radGroupBox34.Controls.Add(this.radTextBox5);
            this.radGroupBox34.FooterImageIndex = -1;
            this.radGroupBox34.FooterImageKey = "";
            this.radGroupBox34.HeaderImageIndex = -1;
            this.radGroupBox34.HeaderImageKey = "";
            this.radGroupBox34.HeaderMargin = new System.Windows.Forms.Padding(0);
            this.radGroupBox34.HeaderText = "Sub y Categorias";
            this.radGroupBox34.Location = new System.Drawing.Point(805, 333);
            this.radGroupBox34.Name = "radGroupBox34";
            this.radGroupBox34.Padding = new System.Windows.Forms.Padding(2, 18, 2, 2);
            // 
            // 
            // 
            this.radGroupBox34.RootElement.Padding = new System.Windows.Forms.Padding(2, 18, 2, 2);
            this.radGroupBox34.Size = new System.Drawing.Size(347, 285);
            this.radGroupBox34.TabIndex = 10;
            this.radGroupBox34.Text = "Sub y Categorias";
            this.radGroupBox34.ThemeName = "Windows7";
            // 
            // radLabel59
            // 
            this.radLabel59.Location = new System.Drawing.Point(188, 25);
            this.radLabel59.Name = "radLabel59";
            this.radLabel59.Size = new System.Drawing.Size(21, 16);
            this.radLabel59.TabIndex = 3;
            this.radLabel59.Text = "No";
            // 
            // radLabel58
            // 
            this.radLabel58.Location = new System.Drawing.Point(30, 25);
            this.radLabel58.Name = "radLabel58";
            this.radLabel58.Size = new System.Drawing.Size(16, 16);
            this.radLabel58.TabIndex = 2;
            this.radLabel58.Text = "Si";
            // 
            // radTextBox6
            // 
            this.radTextBox6.AutoScroll = true;
            this.radTextBox6.Location = new System.Drawing.Point(188, 49);
            this.radTextBox6.Multiline = true;
            this.radTextBox6.Name = "radTextBox6";
            // 
            // 
            // 
            this.radTextBox6.RootElement.StretchVertically = true;
            this.radTextBox6.Size = new System.Drawing.Size(127, 216);
            this.radTextBox6.TabIndex = 1;
            this.radTextBox6.TabStop = false;
            // 
            // radTextBox5
            // 
            this.radTextBox5.AutoScroll = true;
            this.radTextBox5.Location = new System.Drawing.Point(30, 49);
            this.radTextBox5.Multiline = true;
            this.radTextBox5.Name = "radTextBox5";
            // 
            // 
            // 
            this.radTextBox5.RootElement.StretchVertically = true;
            this.radTextBox5.Size = new System.Drawing.Size(130, 216);
            this.radTextBox5.TabIndex = 1;
            this.radTextBox5.TabStop = false;
            // 
            // radGroupBox33
            // 
            this.radGroupBox33.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
            this.radGroupBox33.Controls.Add(this.radLabel57);
            this.radGroupBox33.Controls.Add(this.radLabel56);
            this.radGroupBox33.Controls.Add(this.radTextBox4);
            this.radGroupBox33.Controls.Add(this.radTextBox3);
            this.radGroupBox33.FooterImageIndex = -1;
            this.radGroupBox33.FooterImageKey = "";
            this.radGroupBox33.HeaderImageIndex = -1;
            this.radGroupBox33.HeaderImageKey = "";
            this.radGroupBox33.HeaderMargin = new System.Windows.Forms.Padding(0);
            this.radGroupBox33.HeaderText = "Geografia";
            this.radGroupBox33.Location = new System.Drawing.Point(799, 19);
            this.radGroupBox33.Name = "radGroupBox33";
            this.radGroupBox33.Padding = new System.Windows.Forms.Padding(2, 18, 2, 2);
            // 
            // 
            // 
            this.radGroupBox33.RootElement.Padding = new System.Windows.Forms.Padding(2, 18, 2, 2);
            this.radGroupBox33.Size = new System.Drawing.Size(353, 302);
            this.radGroupBox33.TabIndex = 9;
            this.radGroupBox33.Text = "Geografia";
            this.radGroupBox33.ThemeName = "Windows7";
            // 
            // radLabel57
            // 
            this.radLabel57.Location = new System.Drawing.Point(188, 19);
            this.radLabel57.Name = "radLabel57";
            this.radLabel57.Size = new System.Drawing.Size(40, 16);
            this.radLabel57.TabIndex = 3;
            this.radLabel57.Text = "Paises";
            // 
            // radLabel56
            // 
            this.radLabel56.Location = new System.Drawing.Point(35, 22);
            this.radLabel56.Name = "radLabel56";
            this.radLabel56.Size = new System.Drawing.Size(54, 16);
            this.radLabel56.TabIndex = 2;
            this.radLabel56.Text = "Regiones";
            // 
            // radTextBox4
            // 
            this.radTextBox4.AutoScroll = true;
            this.radTextBox4.Location = new System.Drawing.Point(188, 43);
            this.radTextBox4.Multiline = true;
            this.radTextBox4.Name = "radTextBox4";
            // 
            // 
            // 
            this.radTextBox4.RootElement.StretchVertically = true;
            this.radTextBox4.Size = new System.Drawing.Size(127, 236);
            this.radTextBox4.TabIndex = 1;
            this.radTextBox4.TabStop = false;
            // 
            // radTextBox3
            // 
            this.radTextBox3.AutoScroll = true;
            this.radTextBox3.Location = new System.Drawing.Point(35, 46);
            this.radTextBox3.Multiline = true;
            this.radTextBox3.Name = "radTextBox3";
            // 
            // 
            // 
            this.radTextBox3.RootElement.StretchVertically = true;
            this.radTextBox3.Size = new System.Drawing.Size(125, 233);
            this.radTextBox3.TabIndex = 0;
            this.radTextBox3.TabStop = false;
            // 
            // btCancel
            // 
            this.btCancel.Location = new System.Drawing.Point(541, 92);
            this.btCancel.Name = "btCancel";
            this.btCancel.Size = new System.Drawing.Size(93, 24);
            this.btCancel.TabIndex = 8;
            this.btCancel.Text = "Cancelar";
            // 
            // btReiniciar
            // 
            this.btReiniciar.Location = new System.Drawing.Point(541, 54);
            this.btReiniciar.Name = "btReiniciar";
            this.btReiniciar.Size = new System.Drawing.Size(93, 24);
            this.btReiniciar.TabIndex = 7;
            this.btReiniciar.Text = "Reiniciar";
            // 
            // btFiltrar
            // 
            this.btFiltrar.Location = new System.Drawing.Point(541, 19);
            this.btFiltrar.Name = "btFiltrar";
            this.btFiltrar.Size = new System.Drawing.Size(93, 24);
            this.btFiltrar.TabIndex = 6;
            this.btFiltrar.Text = "Filtrar";
            // 
            // radGroupBox32
            // 
            this.radGroupBox32.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
            this.radGroupBox32.Controls.Add(this.radCheckBox3);
            this.radGroupBox32.Controls.Add(this.radCheckBox4);
            this.radGroupBox32.Controls.Add(this.radCheckBox5);
            this.radGroupBox32.FooterImageIndex = -1;
            this.radGroupBox32.FooterImageKey = "";
            this.radGroupBox32.HeaderImageIndex = -1;
            this.radGroupBox32.HeaderImageKey = "";
            this.radGroupBox32.HeaderMargin = new System.Windows.Forms.Padding(0);
            this.radGroupBox32.HeaderText = "Pais";
            this.radGroupBox32.Location = new System.Drawing.Point(405, 125);
            this.radGroupBox32.Name = "radGroupBox32";
            this.radGroupBox32.Padding = new System.Windows.Forms.Padding(2, 18, 2, 2);
            // 
            // 
            // 
            this.radGroupBox32.RootElement.Padding = new System.Windows.Forms.Padding(2, 18, 2, 2);
            this.radGroupBox32.Size = new System.Drawing.Size(98, 100);
            this.radGroupBox32.TabIndex = 5;
            this.radGroupBox32.Text = "Pais";
            this.radGroupBox32.ThemeName = "Windows7";
            // 
            // radCheckBox3
            // 
            this.radCheckBox3.Location = new System.Drawing.Point(6, 70);
            this.radCheckBox3.Name = "radCheckBox3";
            this.radCheckBox3.Size = new System.Drawing.Size(27, 18);
            this.radCheckBox3.TabIndex = 1;
            this.radCheckBox3.Text = "C";
            // 
            // radCheckBox4
            // 
            this.radCheckBox4.Location = new System.Drawing.Point(6, 45);
            this.radCheckBox4.Name = "radCheckBox4";
            this.radCheckBox4.Size = new System.Drawing.Size(27, 18);
            this.radCheckBox4.TabIndex = 1;
            this.radCheckBox4.Text = "B";
            // 
            // radCheckBox5
            // 
            this.radCheckBox5.Location = new System.Drawing.Point(6, 21);
            this.radCheckBox5.Name = "radCheckBox5";
            this.radCheckBox5.Size = new System.Drawing.Size(27, 18);
            this.radCheckBox5.TabIndex = 0;
            this.radCheckBox5.Text = "A";
            // 
            // radGroupBox31
            // 
            this.radGroupBox31.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
            this.radGroupBox31.Controls.Add(this.rdC);
            this.radGroupBox31.Controls.Add(this.rdB);
            this.radGroupBox31.Controls.Add(this.rdA);
            this.radGroupBox31.FooterImageIndex = -1;
            this.radGroupBox31.FooterImageKey = "";
            this.radGroupBox31.HeaderImageIndex = -1;
            this.radGroupBox31.HeaderImageKey = "";
            this.radGroupBox31.HeaderMargin = new System.Windows.Forms.Padding(0);
            this.radGroupBox31.HeaderText = "Distribuidor";
            this.radGroupBox31.Location = new System.Drawing.Point(405, 19);
            this.radGroupBox31.Name = "radGroupBox31";
            this.radGroupBox31.Padding = new System.Windows.Forms.Padding(2, 18, 2, 2);
            // 
            // 
            // 
            this.radGroupBox31.RootElement.Padding = new System.Windows.Forms.Padding(2, 18, 2, 2);
            this.radGroupBox31.Size = new System.Drawing.Size(98, 100);
            this.radGroupBox31.TabIndex = 4;
            this.radGroupBox31.Text = "Distribuidor";
            this.radGroupBox31.ThemeName = "Windows7";
            // 
            // rdC
            // 
            this.rdC.Location = new System.Drawing.Point(6, 70);
            this.rdC.Name = "rdC";
            this.rdC.Size = new System.Drawing.Size(27, 18);
            this.rdC.TabIndex = 1;
            this.rdC.Text = "C";
            // 
            // rdB
            // 
            this.rdB.Location = new System.Drawing.Point(6, 45);
            this.rdB.Name = "rdB";
            this.rdB.Size = new System.Drawing.Size(27, 18);
            this.rdB.TabIndex = 1;
            this.rdB.Text = "B";
            // 
            // rdA
            // 
            this.rdA.Location = new System.Drawing.Point(6, 21);
            this.rdA.Name = "rdA";
            this.rdA.Size = new System.Drawing.Size(27, 18);
            this.rdA.TabIndex = 0;
            this.rdA.Text = "A";
            // 
            // radGroupBox30
            // 
            this.radGroupBox30.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
            this.radGroupBox30.Controls.Add(this.rdOther);
            this.radGroupBox30.Controls.Add(this.rdNA);
            this.radGroupBox30.Controls.Add(this.rdNEC);
            this.radGroupBox30.Controls.Add(this.rdOffice);
            this.radGroupBox30.Controls.Add(this.rdManufact);
            this.radGroupBox30.Controls.Add(this.rdLodging);
            this.radGroupBox30.Controls.Add(this.rdHighT);
            this.radGroupBox30.Controls.Add(this.rdHeatlhC);
            this.radGroupBox30.Controls.Add(this.rdGroceryR);
            this.radGroupBox30.Controls.Add(this.rdGovernment);
            this.radGroupBox30.Controls.Add(this.rdFoodP);
            this.radGroupBox30.Controls.Add(this.rdFoodS);
            this.radGroupBox30.Controls.Add(this.rdEducation);
            this.radGroupBox30.FooterImageIndex = -1;
            this.radGroupBox30.FooterImageKey = "";
            this.radGroupBox30.HeaderImageIndex = -1;
            this.radGroupBox30.HeaderImageKey = "";
            this.radGroupBox30.HeaderMargin = new System.Windows.Forms.Padding(0);
            this.radGroupBox30.HeaderText = "Segmentos";
            this.radGroupBox30.Location = new System.Drawing.Point(121, 19);
            this.radGroupBox30.Name = "radGroupBox30";
            this.radGroupBox30.Padding = new System.Windows.Forms.Padding(2, 18, 2, 2);
            // 
            // 
            // 
            this.radGroupBox30.RootElement.Padding = new System.Windows.Forms.Padding(2, 18, 2, 2);
            this.radGroupBox30.Size = new System.Drawing.Size(266, 206);
            this.radGroupBox30.TabIndex = 3;
            this.radGroupBox30.Text = "Segmentos";
            this.radGroupBox30.ThemeName = "Windows7";
            // 
            // rdOther
            // 
            this.rdOther.Location = new System.Drawing.Point(152, 142);
            this.rdOther.Name = "rdOther";
            this.rdOther.Size = new System.Drawing.Size(49, 18);
            this.rdOther.TabIndex = 1;
            this.rdOther.Text = "Other";
            // 
            // rdNA
            // 
            this.rdNA.Location = new System.Drawing.Point(152, 118);
            this.rdNA.Name = "rdNA";
            this.rdNA.Size = new System.Drawing.Size(40, 18);
            this.rdNA.TabIndex = 1;
            this.rdNA.Text = "N/A";
            // 
            // rdNEC
            // 
            this.rdNEC.Location = new System.Drawing.Point(152, 94);
            this.rdNEC.Name = "rdNEC";
            this.rdNEC.Size = new System.Drawing.Size(109, 18);
            this.rdNEC.TabIndex = 1;
            this.rdNEC.Text = "No End Customer";
            // 
            // rdOffice
            // 
            this.rdOffice.Location = new System.Drawing.Point(152, 70);
            this.rdOffice.Name = "rdOffice";
            this.rdOffice.Size = new System.Drawing.Size(94, 18);
            this.rdOffice.TabIndex = 1;
            this.rdOffice.Text = "Office Building";
            // 
            // rdManufact
            // 
            this.rdManufact.Location = new System.Drawing.Point(152, 46);
            this.rdManufact.Name = "rdManufact";
            this.rdManufact.Size = new System.Drawing.Size(93, 18);
            this.rdManufact.TabIndex = 1;
            this.rdManufact.Text = "Manufacturing";
            // 
            // rdLodging
            // 
            this.rdLodging.Location = new System.Drawing.Point(152, 22);
            this.rdLodging.Name = "rdLodging";
            this.rdLodging.Size = new System.Drawing.Size(61, 18);
            this.rdLodging.TabIndex = 2;
            this.rdLodging.Text = "Lodging";
            // 
            // rdHighT
            // 
            this.rdHighT.Location = new System.Drawing.Point(6, 166);
            this.rdHighT.Name = "rdHighT";
            this.rdHighT.Size = new System.Drawing.Size(78, 18);
            this.rdHighT.TabIndex = 1;
            this.rdHighT.Text = "High Traffic";
            // 
            // rdHeatlhC
            // 
            this.rdHeatlhC.Location = new System.Drawing.Point(6, 142);
            this.rdHeatlhC.Name = "rdHeatlhC";
            this.rdHeatlhC.Size = new System.Drawing.Size(79, 18);
            this.rdHeatlhC.TabIndex = 1;
            this.rdHeatlhC.Text = "Health Care";
            // 
            // rdGroceryR
            // 
            this.rdGroceryR.Location = new System.Drawing.Point(6, 118);
            this.rdGroceryR.Name = "rdGroceryR";
            this.rdGroceryR.Size = new System.Drawing.Size(98, 18);
            this.rdGroceryR.TabIndex = 1;
            this.rdGroceryR.Text = "Grocery - Retail";
            // 
            // rdGovernment
            // 
            this.rdGovernment.Location = new System.Drawing.Point(6, 94);
            this.rdGovernment.Name = "rdGovernment";
            this.rdGovernment.Size = new System.Drawing.Size(82, 18);
            this.rdGovernment.TabIndex = 1;
            this.rdGovernment.Text = "Government";
            // 
            // rdFoodP
            // 
            this.rdFoodP.Location = new System.Drawing.Point(6, 70);
            this.rdFoodP.Name = "rdFoodP";
            this.rdFoodP.Size = new System.Drawing.Size(102, 18);
            this.rdFoodP.TabIndex = 1;
            this.rdFoodP.Text = "Food Processing";
            // 
            // rdFoodS
            // 
            this.rdFoodS.Location = new System.Drawing.Point(6, 46);
            this.rdFoodS.Name = "rdFoodS";
            this.rdFoodS.Size = new System.Drawing.Size(84, 18);
            this.rdFoodS.TabIndex = 1;
            this.rdFoodS.Text = "Food Service";
            // 
            // rdEducation
            // 
            this.rdEducation.Location = new System.Drawing.Point(6, 22);
            this.rdEducation.Name = "rdEducation";
            this.rdEducation.Size = new System.Drawing.Size(70, 18);
            this.rdEducation.TabIndex = 0;
            this.rdEducation.Text = "Education";
            // 
            // radGroupBox29
            // 
            this.radGroupBox29.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
            this.radGroupBox29.Controls.Add(this.radCheckBox2);
            this.radGroupBox29.Controls.Add(this.radCheckBox1);
            this.radGroupBox29.FooterImageIndex = -1;
            this.radGroupBox29.FooterImageKey = "";
            this.radGroupBox29.HeaderImageIndex = -1;
            this.radGroupBox29.HeaderImageKey = "";
            this.radGroupBox29.HeaderMargin = new System.Windows.Forms.Padding(0);
            this.radGroupBox29.HeaderText = "Tipo de Venta";
            this.radGroupBox29.Location = new System.Drawing.Point(18, 19);
            this.radGroupBox29.Name = "radGroupBox29";
            this.radGroupBox29.Padding = new System.Windows.Forms.Padding(2, 18, 2, 2);
            // 
            // 
            // 
            this.radGroupBox29.RootElement.Padding = new System.Windows.Forms.Padding(2, 18, 2, 2);
            this.radGroupBox29.Size = new System.Drawing.Size(97, 100);
            this.radGroupBox29.TabIndex = 2;
            this.radGroupBox29.Text = "Tipo de Venta";
            this.radGroupBox29.ThemeName = "Windows7";
            // 
            // radCheckBox2
            // 
            this.radCheckBox2.Location = new System.Drawing.Point(6, 56);
            this.radCheckBox2.Name = "radCheckBox2";
            this.radCheckBox2.Size = new System.Drawing.Size(64, 18);
            this.radCheckBox2.TabIndex = 1;
            this.radCheckBox2.Text = "Indirecta";
            // 
            // radCheckBox1
            // 
            this.radCheckBox1.Location = new System.Drawing.Point(6, 32);
            this.radCheckBox1.Name = "radCheckBox1";
            this.radCheckBox1.Size = new System.Drawing.Size(56, 18);
            this.radCheckBox1.TabIndex = 0;
            this.radCheckBox1.Text = "Directa";
            // 
            // radPageView5
            // 
            this.radPageView5.Controls.Add(this.radPageViewPage1);
            this.radPageView5.Controls.Add(this.radPageViewPage3);
            this.radPageView5.Controls.Add(this.radPageViewPage4);
            this.radPageView5.Controls.Add(this.radPageViewPage5);
            this.radPageView5.Controls.Add(this.radPageViewPage6);
            this.radPageView5.Controls.Add(this.radPageViewPage7);
            this.radPageView5.Controls.Add(this.radPageViewPage8);
            this.radPageView5.Location = new System.Drawing.Point(18, 243);
            this.radPageView5.Name = "radPageView5";
            this.radPageView5.SelectedPage = this.radPageViewPage1;
            this.radPageView5.Size = new System.Drawing.Size(749, 375);
            this.radPageView5.TabIndex = 1;
            this.radPageView5.ThemeName = "Windows7";
            // 
            // radPageViewPage1
            // 
            this.radPageViewPage1.Controls.Add(this.radGroupBox40);
            this.radPageViewPage1.Controls.Add(this.radGroupBox39);
            this.radPageViewPage1.Controls.Add(this.radGroupBox37);
            this.radPageViewPage1.Controls.Add(this.radGroupBox38);
            this.radPageViewPage1.Controls.Add(this.radGroupBox36);
            this.radPageViewPage1.Controls.Add(this.radGroupBox35);
            this.radPageViewPage1.Location = new System.Drawing.Point(11, 37);
            this.radPageViewPage1.Name = "radPageViewPage1";
            this.radPageViewPage1.Size = new System.Drawing.Size(727, 327);
            this.radPageViewPage1.Text = "Paises";
            // 
            // radGroupBox40
            // 
            this.radGroupBox40.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
            this.radGroupBox40.Controls.Add(this.rdPA);
            this.radGroupBox40.Controls.Add(this.rdSV);
            this.radGroupBox40.Controls.Add(this.rdCR);
            this.radGroupBox40.Controls.Add(this.rdNI);
            this.radGroupBox40.Controls.Add(this.rdHN);
            this.radGroupBox40.Controls.Add(this.rdGT);
            this.radGroupBox40.Controls.Add(this.rdCA);
            this.radGroupBox40.FooterImageIndex = -1;
            this.radGroupBox40.FooterImageKey = "";
            this.radGroupBox40.HeaderImageIndex = -1;
            this.radGroupBox40.HeaderImageKey = "";
            this.radGroupBox40.HeaderMargin = new System.Windows.Forms.Padding(0);
            this.radGroupBox40.HeaderText = "";
            this.radGroupBox40.Location = new System.Drawing.Point(462, 80);
            this.radGroupBox40.Name = "radGroupBox40";
            this.radGroupBox40.Padding = new System.Windows.Forms.Padding(2, 18, 2, 2);
            // 
            // 
            // 
            this.radGroupBox40.RootElement.Padding = new System.Windows.Forms.Padding(2, 18, 2, 2);
            this.radGroupBox40.Size = new System.Drawing.Size(248, 164);
            this.radGroupBox40.TabIndex = 4;
            this.radGroupBox40.ThemeName = "Windows7";
            // 
            // rdPA
            // 
            this.rdPA.Location = new System.Drawing.Point(141, 84);
            this.rdPA.Name = "rdPA";
            this.rdPA.Size = new System.Drawing.Size(60, 18);
            this.rdPA.TabIndex = 4;
            this.rdPA.Text = "Panama";
            // 
            // rdSV
            // 
            this.rdSV.Location = new System.Drawing.Point(141, 60);
            this.rdSV.Name = "rdSV";
            this.rdSV.Size = new System.Drawing.Size(75, 18);
            this.rdSV.TabIndex = 3;
            this.rdSV.Text = "El Salvador";
            // 
            // rdCR
            // 
            this.rdCR.Location = new System.Drawing.Point(25, 132);
            this.rdCR.Name = "rdCR";
            this.rdCR.Size = new System.Drawing.Size(72, 18);
            this.rdCR.TabIndex = 2;
            this.rdCR.Text = "Costa Rica";
            // 
            // rdNI
            // 
            this.rdNI.Location = new System.Drawing.Point(25, 108);
            this.rdNI.Name = "rdNI";
            this.rdNI.Size = new System.Drawing.Size(71, 18);
            this.rdNI.TabIndex = 1;
            this.rdNI.Text = "Nicaragua";
            // 
            // rdHN
            // 
            this.rdHN.Location = new System.Drawing.Point(25, 84);
            this.rdHN.Name = "rdHN";
            this.rdHN.Size = new System.Drawing.Size(69, 18);
            this.rdHN.TabIndex = 1;
            this.rdHN.Text = "Honduras";
            // 
            // rdGT
            // 
            this.rdGT.Location = new System.Drawing.Point(25, 60);
            this.rdGT.Name = "rdGT";
            this.rdGT.Size = new System.Drawing.Size(74, 18);
            this.rdGT.TabIndex = 1;
            this.rdGT.Text = "Guatemala";
            // 
            // rdCA
            // 
            this.rdCA.Location = new System.Drawing.Point(12, 35);
            this.rdCA.Name = "rdCA";
            this.rdCA.Size = new System.Drawing.Size(98, 18);
            this.rdCA.TabIndex = 0;
            this.rdCA.Text = "Centro America";
            // 
            // radGroupBox39
            // 
            this.radGroupBox39.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
            this.radGroupBox39.Controls.Add(this.rdSuriname);
            this.radGroupBox39.Controls.Add(this.rdPBJ);
            this.radGroupBox39.Controls.Add(this.rdTrinidadT);
            this.radGroupBox39.Controls.Add(this.rdRD);
            this.radGroupBox39.Controls.Add(this.rdCaribe);
            this.radGroupBox39.FooterImageIndex = -1;
            this.radGroupBox39.FooterImageKey = "";
            this.radGroupBox39.HeaderImageIndex = -1;
            this.radGroupBox39.HeaderImageKey = "";
            this.radGroupBox39.HeaderMargin = new System.Windows.Forms.Padding(0);
            this.radGroupBox39.HeaderText = "";
            this.radGroupBox39.Location = new System.Drawing.Point(274, 80);
            this.radGroupBox39.Name = "radGroupBox39";
            this.radGroupBox39.Padding = new System.Windows.Forms.Padding(2, 18, 2, 2);
            // 
            // 
            // 
            this.radGroupBox39.RootElement.Padding = new System.Windows.Forms.Padding(2, 18, 2, 2);
            this.radGroupBox39.Size = new System.Drawing.Size(170, 164);
            this.radGroupBox39.TabIndex = 3;
            this.radGroupBox39.ThemeName = "Windows7";
            // 
            // rdSuriname
            // 
            this.rdSuriname.Location = new System.Drawing.Point(26, 132);
            this.rdSuriname.Name = "rdSuriname";
            this.rdSuriname.Size = new System.Drawing.Size(67, 18);
            this.rdSuriname.TabIndex = 2;
            this.rdSuriname.Text = "Suriname";
            // 
            // rdPBJ
            // 
            this.rdPBJ.Location = new System.Drawing.Point(26, 108);
            this.rdPBJ.Name = "rdPBJ";
            this.rdPBJ.Size = new System.Drawing.Size(78, 18);
            this.rdPBJ.TabIndex = 1;
            this.rdPBJ.Text = "PURBOJAM";
            // 
            // rdTrinidadT
            // 
            this.rdTrinidadT.Location = new System.Drawing.Point(26, 84);
            this.rdTrinidadT.Name = "rdTrinidadT";
            this.rdTrinidadT.Size = new System.Drawing.Size(112, 18);
            this.rdTrinidadT.TabIndex = 1;
            this.rdTrinidadT.Text = "Trinidad Y Tobago";
            // 
            // rdRD
            // 
            this.rdRD.Location = new System.Drawing.Point(26, 60);
            this.rdRD.Name = "rdRD";
            this.rdRD.Size = new System.Drawing.Size(132, 18);
            this.rdRD.TabIndex = 1;
            this.rdRD.Text = "Republica Dominicana";
            // 
            // rdCaribe
            // 
            this.rdCaribe.Location = new System.Drawing.Point(12, 35);
            this.rdCaribe.Name = "rdCaribe";
            this.rdCaribe.Size = new System.Drawing.Size(52, 18);
            this.rdCaribe.TabIndex = 0;
            this.rdCaribe.Text = "Caribe";
            // 
            // radGroupBox37
            // 
            this.radGroupBox37.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
            this.radGroupBox37.Controls.Add(this.rdChile);
            this.radGroupBox37.Controls.Add(this.rdParaguay);
            this.radGroupBox37.Controls.Add(this.rdArgentina);
            this.radGroupBox37.Controls.Add(this.rdAustral);
            this.radGroupBox37.FooterImageIndex = -1;
            this.radGroupBox37.FooterImageKey = "";
            this.radGroupBox37.HeaderImageIndex = -1;
            this.radGroupBox37.HeaderImageKey = "";
            this.radGroupBox37.HeaderMargin = new System.Windows.Forms.Padding(0);
            this.radGroupBox37.HeaderText = "";
            this.radGroupBox37.Location = new System.Drawing.Point(138, 116);
            this.radGroupBox37.Name = "radGroupBox37";
            this.radGroupBox37.Padding = new System.Windows.Forms.Padding(2, 18, 2, 2);
            // 
            // 
            // 
            this.radGroupBox37.RootElement.Padding = new System.Windows.Forms.Padding(2, 18, 2, 2);
            this.radGroupBox37.Size = new System.Drawing.Size(118, 128);
            this.radGroupBox37.TabIndex = 2;
            this.radGroupBox37.ThemeName = "Windows7";
            // 
            // rdChile
            // 
            this.rdChile.Location = new System.Drawing.Point(28, 93);
            this.rdChile.Name = "rdChile";
            this.rdChile.Size = new System.Drawing.Size(45, 18);
            this.rdChile.TabIndex = 1;
            this.rdChile.Text = "Chile";
            // 
            // rdParaguay
            // 
            this.rdParaguay.Location = new System.Drawing.Point(28, 69);
            this.rdParaguay.Name = "rdParaguay";
            this.rdParaguay.Size = new System.Drawing.Size(66, 18);
            this.rdParaguay.TabIndex = 1;
            this.rdParaguay.Text = "Paraguay";
            // 
            // rdArgentina
            // 
            this.rdArgentina.Location = new System.Drawing.Point(28, 45);
            this.rdArgentina.Name = "rdArgentina";
            this.rdArgentina.Size = new System.Drawing.Size(69, 18);
            this.rdArgentina.TabIndex = 1;
            this.rdArgentina.Text = "Argentina";
            // 
            // rdAustral
            // 
            this.rdAustral.Location = new System.Drawing.Point(17, 21);
            this.rdAustral.Name = "rdAustral";
            this.rdAustral.Size = new System.Drawing.Size(55, 18);
            this.rdAustral.TabIndex = 0;
            this.rdAustral.Text = "Austral";
            // 
            // radGroupBox38
            // 
            this.radGroupBox38.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
            this.radGroupBox38.Controls.Add(this.rdBrasil);
            this.radGroupBox38.FooterImageIndex = -1;
            this.radGroupBox38.FooterImageKey = "";
            this.radGroupBox38.HeaderImageIndex = -1;
            this.radGroupBox38.HeaderImageKey = "";
            this.radGroupBox38.HeaderMargin = new System.Windows.Forms.Padding(0);
            this.radGroupBox38.HeaderText = "";
            this.radGroupBox38.Location = new System.Drawing.Point(138, 80);
            this.radGroupBox38.Name = "radGroupBox38";
            this.radGroupBox38.Padding = new System.Windows.Forms.Padding(2, 18, 2, 2);
            // 
            // 
            // 
            this.radGroupBox38.RootElement.Padding = new System.Windows.Forms.Padding(2, 18, 2, 2);
            this.radGroupBox38.Size = new System.Drawing.Size(118, 29);
            this.radGroupBox38.TabIndex = 1;
            this.radGroupBox38.ThemeName = "Windows7";
            // 
            // rdBrasil
            // 
            this.rdBrasil.Location = new System.Drawing.Point(17, 6);
            this.rdBrasil.Name = "rdBrasil";
            this.rdBrasil.Size = new System.Drawing.Size(47, 18);
            this.rdBrasil.TabIndex = 0;
            this.rdBrasil.Text = "Brasil";
            // 
            // radGroupBox36
            // 
            this.radGroupBox36.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
            this.radGroupBox36.Controls.Add(this.rdPeru);
            this.radGroupBox36.Controls.Add(this.rdEcuador);
            this.radGroupBox36.Controls.Add(this.rdColombia);
            this.radGroupBox36.Controls.Add(this.rdVenezuela);
            this.radGroupBox36.Controls.Add(this.rdAndino);
            this.radGroupBox36.FooterImageIndex = -1;
            this.radGroupBox36.FooterImageKey = "";
            this.radGroupBox36.HeaderImageIndex = -1;
            this.radGroupBox36.HeaderImageKey = "";
            this.radGroupBox36.HeaderMargin = new System.Windows.Forms.Padding(0);
            this.radGroupBox36.HeaderText = "";
            this.radGroupBox36.Location = new System.Drawing.Point(3, 80);
            this.radGroupBox36.Name = "radGroupBox36";
            this.radGroupBox36.Padding = new System.Windows.Forms.Padding(2, 18, 2, 2);
            // 
            // 
            // 
            this.radGroupBox36.RootElement.Padding = new System.Windows.Forms.Padding(2, 18, 2, 2);
            this.radGroupBox36.Size = new System.Drawing.Size(118, 164);
            this.radGroupBox36.TabIndex = 1;
            this.radGroupBox36.ThemeName = "Windows7";
            // 
            // rdPeru
            // 
            this.rdPeru.Location = new System.Drawing.Point(29, 132);
            this.rdPeru.Name = "rdPeru";
            this.rdPeru.Size = new System.Drawing.Size(43, 18);
            this.rdPeru.TabIndex = 1;
            this.rdPeru.Text = "Peru";
            // 
            // rdEcuador
            // 
            this.rdEcuador.Location = new System.Drawing.Point(29, 108);
            this.rdEcuador.Name = "rdEcuador";
            this.rdEcuador.Size = new System.Drawing.Size(61, 18);
            this.rdEcuador.TabIndex = 1;
            this.rdEcuador.Text = "Ecuador";
            // 
            // rdColombia
            // 
            this.rdColombia.Location = new System.Drawing.Point(29, 84);
            this.rdColombia.Name = "rdColombia";
            this.rdColombia.Size = new System.Drawing.Size(68, 18);
            this.rdColombia.TabIndex = 1;
            this.rdColombia.Text = "Colombia";
            // 
            // rdVenezuela
            // 
            this.rdVenezuela.Location = new System.Drawing.Point(29, 60);
            this.rdVenezuela.Name = "rdVenezuela";
            this.rdVenezuela.Size = new System.Drawing.Size(71, 18);
            this.rdVenezuela.TabIndex = 1;
            this.rdVenezuela.Text = "Venezuela";
            // 
            // rdAndino
            // 
            this.rdAndino.Location = new System.Drawing.Point(17, 35);
            this.rdAndino.Name = "rdAndino";
            this.rdAndino.Size = new System.Drawing.Size(55, 18);
            this.rdAndino.TabIndex = 0;
            this.rdAndino.Text = "Andina";
            // 
            // radGroupBox35
            // 
            this.radGroupBox35.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
            this.radGroupBox35.Controls.Add(this.rdLAO);
            this.radGroupBox35.FooterImageIndex = -1;
            this.radGroupBox35.FooterImageKey = "";
            this.radGroupBox35.HeaderImageIndex = -1;
            this.radGroupBox35.HeaderImageKey = "";
            this.radGroupBox35.HeaderMargin = new System.Windows.Forms.Padding(0);
            this.radGroupBox35.HeaderText = "";
            this.radGroupBox35.Location = new System.Drawing.Point(3, 45);
            this.radGroupBox35.Name = "radGroupBox35";
            this.radGroupBox35.Padding = new System.Windows.Forms.Padding(2, 18, 2, 2);
            // 
            // 
            // 
            this.radGroupBox35.RootElement.Padding = new System.Windows.Forms.Padding(2, 18, 2, 2);
            this.radGroupBox35.Size = new System.Drawing.Size(118, 29);
            this.radGroupBox35.TabIndex = 0;
            this.radGroupBox35.ThemeName = "Windows7";
            // 
            // rdLAO
            // 
            this.rdLAO.Location = new System.Drawing.Point(17, 6);
            this.rdLAO.Name = "rdLAO";
            this.rdLAO.Size = new System.Drawing.Size(41, 18);
            this.rdLAO.TabIndex = 0;
            this.rdLAO.Text = "LAO";
            // 
            // radPageViewPage3
            // 
            this.radPageViewPage3.Controls.Add(this.radGroupBox42);
            this.radPageViewPage3.Controls.Add(this.radGroupBox41);
            this.radPageViewPage3.Location = new System.Drawing.Point(11, 37);
            this.radPageViewPage3.Name = "radPageViewPage3";
            this.radPageViewPage3.Size = new System.Drawing.Size(727, 327);
            this.radPageViewPage3.Text = "Skincare";
            // 
            // radGroupBox42
            // 
            this.radGroupBox42.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
            this.radGroupBox42.Controls.Add(this.rdHSNO);
            this.radGroupBox42.Controls.Add(this.rdHSSI);
            this.radGroupBox42.Controls.Add(this.rdHandS);
            this.radGroupBox42.FooterImageIndex = -1;
            this.radGroupBox42.FooterImageKey = "";
            this.radGroupBox42.HeaderImageIndex = -1;
            this.radGroupBox42.HeaderImageKey = "";
            this.radGroupBox42.HeaderMargin = new System.Windows.Forms.Padding(0);
            this.radGroupBox42.HeaderText = "";
            this.radGroupBox42.Location = new System.Drawing.Point(3, 207);
            this.radGroupBox42.Name = "radGroupBox42";
            this.radGroupBox42.Padding = new System.Windows.Forms.Padding(2, 18, 2, 2);
            // 
            // 
            // 
            this.radGroupBox42.RootElement.Padding = new System.Windows.Forms.Padding(2, 18, 2, 2);
            this.radGroupBox42.Size = new System.Drawing.Size(248, 29);
            this.radGroupBox42.TabIndex = 6;
            this.radGroupBox42.ThemeName = "Windows7";
            // 
            // rdHSNO
            // 
            this.rdHSNO.Location = new System.Drawing.Point(185, 6);
            this.rdHSNO.Name = "rdHSNO";
            this.rdHSNO.Size = new System.Drawing.Size(35, 18);
            this.rdHSNO.TabIndex = 6;
            this.rdHSNO.Text = "NO";
            // 
            // rdHSSI
            // 
            this.rdHSSI.Location = new System.Drawing.Point(144, 6);
            this.rdHSSI.Name = "rdHSSI";
            this.rdHSSI.Size = new System.Drawing.Size(35, 18);
            this.rdHSSI.TabIndex = 5;
            this.rdHSSI.Text = "SI";
            // 
            // rdHandS
            // 
            this.rdHandS.Location = new System.Drawing.Point(17, 6);
            this.rdHandS.Name = "rdHandS";
            this.rdHandS.Size = new System.Drawing.Size(93, 18);
            this.rdHandS.TabIndex = 0;
            this.rdHandS.Text = "Hand Sanitizer";
            // 
            // radGroupBox41
            // 
            this.radGroupBox41.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
            this.radGroupBox41.Controls.Add(this.rdSTNO);
            this.radGroupBox41.Controls.Add(this.rdSTSI);
            this.radGroupBox41.Controls.Add(this.rdCNO);
            this.radGroupBox41.Controls.Add(this.radRadioButton22);
            this.radGroupBox41.Controls.Add(this.rdBUNO);
            this.radGroupBox41.Controls.Add(this.rdBUSI);
            this.radGroupBox41.Controls.Add(this.rdBNO);
            this.radGroupBox41.Controls.Add(this.rdBSI);
            this.radGroupBox41.Controls.Add(this.rdBBNO);
            this.radGroupBox41.Controls.Add(this.rdBBSI);
            this.radGroupBox41.Controls.Add(this.rdST);
            this.radGroupBox41.Controls.Add(this.rdCassette);
            this.radGroupBox41.Controls.Add(this.rdBulk);
            this.radGroupBox41.Controls.Add(this.rdBottles);
            this.radGroupBox41.Controls.Add(this.rdBIB);
            this.radGroupBox41.Controls.Add(this.rdSkinCare);
            this.radGroupBox41.FooterImageIndex = -1;
            this.radGroupBox41.FooterImageKey = "";
            this.radGroupBox41.HeaderImageIndex = -1;
            this.radGroupBox41.HeaderImageKey = "";
            this.radGroupBox41.HeaderMargin = new System.Windows.Forms.Padding(0);
            this.radGroupBox41.HeaderText = "";
            this.radGroupBox41.Location = new System.Drawing.Point(3, 18);
            this.radGroupBox41.Name = "radGroupBox41";
            this.radGroupBox41.Padding = new System.Windows.Forms.Padding(2, 18, 2, 2);
            // 
            // 
            // 
            this.radGroupBox41.RootElement.Padding = new System.Windows.Forms.Padding(2, 18, 2, 2);
            this.radGroupBox41.Size = new System.Drawing.Size(248, 174);
            this.radGroupBox41.TabIndex = 5;
            this.radGroupBox41.ThemeName = "Windows7";
            // 
            // rdSTNO
            // 
            this.rdSTNO.Location = new System.Drawing.Point(185, 141);
            this.rdSTNO.Name = "rdSTNO";
            this.rdSTNO.Size = new System.Drawing.Size(35, 18);
            this.rdSTNO.TabIndex = 7;
            this.rdSTNO.Text = "NO";
            // 
            // rdSTSI
            // 
            this.rdSTSI.Location = new System.Drawing.Point(144, 141);
            this.rdSTSI.Name = "rdSTSI";
            this.rdSTSI.Size = new System.Drawing.Size(35, 18);
            this.rdSTSI.TabIndex = 5;
            this.rdSTSI.Text = "SI";
            // 
            // rdCNO
            // 
            this.rdCNO.Location = new System.Drawing.Point(185, 117);
            this.rdCNO.Name = "rdCNO";
            this.rdCNO.Size = new System.Drawing.Size(35, 18);
            this.rdCNO.TabIndex = 8;
            this.rdCNO.Text = "NO";
            // 
            // radRadioButton22
            // 
            this.radRadioButton22.Location = new System.Drawing.Point(144, 117);
            this.radRadioButton22.Name = "radRadioButton22";
            this.radRadioButton22.Size = new System.Drawing.Size(35, 18);
            this.radRadioButton22.TabIndex = 5;
            this.radRadioButton22.Text = "SI";
            // 
            // rdBUNO
            // 
            this.rdBUNO.Location = new System.Drawing.Point(185, 93);
            this.rdBUNO.Name = "rdBUNO";
            this.rdBUNO.Size = new System.Drawing.Size(35, 18);
            this.rdBUNO.TabIndex = 9;
            this.rdBUNO.Text = "NO";
            // 
            // rdBUSI
            // 
            this.rdBUSI.Location = new System.Drawing.Point(144, 93);
            this.rdBUSI.Name = "rdBUSI";
            this.rdBUSI.Size = new System.Drawing.Size(35, 18);
            this.rdBUSI.TabIndex = 5;
            this.rdBUSI.Text = "SI";
            // 
            // rdBNO
            // 
            this.rdBNO.Location = new System.Drawing.Point(185, 69);
            this.rdBNO.Name = "rdBNO";
            this.rdBNO.Size = new System.Drawing.Size(35, 18);
            this.rdBNO.TabIndex = 10;
            this.rdBNO.Text = "NO";
            // 
            // rdBSI
            // 
            this.rdBSI.Location = new System.Drawing.Point(144, 69);
            this.rdBSI.Name = "rdBSI";
            this.rdBSI.Size = new System.Drawing.Size(35, 18);
            this.rdBSI.TabIndex = 5;
            this.rdBSI.Text = "SI";
            // 
            // rdBBNO
            // 
            this.rdBBNO.Location = new System.Drawing.Point(185, 45);
            this.rdBBNO.Name = "rdBBNO";
            this.rdBBNO.Size = new System.Drawing.Size(35, 18);
            this.rdBBNO.TabIndex = 6;
            this.rdBBNO.Text = "NO";
            // 
            // rdBBSI
            // 
            this.rdBBSI.Location = new System.Drawing.Point(144, 45);
            this.rdBBSI.Name = "rdBBSI";
            this.rdBBSI.Size = new System.Drawing.Size(35, 18);
            this.rdBBSI.TabIndex = 4;
            this.rdBBSI.Text = "SI";
            // 
            // rdST
            // 
            this.rdST.Location = new System.Drawing.Point(26, 141);
            this.rdST.Name = "rdST";
            this.rdST.Size = new System.Drawing.Size(76, 18);
            this.rdST.TabIndex = 3;
            this.rdST.Text = "Sure Touch";
            // 
            // rdCassette
            // 
            this.rdCassette.Location = new System.Drawing.Point(26, 117);
            this.rdCassette.Name = "rdCassette";
            this.rdCassette.Size = new System.Drawing.Size(62, 18);
            this.rdCassette.TabIndex = 2;
            this.rdCassette.Text = "Cassette";
            // 
            // rdBulk
            // 
            this.rdBulk.Location = new System.Drawing.Point(26, 93);
            this.rdBulk.Name = "rdBulk";
            this.rdBulk.Size = new System.Drawing.Size(41, 18);
            this.rdBulk.TabIndex = 1;
            this.rdBulk.Text = "Bulk";
            // 
            // rdBottles
            // 
            this.rdBottles.Location = new System.Drawing.Point(25, 69);
            this.rdBottles.Name = "rdBottles";
            this.rdBottles.Size = new System.Drawing.Size(54, 18);
            this.rdBottles.TabIndex = 1;
            this.rdBottles.Text = "Bottles";
            // 
            // rdBIB
            // 
            this.rdBIB.Location = new System.Drawing.Point(25, 45);
            this.rdBIB.Name = "rdBIB";
            this.rdBIB.Size = new System.Drawing.Size(76, 18);
            this.rdBIB.TabIndex = 1;
            this.rdBIB.Text = "Bag-in-Box";
            // 
            // rdSkinCare
            // 
            this.rdSkinCare.Location = new System.Drawing.Point(5, 21);
            this.rdSkinCare.Name = "rdSkinCare";
            this.rdSkinCare.Size = new System.Drawing.Size(62, 18);
            this.rdSkinCare.TabIndex = 0;
            this.rdSkinCare.Text = "Skincare";
            // 
            // radPageViewPage4
            // 
            this.radPageViewPage4.Controls.Add(this.radGroupBox43);
            this.radPageViewPage4.Location = new System.Drawing.Point(11, 37);
            this.radPageViewPage4.Name = "radPageViewPage4";
            this.radPageViewPage4.Size = new System.Drawing.Size(727, 327);
            this.radPageViewPage4.Text = "Towels";
            // 
            // radGroupBox43
            // 
            this.radGroupBox43.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
            this.radGroupBox43.Controls.Add(this.rdKRNO);
            this.radGroupBox43.Controls.Add(this.rdKRSI);
            this.radGroupBox43.Controls.Add(this.rdHRTNO);
            this.radGroupBox43.Controls.Add(this.rdHRTSI);
            this.radGroupBox43.Controls.Add(this.rdFTNO);
            this.radGroupBox43.Controls.Add(this.rdFTSI);
            this.radGroupBox43.Controls.Add(this.rdCTPNO);
            this.radGroupBox43.Controls.Add(this.rdCTPSI);
            this.radGroupBox43.Controls.Add(this.rdKR);
            this.radGroupBox43.Controls.Add(this.rdHRT);
            this.radGroupBox43.Controls.Add(this.rdFT);
            this.radGroupBox43.Controls.Add(this.rdCPT);
            this.radGroupBox43.Controls.Add(this.radCheckBox11);
            this.radGroupBox43.FooterImageIndex = -1;
            this.radGroupBox43.FooterImageKey = "";
            this.radGroupBox43.HeaderImageIndex = -1;
            this.radGroupBox43.HeaderImageKey = "";
            this.radGroupBox43.HeaderMargin = new System.Windows.Forms.Padding(0);
            this.radGroupBox43.HeaderText = "";
            this.radGroupBox43.Location = new System.Drawing.Point(3, 16);
            this.radGroupBox43.Name = "radGroupBox43";
            this.radGroupBox43.Padding = new System.Windows.Forms.Padding(2, 18, 2, 2);
            // 
            // 
            // 
            this.radGroupBox43.RootElement.Padding = new System.Windows.Forms.Padding(2, 18, 2, 2);
            this.radGroupBox43.Size = new System.Drawing.Size(248, 157);
            this.radGroupBox43.TabIndex = 6;
            this.radGroupBox43.ThemeName = "Windows7";
            // 
            // rdKRNO
            // 
            this.rdKRNO.Location = new System.Drawing.Point(185, 117);
            this.rdKRNO.Name = "rdKRNO";
            this.rdKRNO.Size = new System.Drawing.Size(35, 18);
            this.rdKRNO.TabIndex = 8;
            this.rdKRNO.Text = "NO";
            // 
            // rdKRSI
            // 
            this.rdKRSI.Location = new System.Drawing.Point(144, 117);
            this.rdKRSI.Name = "rdKRSI";
            this.rdKRSI.Size = new System.Drawing.Size(35, 18);
            this.rdKRSI.TabIndex = 5;
            this.rdKRSI.Text = "SI";
            // 
            // rdHRTNO
            // 
            this.rdHRTNO.Location = new System.Drawing.Point(185, 93);
            this.rdHRTNO.Name = "rdHRTNO";
            this.rdHRTNO.Size = new System.Drawing.Size(35, 18);
            this.rdHRTNO.TabIndex = 9;
            this.rdHRTNO.Text = "NO";
            // 
            // rdHRTSI
            // 
            this.rdHRTSI.Location = new System.Drawing.Point(144, 93);
            this.rdHRTSI.Name = "rdHRTSI";
            this.rdHRTSI.Size = new System.Drawing.Size(35, 18);
            this.rdHRTSI.TabIndex = 5;
            this.rdHRTSI.Text = "SI";
            // 
            // rdFTNO
            // 
            this.rdFTNO.Location = new System.Drawing.Point(185, 69);
            this.rdFTNO.Name = "rdFTNO";
            this.rdFTNO.Size = new System.Drawing.Size(35, 18);
            this.rdFTNO.TabIndex = 10;
            this.rdFTNO.Text = "NO";
            // 
            // rdFTSI
            // 
            this.rdFTSI.Location = new System.Drawing.Point(144, 69);
            this.rdFTSI.Name = "rdFTSI";
            this.rdFTSI.Size = new System.Drawing.Size(35, 18);
            this.rdFTSI.TabIndex = 5;
            this.rdFTSI.Text = "SI";
            // 
            // rdCTPNO
            // 
            this.rdCTPNO.Location = new System.Drawing.Point(185, 45);
            this.rdCTPNO.Name = "rdCTPNO";
            this.rdCTPNO.Size = new System.Drawing.Size(35, 18);
            this.rdCTPNO.TabIndex = 6;
            this.rdCTPNO.Text = "NO";
            // 
            // rdCTPSI
            // 
            this.rdCTPSI.Location = new System.Drawing.Point(144, 45);
            this.rdCTPSI.Name = "rdCTPSI";
            this.rdCTPSI.Size = new System.Drawing.Size(35, 18);
            this.rdCTPSI.TabIndex = 4;
            this.rdCTPSI.Text = "SI";
            // 
            // rdKR
            // 
            this.rdKR.Location = new System.Drawing.Point(26, 117);
            this.rdKR.Name = "rdKR";
            this.rdKR.Size = new System.Drawing.Size(92, 18);
            this.rdKR.TabIndex = 2;
            this.rdKR.Text = "Kitchen Rolled";
            // 
            // rdHRT
            // 
            this.rdHRT.Location = new System.Drawing.Point(26, 93);
            this.rdHRT.Name = "rdHRT";
            this.rdHRT.Size = new System.Drawing.Size(117, 18);
            this.rdHRT.TabIndex = 1;
            this.rdHRT.Text = "Hard Rolled Towels";
            // 
            // rdFT
            // 
            this.rdFT.Location = new System.Drawing.Point(25, 69);
            this.rdFT.Name = "rdFT";
            this.rdFT.Size = new System.Drawing.Size(92, 18);
            this.rdFT.TabIndex = 1;
            this.rdFT.Text = "Folded Towels";
            // 
            // rdCPT
            // 
            this.rdCPT.Location = new System.Drawing.Point(25, 45);
            this.rdCPT.Name = "rdCPT";
            this.rdCPT.Size = new System.Drawing.Size(112, 18);
            this.rdCPT.TabIndex = 1;
            this.rdCPT.Text = "Center Pull Towels";
            // 
            // radCheckBox11
            // 
            this.radCheckBox11.Location = new System.Drawing.Point(5, 21);
            this.radCheckBox11.Name = "radCheckBox11";
            this.radCheckBox11.Size = new System.Drawing.Size(54, 18);
            this.radCheckBox11.TabIndex = 0;
            this.radCheckBox11.Text = "Towels";
            // 
            // radPageViewPage5
            // 
            this.radPageViewPage5.Controls.Add(this.radGroupBox47);
            this.radPageViewPage5.Controls.Add(this.radGroupBox46);
            this.radPageViewPage5.Controls.Add(this.radGroupBox45);
            this.radPageViewPage5.Controls.Add(this.radGroupBox44);
            this.radPageViewPage5.Location = new System.Drawing.Point(11, 37);
            this.radPageViewPage5.Name = "radPageViewPage5";
            this.radPageViewPage5.Size = new System.Drawing.Size(727, 327);
            this.radPageViewPage5.Text = "Other Washroom";
            // 
            // radGroupBox47
            // 
            this.radGroupBox47.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
            this.radGroupBox47.Controls.Add(this.radCheckBox16);
            this.radGroupBox47.FooterImageIndex = -1;
            this.radGroupBox47.FooterImageKey = "";
            this.radGroupBox47.HeaderImageIndex = -1;
            this.radGroupBox47.HeaderImageKey = "";
            this.radGroupBox47.HeaderMargin = new System.Windows.Forms.Padding(0);
            this.radGroupBox47.HeaderText = "";
            this.radGroupBox47.Location = new System.Drawing.Point(531, 6);
            this.radGroupBox47.Name = "radGroupBox47";
            this.radGroupBox47.Padding = new System.Windows.Forms.Padding(2, 18, 2, 2);
            // 
            // 
            // 
            this.radGroupBox47.RootElement.Padding = new System.Windows.Forms.Padding(2, 18, 2, 2);
            this.radGroupBox47.Size = new System.Drawing.Size(147, 29);
            this.radGroupBox47.TabIndex = 10;
            this.radGroupBox47.ThemeName = "Windows7";
            // 
            // radCheckBox16
            // 
            this.radCheckBox16.Location = new System.Drawing.Point(17, 6);
            this.radCheckBox16.Name = "radCheckBox16";
            this.radCheckBox16.Size = new System.Drawing.Size(54, 18);
            this.radCheckBox16.TabIndex = 0;
            this.radCheckBox16.Text = "HH y T";
            // 
            // radGroupBox46
            // 
            this.radGroupBox46.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
            this.radGroupBox46.Controls.Add(this.rdTDNO);
            this.radGroupBox46.Controls.Add(this.rdTDSI);
            this.radGroupBox46.Controls.Add(this.rdPLNO);
            this.radGroupBox46.Controls.Add(this.rdPLSI);
            this.radGroupBox46.Controls.Add(this.rdPDNO);
            this.radGroupBox46.Controls.Add(this.rdPDSI);
            this.radGroupBox46.Controls.Add(this.rdPBNO);
            this.radGroupBox46.Controls.Add(this.rdPBSI);
            this.radGroupBox46.Controls.Add(this.rdTD);
            this.radGroupBox46.Controls.Add(this.rdPL);
            this.radGroupBox46.Controls.Add(this.rdPD);
            this.radGroupBox46.Controls.Add(this.rdPB);
            this.radGroupBox46.Controls.Add(this.rdTT);
            this.radGroupBox46.FooterImageIndex = -1;
            this.radGroupBox46.FooterImageKey = "";
            this.radGroupBox46.HeaderImageIndex = -1;
            this.radGroupBox46.HeaderImageKey = "";
            this.radGroupBox46.HeaderMargin = new System.Windows.Forms.Padding(0);
            this.radGroupBox46.HeaderText = "";
            this.radGroupBox46.Location = new System.Drawing.Point(266, 6);
            this.radGroupBox46.Name = "radGroupBox46";
            this.radGroupBox46.Padding = new System.Windows.Forms.Padding(2, 18, 2, 2);
            // 
            // 
            // 
            this.radGroupBox46.RootElement.Padding = new System.Windows.Forms.Padding(2, 18, 2, 2);
            this.radGroupBox46.Size = new System.Drawing.Size(248, 157);
            this.radGroupBox46.TabIndex = 9;
            this.radGroupBox46.ThemeName = "Windows7";
            // 
            // rdTDNO
            // 
            this.rdTDNO.Location = new System.Drawing.Point(201, 117);
            this.rdTDNO.Name = "rdTDNO";
            this.rdTDNO.Size = new System.Drawing.Size(35, 18);
            this.rdTDNO.TabIndex = 8;
            this.rdTDNO.Text = "NO";
            // 
            // rdTDSI
            // 
            this.rdTDSI.Location = new System.Drawing.Point(160, 117);
            this.rdTDSI.Name = "rdTDSI";
            this.rdTDSI.Size = new System.Drawing.Size(35, 18);
            this.rdTDSI.TabIndex = 5;
            this.rdTDSI.Text = "SI";
            // 
            // rdPLNO
            // 
            this.rdPLNO.Location = new System.Drawing.Point(201, 93);
            this.rdPLNO.Name = "rdPLNO";
            this.rdPLNO.Size = new System.Drawing.Size(35, 18);
            this.rdPLNO.TabIndex = 9;
            this.rdPLNO.Text = "NO";
            // 
            // rdPLSI
            // 
            this.rdPLSI.Location = new System.Drawing.Point(160, 93);
            this.rdPLSI.Name = "rdPLSI";
            this.rdPLSI.Size = new System.Drawing.Size(35, 18);
            this.rdPLSI.TabIndex = 5;
            this.rdPLSI.Text = "SI";
            // 
            // rdPDNO
            // 
            this.rdPDNO.Location = new System.Drawing.Point(201, 69);
            this.rdPDNO.Name = "rdPDNO";
            this.rdPDNO.Size = new System.Drawing.Size(35, 18);
            this.rdPDNO.TabIndex = 10;
            this.rdPDNO.Text = "NO";
            // 
            // rdPDSI
            // 
            this.rdPDSI.Location = new System.Drawing.Point(160, 69);
            this.rdPDSI.Name = "rdPDSI";
            this.rdPDSI.Size = new System.Drawing.Size(35, 18);
            this.rdPDSI.TabIndex = 5;
            this.rdPDSI.Text = "SI";
            // 
            // rdPBNO
            // 
            this.rdPBNO.Location = new System.Drawing.Point(201, 45);
            this.rdPBNO.Name = "rdPBNO";
            this.rdPBNO.Size = new System.Drawing.Size(35, 18);
            this.rdPBNO.TabIndex = 6;
            this.rdPBNO.Text = "NO";
            // 
            // rdPBSI
            // 
            this.rdPBSI.Location = new System.Drawing.Point(160, 45);
            this.rdPBSI.Name = "rdPBSI";
            this.rdPBSI.Size = new System.Drawing.Size(35, 18);
            this.rdPBSI.TabIndex = 4;
            this.rdPBSI.Text = "SI";
            // 
            // rdTD
            // 
            this.rdTD.Location = new System.Drawing.Point(26, 117);
            this.rdTD.Name = "rdTD";
            this.rdTD.Size = new System.Drawing.Size(117, 18);
            this.rdTD.TabIndex = 2;
            this.rdTD.Text = "Tabletop Dispenser";
            // 
            // rdPL
            // 
            this.rdPL.Location = new System.Drawing.Point(26, 93);
            this.rdPL.Name = "rdPL";
            this.rdPL.Size = new System.Drawing.Size(120, 18);
            this.rdPL.TabIndex = 1;
            this.rdPL.Text = "Packaged Luncheon";
            // 
            // rdPD
            // 
            this.rdPD.Location = new System.Drawing.Point(25, 69);
            this.rdPD.Name = "rdPD";
            this.rdPD.Size = new System.Drawing.Size(105, 18);
            this.rdPD.TabIndex = 1;
            this.rdPD.Text = "Packaged Dinner";
            // 
            // rdPB
            // 
            this.rdPB.Location = new System.Drawing.Point(25, 45);
            this.rdPB.Name = "rdPB";
            this.rdPB.Size = new System.Drawing.Size(117, 18);
            this.rdPB.TabIndex = 1;
            this.rdPB.Text = "Packaged Beverage";
            // 
            // rdTT
            // 
            this.rdTT.Location = new System.Drawing.Point(5, 21);
            this.rdTT.Name = "rdTT";
            this.rdTT.Size = new System.Drawing.Size(64, 18);
            this.rdTT.TabIndex = 0;
            this.rdTT.Text = "Tabletop";
            // 
            // radGroupBox45
            // 
            this.radGroupBox45.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
            this.radGroupBox45.Controls.Add(this.radRadioButton20);
            this.radGroupBox45.Controls.Add(this.radRadioButton21);
            this.radGroupBox45.Controls.Add(this.radRadioButton23);
            this.radGroupBox45.Controls.Add(this.radRadioButton24);
            this.radGroupBox45.Controls.Add(this.radRadioButton25);
            this.radGroupBox45.Controls.Add(this.radRadioButton26);
            this.radGroupBox45.Controls.Add(this.radCheckBox6);
            this.radGroupBox45.Controls.Add(this.radCheckBox7);
            this.radGroupBox45.Controls.Add(this.radCheckBox8);
            this.radGroupBox45.Controls.Add(this.radCheckBox9);
            this.radGroupBox45.FooterImageIndex = -1;
            this.radGroupBox45.FooterImageKey = "";
            this.radGroupBox45.HeaderImageIndex = -1;
            this.radGroupBox45.HeaderImageKey = "";
            this.radGroupBox45.HeaderMargin = new System.Windows.Forms.Padding(0);
            this.radGroupBox45.HeaderText = "";
            this.radGroupBox45.Location = new System.Drawing.Point(8, 134);
            this.radGroupBox45.Name = "radGroupBox45";
            this.radGroupBox45.Padding = new System.Windows.Forms.Padding(2, 18, 2, 2);
            // 
            // 
            // 
            this.radGroupBox45.RootElement.Padding = new System.Windows.Forms.Padding(2, 18, 2, 2);
            this.radGroupBox45.Size = new System.Drawing.Size(236, 114);
            this.radGroupBox45.TabIndex = 8;
            this.radGroupBox45.ThemeName = "Windows7";
            // 
            // radRadioButton20
            // 
            this.radRadioButton20.Location = new System.Drawing.Point(185, 83);
            this.radRadioButton20.Name = "radRadioButton20";
            this.radRadioButton20.Size = new System.Drawing.Size(35, 18);
            this.radRadioButton20.TabIndex = 9;
            this.radRadioButton20.Text = "NO";
            // 
            // radRadioButton21
            // 
            this.radRadioButton21.Location = new System.Drawing.Point(144, 83);
            this.radRadioButton21.Name = "radRadioButton21";
            this.radRadioButton21.Size = new System.Drawing.Size(35, 18);
            this.radRadioButton21.TabIndex = 5;
            this.radRadioButton21.Text = "SI";
            // 
            // radRadioButton23
            // 
            this.radRadioButton23.Location = new System.Drawing.Point(185, 59);
            this.radRadioButton23.Name = "radRadioButton23";
            this.radRadioButton23.Size = new System.Drawing.Size(35, 18);
            this.radRadioButton23.TabIndex = 10;
            this.radRadioButton23.Text = "NO";
            // 
            // radRadioButton24
            // 
            this.radRadioButton24.Location = new System.Drawing.Point(144, 59);
            this.radRadioButton24.Name = "radRadioButton24";
            this.radRadioButton24.Size = new System.Drawing.Size(35, 18);
            this.radRadioButton24.TabIndex = 5;
            this.radRadioButton24.Text = "SI";
            // 
            // radRadioButton25
            // 
            this.radRadioButton25.Location = new System.Drawing.Point(185, 35);
            this.radRadioButton25.Name = "radRadioButton25";
            this.radRadioButton25.Size = new System.Drawing.Size(35, 18);
            this.radRadioButton25.TabIndex = 6;
            this.radRadioButton25.Text = "NO";
            // 
            // radRadioButton26
            // 
            this.radRadioButton26.Location = new System.Drawing.Point(144, 35);
            this.radRadioButton26.Name = "radRadioButton26";
            this.radRadioButton26.Size = new System.Drawing.Size(35, 18);
            this.radRadioButton26.TabIndex = 4;
            this.radRadioButton26.Text = "SI";
            // 
            // radCheckBox6
            // 
            this.radCheckBox6.Location = new System.Drawing.Point(26, 83);
            this.radCheckBox6.Name = "radCheckBox6";
            this.radCheckBox6.Size = new System.Drawing.Size(113, 18);
            this.radCheckBox6.TabIndex = 1;
            this.radCheckBox6.Text = "Standard Roll Bath";
            // 
            // radCheckBox7
            // 
            this.radCheckBox7.Location = new System.Drawing.Point(25, 59);
            this.radCheckBox7.Name = "radCheckBox7";
            this.radCheckBox7.Size = new System.Drawing.Size(114, 18);
            this.radCheckBox7.TabIndex = 1;
            this.radCheckBox7.Text = "Jumbo Rolled Bath";
            // 
            // radCheckBox8
            // 
            this.radCheckBox8.Location = new System.Drawing.Point(25, 35);
            this.radCheckBox8.Name = "radCheckBox8";
            this.radCheckBox8.Size = new System.Drawing.Size(80, 18);
            this.radCheckBox8.TabIndex = 1;
            this.radCheckBox8.Text = "Folded Bath";
            // 
            // radCheckBox9
            // 
            this.radCheckBox9.Location = new System.Drawing.Point(5, 11);
            this.radCheckBox9.Name = "radCheckBox9";
            this.radCheckBox9.Size = new System.Drawing.Size(43, 18);
            this.radCheckBox9.TabIndex = 0;
            this.radCheckBox9.Text = "Bath";
            // 
            // radGroupBox44
            // 
            this.radGroupBox44.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
            this.radGroupBox44.Controls.Add(this.rdSRBNO);
            this.radGroupBox44.Controls.Add(this.rdSRBSI);
            this.radGroupBox44.Controls.Add(this.rdJRBNO);
            this.radGroupBox44.Controls.Add(this.rdJRBSI);
            this.radGroupBox44.Controls.Add(this.rdFBathNo);
            this.radGroupBox44.Controls.Add(this.rdFBathSi);
            this.radGroupBox44.Controls.Add(this.rdSRB);
            this.radGroupBox44.Controls.Add(this.rdJRB);
            this.radGroupBox44.Controls.Add(this.rdFBath);
            this.radGroupBox44.Controls.Add(this.rdBath);
            this.radGroupBox44.FooterImageIndex = -1;
            this.radGroupBox44.FooterImageKey = "";
            this.radGroupBox44.HeaderImageIndex = -1;
            this.radGroupBox44.HeaderImageKey = "";
            this.radGroupBox44.HeaderMargin = new System.Windows.Forms.Padding(0);
            this.radGroupBox44.HeaderText = "";
            this.radGroupBox44.Location = new System.Drawing.Point(8, 8);
            this.radGroupBox44.Name = "radGroupBox44";
            this.radGroupBox44.Padding = new System.Windows.Forms.Padding(2, 18, 2, 2);
            // 
            // 
            // 
            this.radGroupBox44.RootElement.Padding = new System.Windows.Forms.Padding(2, 18, 2, 2);
            this.radGroupBox44.Size = new System.Drawing.Size(236, 114);
            this.radGroupBox44.TabIndex = 7;
            this.radGroupBox44.ThemeName = "Windows7";
            // 
            // rdSRBNO
            // 
            this.rdSRBNO.Location = new System.Drawing.Point(185, 83);
            this.rdSRBNO.Name = "rdSRBNO";
            this.rdSRBNO.Size = new System.Drawing.Size(35, 18);
            this.rdSRBNO.TabIndex = 9;
            this.rdSRBNO.Text = "NO";
            // 
            // rdSRBSI
            // 
            this.rdSRBSI.Location = new System.Drawing.Point(144, 83);
            this.rdSRBSI.Name = "rdSRBSI";
            this.rdSRBSI.Size = new System.Drawing.Size(35, 18);
            this.rdSRBSI.TabIndex = 5;
            this.rdSRBSI.Text = "SI";
            // 
            // rdJRBNO
            // 
            this.rdJRBNO.Location = new System.Drawing.Point(185, 59);
            this.rdJRBNO.Name = "rdJRBNO";
            this.rdJRBNO.Size = new System.Drawing.Size(35, 18);
            this.rdJRBNO.TabIndex = 10;
            this.rdJRBNO.Text = "NO";
            // 
            // rdJRBSI
            // 
            this.rdJRBSI.Location = new System.Drawing.Point(144, 59);
            this.rdJRBSI.Name = "rdJRBSI";
            this.rdJRBSI.Size = new System.Drawing.Size(35, 18);
            this.rdJRBSI.TabIndex = 5;
            this.rdJRBSI.Text = "SI";
            // 
            // rdFBathNo
            // 
            this.rdFBathNo.Location = new System.Drawing.Point(185, 35);
            this.rdFBathNo.Name = "rdFBathNo";
            this.rdFBathNo.Size = new System.Drawing.Size(35, 18);
            this.rdFBathNo.TabIndex = 6;
            this.rdFBathNo.Text = "NO";
            // 
            // rdFBathSi
            // 
            this.rdFBathSi.Location = new System.Drawing.Point(144, 35);
            this.rdFBathSi.Name = "rdFBathSi";
            this.rdFBathSi.Size = new System.Drawing.Size(35, 18);
            this.rdFBathSi.TabIndex = 4;
            this.rdFBathSi.Text = "SI";
            // 
            // rdSRB
            // 
            this.rdSRB.Location = new System.Drawing.Point(26, 83);
            this.rdSRB.Name = "rdSRB";
            this.rdSRB.Size = new System.Drawing.Size(113, 18);
            this.rdSRB.TabIndex = 1;
            this.rdSRB.Text = "Standard Roll Bath";
            // 
            // rdJRB
            // 
            this.rdJRB.Location = new System.Drawing.Point(25, 59);
            this.rdJRB.Name = "rdJRB";
            this.rdJRB.Size = new System.Drawing.Size(114, 18);
            this.rdJRB.TabIndex = 1;
            this.rdJRB.Text = "Jumbo Rolled Bath";
            // 
            // rdFBath
            // 
            this.rdFBath.Location = new System.Drawing.Point(25, 35);
            this.rdFBath.Name = "rdFBath";
            this.rdFBath.Size = new System.Drawing.Size(80, 18);
            this.rdFBath.TabIndex = 1;
            this.rdFBath.Text = "Folded Bath";
            // 
            // rdBath
            // 
            this.rdBath.Location = new System.Drawing.Point(5, 11);
            this.rdBath.Name = "rdBath";
            this.rdBath.Size = new System.Drawing.Size(43, 18);
            this.rdBath.TabIndex = 0;
            this.rdBath.Text = "Bath";
            // 
            // radPageViewPage6
            // 
            this.radPageViewPage6.Controls.Add(this.radGroupBox51);
            this.radPageViewPage6.Controls.Add(this.radGroupBox50);
            this.radPageViewPage6.Controls.Add(this.radGroupBox49);
            this.radPageViewPage6.Controls.Add(this.radGroupBox48);
            this.radPageViewPage6.Location = new System.Drawing.Point(11, 37);
            this.radPageViewPage6.Name = "radPageViewPage6";
            this.radPageViewPage6.Size = new System.Drawing.Size(727, 327);
            this.radPageViewPage6.Text = "Wiping";
            // 
            // radGroupBox51
            // 
            this.radGroupBox51.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
            this.radGroupBox51.Controls.Add(this.rdSWNO);
            this.radGroupBox51.Controls.Add(this.rdSWSI);
            this.radGroupBox51.Controls.Add(this.rdSW);
            this.radGroupBox51.FooterImageIndex = -1;
            this.radGroupBox51.FooterImageKey = "";
            this.radGroupBox51.HeaderImageIndex = -1;
            this.radGroupBox51.HeaderImageKey = "";
            this.radGroupBox51.HeaderMargin = new System.Windows.Forms.Padding(0);
            this.radGroupBox51.HeaderText = "";
            this.radGroupBox51.Location = new System.Drawing.Point(3, 120);
            this.radGroupBox51.Name = "radGroupBox51";
            this.radGroupBox51.Padding = new System.Windows.Forms.Padding(2, 18, 2, 2);
            // 
            // 
            // 
            this.radGroupBox51.RootElement.Padding = new System.Windows.Forms.Padding(2, 18, 2, 2);
            this.radGroupBox51.Size = new System.Drawing.Size(248, 29);
            this.radGroupBox51.TabIndex = 7;
            this.radGroupBox51.ThemeName = "Windows7";
            // 
            // rdSWNO
            // 
            this.rdSWNO.Location = new System.Drawing.Point(185, 6);
            this.rdSWNO.Name = "rdSWNO";
            this.rdSWNO.Size = new System.Drawing.Size(35, 18);
            this.rdSWNO.TabIndex = 6;
            this.rdSWNO.Text = "NO";
            // 
            // rdSWSI
            // 
            this.rdSWSI.Location = new System.Drawing.Point(144, 6);
            this.rdSWSI.Name = "rdSWSI";
            this.rdSWSI.Size = new System.Drawing.Size(35, 18);
            this.rdSWSI.TabIndex = 5;
            this.rdSWSI.Text = "SI";
            // 
            // rdSW
            // 
            this.rdSW.Location = new System.Drawing.Point(17, 6);
            this.rdSW.Name = "rdSW";
            this.rdSW.Size = new System.Drawing.Size(102, 18);
            this.rdSW.TabIndex = 0;
            this.rdSW.Text = "Specialty Wipers";
            // 
            // radGroupBox50
            // 
            this.radGroupBox50.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
            this.radGroupBox50.Controls.Add(this.rdOWNO);
            this.radGroupBox50.Controls.Add(this.rdOWSI);
            this.radGroupBox50.Controls.Add(this.rdOW);
            this.radGroupBox50.FooterImageIndex = -1;
            this.radGroupBox50.FooterImageKey = "";
            this.radGroupBox50.HeaderImageIndex = -1;
            this.radGroupBox50.HeaderImageKey = "";
            this.radGroupBox50.HeaderMargin = new System.Windows.Forms.Padding(0);
            this.radGroupBox50.HeaderText = "";
            this.radGroupBox50.Location = new System.Drawing.Point(3, 85);
            this.radGroupBox50.Name = "radGroupBox50";
            this.radGroupBox50.Padding = new System.Windows.Forms.Padding(2, 18, 2, 2);
            // 
            // 
            // 
            this.radGroupBox50.RootElement.Padding = new System.Windows.Forms.Padding(2, 18, 2, 2);
            this.radGroupBox50.Size = new System.Drawing.Size(248, 29);
            this.radGroupBox50.TabIndex = 7;
            this.radGroupBox50.ThemeName = "Windows7";
            // 
            // rdOWNO
            // 
            this.rdOWNO.Location = new System.Drawing.Point(185, 6);
            this.rdOWNO.Name = "rdOWNO";
            this.rdOWNO.Size = new System.Drawing.Size(35, 18);
            this.rdOWNO.TabIndex = 6;
            this.rdOWNO.Text = "NO";
            // 
            // rdOWSI
            // 
            this.rdOWSI.Location = new System.Drawing.Point(144, 6);
            this.rdOWSI.Name = "rdOWSI";
            this.rdOWSI.Size = new System.Drawing.Size(35, 18);
            this.rdOWSI.TabIndex = 5;
            this.rdOWSI.Text = "SI";
            // 
            // rdOW
            // 
            this.rdOW.Location = new System.Drawing.Point(17, 6);
            this.rdOW.Name = "rdOW";
            this.rdOW.Size = new System.Drawing.Size(90, 18);
            this.rdOW.TabIndex = 0;
            this.rdOW.Text = "Other Wipers ";
            // 
            // radGroupBox49
            // 
            this.radGroupBox49.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
            this.radGroupBox49.Controls.Add(this.rdEUWNO);
            this.radGroupBox49.Controls.Add(this.rdEUWSI);
            this.radGroupBox49.Controls.Add(this.rdEUW);
            this.radGroupBox49.FooterImageIndex = -1;
            this.radGroupBox49.FooterImageKey = "";
            this.radGroupBox49.HeaderImageIndex = -1;
            this.radGroupBox49.HeaderImageKey = "";
            this.radGroupBox49.HeaderMargin = new System.Windows.Forms.Padding(0);
            this.radGroupBox49.HeaderText = "";
            this.radGroupBox49.Location = new System.Drawing.Point(3, 12);
            this.radGroupBox49.Name = "radGroupBox49";
            this.radGroupBox49.Padding = new System.Windows.Forms.Padding(2, 18, 2, 2);
            // 
            // 
            // 
            this.radGroupBox49.RootElement.Padding = new System.Windows.Forms.Padding(2, 18, 2, 2);
            this.radGroupBox49.Size = new System.Drawing.Size(248, 29);
            this.radGroupBox49.TabIndex = 7;
            this.radGroupBox49.ThemeName = "Windows7";
            // 
            // rdEUWNO
            // 
            this.rdEUWNO.Location = new System.Drawing.Point(185, 6);
            this.rdEUWNO.Name = "rdEUWNO";
            this.rdEUWNO.Size = new System.Drawing.Size(35, 18);
            this.rdEUWNO.TabIndex = 6;
            this.rdEUWNO.Text = "NO";
            // 
            // rdEUWSI
            // 
            this.rdEUWSI.Location = new System.Drawing.Point(144, 6);
            this.rdEUWSI.Name = "rdEUWSI";
            this.rdEUWSI.Size = new System.Drawing.Size(35, 18);
            this.rdEUWSI.TabIndex = 5;
            this.rdEUWSI.Text = "SI";
            // 
            // rdEUW
            // 
            this.rdEUW.Location = new System.Drawing.Point(17, 6);
            this.rdEUW.Name = "rdEUW";
            this.rdEUW.Size = new System.Drawing.Size(126, 18);
            this.rdEUW.TabIndex = 0;
            this.rdEUW.Text = "Extended Use Wipers";
            // 
            // radGroupBox48
            // 
            this.radGroupBox48.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
            this.radGroupBox48.Controls.Add(this.rdLUWNO);
            this.radGroupBox48.Controls.Add(this.rdLUWSI);
            this.radGroupBox48.Controls.Add(this.rdLUW);
            this.radGroupBox48.FooterImageIndex = -1;
            this.radGroupBox48.FooterImageKey = "";
            this.radGroupBox48.HeaderImageIndex = -1;
            this.radGroupBox48.HeaderImageKey = "";
            this.radGroupBox48.HeaderMargin = new System.Windows.Forms.Padding(0);
            this.radGroupBox48.HeaderText = "";
            this.radGroupBox48.Location = new System.Drawing.Point(3, 47);
            this.radGroupBox48.Name = "radGroupBox48";
            this.radGroupBox48.Padding = new System.Windows.Forms.Padding(2, 18, 2, 2);
            // 
            // 
            // 
            this.radGroupBox48.RootElement.Padding = new System.Windows.Forms.Padding(2, 18, 2, 2);
            this.radGroupBox48.Size = new System.Drawing.Size(248, 29);
            this.radGroupBox48.TabIndex = 7;
            this.radGroupBox48.ThemeName = "Windows7";
            // 
            // rdLUWNO
            // 
            this.rdLUWNO.Location = new System.Drawing.Point(185, 6);
            this.rdLUWNO.Name = "rdLUWNO";
            this.rdLUWNO.Size = new System.Drawing.Size(35, 18);
            this.rdLUWNO.TabIndex = 6;
            this.rdLUWNO.Text = "NO";
            // 
            // rdLUWSI
            // 
            this.rdLUWSI.Location = new System.Drawing.Point(144, 6);
            this.rdLUWSI.Name = "rdLUWSI";
            this.rdLUWSI.Size = new System.Drawing.Size(35, 18);
            this.rdLUWSI.TabIndex = 5;
            this.rdLUWSI.Text = "SI";
            // 
            // rdLUW
            // 
            this.rdLUW.Location = new System.Drawing.Point(17, 6);
            this.rdLUW.Name = "rdLUW";
            this.rdLUW.Size = new System.Drawing.Size(120, 18);
            this.rdLUW.TabIndex = 0;
            this.rdLUW.Text = "Limited Use Wipers ";
            // 
            // radPageViewPage7
            // 
            this.radPageViewPage7.Controls.Add(this.radGroupBox54);
            this.radPageViewPage7.Controls.Add(this.radGroupBox53);
            this.radPageViewPage7.Controls.Add(this.radGroupBox52);
            this.radPageViewPage7.Location = new System.Drawing.Point(11, 37);
            this.radPageViewPage7.Name = "radPageViewPage7";
            this.radPageViewPage7.Size = new System.Drawing.Size(727, 327);
            this.radPageViewPage7.Text = "Safety";
            // 
            // radGroupBox54
            // 
            this.radGroupBox54.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
            this.radGroupBox54.Controls.Add(this.rdWHNO);
            this.radGroupBox54.Controls.Add(this.rdWHSI);
            this.radGroupBox54.Controls.Add(this.rdWANO);
            this.radGroupBox54.Controls.Add(this.rdWASI);
            this.radGroupBox54.Controls.Add(this.rdWH);
            this.radGroupBox54.Controls.Add(this.rdWA);
            this.radGroupBox54.Controls.Add(this.radCheckBox21);
            this.radGroupBox54.FooterImageIndex = -1;
            this.radGroupBox54.FooterImageKey = "";
            this.radGroupBox54.HeaderImageIndex = -1;
            this.radGroupBox54.HeaderImageKey = "";
            this.radGroupBox54.HeaderMargin = new System.Windows.Forms.Padding(0);
            this.radGroupBox54.HeaderText = "";
            this.radGroupBox54.Location = new System.Drawing.Point(275, 8);
            this.radGroupBox54.Name = "radGroupBox54";
            this.radGroupBox54.Padding = new System.Windows.Forms.Padding(2, 18, 2, 2);
            // 
            // 
            // 
            this.radGroupBox54.RootElement.Padding = new System.Windows.Forms.Padding(2, 18, 2, 2);
            this.radGroupBox54.Size = new System.Drawing.Size(301, 107);
            this.radGroupBox54.TabIndex = 11;
            this.radGroupBox54.ThemeName = "Windows7";
            // 
            // rdWHNO
            // 
            this.rdWHNO.Location = new System.Drawing.Point(245, 69);
            this.rdWHNO.Name = "rdWHNO";
            this.rdWHNO.Size = new System.Drawing.Size(35, 18);
            this.rdWHNO.TabIndex = 10;
            this.rdWHNO.Text = "NO";
            // 
            // rdWHSI
            // 
            this.rdWHSI.Location = new System.Drawing.Point(204, 69);
            this.rdWHSI.Name = "rdWHSI";
            this.rdWHSI.Size = new System.Drawing.Size(35, 18);
            this.rdWHSI.TabIndex = 5;
            this.rdWHSI.Text = "SI";
            // 
            // rdWANO
            // 
            this.rdWANO.Location = new System.Drawing.Point(245, 45);
            this.rdWANO.Name = "rdWANO";
            this.rdWANO.Size = new System.Drawing.Size(35, 18);
            this.rdWANO.TabIndex = 6;
            this.rdWANO.Text = "NO";
            // 
            // rdWASI
            // 
            this.rdWASI.Location = new System.Drawing.Point(204, 45);
            this.rdWASI.Name = "rdWASI";
            this.rdWASI.Size = new System.Drawing.Size(35, 18);
            this.rdWASI.TabIndex = 4;
            this.rdWASI.Text = "SI";
            // 
            // rdWH
            // 
            this.rdWH.Location = new System.Drawing.Point(25, 69);
            this.rdWH.Name = "rdWH";
            this.rdWH.Size = new System.Drawing.Size(106, 18);
            this.rdWH.TabIndex = 1;
            this.rdWH.Text = "Welding Helmets";
            // 
            // rdWA
            // 
            this.rdWA.Location = new System.Drawing.Point(25, 45);
            this.rdWA.Name = "rdWA";
            this.rdWA.Size = new System.Drawing.Size(125, 18);
            this.rdWA.TabIndex = 1;
            this.rdWA.Text = "Welding Accessories ";
            // 
            // radCheckBox21
            // 
            this.radCheckBox21.Location = new System.Drawing.Point(5, 21);
            this.radCheckBox21.Name = "radCheckBox21";
            this.radCheckBox21.Size = new System.Drawing.Size(114, 18);
            this.radCheckBox21.TabIndex = 0;
            this.radCheckBox21.Text = "Industrial Welding ";
            // 
            // radGroupBox53
            // 
            this.radGroupBox53.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
            this.radGroupBox53.Controls.Add(this.rdOISNO);
            this.radGroupBox53.Controls.Add(this.rdOISSI);
            this.radGroupBox53.Controls.Add(this.rdSANO);
            this.radGroupBox53.Controls.Add(this.rdSASI);
            this.radGroupBox53.Controls.Add(this.radHSNNO);
            this.radGroupBox53.Controls.Add(this.radHSSI);
            this.radGroupBox53.Controls.Add(this.rdCDCNO);
            this.radGroupBox53.Controls.Add(this.rdCDCSI);
            this.radGroupBox53.Controls.Add(this.rdOIS);
            this.radGroupBox53.Controls.Add(this.rdSA);
            this.radGroupBox53.Controls.Add(this.radHS);
            this.radGroupBox53.Controls.Add(this.rdCDC);
            this.radGroupBox53.Controls.Add(this.radCheckBox15);
            this.radGroupBox53.FooterImageIndex = -1;
            this.radGroupBox53.FooterImageKey = "";
            this.radGroupBox53.HeaderImageIndex = -1;
            this.radGroupBox53.HeaderImageKey = "";
            this.radGroupBox53.HeaderMargin = new System.Windows.Forms.Padding(0);
            this.radGroupBox53.HeaderText = "";
            this.radGroupBox53.Location = new System.Drawing.Point(275, 126);
            this.radGroupBox53.Name = "radGroupBox53";
            this.radGroupBox53.Padding = new System.Windows.Forms.Padding(2, 18, 2, 2);
            // 
            // 
            // 
            this.radGroupBox53.RootElement.Padding = new System.Windows.Forms.Padding(2, 18, 2, 2);
            this.radGroupBox53.Size = new System.Drawing.Size(301, 157);
            this.radGroupBox53.TabIndex = 10;
            this.radGroupBox53.ThemeName = "Windows7";
            // 
            // rdOISNO
            // 
            this.rdOISNO.Location = new System.Drawing.Point(245, 117);
            this.rdOISNO.Name = "rdOISNO";
            this.rdOISNO.Size = new System.Drawing.Size(35, 18);
            this.rdOISNO.TabIndex = 8;
            this.rdOISNO.Text = "NO";
            // 
            // rdOISSI
            // 
            this.rdOISSI.Location = new System.Drawing.Point(204, 117);
            this.rdOISSI.Name = "rdOISSI";
            this.rdOISSI.Size = new System.Drawing.Size(35, 18);
            this.rdOISSI.TabIndex = 5;
            this.rdOISSI.Text = "SI";
            // 
            // rdSANO
            // 
            this.rdSANO.Location = new System.Drawing.Point(245, 93);
            this.rdSANO.Name = "rdSANO";
            this.rdSANO.Size = new System.Drawing.Size(35, 18);
            this.rdSANO.TabIndex = 9;
            this.rdSANO.Text = "NO";
            // 
            // rdSASI
            // 
            this.rdSASI.Location = new System.Drawing.Point(204, 93);
            this.rdSASI.Name = "rdSASI";
            this.rdSASI.Size = new System.Drawing.Size(35, 18);
            this.rdSASI.TabIndex = 5;
            this.rdSASI.Text = "SI";
            // 
            // radHSNNO
            // 
            this.radHSNNO.Location = new System.Drawing.Point(245, 69);
            this.radHSNNO.Name = "radHSNNO";
            this.radHSNNO.Size = new System.Drawing.Size(35, 18);
            this.radHSNNO.TabIndex = 10;
            this.radHSNNO.Text = "NO";
            // 
            // radHSSI
            // 
            this.radHSSI.Location = new System.Drawing.Point(204, 69);
            this.radHSSI.Name = "radHSSI";
            this.radHSSI.Size = new System.Drawing.Size(35, 18);
            this.radHSSI.TabIndex = 5;
            this.radHSSI.Text = "SI";
            // 
            // rdCDCNO
            // 
            this.rdCDCNO.Location = new System.Drawing.Point(245, 45);
            this.rdCDCNO.Name = "rdCDCNO";
            this.rdCDCNO.Size = new System.Drawing.Size(35, 18);
            this.rdCDCNO.TabIndex = 6;
            this.rdCDCNO.Text = "NO";
            // 
            // rdCDCSI
            // 
            this.rdCDCSI.Location = new System.Drawing.Point(204, 45);
            this.rdCDCSI.Name = "rdCDCSI";
            this.rdCDCSI.Size = new System.Drawing.Size(35, 18);
            this.rdCDCSI.TabIndex = 4;
            this.rdCDCSI.Text = "SI";
            // 
            // rdOIS
            // 
            this.rdOIS.Location = new System.Drawing.Point(26, 117);
            this.rdOIS.Name = "rdOIS";
            this.rdOIS.Size = new System.Drawing.Size(132, 18);
            this.rdOIS.TabIndex = 2;
            this.rdOIS.Text = "Other Industrial Safety";
            // 
            // rdSA
            // 
            this.rdSA.Location = new System.Drawing.Point(26, 93);
            this.rdSA.Name = "rdSA";
            this.rdSA.Size = new System.Drawing.Size(146, 18);
            this.rdSA.TabIndex = 1;
            this.rdSA.Text = "Hi-Viz y Seasone Apparel";
            // 
            // radHS
            // 
            this.radHS.Location = new System.Drawing.Point(25, 69);
            this.radHS.Name = "radHS";
            this.radHS.Size = new System.Drawing.Size(97, 18);
            this.radHS.TabIndex = 1;
            this.radHS.Text = "Highway Safety";
            // 
            // rdCDC
            // 
            this.rdCDC.Location = new System.Drawing.Point(25, 45);
            this.rdCDC.Name = "rdCDC";
            this.rdCDC.Size = new System.Drawing.Size(156, 18);
            this.rdCDC.TabIndex = 1;
            this.rdCDC.Text = "Channelizers/Drums/Cones";
            // 
            // radCheckBox15
            // 
            this.radCheckBox15.Location = new System.Drawing.Point(5, 21);
            this.radCheckBox15.Name = "radCheckBox15";
            this.radCheckBox15.Size = new System.Drawing.Size(125, 18);
            this.radCheckBox15.TabIndex = 0;
            this.radCheckBox15.Text = "Industrial Work Zone";
            // 
            // radGroupBox52
            // 
            this.radGroupBox52.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
            this.radGroupBox52.Controls.Add(this.radVNO);
            this.radGroupBox52.Controls.Add(this.radRNO);
            this.radGroupBox52.Controls.Add(this.radVSI);
            this.radGroupBox52.Controls.Add(this.radRSI);
            this.radGroupBox52.Controls.Add(this.rdVision);
            this.radGroupBox52.Controls.Add(this.rdRespi);
            this.radGroupBox52.Controls.Add(this.radHNO);
            this.radGroupBox52.Controls.Add(this.radHSI);
            this.radGroupBox52.Controls.Add(this.rdHPNO);
            this.radGroupBox52.Controls.Add(this.rdHPSI);
            this.radGroupBox52.Controls.Add(this.rdGloveNO);
            this.radGroupBox52.Controls.Add(this.rdGloveSI);
            this.radGroupBox52.Controls.Add(this.rdFPNO);
            this.radGroupBox52.Controls.Add(this.rdFPSI);
            this.radGroupBox52.Controls.Add(this.rdAppNO);
            this.radGroupBox52.Controls.Add(this.rdAppSI);
            this.radGroupBox52.Controls.Add(this.rdHearing);
            this.radGroupBox52.Controls.Add(this.rdHeadP);
            this.radGroupBox52.Controls.Add(this.rdGlove);
            this.radGroupBox52.Controls.Add(this.rdFP);
            this.radGroupBox52.Controls.Add(this.rdApp);
            this.radGroupBox52.Controls.Add(this.rdIP);
            this.radGroupBox52.FooterImageIndex = -1;
            this.radGroupBox52.FooterImageKey = "";
            this.radGroupBox52.HeaderImageIndex = -1;
            this.radGroupBox52.HeaderImageKey = "";
            this.radGroupBox52.HeaderMargin = new System.Windows.Forms.Padding(0);
            this.radGroupBox52.HeaderText = "";
            this.radGroupBox52.Location = new System.Drawing.Point(3, 8);
            this.radGroupBox52.Name = "radGroupBox52";
            this.radGroupBox52.Padding = new System.Windows.Forms.Padding(2, 18, 2, 2);
            // 
            // 
            // 
            this.radGroupBox52.RootElement.Padding = new System.Windows.Forms.Padding(2, 18, 2, 2);
            this.radGroupBox52.Size = new System.Drawing.Size(248, 275);
            this.radGroupBox52.TabIndex = 6;
            this.radGroupBox52.ThemeName = "Windows7";
            // 
            // radVNO
            // 
            this.radVNO.Location = new System.Drawing.Point(185, 209);
            this.radVNO.Name = "radVNO";
            this.radVNO.Size = new System.Drawing.Size(35, 18);
            this.radVNO.TabIndex = 10;
            this.radVNO.Text = "NO";
            // 
            // radRNO
            // 
            this.radRNO.Location = new System.Drawing.Point(185, 185);
            this.radRNO.Name = "radRNO";
            this.radRNO.Size = new System.Drawing.Size(35, 18);
            this.radRNO.TabIndex = 13;
            this.radRNO.Text = "NO";
            // 
            // radVSI
            // 
            this.radVSI.Location = new System.Drawing.Point(144, 209);
            this.radVSI.Name = "radVSI";
            this.radVSI.Size = new System.Drawing.Size(35, 18);
            this.radVSI.TabIndex = 9;
            this.radVSI.Text = "SI";
            // 
            // radRSI
            // 
            this.radRSI.Location = new System.Drawing.Point(144, 185);
            this.radRSI.Name = "radRSI";
            this.radRSI.Size = new System.Drawing.Size(35, 18);
            this.radRSI.TabIndex = 12;
            this.radRSI.Text = "SI";
            // 
            // rdVision
            // 
            this.rdVision.Location = new System.Drawing.Point(26, 209);
            this.rdVision.Name = "rdVision";
            this.rdVision.Size = new System.Drawing.Size(51, 18);
            this.rdVision.TabIndex = 8;
            this.rdVision.Text = "Vision";
            // 
            // rdRespi
            // 
            this.rdRespi.Location = new System.Drawing.Point(26, 185);
            this.rdRespi.Name = "rdRespi";
            this.rdRespi.Size = new System.Drawing.Size(76, 18);
            this.rdRespi.TabIndex = 11;
            this.rdRespi.Text = "Respirators";
            // 
            // radHNO
            // 
            this.radHNO.Location = new System.Drawing.Point(185, 161);
            this.radHNO.Name = "radHNO";
            this.radHNO.Size = new System.Drawing.Size(35, 18);
            this.radHNO.TabIndex = 7;
            this.radHNO.Text = "NO";
            // 
            // radHSI
            // 
            this.radHSI.Location = new System.Drawing.Point(144, 161);
            this.radHSI.Name = "radHSI";
            this.radHSI.Size = new System.Drawing.Size(35, 18);
            this.radHSI.TabIndex = 5;
            this.radHSI.Text = "SI";
            // 
            // rdHPNO
            // 
            this.rdHPNO.Location = new System.Drawing.Point(185, 137);
            this.rdHPNO.Name = "rdHPNO";
            this.rdHPNO.Size = new System.Drawing.Size(35, 18);
            this.rdHPNO.TabIndex = 8;
            this.rdHPNO.Text = "NO";
            // 
            // rdHPSI
            // 
            this.rdHPSI.Location = new System.Drawing.Point(144, 137);
            this.rdHPSI.Name = "rdHPSI";
            this.rdHPSI.Size = new System.Drawing.Size(35, 18);
            this.rdHPSI.TabIndex = 5;
            this.rdHPSI.Text = "SI";
            // 
            // rdGloveNO
            // 
            this.rdGloveNO.Location = new System.Drawing.Point(185, 113);
            this.rdGloveNO.Name = "rdGloveNO";
            this.rdGloveNO.Size = new System.Drawing.Size(35, 18);
            this.rdGloveNO.TabIndex = 9;
            this.rdGloveNO.Text = "NO";
            // 
            // rdGloveSI
            // 
            this.rdGloveSI.Location = new System.Drawing.Point(144, 113);
            this.rdGloveSI.Name = "rdGloveSI";
            this.rdGloveSI.Size = new System.Drawing.Size(35, 18);
            this.rdGloveSI.TabIndex = 5;
            this.rdGloveSI.Text = "SI";
            // 
            // rdFPNO
            // 
            this.rdFPNO.Location = new System.Drawing.Point(185, 89);
            this.rdFPNO.Name = "rdFPNO";
            this.rdFPNO.Size = new System.Drawing.Size(35, 18);
            this.rdFPNO.TabIndex = 10;
            this.rdFPNO.Text = "NO";
            // 
            // rdFPSI
            // 
            this.rdFPSI.Location = new System.Drawing.Point(144, 89);
            this.rdFPSI.Name = "rdFPSI";
            this.rdFPSI.Size = new System.Drawing.Size(35, 18);
            this.rdFPSI.TabIndex = 5;
            this.rdFPSI.Text = "SI";
            // 
            // rdAppNO
            // 
            this.rdAppNO.Location = new System.Drawing.Point(185, 65);
            this.rdAppNO.Name = "rdAppNO";
            this.rdAppNO.Size = new System.Drawing.Size(35, 18);
            this.rdAppNO.TabIndex = 6;
            this.rdAppNO.Text = "NO";
            // 
            // rdAppSI
            // 
            this.rdAppSI.Location = new System.Drawing.Point(144, 65);
            this.rdAppSI.Name = "rdAppSI";
            this.rdAppSI.Size = new System.Drawing.Size(35, 18);
            this.rdAppSI.TabIndex = 4;
            this.rdAppSI.Text = "SI";
            // 
            // rdHearing
            // 
            this.rdHearing.Location = new System.Drawing.Point(26, 161);
            this.rdHearing.Name = "rdHearing";
            this.rdHearing.Size = new System.Drawing.Size(60, 18);
            this.rdHearing.TabIndex = 3;
            this.rdHearing.Text = "Hearing";
            // 
            // rdHeadP
            // 
            this.rdHeadP.Location = new System.Drawing.Point(26, 137);
            this.rdHeadP.Name = "rdHeadP";
            this.rdHeadP.Size = new System.Drawing.Size(101, 18);
            this.rdHeadP.TabIndex = 2;
            this.rdHeadP.Text = "Head Protection";
            // 
            // rdGlove
            // 
            this.rdGlove.Location = new System.Drawing.Point(26, 113);
            this.rdGlove.Name = "rdGlove";
            this.rdGlove.Size = new System.Drawing.Size(53, 18);
            this.rdGlove.TabIndex = 1;
            this.rdGlove.Text = "Gloves";
            // 
            // rdFP
            // 
            this.rdFP.Location = new System.Drawing.Point(25, 89);
            this.rdFP.Name = "rdFP";
            this.rdFP.Size = new System.Drawing.Size(97, 18);
            this.rdFP.TabIndex = 1;
            this.rdFP.Text = "Face Protection";
            // 
            // rdApp
            // 
            this.rdApp.Location = new System.Drawing.Point(25, 65);
            this.rdApp.Name = "rdApp";
            this.rdApp.Size = new System.Drawing.Size(59, 18);
            this.rdApp.TabIndex = 1;
            this.rdApp.Text = "Apparel";
            // 
            // rdIP
            // 
            this.rdIP.Location = new System.Drawing.Point(5, 41);
            this.rdIP.Name = "rdIP";
            this.rdIP.Size = new System.Drawing.Size(88, 18);
            this.rdIP.TabIndex = 0;
            this.rdIP.Text = "Industrial PPE";
            // 
            // radPageViewPage8
            // 
            this.radPageViewPage8.Controls.Add(this.radGroupBox55);
            this.radPageViewPage8.Controls.Add(this.radGroupBox56);
            this.radPageViewPage8.Location = new System.Drawing.Point(11, 37);
            this.radPageViewPage8.Name = "radPageViewPage8";
            this.radPageViewPage8.Size = new System.Drawing.Size(727, 327);
            this.radPageViewPage8.Text = "Other KCP";
            // 
            // radGroupBox55
            // 
            this.radGroupBox55.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
            this.radGroupBox55.Controls.Add(this.rdOKCPNO);
            this.radGroupBox55.Controls.Add(this.OKCPSI);
            this.radGroupBox55.Controls.Add(this.rdOKCP);
            this.radGroupBox55.FooterImageIndex = -1;
            this.radGroupBox55.FooterImageKey = "";
            this.radGroupBox55.HeaderImageIndex = -1;
            this.radGroupBox55.HeaderImageKey = "";
            this.radGroupBox55.HeaderMargin = new System.Windows.Forms.Padding(0);
            this.radGroupBox55.HeaderText = "";
            this.radGroupBox55.Location = new System.Drawing.Point(3, 12);
            this.radGroupBox55.Name = "radGroupBox55";
            this.radGroupBox55.Padding = new System.Windows.Forms.Padding(2, 18, 2, 2);
            // 
            // 
            // 
            this.radGroupBox55.RootElement.Padding = new System.Windows.Forms.Padding(2, 18, 2, 2);
            this.radGroupBox55.Size = new System.Drawing.Size(248, 29);
            this.radGroupBox55.TabIndex = 8;
            this.radGroupBox55.ThemeName = "Windows7";
            // 
            // rdOKCPNO
            // 
            this.rdOKCPNO.Location = new System.Drawing.Point(185, 6);
            this.rdOKCPNO.Name = "rdOKCPNO";
            this.rdOKCPNO.Size = new System.Drawing.Size(35, 18);
            this.rdOKCPNO.TabIndex = 6;
            this.rdOKCPNO.Text = "NO";
            // 
            // OKCPSI
            // 
            this.OKCPSI.Location = new System.Drawing.Point(144, 6);
            this.OKCPSI.Name = "OKCPSI";
            this.OKCPSI.Size = new System.Drawing.Size(35, 18);
            this.OKCPSI.TabIndex = 5;
            this.OKCPSI.Text = "SI";
            // 
            // rdOKCP
            // 
            this.rdOKCP.Location = new System.Drawing.Point(17, 6);
            this.rdOKCP.Name = "rdOKCP";
            this.rdOKCP.Size = new System.Drawing.Size(72, 18);
            this.rdOKCP.TabIndex = 0;
            this.rdOKCP.Text = "Other KCP";
            // 
            // radGroupBox56
            // 
            this.radGroupBox56.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
            this.radGroupBox56.Controls.Add(this.rdSPPNO);
            this.radGroupBox56.Controls.Add(this.rdSPPSI);
            this.radGroupBox56.Controls.Add(this.rdSPP);
            this.radGroupBox56.FooterImageIndex = -1;
            this.radGroupBox56.FooterImageKey = "";
            this.radGroupBox56.HeaderImageIndex = -1;
            this.radGroupBox56.HeaderImageKey = "";
            this.radGroupBox56.HeaderMargin = new System.Windows.Forms.Padding(0);
            this.radGroupBox56.HeaderText = "";
            this.radGroupBox56.Location = new System.Drawing.Point(3, 47);
            this.radGroupBox56.Name = "radGroupBox56";
            this.radGroupBox56.Padding = new System.Windows.Forms.Padding(2, 18, 2, 2);
            // 
            // 
            // 
            this.radGroupBox56.RootElement.Padding = new System.Windows.Forms.Padding(2, 18, 2, 2);
            this.radGroupBox56.Size = new System.Drawing.Size(248, 29);
            this.radGroupBox56.TabIndex = 9;
            this.radGroupBox56.ThemeName = "Windows7";
            // 
            // rdSPPNO
            // 
            this.rdSPPNO.Location = new System.Drawing.Point(185, 6);
            this.rdSPPNO.Name = "rdSPPNO";
            this.rdSPPNO.Size = new System.Drawing.Size(35, 18);
            this.rdSPPNO.TabIndex = 6;
            this.rdSPPNO.Text = "NO";
            // 
            // rdSPPSI
            // 
            this.rdSPPSI.Location = new System.Drawing.Point(144, 6);
            this.rdSPPSI.Name = "rdSPPSI";
            this.rdSPPSI.Size = new System.Drawing.Size(35, 18);
            this.rdSPPSI.TabIndex = 5;
            this.rdSPPSI.Text = "SI";
            // 
            // rdSPP
            // 
            this.rdSPP.Location = new System.Drawing.Point(17, 6);
            this.rdSPP.Name = "rdSPP";
            this.rdSPP.Size = new System.Drawing.Size(86, 18);
            this.rdSPP.TabIndex = 0;
            this.rdSPP.Text = "Scientific PPE";
            // 
            // radDock2
            // 
            this.radDock2.ActiveWindow = this.toolWindow3;
            this.radDock2.BackColor = System.Drawing.Color.White;
            this.radDock2.Controls.Add(this.toolTabStrip2);
            this.radDock2.Controls.Add(this.documentContainer2);
            this.radDock2.DocumentManager.DocumentInsertOrder = Telerik.WinControls.UI.Docking.DockWindowInsertOrder.InFront;
            this.radDock2.IsCleanUpTarget = true;
            this.radDock2.Location = new System.Drawing.Point(0, 18);
            this.radDock2.MainDocumentContainer = this.documentContainer2;
            this.radDock2.Name = "radDock2";
            this.radDock2.Padding = new System.Windows.Forms.Padding(5);
            // 
            // 
            // 
            this.radDock2.RootElement.MinSize = new System.Drawing.Size(25, 25);
            this.radDock2.RootElement.Padding = new System.Windows.Forms.Padding(5);
            this.radDock2.Size = new System.Drawing.Size(1443, 670);
            this.radDock2.SplitterWidth = 4;
            this.radDock2.TabIndex = 3;
            this.radDock2.TabStop = false;
            this.radDock2.Text = "radDock2";
            // 
            // toolWindow3
            // 
            this.toolWindow3.Caption = null;
            this.toolWindow3.Controls.Add(this.proyectsTV);
            this.toolWindow3.Location = new System.Drawing.Point(1, 24);
            this.toolWindow3.Name = "toolWindow3";
            this.toolWindow3.PreviousDockState = Telerik.WinControls.UI.Docking.DockState.Docked;
            this.toolWindow3.Size = new System.Drawing.Size(244, 634);
            this.toolWindow3.Text = "Menu";
            // 
            // proyectsTV
            // 
            this.proyectsTV.Dock = System.Windows.Forms.DockStyle.Fill;
            this.proyectsTV.Location = new System.Drawing.Point(0, 0);
            this.proyectsTV.Name = "proyectsTV";
            this.proyectsTV.Size = new System.Drawing.Size(244, 634);
            this.proyectsTV.SpacingBetweenNodes = -1;
            this.proyectsTV.TabIndex = 0;
            this.proyectsTV.Text = "radTreeView1";
            this.proyectsTV.ThemeName = "TelerikMetroBlue";
            this.proyectsTV.SelectedNodeChanged += new Telerik.WinControls.UI.RadTreeView.RadTreeViewEventHandler(this.projectsTreeView_SelectedNodeChanged);
            // 
            // toolTabStrip2
            // 
            this.toolTabStrip2.Controls.Add(this.toolWindow3);
            this.toolTabStrip2.Location = new System.Drawing.Point(5, 5);
            this.toolTabStrip2.Name = "toolTabStrip2";
            // 
            // 
            // 
            this.toolTabStrip2.RootElement.MinSize = new System.Drawing.Size(25, 25);
            this.toolTabStrip2.SelectedIndex = 0;
            this.toolTabStrip2.Size = new System.Drawing.Size(246, 660);
            this.toolTabStrip2.SizeInfo.AbsoluteSize = new System.Drawing.Size(246, 200);
            this.toolTabStrip2.SizeInfo.SplitterCorrection = new System.Drawing.Size(46, 0);
            this.toolTabStrip2.TabIndex = 1;
            this.toolTabStrip2.TabStop = false;
            // 
            // documentContainer2
            // 
            this.documentContainer2.Location = new System.Drawing.Point(255, 5);
            this.documentContainer2.Name = "documentContainer2";
            this.documentContainer2.Padding = new System.Windows.Forms.Padding(5);
            // 
            // 
            // 
            this.documentContainer2.RootElement.MinSize = new System.Drawing.Size(25, 25);
            this.documentContainer2.RootElement.Padding = new System.Windows.Forms.Padding(5);
            this.documentContainer2.Size = new System.Drawing.Size(1183, 660);
            this.documentContainer2.SizeInfo.AbsoluteSize = new System.Drawing.Size(27, 200);
            this.documentContainer2.SizeInfo.SizeMode = Telerik.WinControls.UI.Docking.SplitPanelSizeMode.Fill;
            this.documentContainer2.SizeInfo.SplitterCorrection = new System.Drawing.Size(-46, 0);
            this.documentContainer2.SplitterWidth = 4;
            this.documentContainer2.TabIndex = 0;
            this.documentContainer2.TabStop = false;
            // 
            // detailsToolWindow
            // 
            this.detailsToolWindow.Caption = null;
            this.detailsToolWindow.Controls.Add(this.detailsPageView);
            this.detailsToolWindow.Location = new System.Drawing.Point(1, 24);
            this.detailsToolWindow.Name = "detailsToolWindow";
            this.detailsToolWindow.PreviousDockState = Telerik.WinControls.UI.Docking.DockState.Docked;
            this.detailsToolWindow.Size = new System.Drawing.Size(182, 565);
            this.detailsToolWindow.Text = "Details";
            // 
            // detailsPageView
            // 
            this.detailsPageView.Controls.Add(this.generalPageViewPage);
            this.detailsPageView.Controls.Add(this.descriptionPageViewPage);
            this.detailsPageView.Controls.Add(this.stepsToReproducePageViewPage);
            this.detailsPageView.Dock = System.Windows.Forms.DockStyle.Fill;
            this.detailsPageView.Location = new System.Drawing.Point(0, 0);
            this.detailsPageView.Name = "detailsPageView";
            this.detailsPageView.SelectedPage = this.stepsToReproducePageViewPage;
            this.detailsPageView.Size = new System.Drawing.Size(182, 565);
            this.detailsPageView.TabIndex = 0;
            this.detailsPageView.Text = "radPageView1";
            ((Telerik.WinControls.UI.RadPageViewStripElement)(this.detailsPageView.GetChildAt(0))).StripButtons = Telerik.WinControls.UI.StripViewButtons.None;
            // 
            // generalPageViewPage
            // 
            this.generalPageViewPage.Controls.Add(this.ownerDropDownList);
            this.generalPageViewPage.Controls.Add(this.ownerLabel);
            this.generalPageViewPage.Controls.Add(this.idSpinEditor);
            this.generalPageViewPage.Controls.Add(this.priorityDropDownList);
            this.generalPageViewPage.Controls.Add(this.dateDateTimePicker);
            this.generalPageViewPage.Controls.Add(this.statusDropDownList);
            this.generalPageViewPage.Controls.Add(this.titleTextBox);
            this.generalPageViewPage.Controls.Add(this.priorityLabel);
            this.generalPageViewPage.Controls.Add(this.dateLabel);
            this.generalPageViewPage.Controls.Add(this.statusLabel);
            this.generalPageViewPage.Controls.Add(this.titleLabel);
            this.generalPageViewPage.Controls.Add(this.idLabel);
            this.generalPageViewPage.Location = new System.Drawing.Point(10, 37);
            this.generalPageViewPage.Name = "generalPageViewPage";
            this.generalPageViewPage.Size = new System.Drawing.Size(161, 517);
            this.generalPageViewPage.Text = "General";
            // 
            // ownerDropDownList
            // 
            this.ownerDropDownList.DropDownAnimationEnabled = true;
            this.ownerDropDownList.Location = new System.Drawing.Point(441, 58);
            this.ownerDropDownList.Name = "ownerDropDownList";
            this.ownerDropDownList.ShowImageInEditorArea = true;
            this.ownerDropDownList.Size = new System.Drawing.Size(323, 20);
            this.ownerDropDownList.TabIndex = 8;
            // 
            // ownerLabel
            // 
            this.ownerLabel.Location = new System.Drawing.Point(393, 58);
            this.ownerLabel.Name = "ownerLabel";
            this.ownerLabel.Size = new System.Drawing.Size(39, 18);
            this.ownerLabel.TabIndex = 2;
            this.ownerLabel.Text = "Owner";
            // 
            // idSpinEditor
            // 
            this.idSpinEditor.Location = new System.Drawing.Point(51, 29);
            this.idSpinEditor.Name = "idSpinEditor";
            // 
            // 
            // 
            this.idSpinEditor.RootElement.AutoSizeMode = Telerik.WinControls.RadAutoSizeMode.WrapAroundChildren;
            this.idSpinEditor.RootElement.StretchVertically = true;
            this.idSpinEditor.ShowBorder = true;
            this.idSpinEditor.Size = new System.Drawing.Size(326, 20);
            this.idSpinEditor.TabIndex = 7;
            this.idSpinEditor.TabStop = false;
            // 
            // priorityDropDownList
            // 
            this.priorityDropDownList.DropDownAnimationEnabled = true;
            this.priorityDropDownList.Location = new System.Drawing.Point(441, 31);
            this.priorityDropDownList.Name = "priorityDropDownList";
            this.priorityDropDownList.ShowImageInEditorArea = true;
            this.priorityDropDownList.Size = new System.Drawing.Size(327, 20);
            this.priorityDropDownList.TabIndex = 6;
            // 
            // dateDateTimePicker
            // 
            this.dateDateTimePicker.Format = System.Windows.Forms.DateTimePickerFormat.Long;
            this.dateDateTimePicker.Location = new System.Drawing.Point(441, 3);
            this.dateDateTimePicker.MaxDate = new System.DateTime(9998, 12, 31, 0, 0, 0, 0);
            this.dateDateTimePicker.MinDate = new System.DateTime(1753, 1, 1, 0, 0, 0, 0);
            this.dateDateTimePicker.Name = "dateDateTimePicker";
            this.dateDateTimePicker.NullableValue = new System.DateTime(1753, 1, 1, 0, 0, 0, 0);
            this.dateDateTimePicker.NullDate = new System.DateTime(((long)(0)));
            this.dateDateTimePicker.Size = new System.Drawing.Size(326, 20);
            this.dateDateTimePicker.TabIndex = 5;
            this.dateDateTimePicker.TabStop = false;
            this.dateDateTimePicker.Text = "Monday, January 01, 1753";
            this.dateDateTimePicker.Value = new System.DateTime(1753, 1, 1, 0, 0, 0, 0);
            // 
            // statusDropDownList
            // 
            this.statusDropDownList.DropDownAnimationEnabled = true;
            this.statusDropDownList.Location = new System.Drawing.Point(51, 58);
            this.statusDropDownList.Name = "statusDropDownList";
            this.statusDropDownList.ShowImageInEditorArea = true;
            this.statusDropDownList.Size = new System.Drawing.Size(327, 20);
            this.statusDropDownList.TabIndex = 4;
            // 
            // titleTextBox
            // 
            this.titleTextBox.Location = new System.Drawing.Point(51, 3);
            this.titleTextBox.Name = "titleTextBox";
            this.titleTextBox.Size = new System.Drawing.Size(326, 20);
            this.titleTextBox.TabIndex = 3;
            this.titleTextBox.TabStop = false;
            // 
            // priorityLabel
            // 
            this.priorityLabel.Location = new System.Drawing.Point(393, 31);
            this.priorityLabel.Name = "priorityLabel";
            this.priorityLabel.Size = new System.Drawing.Size(42, 18);
            this.priorityLabel.TabIndex = 1;
            this.priorityLabel.Text = "Priority";
            // 
            // dateLabel
            // 
            this.dateLabel.Location = new System.Drawing.Point(393, 5);
            this.dateLabel.Name = "dateLabel";
            this.dateLabel.Size = new System.Drawing.Size(30, 18);
            this.dateLabel.TabIndex = 1;
            this.dateLabel.Text = "Date";
            // 
            // statusLabel
            // 
            this.statusLabel.Location = new System.Drawing.Point(3, 58);
            this.statusLabel.Name = "statusLabel";
            this.statusLabel.Size = new System.Drawing.Size(37, 18);
            this.statusLabel.TabIndex = 1;
            this.statusLabel.Text = "Status";
            // 
            // titleLabel
            // 
            this.titleLabel.Location = new System.Drawing.Point(3, 3);
            this.titleLabel.Name = "titleLabel";
            this.titleLabel.Size = new System.Drawing.Size(27, 18);
            this.titleLabel.TabIndex = 1;
            this.titleLabel.Text = "Title";
            // 
            // idLabel
            // 
            this.idLabel.Location = new System.Drawing.Point(3, 29);
            this.idLabel.Name = "idLabel";
            this.idLabel.Size = new System.Drawing.Size(16, 18);
            this.idLabel.TabIndex = 0;
            this.idLabel.Text = "Id";
            // 
            // descriptionPageViewPage
            // 
            this.descriptionPageViewPage.Controls.Add(this.descriptionTextBox);
            this.descriptionPageViewPage.Location = new System.Drawing.Point(10, 37);
            this.descriptionPageViewPage.Name = "descriptionPageViewPage";
            this.descriptionPageViewPage.Size = new System.Drawing.Size(161, 517);
            this.descriptionPageViewPage.Text = "Description";
            // 
            // descriptionTextBox
            // 
            this.descriptionTextBox.Dock = System.Windows.Forms.DockStyle.Fill;
            this.descriptionTextBox.Location = new System.Drawing.Point(0, 0);
            this.descriptionTextBox.Multiline = true;
            this.descriptionTextBox.Name = "descriptionTextBox";
            // 
            // 
            // 
            this.descriptionTextBox.RootElement.StretchVertically = true;
            this.descriptionTextBox.Size = new System.Drawing.Size(161, 517);
            this.descriptionTextBox.TabIndex = 1;
            this.descriptionTextBox.TabStop = false;
            // 
            // stepsToReproducePageViewPage
            // 
            this.stepsToReproducePageViewPage.Controls.Add(this.stepsToReproduceTextBox);
            this.stepsToReproducePageViewPage.Location = new System.Drawing.Point(10, 37);
            this.stepsToReproducePageViewPage.Name = "stepsToReproducePageViewPage";
            this.stepsToReproducePageViewPage.Size = new System.Drawing.Size(161, 517);
            this.stepsToReproducePageViewPage.Text = "Steps to reproduce";
            // 
            // stepsToReproduceTextBox
            // 
            this.stepsToReproduceTextBox.Dock = System.Windows.Forms.DockStyle.Fill;
            this.stepsToReproduceTextBox.Location = new System.Drawing.Point(0, 0);
            this.stepsToReproduceTextBox.Multiline = true;
            this.stepsToReproduceTextBox.Name = "stepsToReproduceTextBox";
            // 
            // 
            // 
            this.stepsToReproduceTextBox.RootElement.StretchVertically = true;
            this.stepsToReproduceTextBox.Size = new System.Drawing.Size(161, 517);
            this.stepsToReproduceTextBox.TabIndex = 2;
            this.stepsToReproduceTextBox.TabStop = false;
            // 
            // documentWindow2
            // 
            this.documentWindow2.Controls.Add(this.radGridView1);
            this.documentWindow2.Location = new System.Drawing.Point(6, 29);
            this.documentWindow2.Name = "documentWindow2";
            this.documentWindow2.PreviousDockState = Telerik.WinControls.UI.Docking.DockState.TabbedDocument;
            this.documentWindow2.Size = new System.Drawing.Size(782, 348);
            this.documentWindow2.Text = "Features";
            // 
            // radGridView1
            // 
            this.radGridView1.Dock = System.Windows.Forms.DockStyle.Fill;
            this.radGridView1.Location = new System.Drawing.Point(0, 0);
            this.radGridView1.Name = "radGridView1";
            this.radGridView1.Size = new System.Drawing.Size(782, 348);
            this.radGridView1.TabIndex = 0;
            this.radGridView1.Text = "radGridView1";
            // 
            // documentWindow1
            // 
            this.documentWindow1.Controls.Add(this.bugsGrid);
            this.documentWindow1.Location = new System.Drawing.Point(6, 29);
            this.documentWindow1.Name = "documentWindow1";
            this.documentWindow1.PreviousDockState = Telerik.WinControls.UI.Docking.DockState.TabbedDocument;
            this.documentWindow1.Size = new System.Drawing.Size(657, 556);
            this.documentWindow1.Text = "Bugs";
            // 
            // bugsGrid
            // 
            this.bugsGrid.Dock = System.Windows.Forms.DockStyle.Fill;
            this.bugsGrid.Location = new System.Drawing.Point(0, 0);
            this.bugsGrid.Name = "bugsGrid";
            this.bugsGrid.Size = new System.Drawing.Size(657, 556);
            this.bugsGrid.TabIndex = 0;
            this.bugsGrid.Text = "radGridView1";
            // 
            // projectsToolWindow
            // 
            this.projectsToolWindow.Caption = null;
            this.projectsToolWindow.Controls.Add(this.projectsTreeView);
            this.projectsToolWindow.Location = new System.Drawing.Point(1, 24);
            this.projectsToolWindow.Name = "projectsToolWindow";
            this.projectsToolWindow.PreviousDockState = Telerik.WinControls.UI.Docking.DockState.Docked;
            this.projectsToolWindow.Size = new System.Drawing.Size(136, 565);
            this.projectsToolWindow.Text = "Projects";
            // 
            // projectsTreeView
            // 
            this.projectsTreeView.Dock = System.Windows.Forms.DockStyle.Fill;
            this.projectsTreeView.Location = new System.Drawing.Point(0, 0);
            this.projectsTreeView.Name = "projectsTreeView";
            this.projectsTreeView.Size = new System.Drawing.Size(136, 565);
            this.projectsTreeView.SpacingBetweenNodes = -1;
            this.projectsTreeView.TabIndex = 0;
            this.projectsTreeView.Text = "radTreeView1";
            // 
            // radSplitContainer1
            // 
            this.radSplitContainer1.IsCleanUpTarget = true;
            this.radSplitContainer1.Location = new System.Drawing.Point(0, 0);
            this.radSplitContainer1.Name = "radSplitContainer1";
            // 
            // 
            // 
            this.radSplitContainer1.RootElement.MinSize = new System.Drawing.Size(25, 25);
            this.radSplitContainer1.Size = new System.Drawing.Size(200, 200);
            this.radSplitContainer1.SplitterWidth = 4;
            this.radSplitContainer1.TabIndex = 0;
            this.radSplitContainer1.TabStop = false;
            this.radSplitContainer1.ThemeName = "TelerikMetroBlue";
            // 
            // radSplitContainer2
            // 
            this.radSplitContainer2.IsCleanUpTarget = true;
            this.radSplitContainer2.Location = new System.Drawing.Point(0, 0);
            this.radSplitContainer2.Name = "radSplitContainer2";
            // 
            // 
            // 
            this.radSplitContainer2.RootElement.MinSize = new System.Drawing.Size(25, 25);
            this.radSplitContainer2.Size = new System.Drawing.Size(200, 200);
            this.radSplitContainer2.SplitterWidth = 4;
            this.radSplitContainer2.TabIndex = 0;
            this.radSplitContainer2.TabStop = false;
            this.radSplitContainer2.ThemeName = "TelerikMetroBlue";
            // 
            // radButtonElement1
            // 
            this.radButtonElement1.AccessibleDescription = "CRM TOOLS";
            this.radButtonElement1.AccessibleName = "CRM TOOLS";
            this.radButtonElement1.Class = "RibbonBarButtonElement";
            this.radButtonElement1.MaxSize = new System.Drawing.Size(0, 18);
            this.radButtonElement1.Name = "radButtonElement1";
            this.radButtonElement1.Text = "CRM TOOLS";
            this.radButtonElement1.Visibility = Telerik.WinControls.ElementVisibility.Visible;
            this.radButtonElement1.ZIndex = 1;
            // 
            // ribbonTab1
            // 
            this.ribbonTab1.AccessibleDescription = "CRM";
            this.ribbonTab1.AccessibleName = "CRM";
            this.ribbonTab1.AutoEllipsis = false;
            this.ribbonTab1.Class = "RibbonTab";
            this.ribbonTab1.IsSelected = true;
            this.ribbonTab1.Name = "ribbonTab1";
            this.ribbonTab1.Text = "CRM";
            this.ribbonTab1.Visibility = Telerik.WinControls.ElementVisibility.Visible;
            // 
            // radRibbonBar1
            // 
            this.radRibbonBar1.AutoSize = true;
            this.radRibbonBar1.CommandTabs.AddRange(new Telerik.WinControls.RadItem[] {
            this.ribbonTab1});
            // 
            // 
            // 
            this.radRibbonBar1.ExitButton.AccessibleDescription = "Exit";
            this.radRibbonBar1.ExitButton.AccessibleName = "Exit";
            // 
            // 
            // 
            this.radRibbonBar1.ExitButton.ButtonElement.AccessibleDescription = "Exit";
            this.radRibbonBar1.ExitButton.ButtonElement.AccessibleName = "Exit";
            this.radRibbonBar1.ExitButton.ButtonElement.Class = "RadMenuButtonElement";
            this.radRibbonBar1.ExitButton.ButtonElement.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageBeforeText;
            this.radRibbonBar1.ExitButton.Text = "Exit";
            this.radRibbonBar1.Location = new System.Drawing.Point(0, 0);
            this.radRibbonBar1.Name = "radRibbonBar1";
            // 
            // 
            // 
            this.radRibbonBar1.OptionsButton.AccessibleDescription = "Options";
            this.radRibbonBar1.OptionsButton.AccessibleName = "Options";
            // 
            // 
            // 
            this.radRibbonBar1.OptionsButton.ButtonElement.AccessibleDescription = "Options";
            this.radRibbonBar1.OptionsButton.ButtonElement.AccessibleName = "Options";
            this.radRibbonBar1.OptionsButton.ButtonElement.Class = "RadMenuButtonElement";
            this.radRibbonBar1.OptionsButton.ButtonElement.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageBeforeText;
            this.radRibbonBar1.OptionsButton.Text = "Options";
            this.radRibbonBar1.QuickAccessToolBarItems.AddRange(new Telerik.WinControls.RadItem[] {
            this.radButtonElement1});
            // 
            // 
            // 
            this.radRibbonBar1.RootElement.AutoSizeMode = Telerik.WinControls.RadAutoSizeMode.WrapAroundChildren;
            this.radRibbonBar1.Size = new System.Drawing.Size(1444, 154);
            this.radRibbonBar1.StartButtonImage = null;
            this.radRibbonBar1.TabIndex = 0;
            this.radRibbonBar1.Text = "Principal";
            this.radRibbonBar1.ThemeName = "TelerikMetroBlue";
            // 
            // toolTabStrip3
            // 
            this.toolTabStrip3.Location = new System.Drawing.Point(0, 0);
            this.toolTabStrip3.Name = "toolTabStrip3";
            // 
            // 
            // 
            this.toolTabStrip3.RootElement.MinSize = new System.Drawing.Size(25, 25);
            this.toolTabStrip3.Size = new System.Drawing.Size(292, 264);
            this.toolTabStrip3.TabIndex = 0;
            this.toolTabStrip3.TabStop = false;
            this.toolTabStrip3.ThemeName = "TelerikMetroBlue";
            // 
            // toolTabStrip5
            // 
            this.toolTabStrip5.Location = new System.Drawing.Point(0, 0);
            this.toolTabStrip5.Name = "toolTabStrip5";
            // 
            // 
            // 
            this.toolTabStrip5.RootElement.MinSize = new System.Drawing.Size(25, 25);
            this.toolTabStrip5.Size = new System.Drawing.Size(292, 264);
            this.toolTabStrip5.TabIndex = 0;
            this.toolTabStrip5.TabStop = false;
            this.toolTabStrip5.ThemeName = "TelerikMetroBlue";
            // 
            // toolWindow2
            // 
            this.toolWindow2.Caption = null;
            this.toolWindow2.Controls.Add(this.proyectTV);
            this.toolWindow2.Location = new System.Drawing.Point(1, 30);
            this.toolWindow2.Name = "toolWindow2";
            this.toolWindow2.PreviousDockState = Telerik.WinControls.UI.Docking.DockState.Docked;
            this.toolWindow2.Size = new System.Drawing.Size(198, 554);
            this.toolWindow2.Text = "Menu";
            // 
            // proyectTV
            // 
            this.proyectTV.Dock = System.Windows.Forms.DockStyle.Fill;
            this.proyectTV.Location = new System.Drawing.Point(0, 0);
            this.proyectTV.Name = "proyectTV";
            this.proyectTV.Size = new System.Drawing.Size(198, 554);
            this.proyectTV.SpacingBetweenNodes = -1;
            this.proyectTV.TabIndex = 0;
            this.proyectTV.Text = "radTreeView1";
            // 
            // object_fef4475c_6fff_4e7b_b9a3_68b71b26348d
            // 
            this.object_fef4475c_6fff_4e7b_b9a3_68b71b26348d.MinSize = new System.Drawing.Size(25, 25);
            this.object_fef4475c_6fff_4e7b_b9a3_68b71b26348d.Name = "object_fef4475c_6fff_4e7b_b9a3_68b71b26348d";
            this.object_fef4475c_6fff_4e7b_b9a3_68b71b26348d.Padding = new System.Windows.Forms.Padding(5);
            this.object_fef4475c_6fff_4e7b_b9a3_68b71b26348d.StretchHorizontally = true;
            this.object_fef4475c_6fff_4e7b_b9a3_68b71b26348d.StretchVertically = true;
            this.object_fef4475c_6fff_4e7b_b9a3_68b71b26348d.Visibility = Telerik.WinControls.ElementVisibility.Visible;
            // 
            // Principal
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.ClientSize = new System.Drawing.Size(1444, 907);
            this.Controls.Add(this.panel1);
            this.Controls.Add(this.radStatusStrip1);
            this.Controls.Add(this.radRibbonBar1);
            this.MainMenuStrip = null;
            this.Name = "Principal";
            // 
            // 
            // 
            this.RootElement.ApplyShapeToControl = true;
            this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
            this.Text = "Principal";
            this.ThemeName = "TelerikMetroBlue";
            this.WindowState = System.Windows.Forms.FormWindowState.Maximized;
            ((System.ComponentModel.ISupportInitialize)(this.radStatusStrip1)).EndInit();
            this.panel1.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.TabPrincipal)).EndInit();
            this.TabPrincipal.ResumeLayout(false);
            this.tabInicio.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.radPageView4)).EndInit();
            this.radPageView4.ResumeLayout(false);
            this.radPageViewPage28.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.radChart1)).EndInit();
            this.radPageViewPage29.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.radChart2)).EndInit();
            this.tabImportSellout.ResumeLayout(false);
            this.radScrollablePanel2.PanelContainer.ResumeLayout(false);
            this.radScrollablePanel2.PanelContainer.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.radScrollablePanel2)).EndInit();
            this.radScrollablePanel2.ResumeLayout(false);
            this.radScrollablePanel2.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.radButton2)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radButton3)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radButton4)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radButton5)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radTextBox2)).EndInit();
            this.radTextBox2.ResumeLayout(false);
            this.radTextBox2.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.radGroupBox4)).EndInit();
            this.radGroupBox4.ResumeLayout(false);
            this.radGroupBox4.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.radButton6)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel7)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel8)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radGroupBox5)).EndInit();
            this.radGroupBox5.ResumeLayout(false);
            this.radGroupBox5.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.radButton7)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel9)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel10)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radButton8)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radGroupBox6)).EndInit();
            this.radGroupBox6.ResumeLayout(false);
            this.radGroupBox6.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.radButton9)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel11)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel12)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.gridSellout.MasterTemplate)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.gridSellout)).EndInit();
            this.tabImportCliente.ResumeLayout(false);
            this.radScrollablePanel1.PanelContainer.ResumeLayout(false);
            this.radScrollablePanel1.PanelContainer.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.radScrollablePanel1)).EndInit();
            this.radScrollablePanel1.ResumeLayout(false);
            this.radScrollablePanel1.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.radButton12)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radGroupBox1)).EndInit();
            this.radGroupBox1.ResumeLayout(false);
            this.radGroupBox1.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.radButton14)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel2)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radGroupBox2)).EndInit();
            this.radGroupBox2.ResumeLayout(false);
            this.radGroupBox2.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel3)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel4)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radGroupBox3)).EndInit();
            this.radGroupBox3.ResumeLayout(false);
            this.radGroupBox3.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.radButton16)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel5)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel6)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radGridView2.MasterTemplate)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radGridView2)).EndInit();
            this.tabClientes.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.radGroupBox25)).EndInit();
            this.radGroupBox25.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.btEditar)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.btSelect)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.btDeselect)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.btVerificarCli)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.btLimpiar)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.btSalir)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radGridView3.MasterTemplate)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radGridView3)).EndInit();
            this.tabAgruparC.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.radGroupBox7)).EndInit();
            this.radGroupBox7.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.radGridView4.MasterTemplate)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radGridView4)).EndInit();
            this.tabMasterP.ResumeLayout(false);
            this.tabMasterP.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.btLimpiarMP)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.btAbrirMP)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.txtDir)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel13)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radGridView5.MasterTemplate)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radGridView5)).EndInit();
            this.tabProductosE.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.radGridView6.MasterTemplate)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radGridView6)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radGroupBox8)).EndInit();
            this.radGroupBox8.ResumeLayout(false);
            this.radGroupBox8.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.cbDist)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.cbPais)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel14)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel15)).EndInit();
            this.tabAgruparP.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.btNuevoAP)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.btActualAP)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radGridView13.MasterTemplate)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radGridView13)).EndInit();
            this.tabDistribuidor.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.btLimpiarD)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.btKam)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radGridView7.MasterTemplate)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radGridView7)).EndInit();
            this.tabKAM.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.btNuevo)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radGridView8.MasterTemplate)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radGridView8)).EndInit();
            this.tabPais.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.radGridView9.MasterTemplate)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radGridView9)).EndInit();
            this.tabSegmento.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.btNew)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radGridView10.MasterTemplate)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radGridView10)).EndInit();
            this.tabConglomerados.ResumeLayout(false);
            this.tabConglomerados.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.btActualCon)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radGridView11.MasterTemplate)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radGridView11)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.txtGrupoCliente)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel17)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel16)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.cbGAN)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radGroupBox9)).EndInit();
            this.radGroupBox9.ResumeLayout(false);
            this.radGroupBox9.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.cbSegmento)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.cbPlataformas)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radRadioButton5)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radRadioButton4)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radRadioButton3)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radRadioButton2)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radRadioButton1)).EndInit();
            this.tabCuentasGlobales.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.radGridView12.MasterTemplate)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radGridView12)).EndInit();
            this.tabCalculoABC.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.radPageView1)).EndInit();
            this.radPageView1.ResumeLayout(false);
            this.radPageViewPage18.ResumeLayout(false);
            this.radPageViewPage18.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.btCalcularD)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radGroupBox10)).EndInit();
            this.radGroupBox10.ResumeLayout(false);
            this.radGroupBox10.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.radTextBox1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel22)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel21)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel20)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.cbHasta)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.cbDesde)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel19)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel18)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.cbDistD)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.cbPaisDis)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radRadioButton7)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radRadioButton6)).EndInit();
            this.radPageViewPage19.ResumeLayout(false);
            this.radPageViewPage19.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.btCalcularP)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radGroupBox11)).EndInit();
            this.radGroupBox11.ResumeLayout(false);
            this.radGroupBox11.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.txtMesP)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel23)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel24)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel25)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.cbHastaP)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.cbDesdeP)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel27)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.cbPaisP)).EndInit();
            this.radPageViewPage20.ResumeLayout(false);
            this.radPageViewPage20.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.btCalcularR)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radGroupBox12)).EndInit();
            this.radGroupBox12.ResumeLayout(false);
            this.radGroupBox12.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.txtMesR)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel28)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel29)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel30)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.cbHastaR)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.cbDesdeR)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel31)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.cbRegion)).EndInit();
            this.radPageViewPage21.ResumeLayout(false);
            this.radPageViewPage21.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.btCalcularSR)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radGroupBox13)).EndInit();
            this.radGroupBox13.ResumeLayout(false);
            this.radGroupBox13.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.txtMesSR)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel33)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel34)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel35)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.cbHastaSR)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.cbDesdeSR)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel37)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.cbSubReg)).EndInit();
            this.tabCalculoOP.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.radPageView2)).EndInit();
            this.radPageView2.ResumeLayout(false);
            this.radPageViewPage22.ResumeLayout(false);
            this.radPageViewPage22.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.radGroupBox17)).EndInit();
            this.radGroupBox17.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.radRadioButton8)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radRadioButton9)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radGroupBox14)).EndInit();
            this.radGroupBox14.ResumeLayout(false);
            this.radGroupBox14.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.btProcesarOP)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel36)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.cbSecPR)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel38)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel39)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.cbDistPR)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.cbPaisPR)).EndInit();
            this.radPageViewPage23.ResumeLayout(false);
            this.radPageViewPage23.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.radGroupBox16)).EndInit();
            this.radGroupBox16.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.rdDist)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.rdPais)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radGroupBox15)).EndInit();
            this.radGroupBox15.ResumeLayout(false);
            this.radGroupBox15.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.btProcesarPP)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel26)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.cbSecPP)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel32)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel40)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.cbDistPP)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.cbPaisPP)).EndInit();
            this.tabCalculoKPI.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.radPageView3)).EndInit();
            this.radPageView3.ResumeLayout(false);
            this.radPageViewPage24.ResumeLayout(false);
            this.radPageViewPage24.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.radGroupBox18)).EndInit();
            this.radGroupBox18.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.radRadioButton10)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radRadioButton11)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radGroupBox19)).EndInit();
            this.radGroupBox19.ResumeLayout(false);
            this.radGroupBox19.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.radButton1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel41)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radDropDownList1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel42)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel43)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radDropDownList2)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radDropDownList3)).EndInit();
            this.radPageViewPage25.ResumeLayout(false);
            this.radPageViewPage25.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.radGroupBox20)).EndInit();
            this.radGroupBox20.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.radRadioButton12)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radRadioButton13)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radGroupBox21)).EndInit();
            this.radGroupBox21.ResumeLayout(false);
            this.radGroupBox21.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.radButton10)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel44)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radDropDownList4)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel45)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel46)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radDropDownList5)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radDropDownList6)).EndInit();
            this.radPageViewPage26.ResumeLayout(false);
            this.radPageViewPage26.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.radGroupBox22)).EndInit();
            this.radGroupBox22.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.radRadioButton14)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radRadioButton15)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radGroupBox23)).EndInit();
            this.radGroupBox23.ResumeLayout(false);
            this.radGroupBox23.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.radButton11)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel47)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radDropDownList7)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel48)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel49)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radDropDownList8)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radDropDownList9)).EndInit();
            this.radPageViewPage27.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.btProcesarS)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radGroupBox24)).EndInit();
            this.radGroupBox24.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.radRadioButton18)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radRadioButton19)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radRadioButton16)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radRadioButton17)).EndInit();
            this.tabImportSellin.ResumeLayout(false);
            this.radScrollablePanel3.PanelContainer.ResumeLayout(false);
            this.radScrollablePanel3.PanelContainer.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.radScrollablePanel3)).EndInit();
            this.radScrollablePanel3.ResumeLayout(false);
            this.radScrollablePanel3.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.radButton13)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radButton15)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radButton17)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radButton18)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radGroupBox26)).EndInit();
            this.radGroupBox26.ResumeLayout(false);
            this.radGroupBox26.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.radButton19)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel50)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel51)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radGroupBox27)).EndInit();
            this.radGroupBox27.ResumeLayout(false);
            this.radGroupBox27.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.radButton20)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel52)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel53)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radButton21)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radGroupBox28)).EndInit();
            this.radGroupBox28.ResumeLayout(false);
            this.radGroupBox28.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.radButton22)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel54)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel55)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radGridView14.MasterTemplate)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radGridView14)).EndInit();
            this.radPageViewPage2.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.radGroupBox34)).EndInit();
            this.radGroupBox34.ResumeLayout(false);
            this.radGroupBox34.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel59)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel58)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radTextBox6)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radTextBox5)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radGroupBox33)).EndInit();
            this.radGroupBox33.ResumeLayout(false);
            this.radGroupBox33.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel57)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel56)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radTextBox4)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radTextBox3)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.btCancel)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.btReiniciar)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.btFiltrar)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radGroupBox32)).EndInit();
            this.radGroupBox32.ResumeLayout(false);
            this.radGroupBox32.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.radCheckBox3)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radCheckBox4)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radCheckBox5)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radGroupBox31)).EndInit();
            this.radGroupBox31.ResumeLayout(false);
            this.radGroupBox31.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.rdC)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.rdB)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.rdA)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radGroupBox30)).EndInit();
            this.radGroupBox30.ResumeLayout(false);
            this.radGroupBox30.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.rdOther)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.rdNA)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.rdNEC)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.rdOffice)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.rdManufact)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.rdLodging)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.rdHighT)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.rdHeatlhC)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.rdGroceryR)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.rdGovernment)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.rdFoodP)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.rdFoodS)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.rdEducation)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radGroupBox29)).EndInit();
            this.radGroupBox29.ResumeLayout(false);
            this.radGroupBox29.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.radCheckBox2)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radCheckBox1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radPageView5)).EndInit();
            this.radPageView5.ResumeLayout(false);
            this.radPageViewPage1.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.radGroupBox40)).EndInit();
            this.radGroupBox40.ResumeLayout(false);
            this.radGroupBox40.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.rdPA)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.rdSV)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.rdCR)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.rdNI)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.rdHN)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.rdGT)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.rdCA)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radGroupBox39)).EndInit();
            this.radGroupBox39.ResumeLayout(false);
            this.radGroupBox39.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.rdSuriname)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.rdPBJ)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.rdTrinidadT)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.rdRD)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.rdCaribe)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radGroupBox37)).EndInit();
            this.radGroupBox37.ResumeLayout(false);
            this.radGroupBox37.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.rdChile)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.rdParaguay)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.rdArgentina)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.rdAustral)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radGroupBox38)).EndInit();
            this.radGroupBox38.ResumeLayout(false);
            this.radGroupBox38.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.rdBrasil)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radGroupBox36)).EndInit();
            this.radGroupBox36.ResumeLayout(false);
            this.radGroupBox36.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.rdPeru)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.rdEcuador)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.rdColombia)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.rdVenezuela)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.rdAndino)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radGroupBox35)).EndInit();
            this.radGroupBox35.ResumeLayout(false);
            this.radGroupBox35.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.rdLAO)).EndInit();
            this.radPageViewPage3.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.radGroupBox42)).EndInit();
            this.radGroupBox42.ResumeLayout(false);
            this.radGroupBox42.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.rdHSNO)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.rdHSSI)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.rdHandS)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radGroupBox41)).EndInit();
            this.radGroupBox41.ResumeLayout(false);
            this.radGroupBox41.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.rdSTNO)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.rdSTSI)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.rdCNO)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radRadioButton22)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.rdBUNO)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.rdBUSI)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.rdBNO)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.rdBSI)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.rdBBNO)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.rdBBSI)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.rdST)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.rdCassette)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.rdBulk)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.rdBottles)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.rdBIB)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.rdSkinCare)).EndInit();
            this.radPageViewPage4.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.radGroupBox43)).EndInit();
            this.radGroupBox43.ResumeLayout(false);
            this.radGroupBox43.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.rdKRNO)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.rdKRSI)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.rdHRTNO)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.rdHRTSI)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.rdFTNO)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.rdFTSI)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.rdCTPNO)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.rdCTPSI)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.rdKR)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.rdHRT)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.rdFT)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.rdCPT)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radCheckBox11)).EndInit();
            this.radPageViewPage5.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.radGroupBox47)).EndInit();
            this.radGroupBox47.ResumeLayout(false);
            this.radGroupBox47.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.radCheckBox16)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radGroupBox46)).EndInit();
            this.radGroupBox46.ResumeLayout(false);
            this.radGroupBox46.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.rdTDNO)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.rdTDSI)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.rdPLNO)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.rdPLSI)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.rdPDNO)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.rdPDSI)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.rdPBNO)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.rdPBSI)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.rdTD)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.rdPL)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.rdPD)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.rdPB)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.rdTT)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radGroupBox45)).EndInit();
            this.radGroupBox45.ResumeLayout(false);
            this.radGroupBox45.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.radRadioButton20)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radRadioButton21)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radRadioButton23)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radRadioButton24)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radRadioButton25)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radRadioButton26)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radCheckBox6)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radCheckBox7)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radCheckBox8)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radCheckBox9)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radGroupBox44)).EndInit();
            this.radGroupBox44.ResumeLayout(false);
            this.radGroupBox44.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.rdSRBNO)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.rdSRBSI)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.rdJRBNO)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.rdJRBSI)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.rdFBathNo)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.rdFBathSi)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.rdSRB)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.rdJRB)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.rdFBath)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.rdBath)).EndInit();
            this.radPageViewPage6.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.radGroupBox51)).EndInit();
            this.radGroupBox51.ResumeLayout(false);
            this.radGroupBox51.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.rdSWNO)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.rdSWSI)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.rdSW)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radGroupBox50)).EndInit();
            this.radGroupBox50.ResumeLayout(false);
            this.radGroupBox50.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.rdOWNO)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.rdOWSI)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.rdOW)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radGroupBox49)).EndInit();
            this.radGroupBox49.ResumeLayout(false);
            this.radGroupBox49.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.rdEUWNO)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.rdEUWSI)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.rdEUW)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radGroupBox48)).EndInit();
            this.radGroupBox48.ResumeLayout(false);
            this.radGroupBox48.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.rdLUWNO)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.rdLUWSI)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.rdLUW)).EndInit();
            this.radPageViewPage7.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.radGroupBox54)).EndInit();
            this.radGroupBox54.ResumeLayout(false);
            this.radGroupBox54.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.rdWHNO)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.rdWHSI)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.rdWANO)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.rdWASI)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.rdWH)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.rdWA)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radCheckBox21)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radGroupBox53)).EndInit();
            this.radGroupBox53.ResumeLayout(false);
            this.radGroupBox53.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.rdOISNO)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.rdOISSI)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.rdSANO)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.rdSASI)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radHSNNO)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radHSSI)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.rdCDCNO)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.rdCDCSI)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.rdOIS)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.rdSA)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radHS)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.rdCDC)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radCheckBox15)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radGroupBox52)).EndInit();
            this.radGroupBox52.ResumeLayout(false);
            this.radGroupBox52.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.radVNO)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radRNO)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radVSI)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radRSI)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.rdVision)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.rdRespi)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radHNO)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radHSI)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.rdHPNO)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.rdHPSI)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.rdGloveNO)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.rdGloveSI)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.rdFPNO)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.rdFPSI)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.rdAppNO)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.rdAppSI)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.rdHearing)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.rdHeadP)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.rdGlove)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.rdFP)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.rdApp)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.rdIP)).EndInit();
            this.radPageViewPage8.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.radGroupBox55)).EndInit();
            this.radGroupBox55.ResumeLayout(false);
            this.radGroupBox55.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.rdOKCPNO)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.OKCPSI)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.rdOKCP)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radGroupBox56)).EndInit();
            this.radGroupBox56.ResumeLayout(false);
            this.radGroupBox56.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.rdSPPNO)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.rdSPPSI)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.rdSPP)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radDock2)).EndInit();
            this.radDock2.ResumeLayout(false);
            this.toolWindow3.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.proyectsTV)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.toolTabStrip2)).EndInit();
            this.toolTabStrip2.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.documentContainer2)).EndInit();
            this.detailsToolWindow.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.detailsPageView)).EndInit();
            this.detailsPageView.ResumeLayout(false);
            this.generalPageViewPage.ResumeLayout(false);
            this.generalPageViewPage.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.ownerDropDownList)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.ownerLabel)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.idSpinEditor)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.priorityDropDownList)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.dateDateTimePicker)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.statusDropDownList)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.titleTextBox)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.priorityLabel)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.dateLabel)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.statusLabel)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.titleLabel)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.idLabel)).EndInit();
            this.descriptionPageViewPage.ResumeLayout(false);
            this.descriptionPageViewPage.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.descriptionTextBox)).EndInit();
            this.stepsToReproducePageViewPage.ResumeLayout(false);
            this.stepsToReproducePageViewPage.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.stepsToReproduceTextBox)).EndInit();
            this.documentWindow2.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.radGridView1.MasterTemplate)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radGridView1)).EndInit();
            this.documentWindow1.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.bugsGrid.MasterTemplate)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.bugsGrid)).EndInit();
            this.projectsToolWindow.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.projectsTreeView)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radSplitContainer1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radSplitContainer2)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radRibbonBar1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.toolTabStrip3)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.toolTabStrip5)).EndInit();
            this.toolWindow2.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.proyectTV)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this)).EndInit();
            this.ResumeLayout(false);
            this.PerformLayout();

        }