Example #1
0
        private void BindOwner()
        {
            string OwnerQuery = "SELECT redOwnerID, Name FROM redOwner ORDER BY Name;";

            OwnerDT = Catman_Class_Library.SqlFunctions_RedReport.GetData(OwnerQuery);

            DataRow OwnerAddRow = OwnerDT.NewRow();

            OwnerAddRow.SetField("Name", "Add a new owner");
            OwnerAddRow.SetField("redOwnerID", 0);
            OwnerDT.Rows.InsertAt(OwnerAddRow, 0);

            Telerik.WinControls.UI.GridViewComboBoxColumn OGCombo = new Telerik.WinControls.UI.GridViewComboBoxColumn();
            OGCombo.FieldName        = "Owner";
            OGCombo.HeaderText       = "Owner";
            OGCombo.DataSource       = OwnerDT;
            OGCombo.DisplayMember    = "Name";
            OGCombo.ValueMember      = "redOwnerID";
            OGCombo.AutoCompleteMode = AutoCompleteMode.SuggestAppend;

            radGridViewOwner.MasterGridViewTemplate.Columns.Add(OGCombo);

            Telerik.WinControls.UI.GridViewDateTimeColumn DTPicker = new Telerik.WinControls.UI.GridViewDateTimeColumn();
            DTPicker.FieldName  = "DateFrom";
            DTPicker.HeaderText = "Date From";
            radGridViewOwner.MasterGridViewTemplate.Columns.Add(DTPicker);

            radGridViewOwner.Columns[0].Width = 180;
        }
Example #2
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); }
        }
Example #3
0
        private void BindOwnerGroup()
        {
            //Changed on 2012/11/20 to cater for historic Store-OwnerGroup
            //string StoreOwnerGroupQuery = "SELECT redStoreOwnerGroupDetailID, redOwnerGroupID, DateFrom FROM redStoreOwnerGroupDetail WHERE redStoreID = " + StoreID + ";";
            string    StoreOwnerGroupQuery = "SELECT redStoreOwnerGroupDetailID, redOwnerGroupID, DateFrom FROM redStoreOwnerGroupDetail WHERE redStoreID = " + StoreID + "ORDER BY DateFrom DESC;";
            DataTable StoreOwnerGroupDT    = Catman_Class_Library.SqlFunctions_RedReport.GetData(StoreOwnerGroupQuery);

            Telerik.WinControls.UI.GridViewDecimalColumn OGID = new Telerik.WinControls.UI.GridViewDecimalColumn();
            OGID.FieldName  = "redStoreOwnerGroupDetailID";
            OGID.HeaderText = "redStoreOwnerGroupDetailID";
            radGridViewOwnerGroup.MasterGridViewTemplate.Columns.Add(OGID);

            string OwnerGroupQuery = "SELECT redOwnerGroupID, Name FROM redOwnerGroup ORDER BY Name;";

            OwnerGroupDT = Catman_Class_Library.SqlFunctions_RedReport.GetData(OwnerGroupQuery);

            DataRow OwnerGroupAddRow = OwnerGroupDT.NewRow();

            OwnerGroupAddRow.SetField("Name", "Add a new owner group");
            OwnerGroupAddRow.SetField("redOwnerGroupID", 0);
            OwnerGroupDT.Rows.InsertAt(OwnerGroupAddRow, 0);

            Telerik.WinControls.UI.GridViewComboBoxColumn OGCombo = new Telerik.WinControls.UI.GridViewComboBoxColumn();
            OGCombo.FieldName        = "OwnerGroup";
            OGCombo.HeaderText       = "Owner Group";
            OGCombo.DataSource       = OwnerGroupDT;
            OGCombo.DisplayMember    = "Name";
            OGCombo.ValueMember      = "redOwnerGroupID";
            OGCombo.AutoCompleteMode = AutoCompleteMode.SuggestAppend;

            radGridViewOwnerGroup.MasterGridViewTemplate.Columns.Add(OGCombo);

            Telerik.WinControls.UI.GridViewDateTimeColumn DTPicker = new Telerik.WinControls.UI.GridViewDateTimeColumn();
            DTPicker.FieldName  = "DateFrom";
            DTPicker.HeaderText = "Date From";
            radGridViewOwnerGroup.MasterGridViewTemplate.Columns.Add(DTPicker);

            radGridViewOwnerGroup.Columns[0].IsVisible = false;
            radGridViewOwnerGroup.Columns[1].Width     = 180;

            radGridViewOwnerGroup.DataSource = StoreOwnerGroupDT;

            if (radGridViewOwnerGroup.Rows.Count > 0)
            {
                for (int i = 0; i < StoreOwnerGroupDT.Rows.Count; i++)
                {
                    DataRow thisrow = StoreOwnerGroupDT.Rows[i];
                    radGridViewOwnerGroup.Rows[i].Cells[1].Value = thisrow["redOwnerGroupID"];
                }
            }
        }
        /// <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.GridViewComboBoxColumn gridViewComboBoxColumn2 = new Telerik.WinControls.UI.GridViewComboBoxColumn();
            this.radGridView1 = new Telerik.WinControls.UI.RadGridView();
            ((System.ComponentModel.ISupportInitialize)(this.radGridView1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radGridView1.MasterTemplate)).BeginInit();
            this.SuspendLayout();
            // 
            // radGridView1
            // 
            this.radGridView1.BackColor = System.Drawing.SystemColors.Control;
            this.radGridView1.Cursor = System.Windows.Forms.Cursors.Default;
            this.radGridView1.Font = new System.Drawing.Font("Segoe UI", 8.25F);
            this.radGridView1.ForeColor = System.Drawing.SystemColors.ControlText;
            this.radGridView1.ImeMode = System.Windows.Forms.ImeMode.NoControl;
            this.radGridView1.Location = new System.Drawing.Point(126, 1);
            // 
            // radGridView1
            // 
            gridViewComboBoxColumn1.EnableExpressionEditor = false;
            gridViewComboBoxColumn1.FieldName = "Ma_vat_tu";
            gridViewComboBoxColumn1.HeaderText = "column1";
            gridViewComboBoxColumn1.Name = "Mã vật tư";
            gridViewComboBoxColumn2.EnableExpressionEditor = false;
            gridViewComboBoxColumn2.FieldName = "Ten_vat_tu";
            gridViewComboBoxColumn2.HeaderText = "Tên vật tư";
            gridViewComboBoxColumn2.Name = "Tên vật tư";
            this.radGridView1.MasterTemplate.Columns.AddRange(new Telerik.WinControls.UI.GridViewDataColumn[] {
            gridViewComboBoxColumn1,
            gridViewComboBoxColumn2});
            this.radGridView1.Name = "radGridView1";
            this.radGridView1.RightToLeft = System.Windows.Forms.RightToLeft.No;
            this.radGridView1.Size = new System.Drawing.Size(495, 336);
            this.radGridView1.TabIndex = 0;
            this.radGridView1.Text = "radGridView1";
            // 
            // Form1
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.ClientSize = new System.Drawing.Size(658, 370);
            this.Controls.Add(this.radGridView1);
            this.Name = "Form1";
            this.Text = "Form1";
            ((System.ComponentModel.ISupportInitialize)(this.radGridView1.MasterTemplate)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radGridView1)).EndInit();
            this.ResumeLayout(false);

        }
        private void BindStoreCategory()
        {
            Telerik.WinControls.UI.GridViewDecimalColumn SCID = new Telerik.WinControls.UI.GridViewDecimalColumn();
            SCID.FieldName  = "redStoreOverrideStoreCategoryID";
            SCID.HeaderText = "redStoreOverrideStoreCategoryID";
            radGridViewStoreCategory.MasterGridViewTemplate.Columns.Add(SCID);

            string CategoryQuery = "SELECT redStoreCategoryID, Category FROM redStoreCategory ORDER BY Category;";

            CategoryDT = Catman_Class_Library.SqlFunctions_RedReport.GetData(CategoryQuery);

            //DataRow CategoryAddRow = CategoryDT.NewRow();
            //CategoryAddRow.SetField("Category", "Add a new Store Category");
            //CategoryAddRow.SetField("redStoreCategoryID", 0);
            //CategoryDT.Rows.InsertAt(CategoryAddRow, 0);

            Telerik.WinControls.UI.GridViewComboBoxColumn CategoryCombo = new Telerik.WinControls.UI.GridViewComboBoxColumn();
            CategoryCombo.FieldName        = "StoreCategory";
            CategoryCombo.HeaderText       = "Store Category";
            CategoryCombo.DataSource       = CategoryDT;
            CategoryCombo.DisplayMember    = "Category";
            CategoryCombo.ValueMember      = "redStoreCategoryID";
            CategoryCombo.AutoCompleteMode = AutoCompleteMode.SuggestAppend;

            radGridViewStoreCategory.MasterGridViewTemplate.Columns.Add(CategoryCombo);

            Telerik.WinControls.UI.GridViewDateTimeColumn DTPickerFrom = new Telerik.WinControls.UI.GridViewDateTimeColumn();
            DTPickerFrom.FieldName  = "DateFrom";
            DTPickerFrom.HeaderText = "Date From";
            radGridViewStoreCategory.MasterGridViewTemplate.Columns.Add(DTPickerFrom);

            Telerik.WinControls.UI.GridViewDateTimeColumn DTPickerTo = new Telerik.WinControls.UI.GridViewDateTimeColumn();
            DTPickerTo.FieldName  = "DateTo";
            DTPickerTo.HeaderText = "Date To";
            radGridViewStoreCategory.MasterGridViewTemplate.Columns.Add(DTPickerTo);

            radGridViewStoreCategory.Columns[0].IsVisible = false;
            radGridViewStoreCategory.Columns[1].Width     = 180;


            //DataTable StoreCategoryDT = new DataTable();
            //StoreCategoryDT.Columns.Add("Store Category", typeof(Int32));
            //StoreCategoryDT.Columns.Add("Date From", typeof(DateTime));
            //StoreCategoryDT.Columns.Add("Date To", typeof(DateTime));
            //radGridViewStoreCategory.DataSource = StoreCategoryDT;
        }
        private void BindBEE()
        {
            Telerik.WinControls.UI.GridViewDecimalColumn BEEID = new Telerik.WinControls.UI.GridViewDecimalColumn();
            BEEID.FieldName  = "redStoreOverrideBEEID";
            BEEID.HeaderText = "redStoreOverrideBEEID";
            radGridViewBEE.MasterGridViewTemplate.Columns.Add(BEEID);

            string BEEQuery = "SELECT redBEEClassificationID, Description FROM redBEEClassification ORDER BY Description;";

            BEEDT = Catman_Class_Library.SqlFunctions_RedReport.GetData(BEEQuery);

            //DataRow BEEAddRow = BEEDT.NewRow();
            //BEEAddRow.SetField("Description", "Add a new BEE Classification");
            //BEEAddRow.SetField("redBEEClassificationID", 0);
            //BEEDT.Rows.InsertAt(BEEAddRow, 0);

            Telerik.WinControls.UI.GridViewComboBoxColumn BEECombo = new Telerik.WinControls.UI.GridViewComboBoxColumn();
            BEECombo.FieldName        = "BEEClassification";
            BEECombo.HeaderText       = "BEE Classification";
            BEECombo.DataSource       = BEEDT;
            BEECombo.DisplayMember    = "Description";
            BEECombo.ValueMember      = "redBEEClassificationID";
            BEECombo.AutoCompleteMode = AutoCompleteMode.SuggestAppend;

            radGridViewBEE.MasterGridViewTemplate.Columns.Add(BEECombo);

            Telerik.WinControls.UI.GridViewDateTimeColumn DTPicker = new Telerik.WinControls.UI.GridViewDateTimeColumn();
            DTPicker.FieldName  = "DateFrom";
            DTPicker.HeaderText = "Date From";
            radGridViewBEE.MasterGridViewTemplate.Columns.Add(DTPicker);

            Telerik.WinControls.UI.GridViewDateTimeColumn DTPickerTo = new Telerik.WinControls.UI.GridViewDateTimeColumn();
            DTPickerTo.FieldName  = "DateTo";
            DTPickerTo.HeaderText = "Date To";
            radGridViewBEE.MasterGridViewTemplate.Columns.Add(DTPickerTo);

            radGridViewBEE.Columns[0].IsVisible = false;
            radGridViewBEE.Columns[0].Width     = 180;

            //DataTable BEEDT = new DataTable();
            //BEEDT.Columns.Add("Classification", typeof(Int32));
            //BEEDT.Columns.Add("Date From", typeof(DateTime));
            //BEEDT.Columns.Add("Date To", typeof(DateTime));
            //radGridViewBEE.DataSource = BEEDT;
        }
Example #7
0
        private void FormatGrid()
        {
            try
            {
                Telerik.WinControls.UI.Localization.RadGridLocalizationProvider.CurrentProvider = new Infrastructure.WinForms.Controls.MySpanishRadGridLocalizationProvider();
                this.grdDetComision.Columns.Clear();
                this.grdDetComision.AllowAddNewRow = false;

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

                Telerik.WinControls.UI.GridViewDecimalColumn _DCOM_MinProfit = new Telerik.WinControls.UI.GridViewDecimalColumn();
                _DCOM_MinProfit.Name          = "DCOM_MinProfit";
                _DCOM_MinProfit.HeaderText    = "Profit Mínimo";
                _DCOM_MinProfit.FieldName     = "DCOM_MinProfit";
                _DCOM_MinProfit.DecimalPlaces = 0;
                this.grdDetComision.Columns.Add(_DCOM_MinProfit);

                Telerik.WinControls.UI.GridViewDecimalColumn _DCOM_Valor = new Telerik.WinControls.UI.GridViewDecimalColumn();
                _DCOM_Valor.Name          = "DCOM_Valor";
                _DCOM_Valor.HeaderText    = "Valor";
                _DCOM_Valor.FieldName     = "DCOM_Valor";
                _DCOM_Valor.DecimalPlaces = 2;
                this.grdDetComision.Columns.Add(_DCOM_Valor);

                ConfigureGrid();
            }
            catch (Exception ex)
            { Infrastructure.WinForms.Controls.Dialogos.MostrarMensajeError(Presenter.Title, Infrastructure.Aspect.Constants.Mensajes.FormatDataGridView, ex); }
        }
Example #8
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     Telerik.WinControls.UI.GridViewDecimalColumn  gridViewDecimalColumn29  = new Telerik.WinControls.UI.GridViewDecimalColumn();
     Telerik.WinControls.UI.GridViewTextBoxColumn  gridViewTextBoxColumn33  = new Telerik.WinControls.UI.GridViewTextBoxColumn();
     Telerik.WinControls.UI.GridViewComboBoxColumn gridViewComboBoxColumn9  = new Telerik.WinControls.UI.GridViewComboBoxColumn();
     Telerik.WinControls.UI.GridViewDateTimeColumn gridViewDateTimeColumn5  = new Telerik.WinControls.UI.GridViewDateTimeColumn();
     Telerik.WinControls.UI.GridViewComboBoxColumn gridViewComboBoxColumn10 = new Telerik.WinControls.UI.GridViewComboBoxColumn();
     Telerik.WinControls.UI.GridViewTextBoxColumn  gridViewTextBoxColumn34  = new Telerik.WinControls.UI.GridViewTextBoxColumn();
     Telerik.WinControls.UI.GridViewTextBoxColumn  gridViewTextBoxColumn35  = new Telerik.WinControls.UI.GridViewTextBoxColumn();
     Telerik.WinControls.UI.GridViewDecimalColumn  gridViewDecimalColumn30  = new Telerik.WinControls.UI.GridViewDecimalColumn();
     Telerik.WinControls.UI.GridViewDecimalColumn  gridViewDecimalColumn31  = new Telerik.WinControls.UI.GridViewDecimalColumn();
     Telerik.WinControls.UI.GridViewDecimalColumn  gridViewDecimalColumn32  = new Telerik.WinControls.UI.GridViewDecimalColumn();
     Telerik.WinControls.UI.GridViewDecimalColumn  gridViewDecimalColumn33  = new Telerik.WinControls.UI.GridViewDecimalColumn();
     Telerik.WinControls.UI.GridViewDecimalColumn  gridViewDecimalColumn34  = new Telerik.WinControls.UI.GridViewDecimalColumn();
     Telerik.WinControls.UI.GridViewDecimalColumn  gridViewDecimalColumn35  = new Telerik.WinControls.UI.GridViewDecimalColumn();
     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.Data.SortDescriptor       sortDescriptor5          = new Telerik.WinControls.Data.SortDescriptor();
     this.staffBindingSource                = new System.Windows.Forms.BindingSource(this.components);
     this.fingermachDataSet                 = new NB.fingermachDataSet();
     this.tipehadirBindingSource            = new System.Windows.Forms.BindingSource(this.components);
     this.sinarekDataSet                    = new NB.sinarekDataSet();
     this.radCalendar1                      = new Telerik.WinControls.UI.RadCalendar();
     this.radGridView1                      = new Telerik.WinControls.UI.RadGridView();
     this.absenbulananBindingSource         = new System.Windows.Forms.BindingSource(this.components);
     this.absenbulananTableAdapter          = new NB.fingermachDataSetTableAdapters.absenbulananTableAdapter();
     this.tipehadirTableAdapter             = new NB.sinarekDataSetTableAdapters.tipehadirTableAdapter();
     this.staffTableAdapter                 = new NB.fingermachDataSetTableAdapters.staffTableAdapter();
     this.radGridView2                      = new Telerik.WinControls.UI.RadGridView();
     this.vsummaryabsenbulananBindingSource = new System.Windows.Forms.BindingSource(this.components);
     this.vsummaryabsenbulananTableAdapter  = new NB.fingermachDataSetTableAdapters.vsummaryabsenbulananTableAdapter();
     this.txtInfo   = new Telerik.WinControls.UI.RadTextBox();
     this.btnPrint  = new Telerik.WinControls.UI.RadButton();
     this.radLabel1 = new Telerik.WinControls.UI.RadLabel();
     this.rddGBID   = new Telerik.WinControls.UI.RadDropDownList();
     this.gajibulananBindingSource = new System.Windows.Forms.BindingSource(this.components);
     this.gajibulananTableAdapter  = new NB.fingermachDataSetTableAdapters.gajibulananTableAdapter();
     ((System.ComponentModel.ISupportInitialize)(this.staffBindingSource)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.fingermachDataSet)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.tipehadirBindingSource)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.sinarekDataSet)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radCalendar1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radGridView1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.absenbulananBindingSource)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radGridView2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.vsummaryabsenbulananBindingSource)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtInfo)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.btnPrint)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.rddGBID)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gajibulananBindingSource)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
     this.SuspendLayout();
     //
     // staffBindingSource
     //
     this.staffBindingSource.DataMember = "staff";
     this.staffBindingSource.DataSource = this.fingermachDataSet;
     //
     // fingermachDataSet
     //
     this.fingermachDataSet.DataSetName             = "fingermachDataSet";
     this.fingermachDataSet.SchemaSerializationMode = System.Data.SchemaSerializationMode.IncludeSchema;
     //
     // tipehadirBindingSource
     //
     this.tipehadirBindingSource.DataMember = "tipehadir";
     this.tipehadirBindingSource.DataSource = this.sinarekDataSet;
     //
     // sinarekDataSet
     //
     this.sinarekDataSet.DataSetName             = "sinarekDataSet";
     this.sinarekDataSet.SchemaSerializationMode = System.Data.SchemaSerializationMode.IncludeSchema;
     //
     // radCalendar1
     //
     this.radCalendar1.CellAlign    = System.Drawing.ContentAlignment.MiddleCenter;
     this.radCalendar1.CellMargin   = new System.Windows.Forms.Padding(0);
     this.radCalendar1.CellPadding  = new System.Windows.Forms.Padding(0);
     this.radCalendar1.FocusedDate  = new System.DateTime(2012, 2, 1, 0, 0, 0, 0);
     this.radCalendar1.HeaderHeight = 17;
     this.radCalendar1.HeaderWidth  = 17;
     this.radCalendar1.Location     = new System.Drawing.Point(4, 55);
     this.radCalendar1.Name         = "radCalendar1";
     this.radCalendar1.RangeMaxDate = new System.DateTime(2999, 2, 28, 0, 0, 0, 0);
     this.radCalendar1.RangeMinDate = new System.DateTime(((long)(0)));
     this.radCalendar1.ShowFastNavigationButtons = false;
     this.radCalendar1.ShowNavigationButtons     = false;
     this.radCalendar1.Size              = new System.Drawing.Size(257, 227);
     this.radCalendar1.TabIndex          = 0;
     this.radCalendar1.Text              = "Absen Calendar";
     this.radCalendar1.SelectionChanged += new System.EventHandler(this.radCalendar1_SelectionChanged);
     //
     // radGridView1
     //
     this.radGridView1.Font     = new System.Drawing.Font("Segoe UI", 12F);
     this.radGridView1.Location = new System.Drawing.Point(267, 56);
     //
     // radGridView1
     //
     this.radGridView1.MasterTemplate.AllowAddNewRow      = false;
     this.radGridView1.MasterTemplate.AutoGenerateColumns = false;
     gridViewDecimalColumn29.DataType        = typeof(int);
     gridViewDecimalColumn29.FieldName       = "abid";
     gridViewDecimalColumn29.FormatString    = "";
     gridViewDecimalColumn29.HeaderText      = "abid";
     gridViewDecimalColumn29.IsAutoGenerated = true;
     gridViewDecimalColumn29.IsVisible       = false;
     gridViewDecimalColumn29.Name            = "abid";
     gridViewDecimalColumn29.TextAlignment   = System.Drawing.ContentAlignment.MiddleRight;
     gridViewTextBoxColumn33.FieldName       = "tipeabsen";
     gridViewTextBoxColumn33.FormatString    = "";
     gridViewTextBoxColumn33.HeaderText      = "tipeabsen";
     gridViewTextBoxColumn33.IsAutoGenerated = true;
     gridViewTextBoxColumn33.IsVisible       = false;
     gridViewTextBoxColumn33.Name            = "tipeabsen";
     gridViewComboBoxColumn9.DataSource      = this.staffBindingSource;
     gridViewComboBoxColumn9.DataType        = typeof(int);
     gridViewComboBoxColumn9.DisplayMember   = "Name";
     gridViewComboBoxColumn9.FieldName       = "memberid";
     gridViewComboBoxColumn9.FormatString    = "";
     gridViewComboBoxColumn9.HeaderText      = "Nama";
     gridViewComboBoxColumn9.Name            = "memberid";
     gridViewComboBoxColumn9.ReadOnly        = true;
     gridViewComboBoxColumn9.ValueMember     = "staffid";
     gridViewComboBoxColumn9.Width           = 150;
     gridViewDateTimeColumn5.FieldName       = "tanggal";
     gridViewDateTimeColumn5.FormatString    = "{0:dd MMM yyyy}";
     gridViewDateTimeColumn5.HeaderText      = "Tanggal";
     gridViewDateTimeColumn5.IsAutoGenerated = true;
     gridViewDateTimeColumn5.Name            = "tanggal";
     gridViewDateTimeColumn5.ReadOnly        = true;
     gridViewDateTimeColumn5.Width           = 120;
     gridViewComboBoxColumn10.DataSource     = this.tipehadirBindingSource;
     gridViewComboBoxColumn10.DataType       = typeof(int);
     gridViewComboBoxColumn10.DisplayMember  = "Nama";
     gridViewComboBoxColumn10.FieldName      = "tipehadirid";
     gridViewComboBoxColumn10.FormatString   = "";
     gridViewComboBoxColumn10.HeaderText     = "Status";
     gridViewComboBoxColumn10.Name           = "tipehadirid";
     gridViewComboBoxColumn10.ValueMember    = "tipehadirid";
     gridViewComboBoxColumn10.Width          = 120;
     gridViewTextBoxColumn34.FieldName       = "keterangan";
     gridViewTextBoxColumn34.HeaderText      = "Keterangan";
     gridViewTextBoxColumn34.Name            = "keterangan";
     gridViewTextBoxColumn34.Width           = 120;
     this.radGridView1.MasterTemplate.Columns.AddRange(new Telerik.WinControls.UI.GridViewDataColumn[] {
         gridViewDecimalColumn29,
         gridViewTextBoxColumn33,
         gridViewComboBoxColumn9,
         gridViewDateTimeColumn5,
         gridViewComboBoxColumn10,
         gridViewTextBoxColumn34
     });
     this.radGridView1.MasterTemplate.DataSource          = this.absenbulananBindingSource;
     this.radGridView1.MasterTemplate.ShowRowHeaderColumn = false;
     this.radGridView1.Name           = "radGridView1";
     this.radGridView1.ShowGroupPanel = false;
     this.radGridView1.Size           = new System.Drawing.Size(533, 226);
     this.radGridView1.TabIndex       = 1;
     this.radGridView1.Text           = "radGridView1";
     this.radGridView1.CellEndEdit   += new Telerik.WinControls.UI.GridViewCellEventHandler(this.radGridView1_CellEndEdit);
     //
     // absenbulananBindingSource
     //
     this.absenbulananBindingSource.DataMember = "absenbulanan";
     this.absenbulananBindingSource.DataSource = this.fingermachDataSet;
     //
     // absenbulananTableAdapter
     //
     this.absenbulananTableAdapter.ClearBeforeFill = true;
     //
     // tipehadirTableAdapter
     //
     this.tipehadirTableAdapter.ClearBeforeFill = true;
     //
     // staffTableAdapter
     //
     this.staffTableAdapter.ClearBeforeFill = true;
     //
     // radGridView2
     //
     this.radGridView2.Font     = new System.Drawing.Font("Segoe UI", 12F);
     this.radGridView2.Location = new System.Drawing.Point(0, 291);
     //
     // radGridView2
     //
     this.radGridView2.MasterTemplate.AllowAddNewRow      = false;
     this.radGridView2.MasterTemplate.AllowColumnReorder  = false;
     this.radGridView2.MasterTemplate.AutoGenerateColumns = false;
     gridViewTextBoxColumn35.FieldName       = "name";
     gridViewTextBoxColumn35.HeaderText      = "Nama";
     gridViewTextBoxColumn35.IsAutoGenerated = true;
     gridViewTextBoxColumn35.Name            = "name";
     gridViewTextBoxColumn35.SortOrder       = Telerik.WinControls.UI.RadSortOrder.Ascending;
     gridViewTextBoxColumn35.Width           = 200;
     gridViewDecimalColumn30.FieldName       = "Hadir";
     gridViewDecimalColumn30.HeaderText      = "Hadir";
     gridViewDecimalColumn30.IsAutoGenerated = true;
     gridViewDecimalColumn30.Name            = "Hadir";
     gridViewDecimalColumn30.TextAlignment   = System.Drawing.ContentAlignment.MiddleCenter;
     gridViewDecimalColumn30.Width           = 70;
     gridViewDecimalColumn31.FieldName       = "Ijin";
     gridViewDecimalColumn31.HeaderText      = "Ijin";
     gridViewDecimalColumn31.IsAutoGenerated = true;
     gridViewDecimalColumn31.Name            = "Ijin";
     gridViewDecimalColumn31.TextAlignment   = System.Drawing.ContentAlignment.MiddleCenter;
     gridViewDecimalColumn31.Width           = 70;
     gridViewDecimalColumn32.FieldName       = "Alpa";
     gridViewDecimalColumn32.HeaderText      = "Alpa";
     gridViewDecimalColumn32.IsAutoGenerated = true;
     gridViewDecimalColumn32.Name            = "Alpa";
     gridViewDecimalColumn32.TextAlignment   = System.Drawing.ContentAlignment.MiddleCenter;
     gridViewDecimalColumn32.Width           = 70;
     gridViewDecimalColumn33.FieldName       = "Cuti";
     gridViewDecimalColumn33.HeaderText      = "Cuti";
     gridViewDecimalColumn33.IsAutoGenerated = true;
     gridViewDecimalColumn33.Name            = "Cuti";
     gridViewDecimalColumn33.TextAlignment   = System.Drawing.ContentAlignment.MiddleCenter;
     gridViewDecimalColumn33.Width           = 70;
     gridViewDecimalColumn34.FieldName       = "Sakit";
     gridViewDecimalColumn34.HeaderText      = "Sakit";
     gridViewDecimalColumn34.IsAutoGenerated = true;
     gridViewDecimalColumn34.Name            = "Sakit";
     gridViewDecimalColumn34.TextAlignment   = System.Drawing.ContentAlignment.MiddleCenter;
     gridViewDecimalColumn34.Width           = 70;
     gridViewDecimalColumn35.FieldName       = "CutiTahunan";
     gridViewDecimalColumn35.HeaderText      = "Cuti Tahunan";
     gridViewDecimalColumn35.IsAutoGenerated = true;
     gridViewDecimalColumn35.Name            = "CutiTahunan";
     gridViewDecimalColumn35.TextAlignment   = System.Drawing.ContentAlignment.MiddleCenter;
     gridViewDecimalColumn35.Width           = 120;
     gridViewDecimalColumn35.WrapText        = true;
     gridViewTextBoxColumn36.FieldName       = "ketalpa";
     gridViewTextBoxColumn36.HeaderText      = "keterangan2";
     gridViewTextBoxColumn36.IsVisible       = false;
     gridViewTextBoxColumn36.Name            = "ketalpa";
     gridViewTextBoxColumn37.FieldName       = "ketcuti";
     gridViewTextBoxColumn37.HeaderText      = "Keterangan1";
     gridViewTextBoxColumn37.IsVisible       = false;
     gridViewTextBoxColumn37.Multiline       = true;
     gridViewTextBoxColumn37.Name            = "ketcuti";
     gridViewTextBoxColumn37.ReadOnly        = true;
     gridViewTextBoxColumn37.Width           = 100;
     gridViewTextBoxColumn37.WrapText        = true;
     gridViewTextBoxColumn38.FieldName       = "ketijin";
     gridViewTextBoxColumn38.HeaderText      = "keterangan3";
     gridViewTextBoxColumn38.IsVisible       = false;
     gridViewTextBoxColumn38.Name            = "ketijin";
     gridViewTextBoxColumn39.FieldName       = "ketsakit";
     gridViewTextBoxColumn39.HeaderText      = "keterangan4";
     gridViewTextBoxColumn39.IsVisible       = false;
     gridViewTextBoxColumn39.Name            = "ketsakit";
     gridViewTextBoxColumn40.FieldName       = "ketcutitahunan";
     gridViewTextBoxColumn40.HeaderText      = "keterangan5";
     gridViewTextBoxColumn40.IsVisible       = false;
     gridViewTextBoxColumn40.Name            = "ketcutitahunan";
     this.radGridView2.MasterTemplate.Columns.AddRange(new Telerik.WinControls.UI.GridViewDataColumn[] {
         gridViewTextBoxColumn35,
         gridViewDecimalColumn30,
         gridViewDecimalColumn31,
         gridViewDecimalColumn32,
         gridViewDecimalColumn33,
         gridViewDecimalColumn34,
         gridViewDecimalColumn35,
         gridViewTextBoxColumn36,
         gridViewTextBoxColumn37,
         gridViewTextBoxColumn38,
         gridViewTextBoxColumn39,
         gridViewTextBoxColumn40
     });
     this.radGridView2.MasterTemplate.DataSource          = this.vsummaryabsenbulananBindingSource;
     this.radGridView2.MasterTemplate.ShowRowHeaderColumn = false;
     sortDescriptor5.PropertyName = "name";
     this.radGridView2.MasterTemplate.SortDescriptors.AddRange(new Telerik.WinControls.Data.SortDescriptor[] {
         sortDescriptor5
     });
     this.radGridView2.Name              = "radGridView2";
     this.radGridView2.ReadOnly          = true;
     this.radGridView2.ShowGroupPanel    = false;
     this.radGridView2.Size              = new System.Drawing.Size(800, 166);
     this.radGridView2.TabIndex          = 2;
     this.radGridView2.Text              = "radGridView2";
     this.radGridView2.SelectionChanged += new System.EventHandler(this.radGridView2_SelectionChanged);
     //
     // vsummaryabsenbulananBindingSource
     //
     this.vsummaryabsenbulananBindingSource.DataMember = "vsummaryabsenbulanan";
     this.vsummaryabsenbulananBindingSource.DataSource = this.fingermachDataSet;
     //
     // vsummaryabsenbulananTableAdapter
     //
     this.vsummaryabsenbulananTableAdapter.ClearBeforeFill = true;
     //
     // txtInfo
     //
     this.txtInfo.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
     this.txtInfo.Font      = new System.Drawing.Font("Segoe UI", 12F);
     this.txtInfo.Location  = new System.Drawing.Point(4, 463);
     this.txtInfo.Multiline = true;
     this.txtInfo.Name      = "txtInfo";
     this.txtInfo.NullText  = "Bekerja Sesuai Jadwal";
     this.txtInfo.ReadOnly  = true;
     //
     //
     //
     this.txtInfo.RootElement.StretchVertically = true;
     this.txtInfo.ScrollBars = System.Windows.Forms.ScrollBars.Vertical;
     this.txtInfo.Size       = new System.Drawing.Size(796, 93);
     this.txtInfo.TabIndex   = 3;
     this.txtInfo.TabStop    = false;
     //
     // btnPrint
     //
     this.btnPrint.Font     = new System.Drawing.Font("Segoe UI", 10F);
     this.btnPrint.Location = new System.Drawing.Point(267, 12);
     this.btnPrint.Name     = "btnPrint";
     this.btnPrint.Size     = new System.Drawing.Size(147, 30);
     this.btnPrint.TabIndex = 4;
     this.btnPrint.Text     = "&Print Absen";
     this.btnPrint.Click   += new System.EventHandler(this.btnPrint_Click);
     //
     // radLabel1
     //
     this.radLabel1.Location = new System.Drawing.Point(11, 15);
     this.radLabel1.Name     = "radLabel1";
     this.radLabel1.Size     = new System.Drawing.Size(56, 25);
     this.radLabel1.TabIndex = 9;
     this.radLabel1.Text     = "Bulan :";
     //
     // rddGBID
     //
     this.rddGBID.AutoCompleteDisplayMember = "StartDate";
     this.rddGBID.AutoCompleteValueMember   = "GBID";
     this.rddGBID.DataSource               = this.gajibulananBindingSource;
     this.rddGBID.DisplayMember            = "StartDate";
     this.rddGBID.DropDownAnimationEnabled = true;
     this.rddGBID.Font                  = new System.Drawing.Font("Segoe UI", 10F);
     this.rddGBID.FormatString          = "MMM yy";
     this.rddGBID.Location              = new System.Drawing.Point(67, 16);
     this.rddGBID.Name                  = "rddGBID";
     this.rddGBID.ShowImageInEditorArea = true;
     this.rddGBID.Size                  = new System.Drawing.Size(194, 23);
     this.rddGBID.TabIndex              = 8;
     this.rddGBID.ValueMember           = "GBID";
     this.rddGBID.SelectedValueChanged += new System.EventHandler(this.rddGBID_SelectedValueChanged);
     //
     // gajibulananBindingSource
     //
     this.gajibulananBindingSource.DataMember = "gajibulanan";
     this.gajibulananBindingSource.DataSource = this.fingermachDataSet;
     //
     // gajibulananTableAdapter
     //
     this.gajibulananTableAdapter.ClearBeforeFill = true;
     //
     // frmAbsenStaff
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize          = new System.Drawing.Size(808, 559);
     this.Controls.Add(this.radLabel1);
     this.Controls.Add(this.rddGBID);
     this.Controls.Add(this.btnPrint);
     this.Controls.Add(this.txtInfo);
     this.Controls.Add(this.radGridView2);
     this.Controls.Add(this.radGridView1);
     this.Controls.Add(this.radCalendar1);
     this.Font            = new System.Drawing.Font("Segoe UI", 12F);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
     this.Name            = "frmAbsenStaff";
     //
     //
     //
     this.RootElement.ApplyShapeToControl = true;
     this.ShowIcon      = false;
     this.ShowInTaskbar = false;
     this.Text          = "Absen Staff";
     this.ThemeName     = "ControlDefault";
     this.Load         += new System.EventHandler(this.frmAbsenStaff_Load);
     ((System.ComponentModel.ISupportInitialize)(this.staffBindingSource)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.fingermachDataSet)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.tipehadirBindingSource)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.sinarekDataSet)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radCalendar1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radGridView1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.absenbulananBindingSource)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radGridView2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.vsummaryabsenbulananBindingSource)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtInfo)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.btnPrint)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.rddGBID)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gajibulananBindingSource)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this)).EndInit();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Example #9
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(Vendor));
     Telerik.WinControls.UI.GridViewTextBoxColumn       gridViewTextBoxColumn1       = new Telerik.WinControls.UI.GridViewTextBoxColumn();
     Telerik.WinControls.UI.ConditionalFormattingObject conditionalFormattingObject1 = new Telerik.WinControls.UI.ConditionalFormattingObject();
     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.GridViewCheckBoxColumn      gridViewCheckBoxColumn1      = 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();
     Telerik.WinControls.UI.GridViewTextBoxColumn       gridViewTextBoxColumn13      = 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.GridViewDecimalColumn       gridViewDecimalColumn1       = new Telerik.WinControls.UI.GridViewDecimalColumn();
     Telerik.WinControls.UI.GridViewCheckBoxColumn      gridViewCheckBoxColumn2      = new Telerik.WinControls.UI.GridViewCheckBoxColumn();
     Telerik.WinControls.UI.GridViewTextBoxColumn       gridViewTextBoxColumn14      = new Telerik.WinControls.UI.GridViewTextBoxColumn();
     Telerik.WinControls.UI.GridViewBrowseColumn        gridViewBrowseColumn1        = new Telerik.WinControls.UI.GridViewBrowseColumn();
     Telerik.WinControls.UI.GridViewCheckBoxColumn      gridViewCheckBoxColumn3      = new Telerik.WinControls.UI.GridViewCheckBoxColumn();
     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.radRibbonBarGroup3       = new Telerik.WinControls.UI.RadRibbonBarGroup();
     this.btnRefresh               = new Telerik.WinControls.UI.RadButtonElement();
     this.radRibbonBarGroup7       = new Telerik.WinControls.UI.RadRibbonBarGroup();
     this.btnReport                = 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.radGridView1             = 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();
     ((System.ComponentModel.ISupportInitialize)(this.radRibbonBar1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radStatusStrip1)).BeginInit();
     this.panel1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.radGridView1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radGridView1.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(895, 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      = "Vendor (รายละเอียดผู้ขาย)";
     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.radRibbonBarGroup7,
         this.radRibbonBarGroup5,
         this.radRibbonBarGroup6
     });
     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.Visibility        = Telerik.WinControls.ElementVisibility.Collapsed;
     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.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);
     //
     // 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);
     //
     // radRibbonBarGroup7
     //
     this.radRibbonBarGroup7.Items.AddRange(new Telerik.WinControls.RadItem[] {
         this.btnReport
     });
     this.radRibbonBarGroup7.Name = "radRibbonBarGroup7";
     this.radRibbonBarGroup7.Text = " ";
     //
     // btnReport
     //
     this.btnReport.Image             = global::StockControl.Properties.Resources.printer;
     this.btnReport.ImageAlignment    = System.Drawing.ContentAlignment.MiddleCenter;
     this.btnReport.Name              = "btnReport";
     this.btnReport.Text              = "Report";
     this.btnReport.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
     this.btnReport.Click            += new System.EventHandler(this.btnReport_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(895, 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;
     //
     // panel1
     //
     this.panel1.BackColor = System.Drawing.Color.White;
     this.panel1.Controls.Add(this.radGridView1);
     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(895, 448);
     this.panel1.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.AllowColumnHeaderContextMenu = false;
     this.radGridView1.MasterTemplate.AllowDeleteRow               = false;
     this.radGridView1.MasterTemplate.AllowDragToGroup             = false;
     this.radGridView1.MasterTemplate.AllowRowResize               = false;
     this.radGridView1.MasterTemplate.AutoGenerateColumns          = false;
     gridViewTextBoxColumn1.ColumnCharacterCasing     = System.Windows.Forms.CharacterCasing.Upper;
     conditionalFormattingObject1.ApplyOnSelectedRows = false;
     conditionalFormattingObject1.ApplyToRow          = true;
     conditionalFormattingObject1.CellBackColor       = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(237)))), ((int)(((byte)(254)))));
     conditionalFormattingObject1.CellFont            = new System.Drawing.Font("Microsoft Sans Serif", 8.25F);
     conditionalFormattingObject1.CellForeColor       = System.Drawing.Color.Empty;
     conditionalFormattingObject1.Name             = "NewCondition";
     conditionalFormattingObject1.RowBackColor     = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(237)))), ((int)(((byte)(254)))));
     conditionalFormattingObject1.RowFont          = new System.Drawing.Font("Microsoft Sans Serif", 8.25F);
     conditionalFormattingObject1.RowForeColor     = System.Drawing.Color.Empty;
     conditionalFormattingObject1.RowTextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
     conditionalFormattingObject1.TextAlignment    = System.Drawing.ContentAlignment.MiddleCenter;
     conditionalFormattingObject1.TValue1          = "<>\"\"";
     gridViewTextBoxColumn1.ConditionalFormattingObjectList.Add(conditionalFormattingObject1);
     gridViewTextBoxColumn1.EnableExpressionEditor = false;
     gridViewTextBoxColumn1.FieldName               = "No";
     gridViewTextBoxColumn1.HeaderText              = "Vendor No";
     gridViewTextBoxColumn1.Name                    = "VendorNo";
     gridViewTextBoxColumn1.ReadOnly                = true;
     gridViewTextBoxColumn1.TextAlignment           = System.Drawing.ContentAlignment.MiddleCenter;
     gridViewTextBoxColumn1.Width                   = 100;
     gridViewTextBoxColumn2.EnableExpressionEditor  = false;
     gridViewTextBoxColumn2.FieldName               = "Name";
     gridViewTextBoxColumn2.HeaderText              = "Vendor Name";
     gridViewTextBoxColumn2.Name                    = "VendorName";
     gridViewTextBoxColumn2.Width                   = 150;
     gridViewTextBoxColumn3.EnableExpressionEditor  = false;
     gridViewTextBoxColumn3.FieldName               = "Address";
     gridViewTextBoxColumn3.HeaderText              = "Address";
     gridViewTextBoxColumn3.Name                    = "Address";
     gridViewTextBoxColumn3.Width                   = 200;
     gridViewTextBoxColumn4.EnableExpressionEditor  = false;
     gridViewTextBoxColumn4.HeaderText              = "column1";
     gridViewTextBoxColumn4.IsVisible               = false;
     gridViewTextBoxColumn4.Name                    = "dgvC";
     gridViewTextBoxColumn4.ReadOnly                = true;
     gridViewTextBoxColumn4.Width                   = 41;
     gridViewTextBoxColumn5.EnableExpressionEditor  = false;
     gridViewTextBoxColumn5.FieldName               = "None";
     gridViewTextBoxColumn5.IsPinned                = true;
     gridViewTextBoxColumn5.Name                    = "None";
     gridViewTextBoxColumn5.PinPosition             = Telerik.WinControls.UI.PinnedColumnPosition.Right;
     gridViewTextBoxColumn5.ReadOnly                = true;
     gridViewTextBoxColumn5.Width                   = 8;
     gridViewTextBoxColumn6.EnableExpressionEditor  = false;
     gridViewTextBoxColumn6.FieldName               = "id";
     gridViewTextBoxColumn6.HeaderText              = "Code";
     gridViewTextBoxColumn6.IsVisible               = false;
     gridViewTextBoxColumn6.Name                    = "dgvCodetemp";
     gridViewTextBoxColumn6.Width                   = 44;
     gridViewTextBoxColumn7.EnableExpressionEditor  = false;
     gridViewTextBoxColumn7.HeaderText              = "dgvCodetemp2";
     gridViewTextBoxColumn7.IsVisible               = false;
     gridViewTextBoxColumn7.Name                    = "dgvCodetemp2";
     gridViewCheckBoxColumn1.EnableExpressionEditor = false;
     gridViewCheckBoxColumn1.FieldName              = "VATRegistration";
     gridViewCheckBoxColumn1.HeaderText             = "Vat Regis.";
     gridViewCheckBoxColumn1.IsVisible              = false;
     gridViewCheckBoxColumn1.MinWidth               = 20;
     gridViewCheckBoxColumn1.Name                   = "VatRegis";
     gridViewCheckBoxColumn1.Width                  = 87;
     gridViewTextBoxColumn8.EnableExpressionEditor  = false;
     gridViewTextBoxColumn8.FieldName               = "VatRegisNo";
     gridViewTextBoxColumn8.HeaderText              = "Vat Regis No";
     gridViewTextBoxColumn8.Name                    = "VatRegisNo";
     gridViewTextBoxColumn8.ReadOnly                = true;
     gridViewTextBoxColumn8.Width                   = 120;
     gridViewTextBoxColumn9.EnableExpressionEditor  = false;
     gridViewTextBoxColumn9.FieldName               = "PhoneNo";
     gridViewTextBoxColumn9.HeaderText              = "Phone No";
     gridViewTextBoxColumn9.Name                    = "PhoneNo";
     gridViewTextBoxColumn9.Width                   = 96;
     gridViewTextBoxColumn10.EnableExpressionEditor = false;
     gridViewTextBoxColumn10.FieldName              = "Mobile";
     gridViewTextBoxColumn10.HeaderText             = "Mobile";
     gridViewTextBoxColumn10.Name                   = "Mobile";
     gridViewTextBoxColumn10.ReadOnly               = true;
     gridViewTextBoxColumn10.Width                  = 90;
     gridViewTextBoxColumn11.EnableExpressionEditor = false;
     gridViewTextBoxColumn11.FieldName              = "FaxNo";
     gridViewTextBoxColumn11.HeaderText             = "Fax No";
     gridViewTextBoxColumn11.Name                   = "FaxNo";
     gridViewTextBoxColumn11.Width                  = 89;
     gridViewTextBoxColumn12.EnableExpressionEditor = false;
     gridViewTextBoxColumn12.FieldName              = "Email";
     gridViewTextBoxColumn12.HeaderText             = "Email";
     gridViewTextBoxColumn12.Name                   = "Email";
     gridViewTextBoxColumn12.Width                  = 143;
     gridViewTextBoxColumn13.EnableExpressionEditor = false;
     gridViewTextBoxColumn13.FieldName              = "ContactName";
     gridViewTextBoxColumn13.HeaderText             = "Contact Name";
     gridViewTextBoxColumn13.Name                   = "ContactName";
     gridViewTextBoxColumn13.Width                  = 135;
     gridViewComboBoxColumn1.EnableExpressionEditor = false;
     gridViewComboBoxColumn1.FieldName              = "VendorGroup";
     gridViewComboBoxColumn1.HeaderText             = "Vendor Group";
     gridViewComboBoxColumn1.Name                   = "VendorGroup";
     gridViewComboBoxColumn1.Width                  = 101;
     gridViewComboBoxColumn2.EnableExpressionEditor = false;
     gridViewComboBoxColumn2.FieldName              = "VatGroup";
     gridViewComboBoxColumn2.HeaderText             = "Vat Group";
     gridViewComboBoxColumn2.Name                   = "VatGroup";
     gridViewComboBoxColumn2.Width                  = 80;
     gridViewComboBoxColumn3.EnableExpressionEditor = false;
     gridViewComboBoxColumn3.FieldName              = "DefaultCurrency";
     gridViewComboBoxColumn3.HeaderText             = "Currency";
     gridViewComboBoxColumn3.Name                   = "DefaultCrrncy";
     gridViewComboBoxColumn3.Width                  = 82;
     gridViewDecimalColumn1.EnableExpressionEditor  = false;
     gridViewDecimalColumn1.FieldName               = "ShippingTime";
     gridViewDecimalColumn1.HeaderText              = "Shipping Time";
     gridViewDecimalColumn1.Name                    = "ShippingTime";
     gridViewDecimalColumn1.Width                   = 84;
     gridViewCheckBoxColumn2.EnableExpressionEditor = false;
     gridViewCheckBoxColumn2.FieldName              = "PriceIncludeVat";
     gridViewCheckBoxColumn2.HeaderText             = "Price Inc. Vat";
     gridViewCheckBoxColumn2.MinWidth               = 20;
     gridViewCheckBoxColumn2.Name                   = "PriceIncludeVat";
     gridViewCheckBoxColumn2.Width                  = 93;
     gridViewTextBoxColumn14.EnableExpressionEditor = false;
     gridViewTextBoxColumn14.FieldName              = "ReceiveAddress";
     gridViewTextBoxColumn14.HeaderText             = "Receive Address";
     gridViewTextBoxColumn14.Name                   = "ReceiveAddress";
     gridViewTextBoxColumn14.Width                  = 162;
     gridViewBrowseColumn1.EnableExpressionEditor   = false;
     gridViewBrowseColumn1.FieldName                = "AttachFile";
     gridViewBrowseColumn1.HeaderText               = "Attach File";
     gridViewBrowseColumn1.Name  = "AttachFile";
     gridViewBrowseColumn1.Width = 154;
     gridViewCheckBoxColumn3.EnableExpressionEditor = false;
     gridViewCheckBoxColumn3.FieldName  = "Active";
     gridViewCheckBoxColumn3.HeaderText = "Active";
     gridViewCheckBoxColumn3.IsVisible  = false;
     gridViewCheckBoxColumn3.MinWidth   = 20;
     gridViewCheckBoxColumn3.Name       = "Active";
     this.radGridView1.MasterTemplate.Columns.AddRange(new Telerik.WinControls.UI.GridViewDataColumn[] {
         gridViewTextBoxColumn1,
         gridViewTextBoxColumn2,
         gridViewTextBoxColumn3,
         gridViewTextBoxColumn4,
         gridViewTextBoxColumn5,
         gridViewTextBoxColumn6,
         gridViewTextBoxColumn7,
         gridViewCheckBoxColumn1,
         gridViewTextBoxColumn8,
         gridViewTextBoxColumn9,
         gridViewTextBoxColumn10,
         gridViewTextBoxColumn11,
         gridViewTextBoxColumn12,
         gridViewTextBoxColumn13,
         gridViewComboBoxColumn1,
         gridViewComboBoxColumn2,
         gridViewComboBoxColumn3,
         gridViewDecimalColumn1,
         gridViewCheckBoxColumn2,
         gridViewTextBoxColumn14,
         gridViewBrowseColumn1,
         gridViewCheckBoxColumn3
     });
     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(895, 448);
     this.radGridView1.TabIndex          = 0;
     this.radGridView1.ThemeName         = "Office2010Blue";
     this.radGridView1.RowFormatting    += new Telerik.WinControls.UI.RowFormattingEventHandler(this.MasterTemplate_RowFormatting);
     this.radGridView1.CellFormatting   += new Telerik.WinControls.UI.CellFormattingEventHandler(this.MasterTemplate_CellFormatting);
     this.radGridView1.CellEndEdit      += new Telerik.WinControls.UI.GridViewCellEventHandler(this.radGridView1_CellEndEdit);
     this.radGridView1.CellClick        += new Telerik.WinControls.UI.GridViewCellEventHandler(this.radGridView1_CellClick);
     this.radGridView1.CellValueChanged += new Telerik.WinControls.UI.GridViewCellEventHandler(this.MasterTemplate_CellValueChanged);
     this.radGridView1.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";
     //
     // Vendor
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize          = new System.Drawing.Size(895, 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       = "Vendor";
     //
     //
     //
     this.RootElement.ApplyShapeToControl = true;
     this.StartPosition   = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text            = "Vendor (รายละเอียดผู้ขาย)";
     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.radGridView1.MasterTemplate)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radGridView1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this)).EndInit();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Example #10
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     Telerik.WinControls.UI.GridViewTextBoxColumn   gridViewTextBoxColumn1  = 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.TableViewDefinition     tableViewDefinition1    = new Telerik.WinControls.UI.TableViewDefinition();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FieldInfoControl));
     this.grpProperties      = new System.Windows.Forms.GroupBox();
     this.txtFormula         = new System.Windows.Forms.TextBox();
     this.lnkFormulaBuilder  = new System.Windows.Forms.LinkLabel();
     this.label4             = new System.Windows.Forms.Label();
     this.txtOutputDataSize  = new System.Windows.Forms.TextBox();
     this.ddlOutputDataType  = new System.Windows.Forms.ComboBox();
     this.label3             = new System.Windows.Forms.Label();
     this.txtOutputFieldName = new System.Windows.Forms.TextBox();
     this.label2             = new System.Windows.Forms.Label();
     this.ddlSource          = new System.Windows.Forms.ComboBox();
     this.label1             = new System.Windows.Forms.Label();
     this.groupBox4          = new System.Windows.Forms.GroupBox();
     this.grdFilters         = new Telerik.WinControls.UI.RadGridView();
     this.btnAddFilter       = new System.Windows.Forms.Button();
     this.imageList1         = new System.Windows.Forms.ImageList(this.components);
     this.btnNewFilters      = new System.Windows.Forms.Button();
     this.btnSaveFilters     = new System.Windows.Forms.Button();
     this.btnOpenFilters     = new System.Windows.Forms.Button();
     this.btnRemoveFilterAll = new System.Windows.Forms.Button();
     this.btnRemoveFilter    = new System.Windows.Forms.Button();
     this.panel1             = new System.Windows.Forms.Panel();
     this.grpProperties.SuspendLayout();
     this.groupBox4.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.grdFilters)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.grdFilters.MasterTemplate)).BeginInit();
     this.panel1.SuspendLayout();
     this.SuspendLayout();
     //
     // grpProperties
     //
     this.grpProperties.Controls.Add(this.label4);
     this.grpProperties.Controls.Add(this.txtOutputDataSize);
     this.grpProperties.Controls.Add(this.ddlOutputDataType);
     this.grpProperties.Controls.Add(this.label3);
     this.grpProperties.Controls.Add(this.txtOutputFieldName);
     this.grpProperties.Controls.Add(this.label2);
     this.grpProperties.Controls.Add(this.ddlSource);
     this.grpProperties.Controls.Add(this.label1);
     this.grpProperties.Dock     = System.Windows.Forms.DockStyle.Top;
     this.grpProperties.Location = new System.Drawing.Point(0, 0);
     this.grpProperties.Name     = "grpProperties";
     this.grpProperties.Size     = new System.Drawing.Size(578, 159);
     this.grpProperties.TabIndex = 6;
     this.grpProperties.TabStop  = false;
     this.grpProperties.Text     = "Target Field Properties";
     //
     // txtFormula
     //
     this.txtFormula.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.txtFormula.Location  = new System.Drawing.Point(3, 19);
     this.txtFormula.Multiline = true;
     this.txtFormula.Name      = "txtFormula";
     this.txtFormula.Size      = new System.Drawing.Size(566, 122);
     this.txtFormula.TabIndex  = 15;
     this.txtFormula.Text      = "$[source]";
     //
     // lnkFormulaBuilder
     //
     this.lnkFormulaBuilder.AutoSize     = true;
     this.lnkFormulaBuilder.Location     = new System.Drawing.Point(3, 3);
     this.lnkFormulaBuilder.Name         = "lnkFormulaBuilder";
     this.lnkFormulaBuilder.Size         = new System.Drawing.Size(79, 13);
     this.lnkFormulaBuilder.TabIndex     = 14;
     this.lnkFormulaBuilder.TabStop      = true;
     this.lnkFormulaBuilder.Text         = "Formula Builder";
     this.lnkFormulaBuilder.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.lnkFormulaBuilder_LinkClicked);
     //
     // label4
     //
     this.label4.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.label4.AutoSize = true;
     this.label4.Location = new System.Drawing.Point(477, 110);
     this.label4.Name     = "label4";
     this.label4.Size     = new System.Drawing.Size(27, 13);
     this.label4.TabIndex = 13;
     this.label4.Text     = "Size";
     //
     // txtOutputDataSize
     //
     this.txtOutputDataSize.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.txtOutputDataSize.Location = new System.Drawing.Point(480, 126);
     this.txtOutputDataSize.Name     = "txtOutputDataSize";
     this.txtOutputDataSize.Size     = new System.Drawing.Size(92, 20);
     this.txtOutputDataSize.TabIndex = 12;
     //
     // ddlOutputDataType
     //
     this.ddlOutputDataType.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                           | System.Windows.Forms.AnchorStyles.Right)));
     this.ddlOutputDataType.DropDownStyle     = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.ddlOutputDataType.FormattingEnabled = true;
     this.ddlOutputDataType.Items.AddRange(new object[] {
         "Text",
         "Whole Number",
         "Decimal",
         "Date / Time",
         "True / False"
     });
     this.ddlOutputDataType.Location = new System.Drawing.Point(6, 126);
     this.ddlOutputDataType.Name     = "ddlOutputDataType";
     this.ddlOutputDataType.Size     = new System.Drawing.Size(468, 21);
     this.ddlOutputDataType.TabIndex = 11;
     //
     // label3
     //
     this.label3.AutoSize = true;
     this.label3.Location = new System.Drawing.Point(6, 110);
     this.label3.Name     = "label3";
     this.label3.Size     = new System.Drawing.Size(92, 13);
     this.label3.TabIndex = 10;
     this.label3.Text     = "Output Data Type";
     //
     // txtOutputFieldName
     //
     this.txtOutputFieldName.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                            | System.Windows.Forms.AnchorStyles.Right)));
     this.txtOutputFieldName.Location  = new System.Drawing.Point(6, 82);
     this.txtOutputFieldName.Name      = "txtOutputFieldName";
     this.txtOutputFieldName.Size      = new System.Drawing.Size(566, 20);
     this.txtOutputFieldName.TabIndex  = 9;
     this.txtOutputFieldName.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.txtOutputFieldName_KeyPress);
     //
     // label2
     //
     this.label2.AutoSize = true;
     this.label2.Location = new System.Drawing.Point(6, 66);
     this.label2.Name     = "label2";
     this.label2.Size     = new System.Drawing.Size(95, 13);
     this.label2.TabIndex = 8;
     this.label2.Text     = "Output Field Name";
     //
     // ddlSource
     //
     this.ddlSource.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                   | System.Windows.Forms.AnchorStyles.Right)));
     this.ddlSource.DropDownStyle     = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.ddlSource.FormattingEnabled = true;
     this.ddlSource.Location          = new System.Drawing.Point(6, 37);
     this.ddlSource.Name     = "ddlSource";
     this.ddlSource.Size     = new System.Drawing.Size(566, 21);
     this.ddlSource.TabIndex = 7;
     //
     // label1
     //
     this.label1.AutoSize = true;
     this.label1.Location = new System.Drawing.Point(6, 21);
     this.label1.Name     = "label1";
     this.label1.Size     = new System.Drawing.Size(66, 13);
     this.label1.TabIndex = 6;
     this.label1.Text     = "Source Field";
     //
     // groupBox4
     //
     this.groupBox4.Controls.Add(this.grdFilters);
     this.groupBox4.Controls.Add(this.btnAddFilter);
     this.groupBox4.Controls.Add(this.btnNewFilters);
     this.groupBox4.Controls.Add(this.btnSaveFilters);
     this.groupBox4.Controls.Add(this.btnOpenFilters);
     this.groupBox4.Controls.Add(this.btnRemoveFilterAll);
     this.groupBox4.Controls.Add(this.btnRemoveFilter);
     this.groupBox4.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.groupBox4.Location = new System.Drawing.Point(0, 306);
     this.groupBox4.Name     = "groupBox4";
     this.groupBox4.Size     = new System.Drawing.Size(578, 486);
     this.groupBox4.TabIndex = 5;
     this.groupBox4.TabStop  = false;
     this.groupBox4.Text     = "Filters";
     //
     // grdFilters
     //
     this.grdFilters.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.grdFilters.EnableHotTracking = false;
     this.grdFilters.Location          = new System.Drawing.Point(6, 19);
     //
     //
     //
     this.grdFilters.MasterTemplate.AllowAddNewRow               = false;
     this.grdFilters.MasterTemplate.AllowCellContextMenu         = false;
     this.grdFilters.MasterTemplate.AllowColumnChooser           = false;
     this.grdFilters.MasterTemplate.AllowColumnHeaderContextMenu = false;
     this.grdFilters.MasterTemplate.AllowColumnReorder           = false;
     this.grdFilters.MasterTemplate.AllowDeleteRow               = false;
     this.grdFilters.MasterTemplate.AllowDragToGroup             = false;
     this.grdFilters.MasterTemplate.AllowEditRow = false;
     this.grdFilters.MasterTemplate.AllowRowHeaderContextMenu = false;
     this.grdFilters.MasterTemplate.AllowRowResize            = false;
     this.grdFilters.MasterTemplate.AutoGenerateColumns       = false;
     gridViewTextBoxColumn1.FieldName   = "Name";
     gridViewTextBoxColumn1.HeaderText  = "Name";
     gridViewTextBoxColumn1.MinWidth    = 200;
     gridViewTextBoxColumn1.Name        = "colName";
     gridViewTextBoxColumn1.Width       = 300;
     gridViewComboBoxColumn1.FieldName  = "Type";
     gridViewComboBoxColumn1.HeaderText = "Type";
     gridViewComboBoxColumn1.MinWidth   = 150;
     gridViewComboBoxColumn1.Name       = "colType";
     gridViewComboBoxColumn1.Width      = 150;
     gridViewComboBoxColumn2.FieldName  = "Action";
     gridViewComboBoxColumn2.HeaderText = "Action";
     gridViewComboBoxColumn2.MinWidth   = 150;
     gridViewComboBoxColumn2.Name       = "colAction";
     gridViewComboBoxColumn2.Width      = 150;
     this.grdFilters.MasterTemplate.Columns.AddRange(new Telerik.WinControls.UI.GridViewDataColumn[] {
         gridViewTextBoxColumn1,
         gridViewComboBoxColumn1,
         gridViewComboBoxColumn2
     });
     this.grdFilters.MasterTemplate.EnableGrouping = false;
     this.grdFilters.MasterTemplate.EnableSorting  = false;
     this.grdFilters.MasterTemplate.ViewDefinition = tableViewDefinition1;
     this.grdFilters.Name     = "grdFilters";
     this.grdFilters.ReadOnly = true;
     this.grdFilters.Size     = new System.Drawing.Size(566, 415);
     this.grdFilters.TabIndex = 6;
     this.grdFilters.Text     = "radGridView1";
     //
     // btnAddFilter
     //
     this.btnAddFilter.Anchor     = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.btnAddFilter.ImageIndex = 4;
     this.btnAddFilter.ImageList  = this.imageList1;
     this.btnAddFilter.Location   = new System.Drawing.Point(6, 440);
     this.btnAddFilter.Name       = "btnAddFilter";
     this.btnAddFilter.Size       = new System.Drawing.Size(40, 40);
     this.btnAddFilter.TabIndex   = 5;
     this.btnAddFilter.UseVisualStyleBackColor = true;
     this.btnAddFilter.Click += new System.EventHandler(this.btnAddFilter_Click);
     //
     // imageList1
     //
     this.imageList1.ImageStream      = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageList1.ImageStream")));
     this.imageList1.TransparentColor = System.Drawing.Color.Transparent;
     this.imageList1.Images.SetKeyName(0, "Next_grey_24x.png");
     this.imageList1.Images.SetKeyName(1, "ClearWindowContent_16x.png");
     this.imageList1.Images.SetKeyName(2, "Upload_gray_48x.png");
     this.imageList1.Images.SetKeyName(3, "Download_grey_48x.png");
     this.imageList1.Images.SetKeyName(4, "action_add_16xLG.png");
     this.imageList1.Images.SetKeyName(5, "Remove_color_16x.png");
     this.imageList1.Images.SetKeyName(6, "new.png");
     this.imageList1.Images.SetKeyName(7, "save.png");
     this.imageList1.Images.SetKeyName(8, "open.png");
     this.imageList1.Images.SetKeyName(9, "Previous_grey_48x.png");
     //
     // btnNewFilters
     //
     this.btnNewFilters.Anchor     = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.btnNewFilters.Enabled    = false;
     this.btnNewFilters.ImageIndex = 6;
     this.btnNewFilters.ImageList  = this.imageList1;
     this.btnNewFilters.Location   = new System.Drawing.Point(52, 440);
     this.btnNewFilters.Name       = "btnNewFilters";
     this.btnNewFilters.Size       = new System.Drawing.Size(40, 40);
     this.btnNewFilters.TabIndex   = 4;
     this.btnNewFilters.UseVisualStyleBackColor = true;
     //
     // btnSaveFilters
     //
     this.btnSaveFilters.Anchor     = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.btnSaveFilters.Enabled    = false;
     this.btnSaveFilters.ImageIndex = 7;
     this.btnSaveFilters.ImageList  = this.imageList1;
     this.btnSaveFilters.Location   = new System.Drawing.Point(98, 440);
     this.btnSaveFilters.Name       = "btnSaveFilters";
     this.btnSaveFilters.Size       = new System.Drawing.Size(40, 40);
     this.btnSaveFilters.TabIndex   = 3;
     this.btnSaveFilters.UseVisualStyleBackColor = true;
     //
     // btnOpenFilters
     //
     this.btnOpenFilters.Anchor     = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.btnOpenFilters.Enabled    = false;
     this.btnOpenFilters.ImageIndex = 8;
     this.btnOpenFilters.ImageList  = this.imageList1;
     this.btnOpenFilters.Location   = new System.Drawing.Point(144, 440);
     this.btnOpenFilters.Name       = "btnOpenFilters";
     this.btnOpenFilters.Size       = new System.Drawing.Size(40, 40);
     this.btnOpenFilters.TabIndex   = 2;
     this.btnOpenFilters.UseVisualStyleBackColor = true;
     //
     // btnRemoveFilterAll
     //
     this.btnRemoveFilterAll.Anchor     = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.btnRemoveFilterAll.ImageIndex = 1;
     this.btnRemoveFilterAll.ImageList  = this.imageList1;
     this.btnRemoveFilterAll.Location   = new System.Drawing.Point(532, 440);
     this.btnRemoveFilterAll.Name       = "btnRemoveFilterAll";
     this.btnRemoveFilterAll.Size       = new System.Drawing.Size(40, 40);
     this.btnRemoveFilterAll.TabIndex   = 1;
     this.btnRemoveFilterAll.UseVisualStyleBackColor = true;
     //
     // btnRemoveFilter
     //
     this.btnRemoveFilter.Anchor     = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.btnRemoveFilter.ImageIndex = 5;
     this.btnRemoveFilter.ImageList  = this.imageList1;
     this.btnRemoveFilter.Location   = new System.Drawing.Point(486, 440);
     this.btnRemoveFilter.Name       = "btnRemoveFilter";
     this.btnRemoveFilter.Size       = new System.Drawing.Size(40, 40);
     this.btnRemoveFilter.TabIndex   = 0;
     this.btnRemoveFilter.UseVisualStyleBackColor = true;
     //
     // panel1
     //
     this.panel1.Controls.Add(this.txtFormula);
     this.panel1.Controls.Add(this.lnkFormulaBuilder);
     this.panel1.Dock     = System.Windows.Forms.DockStyle.Top;
     this.panel1.Location = new System.Drawing.Point(0, 159);
     this.panel1.Name     = "panel1";
     this.panel1.Size     = new System.Drawing.Size(578, 147);
     this.panel1.TabIndex = 7;
     //
     // FieldInfoControl
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.Controls.Add(this.groupBox4);
     this.Controls.Add(this.panel1);
     this.Controls.Add(this.grpProperties);
     this.Name  = "FieldInfoControl";
     this.Size  = new System.Drawing.Size(578, 792);
     this.Load += new System.EventHandler(this.FieldInfoControl_Load);
     this.grpProperties.ResumeLayout(false);
     this.grpProperties.PerformLayout();
     this.groupBox4.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.grdFilters.MasterTemplate)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.grdFilters)).EndInit();
     this.panel1.ResumeLayout(false);
     this.panel1.PerformLayout();
     this.ResumeLayout(false);
 }
        /// <summary>
        /// Required method for Designer support - do not modify
        /// the contents of this method with the code editor.
        /// </summary>
        private void InitializeComponent()
        {
            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.GridViewDateTimeColumn gridViewDateTimeColumn1 = new Telerik.WinControls.UI.GridViewDateTimeColumn();
            Telerik.WinControls.UI.GridViewDateTimeColumn gridViewDateTimeColumn2 = new Telerik.WinControls.UI.GridViewDateTimeColumn();
            Telerik.WinControls.UI.GridViewDecimalColumn gridViewDecimalColumn2 = new Telerik.WinControls.UI.GridViewDecimalColumn();
            Telerik.WinControls.UI.GridViewComboBoxColumn gridViewComboBoxColumn1 = new Telerik.WinControls.UI.GridViewComboBoxColumn();
            Telerik.WinControls.UI.GridViewDecimalColumn gridViewDecimalColumn3 = new Telerik.WinControls.UI.GridViewDecimalColumn();
            Telerik.WinControls.UI.GridViewComboBoxColumn gridViewComboBoxColumn2 = new Telerik.WinControls.UI.GridViewComboBoxColumn();
            Telerik.WinControls.UI.GridViewCommandColumn gridViewCommandColumn1 = new Telerik.WinControls.UI.GridViewCommandColumn();
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FrmProjectManage));
            Telerik.WinControls.UI.GridViewCommandColumn gridViewCommandColumn2 = new Telerik.WinControls.UI.GridViewCommandColumn();
            Telerik.WinControls.Data.SortDescriptor sortDescriptor1 = new Telerik.WinControls.Data.SortDescriptor();
            this.telerikMetroTheme1 = new Telerik.WinControls.Themes.TelerikMetroTheme();
            this.toolStripSeparator3 = new System.Windows.Forms.ToolStripSeparator();
            this.AddBtn = new System.Windows.Forms.ToolStripButton();
            this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
            this.RefreshBtn = new System.Windows.Forms.ToolStripButton();
            this.toolStripSeparator2 = new System.Windows.Forms.ToolStripSeparator();
            this.toolStrip1 = new System.Windows.Forms.ToolStrip();
            this.ProjectProfileGridView = new Telerik.WinControls.UI.RadGridView();
            this.gridViewTemplate1 = new Telerik.WinControls.UI.GridViewTemplate();
            this.statusStrip1 = new System.Windows.Forms.StatusStrip();
            this.StatusLabel1 = new System.Windows.Forms.ToolStripStatusLabel();
            this.radGroupBox1 = new Telerik.WinControls.UI.RadGroupBox();
            this.toolStrip1.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.ProjectProfileGridView)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.ProjectProfileGridView.MasterTemplate)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.gridViewTemplate1)).BeginInit();
            this.statusStrip1.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.radGroupBox1)).BeginInit();
            this.radGroupBox1.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
            this.SuspendLayout();
            // 
            // toolStripSeparator3
            // 
            this.toolStripSeparator3.Name = "toolStripSeparator3";
            this.toolStripSeparator3.Size = new System.Drawing.Size(6, 39);
            // 
            // AddBtn
            // 
            this.AddBtn.Image = global::UcasProWindowsForm.Properties.Resources.Add1;
            this.AddBtn.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
            this.AddBtn.ImageTransparentColor = System.Drawing.Color.Magenta;
            this.AddBtn.Name = "AddBtn";
            this.AddBtn.Size = new System.Drawing.Size(104, 36);
            this.AddBtn.Text = "اضافة مشروع";
            this.AddBtn.Click += new System.EventHandler(this.AddBtn_Click);
            // 
            // toolStripSeparator1
            // 
            this.toolStripSeparator1.Name = "toolStripSeparator1";
            this.toolStripSeparator1.Size = new System.Drawing.Size(6, 39);
            // 
            // RefreshBtn
            // 
            this.RefreshBtn.Image = global::UcasProWindowsForm.Properties.Resources.Refrech;
            this.RefreshBtn.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
            this.RefreshBtn.ImageTransparentColor = System.Drawing.Color.Magenta;
            this.RefreshBtn.Name = "RefreshBtn";
            this.RefreshBtn.Size = new System.Drawing.Size(117, 36);
            this.RefreshBtn.Text = "تحديث السجلات";
            this.RefreshBtn.Click += new System.EventHandler(this.RefreshBtn_Click);
            // 
            // toolStripSeparator2
            // 
            this.toolStripSeparator2.Name = "toolStripSeparator2";
            this.toolStripSeparator2.Size = new System.Drawing.Size(6, 39);
            // 
            // toolStrip1
            // 
            this.toolStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.toolStripSeparator3,
            this.AddBtn,
            this.toolStripSeparator1,
            this.RefreshBtn,
            this.toolStripSeparator2});
            this.toolStrip1.Location = new System.Drawing.Point(0, 0);
            this.toolStrip1.Name = "toolStrip1";
            this.toolStrip1.Size = new System.Drawing.Size(1106, 39);
            this.toolStrip1.TabIndex = 6;
            this.toolStrip1.Text = "toolStrip1";
            // 
            // ProjectProfileGridView
            // 
            this.ProjectProfileGridView.BackColor = System.Drawing.SystemColors.Control;
            this.ProjectProfileGridView.Cursor = System.Windows.Forms.Cursors.Default;
            this.ProjectProfileGridView.Dock = System.Windows.Forms.DockStyle.Fill;
            this.ProjectProfileGridView.Font = new System.Drawing.Font("Segoe UI", 8.25F);
            this.ProjectProfileGridView.ForeColor = System.Drawing.SystemColors.ControlText;
            this.ProjectProfileGridView.ImeMode = System.Windows.Forms.ImeMode.NoControl;
            this.ProjectProfileGridView.Location = new System.Drawing.Point(2, 18);
            // 
            // ProjectProfileGridView
            // 
            this.ProjectProfileGridView.MasterTemplate.AllowAddNewRow = false;
            this.ProjectProfileGridView.MasterTemplate.AllowColumnReorder = false;
            this.ProjectProfileGridView.MasterTemplate.AllowSearchRow = true;
            this.ProjectProfileGridView.MasterTemplate.AutoGenerateColumns = false;
            this.ProjectProfileGridView.MasterTemplate.AutoSizeColumnsMode = Telerik.WinControls.UI.GridViewAutoSizeColumnsMode.Fill;
            this.ProjectProfileGridView.MasterTemplate.ChildViewTabsPosition = Telerik.WinControls.UI.TabPositions.Bottom;
            gridViewDecimalColumn1.EnableExpressionEditor = false;
            gridViewDecimalColumn1.FieldName = "ID";
            gridViewDecimalColumn1.HeaderText = "ID";
            gridViewDecimalColumn1.IsAutoGenerated = true;
            gridViewDecimalColumn1.IsVisible = false;
            gridViewDecimalColumn1.Name = "ID";
            gridViewDecimalColumn1.SortOrder = Telerik.WinControls.UI.RadSortOrder.Ascending;
            gridViewDecimalColumn1.Width = 27;
            gridViewTextBoxColumn1.EnableExpressionEditor = false;
            gridViewTextBoxColumn1.FieldName = "ProjectName";
            gridViewTextBoxColumn1.HeaderText = "المشروع";
            gridViewTextBoxColumn1.IsAutoGenerated = true;
            gridViewTextBoxColumn1.Name = "ProjectName";
            gridViewTextBoxColumn1.Width = 176;
            gridViewTextBoxColumn2.EnableExpressionEditor = false;
            gridViewTextBoxColumn2.FieldName = "ProjectDescription";
            gridViewTextBoxColumn2.HeaderText = "وصف المشروع";
            gridViewTextBoxColumn2.IsAutoGenerated = true;
            gridViewTextBoxColumn2.Name = "ProjectDescription";
            gridViewTextBoxColumn2.Width = 161;
            gridViewDateTimeColumn1.EnableExpressionEditor = false;
            gridViewDateTimeColumn1.ExcelExportType = Telerik.WinControls.UI.Export.DisplayFormatType.MediumTime;
            gridViewDateTimeColumn1.FieldName = "StartDate";
            gridViewDateTimeColumn1.Format = System.Windows.Forms.DateTimePickerFormat.Short;
            gridViewDateTimeColumn1.HeaderText = "تاريخ البداية";
            gridViewDateTimeColumn1.IsAutoGenerated = true;
            gridViewDateTimeColumn1.Name = "StartDate";
            gridViewDateTimeColumn1.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
            gridViewDateTimeColumn1.Width = 108;
            gridViewDateTimeColumn2.EnableExpressionEditor = false;
            gridViewDateTimeColumn2.ExcelExportType = Telerik.WinControls.UI.Export.DisplayFormatType.MediumTime;
            gridViewDateTimeColumn2.FieldName = "EndDate";
            gridViewDateTimeColumn2.Format = System.Windows.Forms.DateTimePickerFormat.Short;
            gridViewDateTimeColumn2.HeaderText = "تاريخ النهاية";
            gridViewDateTimeColumn2.IsAutoGenerated = true;
            gridViewDateTimeColumn2.Name = "EndDate";
            gridViewDateTimeColumn2.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
            gridViewDateTimeColumn2.Width = 108;
            gridViewDecimalColumn2.EnableExpressionEditor = false;
            gridViewDecimalColumn2.FieldName = "TotalCost";
            gridViewDecimalColumn2.HeaderText = "الموازنة للمشروع";
            gridViewDecimalColumn2.IsAutoGenerated = true;
            gridViewDecimalColumn2.Name = "TotalCost";
            gridViewDecimalColumn2.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
            gridViewDecimalColumn2.Width = 108;
            gridViewComboBoxColumn1.EnableExpressionEditor = false;
            gridViewComboBoxColumn1.FieldName = "Coin";
            gridViewComboBoxColumn1.HeaderText = "العملة";
            gridViewComboBoxColumn1.Name = "Coin";
            gridViewComboBoxColumn1.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
            gridViewComboBoxColumn1.Width = 108;
            gridViewDecimalColumn3.EnableExpressionEditor = false;
            gridViewDecimalColumn3.FieldName = "progress";
            gridViewDecimalColumn3.HeaderText = "نسبة الانجاز";
            gridViewDecimalColumn3.IsAutoGenerated = true;
            gridViewDecimalColumn3.Name = "progress";
            gridViewDecimalColumn3.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
            gridViewDecimalColumn3.Width = 108;
            gridViewComboBoxColumn2.EnableExpressionEditor = false;
            gridViewComboBoxColumn2.FieldName = "Status";
            gridViewComboBoxColumn2.HeaderText = "الحالة";
            gridViewComboBoxColumn2.Name = "Status";
            gridViewComboBoxColumn2.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
            gridViewComboBoxColumn2.Width = 103;
            gridViewCommandColumn1.EnableExpressionEditor = true;
            gridViewCommandColumn1.HeaderText = "تعديل";
            gridViewCommandColumn1.Image = ((System.Drawing.Image)(resources.GetObject("gridViewCommandColumn1.Image")));
            gridViewCommandColumn1.MaxWidth = 45;
            gridViewCommandColumn1.MinWidth = 45;
            gridViewCommandColumn1.Name = "EditBtn";
            gridViewCommandColumn1.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
            gridViewCommandColumn1.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageBeforeText;
            gridViewCommandColumn1.UseDefaultText = true;
            gridViewCommandColumn1.Width = 45;
            gridViewCommandColumn2.EnableExpressionEditor = false;
            gridViewCommandColumn2.HeaderText = "حذف";
            gridViewCommandColumn2.Image = ((System.Drawing.Image)(resources.GetObject("gridViewCommandColumn2.Image")));
            gridViewCommandColumn2.MaxWidth = 45;
            gridViewCommandColumn2.MinWidth = 45;
            gridViewCommandColumn2.Name = "DeltBtn";
            gridViewCommandColumn2.Width = 45;
            this.ProjectProfileGridView.MasterTemplate.Columns.AddRange(new Telerik.WinControls.UI.GridViewDataColumn[] {
            gridViewDecimalColumn1,
            gridViewTextBoxColumn1,
            gridViewTextBoxColumn2,
            gridViewDateTimeColumn1,
            gridViewDateTimeColumn2,
            gridViewDecimalColumn2,
            gridViewComboBoxColumn1,
            gridViewDecimalColumn3,
            gridViewComboBoxColumn2,
            gridViewCommandColumn1,
            gridViewCommandColumn2});
            this.ProjectProfileGridView.MasterTemplate.EnableFiltering = true;
            this.ProjectProfileGridView.MasterTemplate.MultiSelect = true;
            this.ProjectProfileGridView.MasterTemplate.SearchRowPosition = Telerik.WinControls.UI.SystemRowPosition.Bottom;
            sortDescriptor1.PropertyName = "ID";
            this.ProjectProfileGridView.MasterTemplate.SortDescriptors.AddRange(new Telerik.WinControls.Data.SortDescriptor[] {
            sortDescriptor1});
            this.ProjectProfileGridView.MasterTemplate.Templates.AddRange(new Telerik.WinControls.UI.GridViewTemplate[] {
            this.gridViewTemplate1});
            this.ProjectProfileGridView.Name = "ProjectProfileGridView";
            this.ProjectProfileGridView.ReadOnly = true;
            this.ProjectProfileGridView.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
            this.ProjectProfileGridView.Size = new System.Drawing.Size(1102, 463);
            this.ProjectProfileGridView.TabIndex = 2;
            this.ProjectProfileGridView.ThemeName = "TelerikMetro";
            this.ProjectProfileGridView.CommandCellClick += new Telerik.WinControls.UI.CommandCellClickEventHandler(this.MasterTemplate_CommandCellClick);
            // 
            // statusStrip1
            // 
            this.statusStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.StatusLabel1});
            this.statusStrip1.Location = new System.Drawing.Point(0, 522);
            this.statusStrip1.Name = "statusStrip1";
            this.statusStrip1.Size = new System.Drawing.Size(1106, 22);
            this.statusStrip1.TabIndex = 11;
            this.statusStrip1.Text = "statusStrip1";
            // 
            // StatusLabel1
            // 
            this.StatusLabel1.Name = "StatusLabel1";
            this.StatusLabel1.Size = new System.Drawing.Size(12, 17);
            this.StatusLabel1.Text = "-";
            // 
            // radGroupBox1
            // 
            this.radGroupBox1.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
            this.radGroupBox1.Controls.Add(this.ProjectProfileGridView);
            this.radGroupBox1.Dock = System.Windows.Forms.DockStyle.Fill;
            this.radGroupBox1.GroupBoxStyle = Telerik.WinControls.UI.RadGroupBoxStyle.Office;
            this.radGroupBox1.HeaderText = "سجلات المشاريع";
            this.radGroupBox1.Location = new System.Drawing.Point(0, 39);
            this.radGroupBox1.Name = "radGroupBox1";
            this.radGroupBox1.Size = new System.Drawing.Size(1106, 483);
            this.radGroupBox1.TabIndex = 12;
            this.radGroupBox1.Text = "سجلات المشاريع";
            this.radGroupBox1.ThemeName = "TelerikMetro";
            // 
            // FrmProjectManage
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.ClientSize = new System.Drawing.Size(1106, 544);
            this.Controls.Add(this.radGroupBox1);
            this.Controls.Add(this.statusStrip1);
            this.Controls.Add(this.toolStrip1);
            this.Name = "FrmProjectManage";
            this.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
            // 
            // 
            // 
            this.RootElement.ApplyShapeToControl = true;
            this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
            this.Text = "ادارة المشاريع";
            this.ThemeName = "TelerikMetro";
            this.FormClosed += new System.Windows.Forms.FormClosedEventHandler(this.FrmProjectManage_FormClosed);
            this.Load += new System.EventHandler(this.FrmProjectManage_Load);
            this.toolStrip1.ResumeLayout(false);
            this.toolStrip1.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.ProjectProfileGridView.MasterTemplate)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.ProjectProfileGridView)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.gridViewTemplate1)).EndInit();
            this.statusStrip1.ResumeLayout(false);
            this.statusStrip1.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.radGroupBox1)).EndInit();
            this.radGroupBox1.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this)).EndInit();
            this.ResumeLayout(false);
            this.PerformLayout();

        }
Example #12
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(Types));
     Telerik.WinControls.UI.GridViewComboBoxColumn  gridViewComboBoxColumn1 = new Telerik.WinControls.UI.GridViewComboBoxColumn();
     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.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.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.radGridView1             = 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.radContextMenuManager1   = new Telerik.WinControls.UI.RadContextMenuManager();
     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();
     ((System.ComponentModel.ISupportInitialize)(this.radRibbonBar1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radStatusStrip1)).BeginInit();
     this.panel1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.radGridView1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radGridView1.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(730, 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      = "Type (ประเภท)";
     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";
     //
     // 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 = "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.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);
     //
     // 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;
     this.radStatusStrip1.Text       = "radStatusStrip1";
     //
     // radLabelElement1
     //
     this.radLabelElement1.Name = "radLabelElement1";
     this.radStatusStrip1.SetSpring(this.radLabelElement1, false);
     this.radLabelElement1.Text     = "Detail : ประเภทสินค้า";
     this.radLabelElement1.TextWrap = true;
     //
     // panel1
     //
     this.panel1.BackColor = System.Drawing.Color.White;
     this.panel1.Controls.Add(this.radGridView1);
     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(730, 332);
     this.panel1.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, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     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.AllowColumnReorder           = false;
     this.radGridView1.MasterTemplate.AllowDragToGroup             = false;
     this.radGridView1.MasterTemplate.AllowRowResize               = false;
     this.radGridView1.MasterTemplate.AutoGenerateColumns          = false;
     this.radGridView1.MasterTemplate.AutoSizeColumnsMode          = Telerik.WinControls.UI.GridViewAutoSizeColumnsMode.Fill;
     gridViewComboBoxColumn1.DisplayMemberSort = true;
     gridViewComboBoxColumn1.ExcelExportType   = Telerik.WinControls.UI.Export.DisplayFormatType.Text;
     gridViewComboBoxColumn1.FieldName         = "GroupCode";
     gridViewComboBoxColumn1.FilteringMode     = Telerik.WinControls.UI.GridViewFilteringMode.DisplayMember;
     gridViewComboBoxColumn1.HeaderText        = "รหัสประเภทกลุ่ม";
     gridViewComboBoxColumn1.Name          = "GroupCode";
     gridViewComboBoxColumn1.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
     gridViewComboBoxColumn1.Width         = 135;
     gridViewTextBoxColumn1.FieldName      = "TypeCode";
     gridViewTextBoxColumn1.HeaderText     = "รหัสประเภท";
     gridViewTextBoxColumn1.Name           = "TypeCode";
     gridViewTextBoxColumn1.Width          = 134;
     gridViewTextBoxColumn2.FieldName      = "TypeDetail";
     gridViewTextBoxColumn2.FormatInfo     = new System.Globalization.CultureInfo("");
     gridViewTextBoxColumn2.HeaderText     = "รายละเอียดประเภท";
     gridViewTextBoxColumn2.Name           = "TypeDetail";
     gridViewTextBoxColumn2.Width          = 263;
     gridViewCheckBoxColumn1.FieldName     = "TypeActive";
     gridViewCheckBoxColumn1.FormatInfo    = new System.Globalization.CultureInfo("");
     gridViewCheckBoxColumn1.HeaderText    = "สถานะการใช้งาน";
     gridViewCheckBoxColumn1.Name          = "TypeActive";
     gridViewCheckBoxColumn1.Width         = 92;
     gridViewTextBoxColumn3.HeaderText     = "column1";
     gridViewTextBoxColumn3.IsVisible      = false;
     gridViewTextBoxColumn3.Name           = "dgvC";
     gridViewTextBoxColumn3.ReadOnly       = true;
     gridViewTextBoxColumn3.Width          = 41;
     gridViewTextBoxColumn4.FieldName      = "None";
     gridViewTextBoxColumn4.HeaderText     = "";
     gridViewTextBoxColumn4.IsPinned       = true;
     gridViewTextBoxColumn4.Name           = "None";
     gridViewTextBoxColumn4.PinPosition    = Telerik.WinControls.UI.PinnedColumnPosition.Right;
     gridViewTextBoxColumn4.ReadOnly       = true;
     gridViewTextBoxColumn4.Width          = 88;
     gridViewTextBoxColumn5.HeaderText     = "Code";
     gridViewTextBoxColumn5.IsVisible      = false;
     gridViewTextBoxColumn5.Name           = "dgvCodetemp";
     gridViewTextBoxColumn5.Width          = 44;
     gridViewTextBoxColumn6.HeaderText     = "Codetemp2";
     gridViewTextBoxColumn6.IsVisible      = false;
     gridViewTextBoxColumn6.Name           = "dgvCodetemp2";
     gridViewTextBoxColumn6.Width          = 47;
     gridViewTextBoxColumn7.HeaderText     = "OldDetail";
     gridViewTextBoxColumn7.IsVisible      = false;
     gridViewTextBoxColumn7.Name           = "dgvOldDetail";
     this.radGridView1.MasterTemplate.Columns.AddRange(new Telerik.WinControls.UI.GridViewDataColumn[] {
         gridViewComboBoxColumn1,
         gridViewTextBoxColumn1,
         gridViewTextBoxColumn2,
         gridViewCheckBoxColumn1,
         gridViewTextBoxColumn3,
         gridViewTextBoxColumn4,
         gridViewTextBoxColumn5,
         gridViewTextBoxColumn6,
         gridViewTextBoxColumn7
     });
     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, 332);
     this.radGridView1.TabIndex        = 0;
     this.radGridView1.Text            = "Grid";
     this.radGridView1.ThemeName       = "Office2010Blue";
     this.radGridView1.CellFormatting += new Telerik.WinControls.UI.CellFormattingEventHandler(this.radGridView1_CellFormatting);
     this.radGridView1.CellEndEdit    += new Telerik.WinControls.UI.GridViewCellEventHandler(this.radGridView1_CellEndEdit);
     this.radGridView1.CellClick      += new Telerik.WinControls.UI.GridViewCellEventHandler(this.radGridView1_CellClick);
     this.radGridView1.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  = "ลบรายการ";
     //
     // Types
     //
     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.Name       = "Types";
     //
     //
     //
     this.RootElement.ApplyShapeToControl = true;
     this.StartPosition   = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text            = "Type (ประเภท)";
     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.radGridView1.MasterTemplate)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radGridView1)).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.GridViewComboBoxColumn gridViewComboBoxColumn1 = new Telerik.WinControls.UI.GridViewComboBoxColumn();
            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.Data.SortDescriptor sortDescriptor1 = new Telerik.WinControls.Data.SortDescriptor();
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Mante_Segmentos));
            this.btNew = new Telerik.WinControls.UI.RadButton();
            this.radGridView10 = new Telerik.WinControls.UI.RadGridView();
            ((System.ComponentModel.ISupportInitialize)(this.btNew)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radGridView10)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radGridView10.MasterTemplate)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
            this.SuspendLayout();
            // 
            // btNew
            // 
            this.btNew.Image = global::CRM_TOOLS.Properties.Resources.Add;
            this.btNew.ImageAlignment = System.Drawing.ContentAlignment.MiddleCenter;
            this.btNew.Location = new System.Drawing.Point(326, 12);
            this.btNew.Name = "btNew";
            this.btNew.Size = new System.Drawing.Size(42, 42);
            this.btNew.TabIndex = 3;
            // 
            // 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(381, 12);
            // 
            // radGridView10
            // 
            this.radGridView10.MasterTemplate.AllowColumnChooser = false;
            this.radGridView10.MasterTemplate.AllowColumnReorder = false;
            this.radGridView10.MasterTemplate.AllowColumnResize = false;
            this.radGridView10.MasterTemplate.AllowDragToGroup = false;
            this.radGridView10.MasterTemplate.AllowRowResize = false;
            gridViewTextBoxColumn1.EnableExpressionEditor = false;
            gridViewTextBoxColumn1.FormatString = "";
            gridViewTextBoxColumn1.HeaderText = "Codigo";
            gridViewTextBoxColumn1.Name = "clCod";
            gridViewTextBoxColumn1.Width = 106;
            gridViewTextBoxColumn2.EnableExpressionEditor = false;
            gridViewTextBoxColumn2.FormatString = "";
            gridViewTextBoxColumn2.HeaderText = "Descripcion";
            gridViewTextBoxColumn2.Name = "clDes";
            gridViewTextBoxColumn2.Width = 139;
            gridViewComboBoxColumn1.DisplayMember = null;
            gridViewComboBoxColumn1.EnableExpressionEditor = false;
            gridViewComboBoxColumn1.FormatString = "";
            gridViewComboBoxColumn1.HeaderText = "ID";
            gridViewComboBoxColumn1.Name = "clId";
            gridViewComboBoxColumn1.ValueMember = null;
            gridViewComboBoxColumn1.Width = 57;
            gridViewTextBoxColumn3.EnableExpressionEditor = false;
            gridViewTextBoxColumn3.FormatString = "";
            gridViewTextBoxColumn3.HeaderText = "Segmento";
            gridViewTextBoxColumn3.Name = "clSeg";
            gridViewTextBoxColumn3.Width = 182;
            gridViewTextBoxColumn4.EnableExpressionEditor = false;
            gridViewTextBoxColumn4.FormatString = "";
            gridViewTextBoxColumn4.HeaderText = "Creacion";
            gridViewTextBoxColumn4.Name = "clCreacion";
            gridViewTextBoxColumn4.Width = 132;
            gridViewTextBoxColumn5.EnableExpressionEditor = false;
            gridViewTextBoxColumn5.FormatString = "";
            gridViewTextBoxColumn5.HeaderText = "Actualizacion";
            gridViewTextBoxColumn5.Name = "clActual";
            gridViewTextBoxColumn5.Width = 116;
            this.radGridView10.MasterTemplate.Columns.AddRange(new Telerik.WinControls.UI.GridViewDataColumn[] {
            gridViewTextBoxColumn1,
            gridViewTextBoxColumn2,
            gridViewComboBoxColumn1,
            gridViewTextBoxColumn3,
            gridViewTextBoxColumn4,
            gridViewTextBoxColumn5});
            this.radGridView10.MasterTemplate.EnableGrouping = false;
            sortDescriptor1.PropertyName = "column1";
            this.radGridView10.MasterTemplate.SortDescriptors.AddRange(new Telerik.WinControls.Data.SortDescriptor[] {
            sortDescriptor1});
            this.radGridView10.Name = "radGridView10";
            this.radGridView10.RightToLeft = System.Windows.Forms.RightToLeft.No;
            this.radGridView10.ShowGroupPanel = false;
            this.radGridView10.Size = new System.Drawing.Size(755, 772);
            this.radGridView10.TabIndex = 2;
            this.radGridView10.Text = "radGridView10";
            this.radGridView10.ThemeName = "TelerikMetroBlue";
            // 
            // Mante_Segmentos
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.ClientSize = new System.Drawing.Size(1420, 796);
            this.Controls.Add(this.btNew);
            this.Controls.Add(this.radGridView10);
            this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
            this.Name = "Mante_Segmentos";
            // 
            // 
            // 
            this.RootElement.ApplyShapeToControl = true;
            this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
            this.Text = "Mantenimientos Segmentos";
            this.ThemeName = "TelerikMetroBlue";
            this.WindowState = System.Windows.Forms.FormWindowState.Maximized;
            ((System.ComponentModel.ISupportInitialize)(this.btNew)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radGridView10.MasterTemplate)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radGridView10)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this)).EndInit();
            this.ResumeLayout(false);

        }
        /// <summary> 
        /// Required method for Designer support - do not modify 
        /// the contents of this method with the code editor.
        /// </summary>
        private void InitializeComponent()
        {
            Telerik.WinControls.UI.GridViewBrowseColumn gridViewBrowseColumn1 = new Telerik.WinControls.UI.GridViewBrowseColumn();
            Telerik.WinControls.UI.GridViewImageColumn gridViewImageColumn1 = new Telerik.WinControls.UI.GridViewImageColumn();
            Telerik.WinControls.UI.GridViewComboBoxColumn gridViewComboBoxColumn1 = new Telerik.WinControls.UI.GridViewComboBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn1 = 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();
            this.TelerikMetroBlueTheme = new Telerik.WinControls.Themes.TelerikMetroBlueTheme();
            this.FileList = new Telerik.WinControls.UI.RadGridView();
            this.ButtonImport = new Telerik.WinControls.UI.RadButton();
            ((System.ComponentModel.ISupportInitialize)(this.FileList)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.ButtonImport)).BeginInit();
            this.SuspendLayout();
            // 
            // FileList
            // 
            this.FileList.AllowDrop = true;
            this.FileList.BackColor = System.Drawing.SystemColors.Control;
            this.FileList.Cursor = System.Windows.Forms.Cursors.Default;
            this.FileList.Dock = System.Windows.Forms.DockStyle.Fill;
            this.FileList.Font = new System.Drawing.Font("Segoe UI", 8.25F);
            this.FileList.ForeColor = System.Drawing.SystemColors.ControlText;
            this.FileList.ImeMode = System.Windows.Forms.ImeMode.NoControl;
            this.FileList.Location = new System.Drawing.Point(0, 0);
            // 
            // FileList
            // 
            this.FileList.MasterTemplate.AddNewRowPosition = Telerik.WinControls.UI.SystemRowPosition.Bottom;
            this.FileList.MasterTemplate.AutoGenerateColumns = false;
            gridViewBrowseColumn1.AllowGroup = false;
            gridViewBrowseColumn1.EnableExpressionEditor = false;
            gridViewBrowseColumn1.ExcelExportType = Telerik.WinControls.UI.Export.DisplayFormatType.Text;
            gridViewBrowseColumn1.FieldName = "Name";
            gridViewBrowseColumn1.FormatString = "";
            gridViewBrowseColumn1.HeaderText = "File";
            gridViewBrowseColumn1.HeaderTextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
            gridViewBrowseColumn1.MinWidth = 150;
            gridViewBrowseColumn1.Name = "FileNameColumn";
            gridViewBrowseColumn1.Width = 300;
            gridViewImageColumn1.AllowResize = false;
            gridViewImageColumn1.DataType = typeof(int);
            gridViewImageColumn1.EnableExpressionEditor = false;
            gridViewImageColumn1.FieldName = "Progress";
            gridViewImageColumn1.FormatString = "";
            gridViewImageColumn1.HeaderText = "Progress";
            gridViewImageColumn1.MaxWidth = 70;
            gridViewImageColumn1.MinWidth = 70;
            gridViewImageColumn1.Name = "ProgressColumn";
            gridViewImageColumn1.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
            gridViewImageColumn1.Width = 70;
            gridViewComboBoxColumn1.DataType = typeof(System.Collections.Generic.List<System.Type>);
            gridViewComboBoxColumn1.DisplayMember = null;
            gridViewComboBoxColumn1.EnableExpressionEditor = false;
            gridViewComboBoxColumn1.FieldName = "ObjectType";
            gridViewComboBoxColumn1.FormatString = "";
            gridViewComboBoxColumn1.HeaderText = "Output Type";
            gridViewComboBoxColumn1.MinWidth = 100;
            gridViewComboBoxColumn1.Name = "OutputTypeColumn";
            gridViewComboBoxColumn1.ValueMember = null;
            gridViewComboBoxColumn1.Width = 250;
            gridViewTextBoxColumn1.EnableExpressionEditor = false;
            gridViewTextBoxColumn1.FieldName = "ObjectCount";
            gridViewTextBoxColumn1.FormatString = "";
            gridViewTextBoxColumn1.HeaderText = "Output Count";
            gridViewTextBoxColumn1.Name = "CountColumn";
            gridViewTextBoxColumn1.SortOrder = Telerik.WinControls.UI.RadSortOrder.Ascending;
            gridViewTextBoxColumn1.Width = 150;
            gridViewCommandColumn1.EnableExpressionEditor = false;
            gridViewCommandColumn1.FieldName = "Parse";
            gridViewCommandColumn1.FormatString = "";
            gridViewCommandColumn1.HeaderText = "Parse";
            gridViewCommandColumn1.Name = "ParseColumn";
            this.FileList.MasterTemplate.Columns.AddRange(new Telerik.WinControls.UI.GridViewDataColumn[] {
            gridViewBrowseColumn1,
            gridViewImageColumn1,
            gridViewComboBoxColumn1,
            gridViewTextBoxColumn1,
            gridViewCommandColumn1});
            this.FileList.MasterTemplate.EnableAlternatingRowColor = true;
            sortDescriptor1.PropertyName = "CountColumn";
            this.FileList.MasterTemplate.SortDescriptors.AddRange(new Telerik.WinControls.Data.SortDescriptor[] {
            sortDescriptor1});
            this.FileList.Name = "FileList";
            this.FileList.RightToLeft = System.Windows.Forms.RightToLeft.No;
            this.FileList.Size = new System.Drawing.Size(800, 363);
            this.FileList.TabIndex = 0;
            this.FileList.Text = "FileList";
          // 
            // ButtonImport
            // 
            this.ButtonImport.Dock = System.Windows.Forms.DockStyle.Bottom;
            this.ButtonImport.Location = new System.Drawing.Point(0, 318);
            this.ButtonImport.Name = "ButtonImport";
            this.ButtonImport.Size = new System.Drawing.Size(800, 45);
            this.ButtonImport.TabIndex = 1;
            this.ButtonImport.Text = "Import";
            // 
            // ImportFilesView
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.Controls.Add(this.ButtonImport);
            this.Controls.Add(this.FileList);
            this.DoubleBuffered = true;
            this.Name = "ImportFilesView";
            this.Size = new System.Drawing.Size(800, 363);
            ((System.ComponentModel.ISupportInitialize)(this.FileList)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.ButtonImport)).EndInit();
            this.ResumeLayout(false);

        }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     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);
 }
Example #16
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(MainForm));
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn1 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn2 = 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 gridViewTextBoxColumn3 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewMultiComboBoxColumn gridViewMultiComboBoxColumn1 = new Telerik.WinControls.UI.GridViewMultiComboBoxColumn();
            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.GridViewComboBoxColumn gridViewComboBoxColumn2 = new Telerik.WinControls.UI.GridViewComboBoxColumn();
            Telerik.WinControls.Data.SortDescriptor sortDescriptor1 = new Telerik.WinControls.Data.SortDescriptor();
            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.GridViewComboBoxColumn gridViewComboBoxColumn3 = new Telerik.WinControls.UI.GridViewComboBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn10 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.Data.SortDescriptor sortDescriptor2 = new Telerik.WinControls.Data.SortDescriptor();
            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.GridViewImageColumn gridViewImageColumn1 = new Telerik.WinControls.UI.GridViewImageColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn15 = 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 gridViewTextBoxColumn16 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.Data.SortDescriptor sortDescriptor3 = new Telerik.WinControls.Data.SortDescriptor();
            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.GridViewDecimalColumn gridViewDecimalColumn1 = new Telerik.WinControls.UI.GridViewDecimalColumn();
            Telerik.WinControls.UI.GridViewComboBoxColumn gridViewComboBoxColumn4 = new Telerik.WinControls.UI.GridViewComboBoxColumn();
            this.mainPageView = new Telerik.WinControls.UI.RadPageView();
            this.pagePrehistory = new Telerik.WinControls.UI.RadPageViewPage();
            this.rtbPrehistory = new Telerik.WinControls.RichTextBox.RadRichTextBox();
            this.commandBarPrehistory = new Telerik.WinControls.UI.RadCommandBar();
            this.commandBarRowPrehistory = new Telerik.WinControls.UI.CommandBarRowElement();
            this.commandBarStripPrehistory = new Telerik.WinControls.UI.CommandBarStripElement();
            this.cmbSavePrehistory = new Telerik.WinControls.UI.CommandBarButton();
            this.cmbEditPrehistory = new Telerik.WinControls.UI.CommandBarButton();
            this.pagePersons = new Telerik.WinControls.UI.RadPageViewPage();
            this.gridViewPersons = new Telerik.WinControls.UI.RadGridView();
            this.commandBarPerson = new Telerik.WinControls.UI.RadCommandBar();
            this.commandBarRowPerson = new Telerik.WinControls.UI.CommandBarRowElement();
            this.commandBarStripPerson = new Telerik.WinControls.UI.CommandBarStripElement();
            this.cmbCreatePerson = new Telerik.WinControls.UI.CommandBarButton();
            this.cmdSavePersons = new Telerik.WinControls.UI.CommandBarButton();
            this.cmbEditPerson = new Telerik.WinControls.UI.CommandBarButton();
            this.cmbPersonsColumnChooser = new Telerik.WinControls.UI.CommandBarButton();
            this.pageAims = new Telerik.WinControls.UI.RadPageViewPage();
            this.gridViewAims = new Telerik.WinControls.UI.RadGridView();
            this.commandBarAims = new Telerik.WinControls.UI.RadCommandBar();
            this.commandBarRowAims = new Telerik.WinControls.UI.CommandBarRowElement();
            this.commandBarStripAims = new Telerik.WinControls.UI.CommandBarStripElement();
            this.cmbSaveAims = new Telerik.WinControls.UI.CommandBarButton();
            this.cmbEditAims = new Telerik.WinControls.UI.CommandBarButton();
            this.pageItems = new Telerik.WinControls.UI.RadPageViewPage();
            this.pGridViewItems = new Telerik.WinControls.UI.RadPanel();
            this.gridViewItems = new Telerik.WinControls.UI.RadGridView();
            this.commandBarItems = new Telerik.WinControls.UI.RadCommandBar();
            this.commandBarRowItems = new Telerik.WinControls.UI.CommandBarRowElement();
            this.commandBarStripItems = new Telerik.WinControls.UI.CommandBarStripElement();
            this.cmbCreateItem = new Telerik.WinControls.UI.CommandBarButton();
            this.cmbSaveItems = new Telerik.WinControls.UI.CommandBarButton();
            this.cmbEditItems = new Telerik.WinControls.UI.CommandBarButton();
            this.pageRules = new Telerik.WinControls.UI.RadPageViewPage();
            this.rtbRules = new Telerik.WinControls.RichTextBox.RadRichTextBox();
            this.commandBarRules = new Telerik.WinControls.UI.RadCommandBar();
            this.commandBarRowRules = new Telerik.WinControls.UI.CommandBarRowElement();
            this.commandBarStripRules = new Telerik.WinControls.UI.CommandBarStripElement();
            this.cmbSaveRules = new Telerik.WinControls.UI.CommandBarButton();
            this.cmbEditRules = new Telerik.WinControls.UI.CommandBarButton();
            this.pageAuthorEvents = new Telerik.WinControls.UI.RadPageViewPage();
            this.gridViewEvents = new Telerik.WinControls.UI.RadGridView();
            this.commandBarEvents = new Telerik.WinControls.UI.RadCommandBar();
            this.commandBarRowEvents = new Telerik.WinControls.UI.CommandBarRowElement();
            this.commandBarStripEvents = new Telerik.WinControls.UI.CommandBarStripElement();
            this.cmbSaveEvents = new Telerik.WinControls.UI.CommandBarButton();
            this.cmdEditEvents = new Telerik.WinControls.UI.CommandBarButton();
            this.statusStrip = new System.Windows.Forms.StatusStrip();
            this.openImageFileDialog = new System.Windows.Forms.OpenFileDialog();
            this.markupItems = new Telerik.WinControls.UI.RadMarkupDialog();
            this.markupRules = new Telerik.WinControls.UI.RadMarkupDialog();
            this.menuItemMain = new Telerik.WinControls.UI.RadMenuItem();
            this.menuItemLoad = new Telerik.WinControls.UI.RadMenuItem();
            this.menuItemSave = new Telerik.WinControls.UI.RadMenuItem();
            this.menuSeparator1 = new Telerik.WinControls.UI.RadMenuSeparatorItem();
            this.menuItemPrintForm = new Telerik.WinControls.UI.RadMenuItem();
            this.menuButtonWipeOutColumns = new Telerik.WinControls.UI.RadMenuButtonItem();
            this.markupPrehistory = new Telerik.WinControls.UI.RadMarkupDialog();
            this.openFileDialog = new System.Windows.Forms.OpenFileDialog();
            this.saveFileDialog = new System.Windows.Forms.SaveFileDialog();
            this.mainMenu = new Telerik.WinControls.UI.RadMenu();
            this.cmbCreateAim = new Telerik.WinControls.UI.CommandBarButton();
            ((System.ComponentModel.ISupportInitialize)(this.mainPageView)).BeginInit();
            this.mainPageView.SuspendLayout();
            this.pagePrehistory.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.rtbPrehistory)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.commandBarPrehistory)).BeginInit();
            this.pagePersons.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.gridViewPersons)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.gridViewPersons.MasterTemplate)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.commandBarPerson)).BeginInit();
            this.pageAims.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.gridViewAims)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.gridViewAims.MasterTemplate)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.commandBarAims)).BeginInit();
            this.pageItems.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.pGridViewItems)).BeginInit();
            this.pGridViewItems.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.gridViewItems)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.gridViewItems.MasterTemplate)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.commandBarItems)).BeginInit();
            this.pageRules.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.rtbRules)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.commandBarRules)).BeginInit();
            this.pageAuthorEvents.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.gridViewEvents)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.gridViewEvents.MasterTemplate)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.commandBarEvents)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.mainMenu)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
            this.SuspendLayout();
            // 
            // mainPageView
            // 
            this.mainPageView.Controls.Add(this.pagePrehistory);
            this.mainPageView.Controls.Add(this.pagePersons);
            this.mainPageView.Controls.Add(this.pageAims);
            this.mainPageView.Controls.Add(this.pageItems);
            this.mainPageView.Controls.Add(this.pageRules);
            this.mainPageView.Controls.Add(this.pageAuthorEvents);
            this.mainPageView.Dock = System.Windows.Forms.DockStyle.Fill;
            this.mainPageView.Location = new System.Drawing.Point(0, 20);
            this.mainPageView.Name = "mainPageView";
            this.mainPageView.SelectedPage = this.pageAims;
            this.mainPageView.Size = new System.Drawing.Size(1191, 558);
            this.mainPageView.TabIndex = 10;
            // 
            // pagePrehistory
            // 
// TODO: Code generation for '' failed because of Exception 'Invalid Primitive Type: System.IntPtr. Consider using CodeObjectCreateExpression.'.
            this.pagePrehistory.Controls.Add(this.rtbPrehistory);
            this.pagePrehistory.Controls.Add(this.commandBarPrehistory);
            this.pagePrehistory.Location = new System.Drawing.Point(10, 37);
            this.pagePrehistory.Name = "pagePrehistory";
            this.pagePrehistory.Size = new System.Drawing.Size(1170, 510);
            this.pagePrehistory.Text = "Предыстория";
            // 
            // rtbPrehistory
            // 
            this.rtbPrehistory.Dock = System.Windows.Forms.DockStyle.Fill;
            this.rtbPrehistory.HyperlinkToolTipFormatString = null;
            this.rtbPrehistory.Location = new System.Drawing.Point(0, 45);
            this.rtbPrehistory.Name = "rtbPrehistory";
            this.rtbPrehistory.Size = new System.Drawing.Size(1170, 465);
            this.rtbPrehistory.TabIndex = 1;
            this.rtbPrehistory.Text = "radRichTextBox1";
            // 
            // commandBarPrehistory
            // 
            this.commandBarPrehistory.Dock = System.Windows.Forms.DockStyle.Top;
            this.commandBarPrehistory.Location = new System.Drawing.Point(0, 0);
            this.commandBarPrehistory.Name = "commandBarPrehistory";
            this.commandBarPrehistory.Rows.AddRange(new Telerik.WinControls.UI.CommandBarRowElement[] {
            this.commandBarRowPrehistory});
            this.commandBarPrehistory.Size = new System.Drawing.Size(1170, 45);
            this.commandBarPrehistory.TabIndex = 2;
            this.commandBarPrehistory.Text = "radCommandBar1";
            // 
            // commandBarRowPrehistory
            // 
            this.commandBarRowPrehistory.MinSize = new System.Drawing.Size(25, 25);
            this.commandBarRowPrehistory.Strips.AddRange(new Telerik.WinControls.UI.CommandBarStripElement[] {
            this.commandBarStripPrehistory});
            // 
            // commandBarStripPrehistory
            // 
            this.commandBarStripPrehistory.DisplayName = "Полоса Предыстория";
            this.commandBarStripPrehistory.Items.AddRange(new Telerik.WinControls.UI.RadCommandBarBaseItem[] {
            this.cmbSavePrehistory,
            this.cmbEditPrehistory});
            this.commandBarStripPrehistory.Name = "commandBarStripElement1";
            // 
            // cmbSavePrehistory
            // 
            this.cmbSavePrehistory.AccessibleDescription = "Сохранить";
            this.cmbSavePrehistory.AccessibleName = "Сохранить";
            this.cmbSavePrehistory.DisplayName = "Сохранить Предысторию";
            this.cmbSavePrehistory.DrawText = true;
            this.cmbSavePrehistory.Image = ((System.Drawing.Image)(resources.GetObject("cmbSavePrehistory.Image")));
            this.cmbSavePrehistory.Name = "cmbSavePrehistory";
            this.cmbSavePrehistory.Text = "Сохранить";
            this.cmbSavePrehistory.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
            this.cmbSavePrehistory.Visibility = Telerik.WinControls.ElementVisibility.Visible;
            this.cmbSavePrehistory.Click += new System.EventHandler(this.cmbSavePrehistory_Click);
            // 
            // cmbEditPrehistory
            // 
            this.cmbEditPrehistory.AccessibleDescription = "Редактировать";
            this.cmbEditPrehistory.AccessibleName = "Редактировать";
            this.cmbEditPrehistory.DisplayName = "Редактировать Предысторию";
            this.cmbEditPrehistory.DrawText = true;
            this.cmbEditPrehistory.Image = ((System.Drawing.Image)(resources.GetObject("cmbEditPrehistory.Image")));
            this.cmbEditPrehistory.Name = "cmbEditPrehistory";
            this.cmbEditPrehistory.Text = "Редактировать";
            this.cmbEditPrehistory.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
            this.cmbEditPrehistory.Visibility = Telerik.WinControls.ElementVisibility.Visible;
            this.cmbEditPrehistory.Click += new System.EventHandler(this.cmdEditPrehistory_Click);
            // 
            // pagePersons
            // 
// TODO: Code generation for '' failed because of Exception 'Invalid Primitive Type: System.IntPtr. Consider using CodeObjectCreateExpression.'.
            this.pagePersons.Controls.Add(this.gridViewPersons);
            this.pagePersons.Controls.Add(this.commandBarPerson);
            this.pagePersons.Location = new System.Drawing.Point(10, 37);
            this.pagePersons.Name = "pagePersons";
            this.pagePersons.Size = new System.Drawing.Size(1170, 510);
            this.pagePersons.Text = "Люди";
            // 
            // gridViewPersons
            // 
            this.gridViewPersons.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(233)))), ((int)(((byte)(240)))), ((int)(((byte)(249)))));
            this.gridViewPersons.Cursor = System.Windows.Forms.Cursors.Default;
            this.gridViewPersons.Dock = System.Windows.Forms.DockStyle.Fill;
            this.gridViewPersons.Font = new System.Drawing.Font("Segoe UI", 8.25F);
            this.gridViewPersons.ForeColor = System.Drawing.SystemColors.ControlText;
            this.gridViewPersons.ImeMode = System.Windows.Forms.ImeMode.NoControl;
            this.gridViewPersons.Location = new System.Drawing.Point(0, 30);
            // 
            // gridViewPersons
            // 
            this.gridViewPersons.MasterTemplate.AddNewRowPosition = Telerik.WinControls.UI.SystemRowPosition.Bottom;
            this.gridViewPersons.MasterTemplate.AutoGenerateColumns = false;
            gridViewTextBoxColumn1.EnableExpressionEditor = false;
            gridViewTextBoxColumn1.HeaderText = "ID";
            gridViewTextBoxColumn1.Name = "columnID";
            gridViewTextBoxColumn2.EnableExpressionEditor = false;
            gridViewTextBoxColumn2.HeaderText = "Имя";
            gridViewTextBoxColumn2.Name = "columnName";
            gridViewTextBoxColumn2.Width = 137;
            gridViewComboBoxColumn1.EnableExpressionEditor = false;
            gridViewComboBoxColumn1.HeaderText = "Пол";
            gridViewComboBoxColumn1.Name = "columnSex";
            gridViewComboBoxColumn1.Width = 89;
            gridViewCheckBoxColumn1.EnableExpressionEditor = false;
            gridViewCheckBoxColumn1.HeaderText = "Неудаляемый";
            gridViewCheckBoxColumn1.MinWidth = 20;
            gridViewCheckBoxColumn1.Name = "columnUnremovable";
            gridViewCheckBoxColumn1.Width = 80;
            gridViewTextBoxColumn3.DisableHTMLRendering = false;
            gridViewTextBoxColumn3.EnableExpressionEditor = false;
            gridViewTextBoxColumn3.HeaderText = "Описание";
            gridViewTextBoxColumn3.Name = "columnDescription";
            gridViewTextBoxColumn3.Width = 186;
            gridViewMultiComboBoxColumn1.EnableExpressionEditor = false;
            gridViewMultiComboBoxColumn1.HeaderText = "Предметы";
            gridViewMultiComboBoxColumn1.Name = "columnPersonalItems";
            gridViewMultiComboBoxColumn1.ReadOnly = true;
            gridViewMultiComboBoxColumn1.Width = 112;
            gridViewTextBoxColumn4.EnableExpressionEditor = false;
            gridViewTextBoxColumn4.HeaderText = "Цели";
            gridViewTextBoxColumn4.Name = "columnPersonalAims";
            gridViewTextBoxColumn4.ReadOnly = true;
            gridViewTextBoxColumn4.Width = 148;
            gridViewTextBoxColumn5.EnableExpressionEditor = false;
            gridViewTextBoxColumn5.HeaderText = "Второе имя";
            gridViewTextBoxColumn5.Name = "columnAltName";
            gridViewTextBoxColumn5.Width = 141;
            gridViewTextBoxColumn6.EnableExpressionEditor = false;
            gridViewTextBoxColumn6.HeaderText = "Комментарий";
            gridViewTextBoxColumn6.Name = "columnComment";
            gridViewTextBoxColumn6.Width = 108;
            gridViewComboBoxColumn2.EnableExpressionEditor = false;
            gridViewComboBoxColumn2.HeaderText = "Клан";
            gridViewComboBoxColumn2.Name = "columnClanColor";
            gridViewComboBoxColumn2.Width = 102;
            this.gridViewPersons.MasterTemplate.Columns.AddRange(new Telerik.WinControls.UI.GridViewDataColumn[] {
            gridViewTextBoxColumn1,
            gridViewTextBoxColumn2,
            gridViewComboBoxColumn1,
            gridViewCheckBoxColumn1,
            gridViewTextBoxColumn3,
            gridViewMultiComboBoxColumn1,
            gridViewTextBoxColumn4,
            gridViewTextBoxColumn5,
            gridViewTextBoxColumn6,
            gridViewComboBoxColumn2});
            sortDescriptor1.PropertyName = "column1";
            this.gridViewPersons.MasterTemplate.SortDescriptors.AddRange(new Telerik.WinControls.Data.SortDescriptor[] {
            sortDescriptor1});
            this.gridViewPersons.Name = "gridViewPersons";
            this.gridViewPersons.RightToLeft = System.Windows.Forms.RightToLeft.No;
            this.gridViewPersons.Size = new System.Drawing.Size(1170, 480);
            this.gridViewPersons.TabIndex = 1;
            this.gridViewPersons.Text = "radGridView1";
            this.gridViewPersons.CellFormatting += new Telerik.WinControls.UI.CellFormattingEventHandler(this.gridViewPersons_CellFormatting);
            this.gridViewPersons.UserAddedRow += new Telerik.WinControls.UI.GridViewRowEventHandler(this.gridViewPersons_UserAddedRow);
            this.gridViewPersons.UserDeletedRow += new Telerik.WinControls.UI.GridViewRowEventHandler(this.gridViewPersons_UserAddedRow);
            this.gridViewPersons.CellValueChanged += new Telerik.WinControls.UI.GridViewCellEventHandler(this.gridViewPersons_CellValueChanged);
            // 
            // commandBarPerson
            // 
            this.commandBarPerson.Dock = System.Windows.Forms.DockStyle.Top;
            this.commandBarPerson.Location = new System.Drawing.Point(0, 0);
            this.commandBarPerson.Name = "commandBarPerson";
            this.commandBarPerson.Rows.AddRange(new Telerik.WinControls.UI.CommandBarRowElement[] {
            this.commandBarRowPerson});
            this.commandBarPerson.Size = new System.Drawing.Size(1170, 30);
            this.commandBarPerson.TabIndex = 0;
            this.commandBarPerson.Text = "radCommandBar1";
            // 
            // commandBarRowPerson
            // 
            this.commandBarRowPerson.MinSize = new System.Drawing.Size(25, 25);
            this.commandBarRowPerson.Strips.AddRange(new Telerik.WinControls.UI.CommandBarStripElement[] {
            this.commandBarStripPerson});
            // 
            // commandBarStripPerson
            // 
            this.commandBarStripPerson.DisplayName = "Полоска персонажей";
            this.commandBarStripPerson.Items.AddRange(new Telerik.WinControls.UI.RadCommandBarBaseItem[] {
            this.cmbCreatePerson,
            this.cmdSavePersons,
            this.cmbEditPerson,
            this.cmbPersonsColumnChooser});
            this.commandBarStripPerson.Name = "commandBarStripElement1";
            // 
            // cmbCreatePerson
            // 
            this.cmbCreatePerson.AccessibleDescription = "Создать";
            this.cmbCreatePerson.AccessibleName = "Создать";
            this.cmbCreatePerson.DisplayName = "Создать Персонажа";
            this.cmbCreatePerson.DrawText = true;
            this.cmbCreatePerson.Image = ((System.Drawing.Image)(resources.GetObject("cmbCreatePerson.Image")));
            this.cmbCreatePerson.Name = "cmbCreatePerson";
            this.cmbCreatePerson.Text = "Создать";
            this.cmbCreatePerson.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
            this.cmbCreatePerson.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageBeforeText;
            this.cmbCreatePerson.Visibility = Telerik.WinControls.ElementVisibility.Visible;
            this.cmbCreatePerson.Click += new System.EventHandler(this.cmbCreatePerson_Click);
            // 
            // cmdSavePersons
            // 
            this.cmdSavePersons.AccessibleDescription = "Сохранить";
            this.cmdSavePersons.AccessibleName = "Сохранить";
            this.cmdSavePersons.DisplayName = "Сохранить Персонажей";
            this.cmdSavePersons.DrawText = true;
            this.cmdSavePersons.Image = ((System.Drawing.Image)(resources.GetObject("cmdSavePersons.Image")));
            this.cmdSavePersons.Name = "cmdSavePersons";
            this.cmdSavePersons.Text = "Сохранить";
            this.cmdSavePersons.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageBeforeText;
            this.cmdSavePersons.Visibility = Telerik.WinControls.ElementVisibility.Visible;
            this.cmdSavePersons.Click += new System.EventHandler(this.cmdSavePersons_Click);
            // 
            // cmbEditPerson
            // 
            this.cmbEditPerson.AccessibleDescription = "Редактировать";
            this.cmbEditPerson.AccessibleName = "Редактировать";
            this.cmbEditPerson.DisplayName = "Редактировать";
            this.cmbEditPerson.DrawText = true;
            this.cmbEditPerson.Image = ((System.Drawing.Image)(resources.GetObject("cmbEditPerson.Image")));
            this.cmbEditPerson.Name = "cmbEditPerson";
            this.cmbEditPerson.Text = "Редактировать";
            this.cmbEditPerson.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageBeforeText;
            this.cmbEditPerson.Visibility = Telerik.WinControls.ElementVisibility.Visible;
            this.cmbEditPerson.Click += new System.EventHandler(this.cmbEditPerson_Click);
            // 
            // cmbPersonsColumnChooser
            // 
            this.cmbPersonsColumnChooser.AccessibleDescription = "Столбцы";
            this.cmbPersonsColumnChooser.AccessibleName = "Столбцы";
            this.cmbPersonsColumnChooser.DisplayName = "Столбцы";
            this.cmbPersonsColumnChooser.DrawText = true;
            this.cmbPersonsColumnChooser.Image = ((System.Drawing.Image)(resources.GetObject("cmbPersonsColumnChooser.Image")));
            this.cmbPersonsColumnChooser.Name = "cmbPersonsColumnChooser";
            this.cmbPersonsColumnChooser.Text = "Столбцы";
            this.cmbPersonsColumnChooser.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageBeforeText;
            this.cmbPersonsColumnChooser.Visibility = Telerik.WinControls.ElementVisibility.Visible;
            this.cmbPersonsColumnChooser.Click += new System.EventHandler(this.cmbPersonsColumnChooser_Click);
            // 
            // pageAims
            // 
// TODO: Code generation for '' failed because of Exception 'Invalid Primitive Type: System.IntPtr. Consider using CodeObjectCreateExpression.'.
            this.pageAims.Controls.Add(this.gridViewAims);
            this.pageAims.Controls.Add(this.commandBarAims);
            this.pageAims.Location = new System.Drawing.Point(10, 37);
            this.pageAims.Name = "pageAims";
            this.pageAims.Size = new System.Drawing.Size(1170, 510);
            this.pageAims.Text = "Цели";
            // 
            // gridViewAims
            // 
            this.gridViewAims.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(233)))), ((int)(((byte)(240)))), ((int)(((byte)(249)))));
            this.gridViewAims.Cursor = System.Windows.Forms.Cursors.Default;
            this.gridViewAims.Dock = System.Windows.Forms.DockStyle.Fill;
            this.gridViewAims.Font = new System.Drawing.Font("Segoe UI", 8.25F);
            this.gridViewAims.ForeColor = System.Drawing.SystemColors.ControlText;
            this.gridViewAims.ImeMode = System.Windows.Forms.ImeMode.NoControl;
            this.gridViewAims.Location = new System.Drawing.Point(0, 70);
            // 
            // gridViewAims
            // 
            this.gridViewAims.MasterTemplate.AddNewRowPosition = Telerik.WinControls.UI.SystemRowPosition.Bottom;
            gridViewTextBoxColumn7.EnableExpressionEditor = false;
            gridViewTextBoxColumn7.HeaderText = "ID";
            gridViewTextBoxColumn7.Name = "columnID";
            gridViewTextBoxColumn8.EnableExpressionEditor = false;
            gridViewTextBoxColumn8.HeaderText = "Название";
            gridViewTextBoxColumn8.Name = "columnName";
            gridViewTextBoxColumn8.Width = 261;
            gridViewTextBoxColumn9.AcceptsReturn = true;
            gridViewTextBoxColumn9.AcceptsTab = true;
            gridViewTextBoxColumn9.DisableHTMLRendering = false;
            gridViewTextBoxColumn9.EnableExpressionEditor = false;
            gridViewTextBoxColumn9.HeaderText = "Описание";
            gridViewTextBoxColumn9.Multiline = true;
            gridViewTextBoxColumn9.Name = "columnDescription";
            gridViewTextBoxColumn9.Width = 272;
            gridViewTextBoxColumn9.WrapText = true;
            gridViewComboBoxColumn3.EnableExpressionEditor = false;
            gridViewComboBoxColumn3.FilteringMode = Telerik.WinControls.UI.GridViewFilteringMode.DisplayMember;
            gridViewComboBoxColumn3.HeaderText = "Тип";
            gridViewComboBoxColumn3.Name = "columnType";
            gridViewComboBoxColumn3.Width = 131;
            gridViewTextBoxColumn10.EnableExpressionEditor = false;
            gridViewTextBoxColumn10.HeaderText = "Кто преследует";
            gridViewTextBoxColumn10.Name = "columnPersonsWithAim";
            gridViewTextBoxColumn10.SortOrder = Telerik.WinControls.UI.RadSortOrder.Ascending;
            gridViewTextBoxColumn10.Width = 144;
            this.gridViewAims.MasterTemplate.Columns.AddRange(new Telerik.WinControls.UI.GridViewDataColumn[] {
            gridViewTextBoxColumn7,
            gridViewTextBoxColumn8,
            gridViewTextBoxColumn9,
            gridViewComboBoxColumn3,
            gridViewTextBoxColumn10});
            sortDescriptor2.PropertyName = "columnPersonsWithAim";
            this.gridViewAims.MasterTemplate.SortDescriptors.AddRange(new Telerik.WinControls.Data.SortDescriptor[] {
            sortDescriptor2});
            this.gridViewAims.Name = "gridViewAims";
            this.gridViewAims.RightToLeft = System.Windows.Forms.RightToLeft.No;
            this.gridViewAims.Size = new System.Drawing.Size(1170, 440);
            this.gridViewAims.TabIndex = 1;
            this.gridViewAims.UserAddedRow += new Telerik.WinControls.UI.GridViewRowEventHandler(this.gridViewAims_UserAddedRow);
            this.gridViewAims.UserDeletedRow += new Telerik.WinControls.UI.GridViewRowEventHandler(this.gridViewAims_UserAddedRow);
            this.gridViewAims.CellDoubleClick += new Telerik.WinControls.UI.GridViewCellEventHandler(this.gridViewAims_CellDoubleClick);
            this.gridViewAims.CellValueChanged += new Telerik.WinControls.UI.GridViewCellEventHandler(this.gridViewAims_CellValueChanged);
            // 
            // commandBarAims
            // 
            this.commandBarAims.Dock = System.Windows.Forms.DockStyle.Top;
            this.commandBarAims.Location = new System.Drawing.Point(0, 0);
            this.commandBarAims.Name = "commandBarAims";
            this.commandBarAims.Rows.AddRange(new Telerik.WinControls.UI.CommandBarRowElement[] {
            this.commandBarRowAims});
            this.commandBarAims.Size = new System.Drawing.Size(1170, 70);
            this.commandBarAims.TabIndex = 2;
            this.commandBarAims.Text = "radCommandBar1";
            // 
            // commandBarRowAims
            // 
            this.commandBarRowAims.MinSize = new System.Drawing.Size(25, 25);
            this.commandBarRowAims.Strips.AddRange(new Telerik.WinControls.UI.CommandBarStripElement[] {
            this.commandBarStripAims});
            // 
            // commandBarStripAims
            // 
            this.commandBarStripAims.DisplayName = "commandBarStripElement1";
            this.commandBarStripAims.Items.AddRange(new Telerik.WinControls.UI.RadCommandBarBaseItem[] {
            this.cmbCreateAim,
            this.cmbSaveAims,
            this.cmbEditAims});
            this.commandBarStripAims.Name = "commandBarStripElement1";
            // 
            // cmbSaveAims
            // 
            this.cmbSaveAims.AccessibleDescription = "Сохранить";
            this.cmbSaveAims.AccessibleName = "Сохранить";
            this.cmbSaveAims.DisplayName = "commandBarButton1";
            this.cmbSaveAims.DrawText = true;
            this.cmbSaveAims.Image = ((System.Drawing.Image)(resources.GetObject("cmbSaveAims.Image")));
            this.cmbSaveAims.Name = "cmbSaveAims";
            this.cmbSaveAims.Text = "Сохранить";
            this.cmbSaveAims.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
            this.cmbSaveAims.Visibility = Telerik.WinControls.ElementVisibility.Visible;
            this.cmbSaveAims.Click += new System.EventHandler(this.cmbSaveAims_Click);
            // 
            // cmbEditAims
            // 
            this.cmbEditAims.AccessibleDescription = "Редактировать";
            this.cmbEditAims.AccessibleName = "Редактировать";
            this.cmbEditAims.DisplayName = "commandBarButton2";
            this.cmbEditAims.DrawText = true;
            this.cmbEditAims.Image = ((System.Drawing.Image)(resources.GetObject("cmbEditAims.Image")));
            this.cmbEditAims.Name = "cmbEditAims";
            this.cmbEditAims.Text = "Редактировать";
            this.cmbEditAims.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
            this.cmbEditAims.Visibility = Telerik.WinControls.ElementVisibility.Visible;
            this.cmbEditAims.Click += new System.EventHandler(this.cmbEditAims_Click);
            // 
            // pageItems
            // 
// TODO: Code generation for '' failed because of Exception 'Invalid Primitive Type: System.IntPtr. Consider using CodeObjectCreateExpression.'.
            this.pageItems.Controls.Add(this.pGridViewItems);
            this.pageItems.Location = new System.Drawing.Point(10, 37);
            this.pageItems.Name = "pageItems";
            this.pageItems.Size = new System.Drawing.Size(1170, 510);
            this.pageItems.Text = "Предметы";
            // 
            // pGridViewItems
            // 
            this.pGridViewItems.Controls.Add(this.gridViewItems);
            this.pGridViewItems.Controls.Add(this.commandBarItems);
            this.pGridViewItems.Dock = System.Windows.Forms.DockStyle.Fill;
            this.pGridViewItems.Location = new System.Drawing.Point(0, 0);
            this.pGridViewItems.Name = "pGridViewItems";
            this.pGridViewItems.Size = new System.Drawing.Size(1170, 510);
            this.pGridViewItems.TabIndex = 4;
            // 
            // gridViewItems
            // 
            this.gridViewItems.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(233)))), ((int)(((byte)(240)))), ((int)(((byte)(249)))));
            this.gridViewItems.CausesValidation = false;
            this.gridViewItems.Cursor = System.Windows.Forms.Cursors.Default;
            this.gridViewItems.Dock = System.Windows.Forms.DockStyle.Fill;
            this.gridViewItems.Font = new System.Drawing.Font("Segoe UI", 8.25F);
            this.gridViewItems.ForeColor = System.Drawing.SystemColors.ControlText;
            this.gridViewItems.ImeMode = System.Windows.Forms.ImeMode.NoControl;
            this.gridViewItems.Location = new System.Drawing.Point(0, 45);
            // 
            // gridViewItems
            // 
            this.gridViewItems.MasterTemplate.AddNewRowPosition = Telerik.WinControls.UI.SystemRowPosition.Bottom;
            gridViewTextBoxColumn11.EnableExpressionEditor = false;
            gridViewTextBoxColumn11.HeaderText = "ID";
            gridViewTextBoxColumn11.Name = "columnID";
            gridViewTextBoxColumn11.SortOrder = Telerik.WinControls.UI.RadSortOrder.Ascending;
            gridViewTextBoxColumn12.EnableExpressionEditor = false;
            gridViewTextBoxColumn12.HeaderText = "Имя";
            gridViewTextBoxColumn12.Name = "columnName";
            gridViewTextBoxColumn12.Width = 262;
            gridViewTextBoxColumn13.DisableHTMLRendering = false;
            gridViewTextBoxColumn13.EnableExpressionEditor = false;
            gridViewTextBoxColumn13.HeaderText = "Описание";
            gridViewTextBoxColumn13.Name = "columnDescription";
            gridViewTextBoxColumn13.Width = 266;
            gridViewTextBoxColumn14.EnableExpressionEditor = false;
            gridViewTextBoxColumn14.HeaderText = "Комментарий";
            gridViewTextBoxColumn14.Name = "columnComment";
            gridViewTextBoxColumn14.Width = 128;
            gridViewImageColumn1.EnableExpressionEditor = false;
            gridViewImageColumn1.HeaderText = "Картинка";
            gridViewImageColumn1.ImageLayout = System.Windows.Forms.ImageLayout.Zoom;
            gridViewImageColumn1.Name = "columnImage";
            gridViewImageColumn1.Width = 128;
            gridViewTextBoxColumn15.EnableExpressionEditor = false;
            gridViewTextBoxColumn15.HeaderText = "Путь";
            gridViewTextBoxColumn15.Name = "columnPath";
            gridViewTextBoxColumn15.Width = 115;
            gridViewCheckBoxColumn2.EnableExpressionEditor = false;
            gridViewCheckBoxColumn2.HeaderText = "Видимый";
            gridViewCheckBoxColumn2.MinWidth = 20;
            gridViewCheckBoxColumn2.Name = "columnVisibility";
            gridViewCheckBoxColumn2.Width = 57;
            gridViewCheckBoxColumn3.EnableExpressionEditor = false;
            gridViewCheckBoxColumn3.HeaderText = "Однократный";
            gridViewCheckBoxColumn3.MinWidth = 20;
            gridViewCheckBoxColumn3.Name = "columnSingleUse";
            gridViewCheckBoxColumn3.Width = 80;
            gridViewTextBoxColumn16.EnableExpressionEditor = false;
            gridViewTextBoxColumn16.HeaderText = "У кого есть";
            gridViewTextBoxColumn16.Name = "columnPersonsWithItem";
            this.gridViewItems.MasterTemplate.Columns.AddRange(new Telerik.WinControls.UI.GridViewDataColumn[] {
            gridViewTextBoxColumn11,
            gridViewTextBoxColumn12,
            gridViewTextBoxColumn13,
            gridViewTextBoxColumn14,
            gridViewImageColumn1,
            gridViewTextBoxColumn15,
            gridViewCheckBoxColumn2,
            gridViewCheckBoxColumn3,
            gridViewTextBoxColumn16});
            sortDescriptor3.PropertyName = "columnID";
            this.gridViewItems.MasterTemplate.SortDescriptors.AddRange(new Telerik.WinControls.Data.SortDescriptor[] {
            sortDescriptor3});
            this.gridViewItems.Name = "gridViewItems";
            this.gridViewItems.RightToLeft = System.Windows.Forms.RightToLeft.No;
            this.gridViewItems.Size = new System.Drawing.Size(1170, 465);
            this.gridViewItems.TabIndex = 1;
            this.gridViewItems.UserAddedRow += new Telerik.WinControls.UI.GridViewRowEventHandler(this.gridViewItems_UserAddedRow);
            this.gridViewItems.UserDeletedRow += new Telerik.WinControls.UI.GridViewRowEventHandler(this.gridViewItems_UserAddedRow);
            this.gridViewItems.CellDoubleClick += new Telerik.WinControls.UI.GridViewCellEventHandler(this.gridViewItems_CellDoubleClick);
            this.gridViewItems.CellValueChanged += new Telerik.WinControls.UI.GridViewCellEventHandler(this.gridViewItems_CellValueChanged);
            // 
            // commandBarItems
            // 
            this.commandBarItems.Dock = System.Windows.Forms.DockStyle.Top;
            this.commandBarItems.Location = new System.Drawing.Point(0, 0);
            this.commandBarItems.Name = "commandBarItems";
            this.commandBarItems.Rows.AddRange(new Telerik.WinControls.UI.CommandBarRowElement[] {
            this.commandBarRowItems});
            this.commandBarItems.Size = new System.Drawing.Size(1170, 45);
            this.commandBarItems.TabIndex = 2;
            this.commandBarItems.Text = "radCommandBar1";
            // 
            // commandBarRowItems
            // 
            this.commandBarRowItems.MinSize = new System.Drawing.Size(25, 25);
            this.commandBarRowItems.Strips.AddRange(new Telerik.WinControls.UI.CommandBarStripElement[] {
            this.commandBarStripItems});
            // 
            // commandBarStripItems
            // 
            this.commandBarStripItems.DisplayName = "Полоска Предметы";
            this.commandBarStripItems.Items.AddRange(new Telerik.WinControls.UI.RadCommandBarBaseItem[] {
            this.cmbCreateItem,
            this.cmbSaveItems,
            this.cmbEditItems});
            this.commandBarStripItems.Name = "commandBarStripElement1";
            // 
            // cmbCreateItem
            // 
            this.cmbCreateItem.AccessibleDescription = "Создать";
            this.cmbCreateItem.AccessibleName = "Создать";
            this.cmbCreateItem.DisplayName = "Создать предмет";
            this.cmbCreateItem.DrawFill = true;
            this.cmbCreateItem.DrawText = true;
            this.cmbCreateItem.Image = ((System.Drawing.Image)(resources.GetObject("cmbCreateItem.Image")));
            this.cmbCreateItem.Name = "cmbCreateItem";
            this.cmbCreateItem.Text = "Создать";
            this.cmbCreateItem.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
            this.cmbCreateItem.Visibility = Telerik.WinControls.ElementVisibility.Visible;
            this.cmbCreateItem.Click += new System.EventHandler(this.cmbCreateItem_Click);
            // 
            // cmbSaveItems
            // 
            this.cmbSaveItems.AccessibleDescription = "Сохранить";
            this.cmbSaveItems.AccessibleName = "Сохранить";
            this.cmbSaveItems.DisplayName = "Сохранить предметы";
            this.cmbSaveItems.DrawText = true;
            this.cmbSaveItems.Image = ((System.Drawing.Image)(resources.GetObject("cmbSaveItems.Image")));
            this.cmbSaveItems.Name = "cmbSaveItems";
            this.cmbSaveItems.Text = "Сохранить";
            this.cmbSaveItems.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
            this.cmbSaveItems.Visibility = Telerik.WinControls.ElementVisibility.Visible;
            this.cmbSaveItems.Click += new System.EventHandler(this.cmbSaveItems_Click);
            // 
            // cmbEditItems
            // 
            this.cmbEditItems.AccessibleDescription = "Редактировать";
            this.cmbEditItems.AccessibleName = "Редактировать";
            this.cmbEditItems.DisplayName = "Редактировать предмет";
            this.cmbEditItems.DrawText = true;
            this.cmbEditItems.Image = ((System.Drawing.Image)(resources.GetObject("cmbEditItems.Image")));
            this.cmbEditItems.Name = "cmbEditItems";
            this.cmbEditItems.Text = "Редактировать";
            this.cmbEditItems.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
            this.cmbEditItems.Visibility = Telerik.WinControls.ElementVisibility.Visible;
            this.cmbEditItems.Click += new System.EventHandler(this.cmbEditItems_Click);
            // 
            // pageRules
            // 
// TODO: Code generation for '' failed because of Exception 'Invalid Primitive Type: System.IntPtr. Consider using CodeObjectCreateExpression.'.
            this.pageRules.Controls.Add(this.rtbRules);
            this.pageRules.Controls.Add(this.commandBarRules);
            this.pageRules.Location = new System.Drawing.Point(10, 37);
            this.pageRules.Name = "pageRules";
            this.pageRules.Size = new System.Drawing.Size(1170, 510);
            this.pageRules.Text = "Правила";
            // 
            // rtbRules
            // 
            this.rtbRules.Dock = System.Windows.Forms.DockStyle.Fill;
            this.rtbRules.HyperlinkToolTipFormatString = null;
            this.rtbRules.Location = new System.Drawing.Point(0, 45);
            this.rtbRules.Name = "rtbRules";
            this.rtbRules.Size = new System.Drawing.Size(1170, 465);
            this.rtbRules.TabIndex = 1;
            // 
            // commandBarRules
            // 
            this.commandBarRules.Dock = System.Windows.Forms.DockStyle.Top;
            this.commandBarRules.Location = new System.Drawing.Point(0, 0);
            this.commandBarRules.Name = "commandBarRules";
            this.commandBarRules.Rows.AddRange(new Telerik.WinControls.UI.CommandBarRowElement[] {
            this.commandBarRowRules});
            this.commandBarRules.Size = new System.Drawing.Size(1170, 45);
            this.commandBarRules.TabIndex = 2;
            this.commandBarRules.Text = "radCommandBar1";
            // 
            // commandBarRowRules
            // 
            this.commandBarRowRules.MinSize = new System.Drawing.Size(25, 25);
            this.commandBarRowRules.Strips.AddRange(new Telerik.WinControls.UI.CommandBarStripElement[] {
            this.commandBarStripRules});
            // 
            // commandBarStripRules
            // 
            this.commandBarStripRules.DisplayName = "Полоса Правила";
            this.commandBarStripRules.Items.AddRange(new Telerik.WinControls.UI.RadCommandBarBaseItem[] {
            this.cmbSaveRules,
            this.cmbEditRules});
            this.commandBarStripRules.Name = "commandBarStripElement1";
            // 
            // cmbSaveRules
            // 
            this.cmbSaveRules.AccessibleDescription = "Сохранить";
            this.cmbSaveRules.AccessibleName = "Сохранить";
            this.cmbSaveRules.DisplayName = "Сохранить Правила";
            this.cmbSaveRules.DrawText = true;
            this.cmbSaveRules.Image = ((System.Drawing.Image)(resources.GetObject("cmbSaveRules.Image")));
            this.cmbSaveRules.Name = "cmbSaveRules";
            this.cmbSaveRules.Text = "Сохранить";
            this.cmbSaveRules.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
            this.cmbSaveRules.Visibility = Telerik.WinControls.ElementVisibility.Visible;
            this.cmbSaveRules.Click += new System.EventHandler(this.cmbSaveRules_Click);
            // 
            // cmbEditRules
            // 
            this.cmbEditRules.AccessibleDescription = "Редактировать";
            this.cmbEditRules.AccessibleName = "Редактировать";
            this.cmbEditRules.DisplayName = "Редактировать Правила";
            this.cmbEditRules.DrawText = true;
            this.cmbEditRules.Image = ((System.Drawing.Image)(resources.GetObject("cmbEditRules.Image")));
            this.cmbEditRules.Name = "cmbEditRules";
            this.cmbEditRules.Text = "Редактировать";
            this.cmbEditRules.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
            this.cmbEditRules.Visibility = Telerik.WinControls.ElementVisibility.Visible;
            this.cmbEditRules.Click += new System.EventHandler(this.cmbdEditRules_Click);
            // 
            // pageAuthorEvents
            // 
// TODO: Code generation for '' failed because of Exception 'Invalid Primitive Type: System.IntPtr. Consider using CodeObjectCreateExpression.'.
            this.pageAuthorEvents.Controls.Add(this.gridViewEvents);
            this.pageAuthorEvents.Controls.Add(this.commandBarEvents);
            this.pageAuthorEvents.Location = new System.Drawing.Point(10, 37);
            this.pageAuthorEvents.Name = "pageAuthorEvents";
            this.pageAuthorEvents.Size = new System.Drawing.Size(1170, 510);
            this.pageAuthorEvents.Text = "События";
            // 
            // gridViewEvents
            // 
            this.gridViewEvents.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(233)))), ((int)(((byte)(240)))), ((int)(((byte)(249)))));
            this.gridViewEvents.Cursor = System.Windows.Forms.Cursors.Default;
            this.gridViewEvents.Dock = System.Windows.Forms.DockStyle.Fill;
            this.gridViewEvents.Font = new System.Drawing.Font("Segoe UI", 8.25F);
            this.gridViewEvents.ForeColor = System.Drawing.Color.Black;
            this.gridViewEvents.ImeMode = System.Windows.Forms.ImeMode.NoControl;
            this.gridViewEvents.Location = new System.Drawing.Point(0, 45);
            // 
            // gridViewEvents
            // 
            this.gridViewEvents.MasterTemplate.AddNewRowPosition = Telerik.WinControls.UI.SystemRowPosition.Bottom;
            this.gridViewEvents.MasterTemplate.AutoGenerateColumns = false;
            gridViewTextBoxColumn17.EnableExpressionEditor = false;
            gridViewTextBoxColumn17.HeaderText = "ID";
            gridViewTextBoxColumn17.Name = "columnID";
            gridViewTextBoxColumn17.Width = 34;
            gridViewTextBoxColumn18.EnableExpressionEditor = false;
            gridViewTextBoxColumn18.HeaderText = "Описание";
            gridViewTextBoxColumn18.Name = "columnDescription";
            gridViewTextBoxColumn18.Width = 281;
            gridViewTextBoxColumn19.EnableExpressionEditor = false;
            gridViewTextBoxColumn19.HeaderText = "Условие наступления";
            gridViewTextBoxColumn19.Name = "columnPrecondition";
            gridViewTextBoxColumn19.Width = 260;
            gridViewDecimalColumn1.DecimalPlaces = 0;
            gridViewDecimalColumn1.EnableExpressionEditor = true;
            gridViewDecimalColumn1.HeaderText = "Время наступления, минут";
            gridViewDecimalColumn1.Maximum = new decimal(new int[] {
            300,
            0,
            0,
            0});
            gridViewDecimalColumn1.Minimum = new decimal(new int[] {
            0,
            0,
            0,
            0});
            gridViewDecimalColumn1.Name = "columnTime";
            gridViewDecimalColumn1.Step = new decimal(new int[] {
            5,
            0,
            0,
            0});
            gridViewDecimalColumn1.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
            gridViewDecimalColumn1.Width = 161;
            gridViewComboBoxColumn4.EnableExpressionEditor = false;
            gridViewComboBoxColumn4.HeaderText = "Тип события";
            gridViewComboBoxColumn4.Name = "columnEventType";
            gridViewComboBoxColumn4.Width = 144;
            this.gridViewEvents.MasterTemplate.Columns.AddRange(new Telerik.WinControls.UI.GridViewDataColumn[] {
            gridViewTextBoxColumn17,
            gridViewTextBoxColumn18,
            gridViewTextBoxColumn19,
            gridViewDecimalColumn1,
            gridViewComboBoxColumn4});
            this.gridViewEvents.Name = "gridViewEvents";
            this.gridViewEvents.RightToLeft = System.Windows.Forms.RightToLeft.No;
            this.gridViewEvents.Size = new System.Drawing.Size(1170, 465);
            this.gridViewEvents.TabIndex = 1;
            this.gridViewEvents.Text = "radGridView1";
            this.gridViewEvents.CellValueChanged += new Telerik.WinControls.UI.GridViewCellEventHandler(this.gridViewEvents_CellValueChanged);
            // 
            // commandBarEvents
            // 
            this.commandBarEvents.Dock = System.Windows.Forms.DockStyle.Top;
            this.commandBarEvents.Location = new System.Drawing.Point(0, 0);
            this.commandBarEvents.Name = "commandBarEvents";
            this.commandBarEvents.Rows.AddRange(new Telerik.WinControls.UI.CommandBarRowElement[] {
            this.commandBarRowEvents});
            this.commandBarEvents.Size = new System.Drawing.Size(1170, 45);
            this.commandBarEvents.TabIndex = 0;
            // 
            // commandBarRowEvents
            // 
            this.commandBarRowEvents.MinSize = new System.Drawing.Size(25, 25);
            this.commandBarRowEvents.Strips.AddRange(new Telerik.WinControls.UI.CommandBarStripElement[] {
            this.commandBarStripEvents});
            // 
            // commandBarStripEvents
            // 
            this.commandBarStripEvents.DisplayName = "Полоска События";
            this.commandBarStripEvents.Items.AddRange(new Telerik.WinControls.UI.RadCommandBarBaseItem[] {
            this.cmbSaveEvents,
            this.cmdEditEvents});
            this.commandBarStripEvents.Name = "commandBarStripElement1";
            // 
            // cmbSaveEvents
            // 
            this.cmbSaveEvents.AccessibleDescription = "Сохранить";
            this.cmbSaveEvents.AccessibleName = "Сохранить";
            this.cmbSaveEvents.DisplayName = "Сохранить События";
            this.cmbSaveEvents.DrawText = true;
            this.cmbSaveEvents.Image = ((System.Drawing.Image)(resources.GetObject("cmbSaveEvents.Image")));
            this.cmbSaveEvents.Name = "cmbSaveEvents";
            this.cmbSaveEvents.Text = "Сохранить";
            this.cmbSaveEvents.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
            this.cmbSaveEvents.Visibility = Telerik.WinControls.ElementVisibility.Visible;
            this.cmbSaveEvents.Click += new System.EventHandler(this.cmbSaveEvents_Click);
            // 
            // cmdEditEvents
            // 
            this.cmdEditEvents.AccessibleDescription = "Редактировать";
            this.cmdEditEvents.AccessibleName = "Редактировать";
            this.cmdEditEvents.DisplayName = "Редактировать События";
            this.cmdEditEvents.DrawText = true;
            this.cmdEditEvents.Image = ((System.Drawing.Image)(resources.GetObject("cmdEditEvents.Image")));
            this.cmdEditEvents.Name = "cmdEditEvents";
            this.cmdEditEvents.Text = "Редактировать";
            this.cmdEditEvents.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
            this.cmdEditEvents.Visibility = Telerik.WinControls.ElementVisibility.Visible;
            // 
            // statusStrip
            // 
            this.statusStrip.Location = new System.Drawing.Point(0, 578);
            this.statusStrip.Name = "statusStrip";
            this.statusStrip.Size = new System.Drawing.Size(1191, 22);
            this.statusStrip.TabIndex = 11;
            this.statusStrip.Text = "statusStrip1";
            // 
            // openImageFileDialog
            // 
            this.openImageFileDialog.DefaultExt = "bmp";
            this.openImageFileDialog.FileName = "openFileDialog1";
            this.openImageFileDialog.Filter = "Все файлы|*.*";
            this.openImageFileDialog.InitialDirectory = "d:\\src_2.0\\Launcher2_0\\res\\Launcher\\";
            this.openImageFileDialog.Tag = "Картинки|*.jpg|Картинки|*.png|Все файлы|*.*";
            // 
            // menuItemMain
            // 
            this.menuItemMain.AccessibleDescription = "Главное";
            this.menuItemMain.AccessibleName = "Главное";
            this.menuItemMain.Items.AddRange(new Telerik.WinControls.RadItem[] {
            this.menuItemLoad,
            this.menuItemSave,
            this.menuSeparator1,
            this.menuItemPrintForm,
            this.menuButtonWipeOutColumns});
            this.menuItemMain.Name = "menuItemMain";
            this.menuItemMain.Text = "Главное";
            this.menuItemMain.Visibility = Telerik.WinControls.ElementVisibility.Visible;
            // 
            // menuItemLoad
            // 
            this.menuItemLoad.AccessibleDescription = "Загрузить...";
            this.menuItemLoad.AccessibleName = "Загрузить...";
            this.menuItemLoad.Name = "menuItemLoad";
            this.menuItemLoad.Text = "Загрузить...";
            this.menuItemLoad.Visibility = Telerik.WinControls.ElementVisibility.Visible;
            this.menuItemLoad.Click += new System.EventHandler(this.menuItemLoad_Click);
            // 
            // menuItemSave
            // 
            this.menuItemSave.AccessibleDescription = "Сохранить...";
            this.menuItemSave.AccessibleName = "Сохранить...";
            this.menuItemSave.Name = "menuItemSave";
            this.menuItemSave.Text = "Сохранить...";
            this.menuItemSave.Visibility = Telerik.WinControls.ElementVisibility.Visible;
            this.menuItemSave.Click += new System.EventHandler(this.menuItemSave_Click);
            // 
            // menuSeparator1
            // 
            this.menuSeparator1.AccessibleDescription = "radMenuSeparatorItem1";
            this.menuSeparator1.AccessibleName = "radMenuSeparatorItem1";
            this.menuSeparator1.Name = "menuSeparator1";
            this.menuSeparator1.Text = "radMenuSeparatorItem1";
            this.menuSeparator1.Visibility = Telerik.WinControls.ElementVisibility.Visible;
            // 
            // menuItemPrintForm
            // 
            this.menuItemPrintForm.AccessibleDescription = "Печать...";
            this.menuItemPrintForm.AccessibleName = "Печать...";
            this.menuItemPrintForm.Name = "menuItemPrintForm";
            this.menuItemPrintForm.Text = "Печать...";
            this.menuItemPrintForm.Visibility = Telerik.WinControls.ElementVisibility.Visible;
            this.menuItemPrintForm.Click += new System.EventHandler(this.menuItemPrintForm_Click);
            // 
            // menuButtonWipeOutColumns
            // 
            this.menuButtonWipeOutColumns.AccessibleDescription = "Убрать лишнее";
            this.menuButtonWipeOutColumns.AccessibleName = "Убрать лишнее";
            // 
            // 
            // 
            this.menuButtonWipeOutColumns.ButtonElement.AccessibleDescription = "Убрать лишнее";
            this.menuButtonWipeOutColumns.ButtonElement.AccessibleName = "Убрать лишнее";
            this.menuButtonWipeOutColumns.Name = "menuButtonWipeOutColumns";
            this.menuButtonWipeOutColumns.Text = "Убрать лишнее";
            this.menuButtonWipeOutColumns.Visibility = Telerik.WinControls.ElementVisibility.Visible;
            this.menuButtonWipeOutColumns.Click += new System.EventHandler(this.menuButtonWipeOutColumns_Click);
            // 
            // openFileDialog
            // 
            this.openFileDialog.DefaultExt = "xml";
            this.openFileDialog.Filter = "Файл данных квеста|*.xml|TXT data|*.txt";
            // 
            // saveFileDialog
            // 
            this.saveFileDialog.DefaultExt = "xml";
            this.saveFileDialog.Filter = "Файл данных квеста|*.xml|TXT data|*.txt";
            // 
            // mainMenu
            // 
            this.mainMenu.Items.AddRange(new Telerik.WinControls.RadItem[] {
            this.menuItemMain});
            this.mainMenu.Location = new System.Drawing.Point(0, 0);
            this.mainMenu.Name = "mainMenu";
            this.mainMenu.Size = new System.Drawing.Size(1191, 20);
            this.mainMenu.TabIndex = 12;
            this.mainMenu.Text = "radMenu1";
            // 
            // cmbCreateAim
            // 
            this.cmbCreateAim.AccessibleDescription = "Создать";
            this.cmbCreateAim.AccessibleName = "Создать";
            this.cmbCreateAim.DisplayName = "commandBarButton1";
            this.cmbCreateAim.DrawText = true;
            this.cmbCreateAim.Image = ((System.Drawing.Image)(resources.GetObject("cmbCreateAim.Image")));
            this.cmbCreateAim.Name = "cmbCreateAim";
            this.cmbCreateAim.Text = "Создать";
            this.cmbCreateAim.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
            this.cmbCreateAim.Visibility = Telerik.WinControls.ElementVisibility.Visible;
            this.cmbCreateAim.Click += new System.EventHandler(this.cmbCreateAim_Click);
            // 
            // MainForm
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.ClientSize = new System.Drawing.Size(1191, 600);
            this.Controls.Add(this.mainPageView);
            this.Controls.Add(this.statusStrip);
            this.Controls.Add(this.mainMenu);
            this.Name = "MainForm";
            // 
            // 
            // 
            this.RootElement.ApplyShapeToControl = true;
            this.Text = "Редактор квестов";
            this.FormClosed += new System.Windows.Forms.FormClosedEventHandler(this.MainForm_FormClosed);
            this.Load += new System.EventHandler(this.MainForm_Load);
            ((System.ComponentModel.ISupportInitialize)(this.mainPageView)).EndInit();
            this.mainPageView.ResumeLayout(false);
            this.pagePrehistory.ResumeLayout(false);
            this.pagePrehistory.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.rtbPrehistory)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.commandBarPrehistory)).EndInit();
            this.pagePersons.ResumeLayout(false);
            this.pagePersons.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.gridViewPersons.MasterTemplate)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.gridViewPersons)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.commandBarPerson)).EndInit();
            this.pageAims.ResumeLayout(false);
            this.pageAims.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.gridViewAims.MasterTemplate)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.gridViewAims)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.commandBarAims)).EndInit();
            this.pageItems.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.pGridViewItems)).EndInit();
            this.pGridViewItems.ResumeLayout(false);
            this.pGridViewItems.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.gridViewItems.MasterTemplate)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.gridViewItems)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.commandBarItems)).EndInit();
            this.pageRules.ResumeLayout(false);
            this.pageRules.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.rtbRules)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.commandBarRules)).EndInit();
            this.pageAuthorEvents.ResumeLayout(false);
            this.pageAuthorEvents.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.gridViewEvents.MasterTemplate)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.gridViewEvents)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.commandBarEvents)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.mainMenu)).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 gridViewTextBoxColumn4 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewDateTimeColumn gridViewDateTimeColumn7 = new Telerik.WinControls.UI.GridViewDateTimeColumn();
            Telerik.WinControls.UI.GridViewDateTimeColumn gridViewDateTimeColumn8 = new Telerik.WinControls.UI.GridViewDateTimeColumn();
            Telerik.WinControls.UI.GridViewComboBoxColumn gridViewComboBoxColumn13 = new Telerik.WinControls.UI.GridViewComboBoxColumn();
            Telerik.WinControls.UI.GridViewComboBoxColumn gridViewComboBoxColumn14 = new Telerik.WinControls.UI.GridViewComboBoxColumn();
            Telerik.WinControls.UI.GridViewComboBoxColumn gridViewComboBoxColumn15 = new Telerik.WinControls.UI.GridViewComboBoxColumn();
            Telerik.WinControls.UI.GridViewComboBoxColumn gridViewComboBoxColumn16 = new Telerik.WinControls.UI.GridViewComboBoxColumn();
            Telerik.WinControls.UI.GridViewDecimalColumn gridViewDecimalColumn4 = new Telerik.WinControls.UI.GridViewDecimalColumn();
            this.radSplitContainer1 = new Telerik.WinControls.UI.RadSplitContainer();
            this.splitPanel1 = new Telerik.WinControls.UI.SplitPanel();
            this.radPanel1 = new Telerik.WinControls.UI.RadPanel();
            this.btnClearAll = new Telerik.WinControls.UI.RadButton();
            this.btnSaveGrid = new Telerik.WinControls.UI.RadButton();
            this.btnDisplayData = new Telerik.WinControls.UI.RadButton();
            this.cboType = new Telerik.WinControls.UI.RadComboBox();
            this.btnSearch = new Telerik.WinControls.UI.RadButton();
            this.txtCustomer = new Telerik.WinControls.UI.RadTextBox();
            this.cbDestination = new Telerik.WinControls.UI.RadComboBox();
            this.pickerTo = new Telerik.WinControls.UI.RadDateTimePicker();
            this.lblTo = new Telerik.WinControls.UI.RadLabel();
            this.lblPeriode = new Telerik.WinControls.UI.RadLabel();
            this.pickerFrom = new Telerik.WinControls.UI.RadDateTimePicker();
            this.lblDestination = new Telerik.WinControls.UI.RadLabel();
            this.lblCustomer = new Telerik.WinControls.UI.RadLabel();
            this.lblStuffing = new Telerik.WinControls.UI.RadLabel();
            this.splitPanel2 = new Telerik.WinControls.UI.SplitPanel();
            this.radGridView1 = new Telerik.WinControls.UI.RadGridView();
            ((System.ComponentModel.ISupportInitialize)(this.radSplitContainer1)).BeginInit();
            this.radSplitContainer1.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.splitPanel1)).BeginInit();
            this.splitPanel1.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.radPanel1)).BeginInit();
            this.radPanel1.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.btnClearAll)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.btnSaveGrid)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.btnDisplayData)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.cboType)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.btnSearch)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.txtCustomer)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.cbDestination)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.pickerTo)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.lblTo)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.lblPeriode)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.pickerFrom)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.lblDestination)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.lblCustomer)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.lblStuffing)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.splitPanel2)).BeginInit();
            this.splitPanel2.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.radGridView1)).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(676, 448);
            this.radSplitContainer1.TabIndex = 0;
            this.radSplitContainer1.TabStop = false;
            this.radSplitContainer1.Text = "radSplitContainer1";
            // 
            // splitPanel1
            // 
            this.splitPanel1.Controls.Add(this.radPanel1);
            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(676, 222);
            this.splitPanel1.TabIndex = 0;
            this.splitPanel1.TabStop = false;
            this.splitPanel1.Text = "splitPanel1";
            // 
            // radPanel1
            // 
            this.radPanel1.Controls.Add(this.btnClearAll);
            this.radPanel1.Controls.Add(this.btnSaveGrid);
            this.radPanel1.Controls.Add(this.btnDisplayData);
            this.radPanel1.Controls.Add(this.cboType);
            this.radPanel1.Controls.Add(this.btnSearch);
            this.radPanel1.Controls.Add(this.txtCustomer);
            this.radPanel1.Controls.Add(this.cbDestination);
            this.radPanel1.Controls.Add(this.pickerTo);
            this.radPanel1.Controls.Add(this.lblTo);
            this.radPanel1.Controls.Add(this.lblPeriode);
            this.radPanel1.Controls.Add(this.pickerFrom);
            this.radPanel1.Controls.Add(this.lblDestination);
            this.radPanel1.Controls.Add(this.lblCustomer);
            this.radPanel1.Controls.Add(this.lblStuffing);
            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(676, 222);
            this.radPanel1.TabIndex = 0;
            // 
            // btnClearAll
            // 
            this.btnClearAll.Location = new System.Drawing.Point(29, 128);
            this.btnClearAll.Name = "btnClearAll";
            this.btnClearAll.Size = new System.Drawing.Size(141, 22);
            this.btnClearAll.TabIndex = 44;
            this.btnClearAll.Text = "Clear All";
            this.btnClearAll.Click += new System.EventHandler(this.btnClearAll_Click);
            // 
            // btnSaveGrid
            // 
            this.btnSaveGrid.Location = new System.Drawing.Point(176, 128);
            this.btnSaveGrid.Name = "btnSaveGrid";
            this.btnSaveGrid.Size = new System.Drawing.Size(141, 22);
            this.btnSaveGrid.TabIndex = 43;
            this.btnSaveGrid.Text = "Save Record Grid";
            this.btnSaveGrid.Click += new System.EventHandler(this.btnSaveGrid_Click);
            // 
            // btnDisplayData
            // 
            this.btnDisplayData.Location = new System.Drawing.Point(323, 128);
            this.btnDisplayData.Name = "btnDisplayData";
            this.btnDisplayData.Size = new System.Drawing.Size(141, 22);
            this.btnDisplayData.TabIndex = 42;
            this.btnDisplayData.Text = "Display Data";
            this.btnDisplayData.Click += new System.EventHandler(this.btnDisplayData_Click);
            // 
            // cboType
            // 
            this.cboType.Location = new System.Drawing.Point(408, 32);
            this.cboType.Name = "cboType";
            // 
            // 
            // 
            this.cboType.RootElement.AutoSizeMode = Telerik.WinControls.RadAutoSizeMode.WrapAroundChildren;
            this.cboType.RootElement.StretchVertically = true;
            this.cboType.Size = new System.Drawing.Size(150, 20);
            this.cboType.TabIndex = 41;
            this.cboType.TabStop = false;
            this.cboType.Text = "-- Choose --";
            this.cboType.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.cboType_KeyPress);
            // 
            // btnSearch
            // 
            this.btnSearch.Image = global::VisitaJayaPerkasa.Properties.Resources.search_16;
            this.btnSearch.Location = new System.Drawing.Point(262, 26);
            this.btnSearch.Name = "btnSearch";
            this.btnSearch.Size = new System.Drawing.Size(54, 22);
            this.btnSearch.TabIndex = 40;
            this.btnSearch.Text = "Search";
            this.btnSearch.TextAlignment = System.Drawing.ContentAlignment.MiddleRight;
            this.btnSearch.Click += new System.EventHandler(this.btnSearch_Click);
            // 
            // txtCustomer
            // 
            this.txtCustomer.Enabled = false;
            this.txtCustomer.Location = new System.Drawing.Point(107, 26);
            this.txtCustomer.Name = "txtCustomer";
            this.txtCustomer.ReadOnly = true;
            this.txtCustomer.Size = new System.Drawing.Size(149, 20);
            this.txtCustomer.TabIndex = 39;
            this.txtCustomer.TabStop = false;
            // 
            // cbDestination
            // 
            this.cbDestination.Location = new System.Drawing.Point(106, 61);
            this.cbDestination.Name = "cbDestination";
            // 
            // 
            // 
            this.cbDestination.RootElement.AutoSizeMode = Telerik.WinControls.RadAutoSizeMode.WrapAroundChildren;
            this.cbDestination.RootElement.StretchVertically = true;
            this.cbDestination.Size = new System.Drawing.Size(150, 20);
            this.cbDestination.TabIndex = 38;
            this.cbDestination.TabStop = false;
            this.cbDestination.Text = "-- Choose --";
            this.cbDestination.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.cbDestination_KeyPress_1);
            // 
            // pickerTo
            // 
            this.pickerTo.AutoSize = true;
            this.pickerTo.Culture = new System.Globalization.CultureInfo("id-ID");
            this.pickerTo.Format = System.Windows.Forms.DateTimePickerFormat.Long;
            this.pickerTo.Location = new System.Drawing.Point(316, 95);
            this.pickerTo.MaxDate = new System.DateTime(9998, 12, 31, 0, 0, 0, 0);
            this.pickerTo.MinDate = new System.DateTime(1900, 1, 1, 0, 0, 0, 0);
            this.pickerTo.Name = "pickerTo";
            this.pickerTo.NullDate = new System.DateTime(1900, 1, 1, 0, 0, 0, 0);
            this.pickerTo.Size = new System.Drawing.Size(183, 22);
            this.pickerTo.TabIndex = 37;
            this.pickerTo.TabStop = false;
            this.pickerTo.Text = "radDateTimePicker2";
            this.pickerTo.Value = new System.DateTime(2011, 12, 20, 8, 27, 16, 140);
            // 
            // lblTo
            // 
            this.lblTo.Location = new System.Drawing.Point(294, 101);
            this.lblTo.Name = "lblTo";
            this.lblTo.Size = new System.Drawing.Size(16, 16);
            this.lblTo.TabIndex = 36;
            this.lblTo.Text = "to";
            // 
            // lblPeriode
            // 
            this.lblPeriode.Location = new System.Drawing.Point(29, 95);
            this.lblPeriode.Name = "lblPeriode";
            this.lblPeriode.Size = new System.Drawing.Size(45, 16);
            this.lblPeriode.TabIndex = 31;
            this.lblPeriode.Text = "Periode";
            // 
            // pickerFrom
            // 
            this.pickerFrom.AutoSize = true;
            this.pickerFrom.Culture = new System.Globalization.CultureInfo("id-ID");
            this.pickerFrom.Format = System.Windows.Forms.DateTimePickerFormat.Long;
            this.pickerFrom.Location = new System.Drawing.Point(105, 95);
            this.pickerFrom.MaxDate = new System.DateTime(9998, 12, 31, 0, 0, 0, 0);
            this.pickerFrom.MinDate = new System.DateTime(1900, 1, 1, 0, 0, 0, 0);
            this.pickerFrom.Name = "pickerFrom";
            this.pickerFrom.NullDate = new System.DateTime(1900, 1, 1, 0, 0, 0, 0);
            this.pickerFrom.Size = new System.Drawing.Size(183, 22);
            this.pickerFrom.TabIndex = 35;
            this.pickerFrom.TabStop = false;
            this.pickerFrom.Text = "radDateTimePicker1";
            this.pickerFrom.Value = new System.DateTime(2011, 12, 20, 8, 27, 16, 140);
            // 
            // lblDestination
            // 
            this.lblDestination.Location = new System.Drawing.Point(29, 61);
            this.lblDestination.Name = "lblDestination";
            this.lblDestination.Size = new System.Drawing.Size(63, 16);
            this.lblDestination.TabIndex = 34;
            this.lblDestination.Text = "Destination";
            // 
            // lblCustomer
            // 
            this.lblCustomer.Location = new System.Drawing.Point(29, 24);
            this.lblCustomer.Name = "lblCustomer";
            this.lblCustomer.Size = new System.Drawing.Size(55, 16);
            this.lblCustomer.TabIndex = 32;
            this.lblCustomer.Text = "Customer";
            // 
            // lblStuffing
            // 
            this.lblStuffing.Location = new System.Drawing.Point(342, 32);
            this.lblStuffing.Name = "lblStuffing";
            this.lblStuffing.Size = new System.Drawing.Size(31, 16);
            this.lblStuffing.TabIndex = 33;
            this.lblStuffing.Text = "Type";
            // 
            // splitPanel2
            // 
            this.splitPanel2.Controls.Add(this.radGridView1);
            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(676, 223);
            this.splitPanel2.TabIndex = 1;
            this.splitPanel2.TabStop = false;
            this.splitPanel2.Text = "splitPanel2";
            // 
            // radGridView1
            // 
            this.radGridView1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(191)))), ((int)(((byte)(219)))), ((int)(((byte)(254)))));
            this.radGridView1.Cursor = System.Windows.Forms.Cursors.Default;
            this.radGridView1.Dock = System.Windows.Forms.DockStyle.Fill;
            this.radGridView1.Enabled = false;
            this.radGridView1.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F);
            this.radGridView1.ForeColor = System.Drawing.SystemColors.ControlText;
            this.radGridView1.ImeMode = System.Windows.Forms.ImeMode.NoControl;
            this.radGridView1.Location = new System.Drawing.Point(0, 0);
            // 
            // 
            // 
            gridViewTextBoxColumn4.FieldAlias = "ID";
            gridViewTextBoxColumn4.FieldName = "ID";
            gridViewTextBoxColumn4.HeaderText = "ID";
            gridViewTextBoxColumn4.IsVisible = false;
            gridViewTextBoxColumn4.UniqueName = "ID";
            gridViewDateTimeColumn7.DataType = typeof(System.DateTime);
            gridViewDateTimeColumn7.FieldAlias = "DateFrom";
            gridViewDateTimeColumn7.FieldName = "DateFrom";
            gridViewDateTimeColumn7.FormatString = "{0:MM/dd/yyyy}";
            gridViewDateTimeColumn7.HeaderText = "Date From";
            gridViewDateTimeColumn7.UniqueName = "DateFrom";
            gridViewDateTimeColumn7.Width = 120;
            gridViewDateTimeColumn8.DataType = typeof(System.DateTime);
            gridViewDateTimeColumn8.FieldAlias = "DateTo";
            gridViewDateTimeColumn8.FieldName = "DateTo";
            gridViewDateTimeColumn8.FormatString = "{0:MM/dd/yyyy}";
            gridViewDateTimeColumn8.HeaderText = "Date To";
            gridViewDateTimeColumn8.UniqueName = "DateTo";
            gridViewDateTimeColumn8.Width = 120;
            gridViewComboBoxColumn13.DisplayMember = null;
            gridViewComboBoxColumn13.FieldAlias = "CustomerID";
            gridViewComboBoxColumn13.FieldName = "CustomerID";
            gridViewComboBoxColumn13.HeaderText = "Customer Name";
            gridViewComboBoxColumn13.IsVisible = false;
            gridViewComboBoxColumn13.UniqueName = "CustomerID";
            gridViewComboBoxColumn13.ValueMember = null;
            gridViewComboBoxColumn13.Width = 130;
            gridViewComboBoxColumn14.DisplayMember = null;
            gridViewComboBoxColumn14.FieldAlias = "Destination";
            gridViewComboBoxColumn14.FieldName = "Destination";
            gridViewComboBoxColumn14.HeaderText = "Destination";
            gridViewComboBoxColumn14.IsVisible = false;
            gridViewComboBoxColumn14.UniqueName = "Destination";
            gridViewComboBoxColumn14.ValueMember = null;
            gridViewComboBoxColumn14.Width = 120;
            gridViewComboBoxColumn15.DisplayMember = null;
            gridViewComboBoxColumn15.FieldAlias = "TypeID";
            gridViewComboBoxColumn15.FieldName = "TypeID";
            gridViewComboBoxColumn15.HeaderText = "Type";
            gridViewComboBoxColumn15.IsVisible = false;
            gridViewComboBoxColumn15.TextAlignment = System.Drawing.ContentAlignment.TopRight;
            gridViewComboBoxColumn15.UniqueName = "TypeID";
            gridViewComboBoxColumn15.ValueMember = null;
            gridViewComboBoxColumn15.Width = 100;
            gridViewComboBoxColumn16.DisplayMember = null;
            gridViewComboBoxColumn16.FieldAlias = "ConditionID";
            gridViewComboBoxColumn16.FieldName = "ConditionID";
            gridViewComboBoxColumn16.HeaderText = "Condition";
            gridViewComboBoxColumn16.UniqueName = "ConditionID";
            gridViewComboBoxColumn16.ValueMember = null;
            gridViewComboBoxColumn16.Width = 130;
            gridViewDecimalColumn4.DataType = typeof(decimal);
            gridViewDecimalColumn4.FieldAlias = "PriceCustomer";
            gridViewDecimalColumn4.FieldName = "PriceCustomer";
            gridViewDecimalColumn4.FormatString = "{0:c}";
            gridViewDecimalColumn4.HeaderText = "Price";
            gridViewDecimalColumn4.UniqueName = "PriceCustomer";
            gridViewDecimalColumn4.Width = 100;
            this.radGridView1.MasterGridViewTemplate.Columns.Add(gridViewTextBoxColumn4);
            this.radGridView1.MasterGridViewTemplate.Columns.Add(gridViewDateTimeColumn7);
            this.radGridView1.MasterGridViewTemplate.Columns.Add(gridViewDateTimeColumn8);
            this.radGridView1.MasterGridViewTemplate.Columns.Add(gridViewComboBoxColumn13);
            this.radGridView1.MasterGridViewTemplate.Columns.Add(gridViewComboBoxColumn14);
            this.radGridView1.MasterGridViewTemplate.Columns.Add(gridViewComboBoxColumn15);
            this.radGridView1.MasterGridViewTemplate.Columns.Add(gridViewComboBoxColumn16);
            this.radGridView1.MasterGridViewTemplate.Columns.Add(gridViewDecimalColumn4);
            this.radGridView1.Name = "radGridView1";
            this.radGridView1.RightToLeft = System.Windows.Forms.RightToLeft.No;
            this.radGridView1.Size = new System.Drawing.Size(676, 223);
            this.radGridView1.TabIndex = 0;
            // 
            // PriceListCustomer
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.Controls.Add(this.radSplitContainer1);
            this.Name = "PriceListCustomer";
            this.Size = new System.Drawing.Size(676, 448);
            ((System.ComponentModel.ISupportInitialize)(this.radSplitContainer1)).EndInit();
            this.radSplitContainer1.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.splitPanel1)).EndInit();
            this.splitPanel1.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.radPanel1)).EndInit();
            this.radPanel1.ResumeLayout(false);
            this.radPanel1.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.btnClearAll)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.btnSaveGrid)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.btnDisplayData)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.cboType)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.btnSearch)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.txtCustomer)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.cbDestination)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.pickerTo)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.lblTo)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.lblPeriode)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.pickerFrom)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.lblDestination)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.lblCustomer)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.lblStuffing)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.splitPanel2)).EndInit();
            this.splitPanel2.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.radGridView1)).EndInit();
            this.ResumeLayout(false);

        }
        /// <summary>
        /// Required method for Designer support - do not modify
        /// the contents of this method with the code editor.
        /// </summary>
        private void InitializeComponent()
        {
            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.GridViewComboBoxColumn gridViewComboBoxColumn2 = new Telerik.WinControls.UI.GridViewComboBoxColumn();
            Telerik.WinControls.UI.GridViewCommandColumn gridViewCommandColumn2 = new Telerik.WinControls.UI.GridViewCommandColumn();
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmUserManage));
            Telerik.WinControls.Data.SortDescriptor sortDescriptor2 = new Telerik.WinControls.Data.SortDescriptor();
            this.UserGridView = new Telerik.WinControls.UI.RadGridView();
            this.statusStrip1 = new System.Windows.Forms.StatusStrip();
            this.StatusLabel1 = new System.Windows.Forms.ToolStripStatusLabel();
            this.radGroupBox1 = new Telerik.WinControls.UI.RadGroupBox();
            this.telerikMetroTheme1 = new Telerik.WinControls.Themes.TelerikMetroTheme();
            ((System.ComponentModel.ISupportInitialize)(this.UserGridView)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.UserGridView.MasterTemplate)).BeginInit();
            this.statusStrip1.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.radGroupBox1)).BeginInit();
            this.radGroupBox1.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
            this.SuspendLayout();
            // 
            // UserGridView
            // 
            this.UserGridView.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(191)))), ((int)(((byte)(219)))), ((int)(((byte)(255)))));
            this.UserGridView.Cursor = System.Windows.Forms.Cursors.Default;
            this.UserGridView.Dock = System.Windows.Forms.DockStyle.Fill;
            this.UserGridView.Font = new System.Drawing.Font("Segoe UI", 8.25F);
            this.UserGridView.ForeColor = System.Drawing.Color.Black;
            this.UserGridView.ImeMode = System.Windows.Forms.ImeMode.NoControl;
            this.UserGridView.Location = new System.Drawing.Point(2, 18);
            // 
            // UserGridView
            // 
            this.UserGridView.MasterTemplate.AllowAddNewRow = false;
            this.UserGridView.MasterTemplate.AllowSearchRow = true;
            this.UserGridView.MasterTemplate.AutoGenerateColumns = false;
            this.UserGridView.MasterTemplate.AutoSizeColumnsMode = Telerik.WinControls.UI.GridViewAutoSizeColumnsMode.Fill;
            gridViewTextBoxColumn5.EnableExpressionEditor = false;
            gridViewTextBoxColumn5.FieldName = "ID";
            gridViewTextBoxColumn5.HeaderText = "ID";
            gridViewTextBoxColumn5.IsVisible = false;
            gridViewTextBoxColumn5.Name = "ID";
            gridViewTextBoxColumn5.SortOrder = Telerik.WinControls.UI.RadSortOrder.Ascending;
            gridViewTextBoxColumn5.Width = 51;
            gridViewTextBoxColumn6.EnableExpressionEditor = false;
            gridViewTextBoxColumn6.FieldName = "Employee.EmployeejobNumber";
            gridViewTextBoxColumn6.HeaderText = "الرقم الوظيفي";
            gridViewTextBoxColumn6.Name = "EmployeejobNumber";
            gridViewTextBoxColumn6.Width = 161;
            gridViewTextBoxColumn7.EnableExpressionEditor = false;
            gridViewTextBoxColumn7.FieldName = "Employee.EmployeeName";
            gridViewTextBoxColumn7.HeaderText = "اسم الموظف";
            gridViewTextBoxColumn7.Name = "EmployeeName";
            gridViewTextBoxColumn7.Width = 173;
            gridViewTextBoxColumn8.EnableExpressionEditor = false;
            gridViewTextBoxColumn8.FieldName = "UserName";
            gridViewTextBoxColumn8.HeaderText = "اسم المستخدم";
            gridViewTextBoxColumn8.Name = "UserName";
            gridViewTextBoxColumn8.Width = 219;
            gridViewComboBoxColumn2.EnableExpressionEditor = false;
            gridViewComboBoxColumn2.FieldName = "TypeUser";
            gridViewComboBoxColumn2.HeaderText = "نوع المستخدم";
            gridViewComboBoxColumn2.Name = "TypeUser";
            gridViewComboBoxColumn2.Width = 162;
            gridViewCommandColumn2.EnableExpressionEditor = false;
            gridViewCommandColumn2.HeaderText = "تعديل ";
            gridViewCommandColumn2.Image = ((System.Drawing.Image)(resources.GetObject("gridViewCommandColumn2.Image")));
            gridViewCommandColumn2.ImageLayout = System.Windows.Forms.ImageLayout.Center;
            gridViewCommandColumn2.MaxWidth = 45;
            gridViewCommandColumn2.MinWidth = 45;
            gridViewCommandColumn2.Name = "Savebtn";
            gridViewCommandColumn2.Width = 45;
            this.UserGridView.MasterTemplate.Columns.AddRange(new Telerik.WinControls.UI.GridViewDataColumn[] {
            gridViewTextBoxColumn5,
            gridViewTextBoxColumn6,
            gridViewTextBoxColumn7,
            gridViewTextBoxColumn8,
            gridViewComboBoxColumn2,
            gridViewCommandColumn2});
            this.UserGridView.MasterTemplate.EnableFiltering = true;
            sortDescriptor2.PropertyName = "ID";
            this.UserGridView.MasterTemplate.SortDescriptors.AddRange(new Telerik.WinControls.Data.SortDescriptor[] {
            sortDescriptor2});
            this.UserGridView.Name = "UserGridView";
            this.UserGridView.ReadOnly = true;
            this.UserGridView.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
            this.UserGridView.Size = new System.Drawing.Size(776, 440);
            this.UserGridView.TabIndex = 1;
            this.UserGridView.Text = "radGridView2";
            this.UserGridView.ThemeName = "TelerikMetro";
            this.UserGridView.CommandCellClick += new Telerik.WinControls.UI.CommandCellClickEventHandler(this.UserGridView_CommandCellClick);
            this.UserGridView.Click += new System.EventHandler(this.UserGridView_Click);
            // 
            // statusStrip1
            // 
            this.statusStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.StatusLabel1});
            this.statusStrip1.Location = new System.Drawing.Point(0, 460);
            this.statusStrip1.Name = "statusStrip1";
            this.statusStrip1.Size = new System.Drawing.Size(780, 22);
            this.statusStrip1.TabIndex = 2;
            this.statusStrip1.Text = "statusStrip1";
            // 
            // StatusLabel1
            // 
            this.StatusLabel1.Name = "StatusLabel1";
            this.StatusLabel1.Size = new System.Drawing.Size(12, 17);
            this.StatusLabel1.Text = "-";
            // 
            // radGroupBox1
            // 
            this.radGroupBox1.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
            this.radGroupBox1.Controls.Add(this.UserGridView);
            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.Size = new System.Drawing.Size(780, 460);
            this.radGroupBox1.TabIndex = 3;
            this.radGroupBox1.Text = "سجل المستخدمين";
            this.radGroupBox1.ThemeName = "TelerikMetro";
            // 
            // frmUserManage
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.ClientSize = new System.Drawing.Size(780, 482);
            this.Controls.Add(this.radGroupBox1);
            this.Controls.Add(this.statusStrip1);
            this.MaximizeBox = false;
            this.MaximumSize = new System.Drawing.Size(788, 517);
            this.MinimumSize = new System.Drawing.Size(788, 517);
            this.Name = "frmUserManage";
            this.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
            // 
            // 
            // 
            this.RootElement.ApplyShapeToControl = true;
            this.RootElement.MaxSize = new System.Drawing.Size(788, 517);
            this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
            this.Text = "ادارة المستخدمين";
            this.ThemeName = "TelerikMetro";
            this.FormClosed += new System.Windows.Forms.FormClosedEventHandler(this.frmUserManage_FormClosed);
            this.Load += new System.EventHandler(this.frmUserManage_Load);
            ((System.ComponentModel.ISupportInitialize)(this.UserGridView.MasterTemplate)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.UserGridView)).EndInit();
            this.statusStrip1.ResumeLayout(false);
            this.statusStrip1.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.radGroupBox1)).EndInit();
            this.radGroupBox1.ResumeLayout(false);
            ((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.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.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();
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Mante_Distribuidor));
            this.btLimpiarD = new Telerik.WinControls.UI.RadButton();
            this.btKam = new Telerik.WinControls.UI.RadButton();
            this.radGridView7 = new Telerik.WinControls.UI.RadGridView();
            ((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();
            ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
            this.SuspendLayout();
            // 
            // btLimpiarD
            // 
            this.btLimpiarD.Location = new System.Drawing.Point(92, 12);
            this.btLimpiarD.Name = "btLimpiarD";
            this.btLimpiarD.Size = new System.Drawing.Size(70, 24);
            this.btLimpiarD.TabIndex = 5;
            this.btLimpiarD.Text = "Limpiar";
            // 
            // btKam
            // 
            this.btKam.Location = new System.Drawing.Point(12, 12);
            this.btKam.Name = "btKam";
            this.btKam.Size = new System.Drawing.Size(74, 24);
            this.btKam.TabIndex = 4;
            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(132, 52);
            // 
            // radGridView7
            // 
            this.radGridView7.MasterTemplate.AllowColumnChooser = false;
            this.radGridView7.MasterTemplate.AllowColumnReorder = false;
            this.radGridView7.MasterTemplate.AllowColumnResize = false;
            this.radGridView7.MasterTemplate.AllowDragToGroup = false;
            this.radGridView7.MasterTemplate.AllowRowResize = false;
            this.radGridView7.MasterTemplate.AutoGenerateColumns = false;
            gridViewTextBoxColumn1.EnableExpressionEditor = false;
            gridViewTextBoxColumn1.FormatString = "";
            gridViewTextBoxColumn1.HeaderText = "Pais";
            gridViewTextBoxColumn1.Name = "clPais";
            gridViewTextBoxColumn1.Width = 54;
            gridViewTextBoxColumn2.EnableExpressionEditor = false;
            gridViewTextBoxColumn2.FormatString = "";
            gridViewTextBoxColumn2.HeaderText = "Nombre Distribuidor";
            gridViewTextBoxColumn2.Name = "clNomDis";
            gridViewTextBoxColumn2.Width = 161;
            gridViewTextBoxColumn3.EnableExpressionEditor = false;
            gridViewTextBoxColumn3.FormatString = "";
            gridViewTextBoxColumn3.HeaderText = "Nombre Corto";
            gridViewTextBoxColumn3.Name = "clNomCor";
            gridViewTextBoxColumn3.Width = 162;
            gridViewTextBoxColumn4.EnableExpressionEditor = false;
            gridViewTextBoxColumn4.FormatString = "";
            gridViewTextBoxColumn4.HeaderText = "KAM";
            gridViewTextBoxColumn4.Name = "clKam";
            gridViewTextBoxColumn4.Width = 136;
            gridViewComboBoxColumn1.DisplayMember = null;
            gridViewComboBoxColumn1.EnableExpressionEditor = false;
            gridViewComboBoxColumn1.FormatString = "";
            gridViewComboBoxColumn1.HeaderText = "Import";
            gridViewComboBoxColumn1.Name = "clImport";
            gridViewComboBoxColumn1.ValueMember = null;
            gridViewComboBoxColumn1.Width = 78;
            gridViewComboBoxColumn2.DisplayMember = null;
            gridViewComboBoxColumn2.EnableExpressionEditor = false;
            gridViewComboBoxColumn2.FormatString = "";
            gridViewComboBoxColumn2.HeaderText = "UseOnKPLs";
            gridViewComboBoxColumn2.Name = "clUse";
            gridViewComboBoxColumn2.ValueMember = null;
            gridViewComboBoxColumn2.Width = 116;
            gridViewComboBoxColumn3.DisplayMember = null;
            gridViewComboBoxColumn3.EnableExpressionEditor = false;
            gridViewComboBoxColumn3.FormatString = "";
            gridViewComboBoxColumn3.HeaderText = "Codigo Distribuidor";
            gridViewComboBoxColumn3.Name = "clCodDis";
            gridViewComboBoxColumn3.ValueMember = null;
            gridViewComboBoxColumn3.Width = 140;
            gridViewTextBoxColumn5.EnableExpressionEditor = false;
            gridViewTextBoxColumn5.FormatString = "";
            gridViewTextBoxColumn5.HeaderText = "GBA";
            gridViewTextBoxColumn5.Name = "clGBA";
            gridViewTextBoxColumn6.EnableExpressionEditor = false;
            gridViewTextBoxColumn6.FormatString = "";
            gridViewTextBoxColumn6.HeaderText = "Creacion";
            gridViewTextBoxColumn6.Name = "clCreacion";
            gridViewTextBoxColumn6.Width = 86;
            gridViewTextBoxColumn7.EnableExpressionEditor = false;
            gridViewTextBoxColumn7.FormatString = "";
            gridViewTextBoxColumn7.HeaderText = "Actualizacion";
            gridViewTextBoxColumn7.Name = "clActual";
            gridViewTextBoxColumn7.Width = 118;
            this.radGridView7.MasterTemplate.Columns.AddRange(new Telerik.WinControls.UI.GridViewDataColumn[] {
            gridViewTextBoxColumn1,
            gridViewTextBoxColumn2,
            gridViewTextBoxColumn3,
            gridViewTextBoxColumn4,
            gridViewComboBoxColumn1,
            gridViewComboBoxColumn2,
            gridViewComboBoxColumn3,
            gridViewTextBoxColumn5,
            gridViewTextBoxColumn6,
            gridViewTextBoxColumn7});
            this.radGridView7.MasterTemplate.EnableGrouping = false;
            this.radGridView7.Name = "radGridView7";
            this.radGridView7.RightToLeft = System.Windows.Forms.RightToLeft.No;
            this.radGridView7.ShowGroupPanel = false;
            this.radGridView7.Size = new System.Drawing.Size(1116, 732);
            this.radGridView7.TabIndex = 3;
            this.radGridView7.Text = "radGridView7";
            this.radGridView7.ThemeName = "TelerikMetroBlue";
            // 
            // Mante_Distribuidor
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.ClientSize = new System.Drawing.Size(1420, 796);
            this.Controls.Add(this.btLimpiarD);
            this.Controls.Add(this.btKam);
            this.Controls.Add(this.radGridView7);
            this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
            this.Name = "Mante_Distribuidor";
            // 
            // 
            // 
            this.RootElement.ApplyShapeToControl = true;
            this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
            this.Text = "Mantenimiento Distribuidor";
            this.ThemeName = "TelerikMetroBlue";
            this.WindowState = System.Windows.Forms.FormWindowState.Maximized;
            ((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();
            ((System.ComponentModel.ISupportInitialize)(this)).EndInit();
            this.ResumeLayout(false);

        }
        /// <summary> 
        /// Required method for Designer support - do not modify 
        /// the contents of this method with the code editor.
        /// </summary>
        private void InitializeComponent()
        {
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn2 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewDateTimeColumn gridViewDateTimeColumn3 = new Telerik.WinControls.UI.GridViewDateTimeColumn();
            Telerik.WinControls.UI.GridViewDateTimeColumn gridViewDateTimeColumn4 = new Telerik.WinControls.UI.GridViewDateTimeColumn();
            Telerik.WinControls.UI.GridViewComboBoxColumn gridViewComboBoxColumn8 = new Telerik.WinControls.UI.GridViewComboBoxColumn();
            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.GridViewComboBoxColumn gridViewComboBoxColumn12 = new Telerik.WinControls.UI.GridViewComboBoxColumn();
            Telerik.WinControls.UI.GridViewComboBoxColumn gridViewComboBoxColumn13 = new Telerik.WinControls.UI.GridViewComboBoxColumn();
            Telerik.WinControls.UI.GridViewDecimalColumn gridViewDecimalColumn4 = new Telerik.WinControls.UI.GridViewDecimalColumn();
            Telerik.WinControls.UI.GridViewComboBoxColumn gridViewComboBoxColumn14 = new Telerik.WinControls.UI.GridViewComboBoxColumn();
            Telerik.WinControls.UI.GridViewDecimalColumn gridViewDecimalColumn5 = new Telerik.WinControls.UI.GridViewDecimalColumn();
            Telerik.WinControls.UI.GridViewDecimalColumn gridViewDecimalColumn6 = new Telerik.WinControls.UI.GridViewDecimalColumn();
            Telerik.WinControls.UI.GridSortField gridSortField2 = new Telerik.WinControls.UI.GridSortField();
            this.radSplitContainer1 = new Telerik.WinControls.UI.RadSplitContainer();
            this.splitPanel1 = new Telerik.WinControls.UI.SplitPanel();
            this.radPanel1 = new Telerik.WinControls.UI.RadPanel();
            this.cbRecipientDisplay = new Telerik.WinControls.UI.RadCheckBox();
            this.cbDislayAll = new Telerik.WinControls.UI.RadCheckBox();
            this.btnClearAll = new Telerik.WinControls.UI.RadButton();
            this.btnSaveGrid = new Telerik.WinControls.UI.RadButton();
            this.radButton2 = new Telerik.WinControls.UI.RadButton();
            this.cboStuffingPlace = new Telerik.WinControls.UI.RadComboBox();
            this.cboRecipient = new Telerik.WinControls.UI.RadComboBox();
            this.btnSearch = new Telerik.WinControls.UI.RadButton();
            this.txtCustomer = new Telerik.WinControls.UI.RadTextBox();
            this.cbDestination = new Telerik.WinControls.UI.RadComboBox();
            this.cbSupplier = new Telerik.WinControls.UI.RadComboBox();
            this.cboTypeSupplier = new Telerik.WinControls.UI.RadComboBox();
            this.radLabel1 = new Telerik.WinControls.UI.RadLabel();
            this.pickerTo = new Telerik.WinControls.UI.RadDateTimePicker();
            this.radLabel2 = new Telerik.WinControls.UI.RadLabel();
            this.lblTo = new Telerik.WinControls.UI.RadLabel();
            this.lblPeriode = new Telerik.WinControls.UI.RadLabel();
            this.pickerFrom = new Telerik.WinControls.UI.RadDateTimePicker();
            this.lblRecipient = new Telerik.WinControls.UI.RadLabel();
            this.lblDestination = new Telerik.WinControls.UI.RadLabel();
            this.lblCustomer = new Telerik.WinControls.UI.RadLabel();
            this.lblStuffing = new Telerik.WinControls.UI.RadLabel();
            this.splitPanel2 = new Telerik.WinControls.UI.SplitPanel();
            this.PriceListGridView = new Telerik.WinControls.UI.RadGridView();
            ((System.ComponentModel.ISupportInitialize)(this.radSplitContainer1)).BeginInit();
            this.radSplitContainer1.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.splitPanel1)).BeginInit();
            this.splitPanel1.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.radPanel1)).BeginInit();
            this.radPanel1.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.cbRecipientDisplay)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.cbDislayAll)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.btnClearAll)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.btnSaveGrid)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radButton2)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.cboStuffingPlace)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.cboRecipient)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.btnSearch)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.txtCustomer)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.cbDestination)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.cbSupplier)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.cboTypeSupplier)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.pickerTo)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel2)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.lblTo)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.lblPeriode)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.pickerFrom)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.lblRecipient)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.lblDestination)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.lblCustomer)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.lblStuffing)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.splitPanel2)).BeginInit();
            this.splitPanel2.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.PriceListGridView)).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(932, 430);
            this.radSplitContainer1.TabIndex = 0;
            this.radSplitContainer1.TabStop = false;
            this.radSplitContainer1.Text = "radSplitContainer1";
            // 
            // splitPanel1
            // 
            this.splitPanel1.Controls.Add(this.radPanel1);
            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(932, 268);
            this.splitPanel1.SizeInfo.AutoSizeScale = new System.Drawing.SizeF(0F, 0.1276347F);
            this.splitPanel1.SizeInfo.SplitterCorrection = new System.Drawing.Size(0, 54);
            this.splitPanel1.TabIndex = 0;
            this.splitPanel1.TabStop = false;
            this.splitPanel1.Text = "splitPanel1";
            // 
            // radPanel1
            // 
            this.radPanel1.Controls.Add(this.cbRecipientDisplay);
            this.radPanel1.Controls.Add(this.cbDislayAll);
            this.radPanel1.Controls.Add(this.btnClearAll);
            this.radPanel1.Controls.Add(this.btnSaveGrid);
            this.radPanel1.Controls.Add(this.radButton2);
            this.radPanel1.Controls.Add(this.cboStuffingPlace);
            this.radPanel1.Controls.Add(this.cboRecipient);
            this.radPanel1.Controls.Add(this.btnSearch);
            this.radPanel1.Controls.Add(this.txtCustomer);
            this.radPanel1.Controls.Add(this.cbDestination);
            this.radPanel1.Controls.Add(this.cbSupplier);
            this.radPanel1.Controls.Add(this.cboTypeSupplier);
            this.radPanel1.Controls.Add(this.radLabel1);
            this.radPanel1.Controls.Add(this.pickerTo);
            this.radPanel1.Controls.Add(this.radLabel2);
            this.radPanel1.Controls.Add(this.lblTo);
            this.radPanel1.Controls.Add(this.lblPeriode);
            this.radPanel1.Controls.Add(this.pickerFrom);
            this.radPanel1.Controls.Add(this.lblRecipient);
            this.radPanel1.Controls.Add(this.lblDestination);
            this.radPanel1.Controls.Add(this.lblCustomer);
            this.radPanel1.Controls.Add(this.lblStuffing);
            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(932, 268);
            this.radPanel1.TabIndex = 0;
            // 
            // cbRecipientDisplay
            // 
            this.cbRecipientDisplay.Location = new System.Drawing.Point(560, 67);
            this.cbRecipientDisplay.Name = "cbRecipientDisplay";
            this.cbRecipientDisplay.Size = new System.Drawing.Size(136, 18);
            this.cbRecipientDisplay.TabIndex = 35;
            this.cbRecipientDisplay.Text = "Display All Recipient";
            this.cbRecipientDisplay.Visible = false;
            this.cbRecipientDisplay.ToggleStateChanged += new Telerik.WinControls.UI.StateChangedEventHandler(this.cbRecipient_ToggleStateChanged);
            // 
            // cbDislayAll
            // 
            this.cbDislayAll.Location = new System.Drawing.Point(619, 35);
            this.cbDislayAll.Name = "cbDislayAll";
            this.cbDislayAll.Size = new System.Drawing.Size(136, 18);
            this.cbDislayAll.TabIndex = 34;
            this.cbDislayAll.Text = "Display All Customer";
            this.cbDislayAll.ToggleStateChanged += new Telerik.WinControls.UI.StateChangedEventHandler(this.cbDislayAll_ToggleStateChanged);
            // 
            // btnClearAll
            // 
            this.btnClearAll.Location = new System.Drawing.Point(77, 174);
            this.btnClearAll.Name = "btnClearAll";
            this.btnClearAll.Size = new System.Drawing.Size(141, 22);
            this.btnClearAll.TabIndex = 33;
            this.btnClearAll.Text = "Clear All";
            this.btnClearAll.Click += new System.EventHandler(this.btnClearAll_Click);
            // 
            // btnSaveGrid
            // 
            this.btnSaveGrid.Location = new System.Drawing.Point(224, 174);
            this.btnSaveGrid.Name = "btnSaveGrid";
            this.btnSaveGrid.Size = new System.Drawing.Size(141, 22);
            this.btnSaveGrid.TabIndex = 32;
            this.btnSaveGrid.Text = "Save Record Grid";
            this.btnSaveGrid.Click += new System.EventHandler(this.btnSaveGrid_Click);
            // 
            // radButton2
            // 
            this.radButton2.Location = new System.Drawing.Point(371, 174);
            this.radButton2.Name = "radButton2";
            this.radButton2.Size = new System.Drawing.Size(141, 22);
            this.radButton2.TabIndex = 31;
            this.radButton2.Text = "Display Data";
            this.radButton2.Click += new System.EventHandler(this.radButton2_Click);
            // 
            // cboStuffingPlace
            // 
            this.cboStuffingPlace.Location = new System.Drawing.Point(404, 101);
            this.cboStuffingPlace.Name = "cboStuffingPlace";
            // 
            // 
            // 
            this.cboStuffingPlace.RootElement.AutoSizeMode = Telerik.WinControls.RadAutoSizeMode.WrapAroundChildren;
            this.cboStuffingPlace.RootElement.StretchVertically = true;
            this.cboStuffingPlace.Size = new System.Drawing.Size(150, 20);
            this.cboStuffingPlace.TabIndex = 30;
            this.cboStuffingPlace.TabStop = false;
            this.cboStuffingPlace.Text = "-- Choose --";
            this.cboStuffingPlace.Visible = false;
            this.cboStuffingPlace.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.cboStuffingPlace_KeyPress);
            // 
            // cboRecipient
            // 
            this.cboRecipient.Location = new System.Drawing.Point(404, 65);
            this.cboRecipient.Name = "cboRecipient";
            // 
            // 
            // 
            this.cboRecipient.RootElement.AutoSizeMode = Telerik.WinControls.RadAutoSizeMode.WrapAroundChildren;
            this.cboRecipient.RootElement.StretchVertically = true;
            this.cboRecipient.Size = new System.Drawing.Size(150, 20);
            this.cboRecipient.TabIndex = 29;
            this.cboRecipient.TabStop = false;
            this.cboRecipient.Text = "-- Choose --";
            this.cboRecipient.Visible = false;
            this.cboRecipient.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.cboRecipient_KeyPress);
            // 
            // btnSearch
            // 
            this.btnSearch.Image = global::VisitaJayaPerkasa.Properties.Resources.search_16;
            this.btnSearch.Location = new System.Drawing.Point(559, 33);
            this.btnSearch.Name = "btnSearch";
            this.btnSearch.Size = new System.Drawing.Size(54, 22);
            this.btnSearch.TabIndex = 28;
            this.btnSearch.Text = "Search";
            this.btnSearch.TextAlignment = System.Drawing.ContentAlignment.MiddleRight;
            this.btnSearch.Visible = false;
            this.btnSearch.Click += new System.EventHandler(this.btnSearch_Click);
            // 
            // txtCustomer
            // 
            this.txtCustomer.Enabled = false;
            this.txtCustomer.Location = new System.Drawing.Point(404, 33);
            this.txtCustomer.Name = "txtCustomer";
            this.txtCustomer.ReadOnly = true;
            this.txtCustomer.Size = new System.Drawing.Size(150, 20);
            this.txtCustomer.TabIndex = 27;
            this.txtCustomer.TabStop = false;
            this.txtCustomer.Visible = false;
            // 
            // cbDestination
            // 
            this.cbDestination.Location = new System.Drawing.Point(128, 101);
            this.cbDestination.Name = "cbDestination";
            // 
            // 
            // 
            this.cbDestination.RootElement.AutoSizeMode = Telerik.WinControls.RadAutoSizeMode.WrapAroundChildren;
            this.cbDestination.RootElement.StretchVertically = true;
            this.cbDestination.Size = new System.Drawing.Size(150, 20);
            this.cbDestination.TabIndex = 26;
            this.cbDestination.TabStop = false;
            this.cbDestination.Text = "-- Choose --";
            this.cbDestination.Visible = false;
            this.cbDestination.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.cbDestination_KeyPress);
            // 
            // cbSupplier
            // 
            this.cbSupplier.Location = new System.Drawing.Point(129, 67);
            this.cbSupplier.Name = "cbSupplier";
            // 
            // 
            // 
            this.cbSupplier.RootElement.AutoSizeMode = Telerik.WinControls.RadAutoSizeMode.WrapAroundChildren;
            this.cbSupplier.RootElement.StretchVertically = true;
            this.cbSupplier.Size = new System.Drawing.Size(150, 20);
            this.cbSupplier.TabIndex = 25;
            this.cbSupplier.TabStop = false;
            this.cbSupplier.Text = "-- Choose --";
            this.cbSupplier.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.cbSupplier_KeyPress);
            // 
            // cboTypeSupplier
            // 
            this.cboTypeSupplier.Location = new System.Drawing.Point(129, 31);
            this.cboTypeSupplier.Name = "cboTypeSupplier";
            // 
            // 
            // 
            this.cboTypeSupplier.RootElement.AutoSizeMode = Telerik.WinControls.RadAutoSizeMode.WrapAroundChildren;
            this.cboTypeSupplier.RootElement.StretchVertically = true;
            this.cboTypeSupplier.Size = new System.Drawing.Size(150, 20);
            this.cboTypeSupplier.TabIndex = 24;
            this.cboTypeSupplier.TabStop = false;
            this.cboTypeSupplier.Text = "-- Choose --";
            this.cboTypeSupplier.SelectedValueChanged += new System.EventHandler(this.cboTypeSupplier_SelectedValueChanged);
            this.cboTypeSupplier.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.cboTypeSupplier_KeyPress);
            // 
            // radLabel1
            // 
            this.radLabel1.Location = new System.Drawing.Point(21, 31);
            this.radLabel1.Name = "radLabel1";
            this.radLabel1.Size = new System.Drawing.Size(87, 16);
            this.radLabel1.TabIndex = 14;
            this.radLabel1.Text = "Type of supplier";
            // 
            // pickerTo
            // 
            this.pickerTo.AutoSize = true;
            this.pickerTo.Culture = new System.Globalization.CultureInfo("id-ID");
            this.pickerTo.Format = System.Windows.Forms.DateTimePickerFormat.Long;
            this.pickerTo.Location = new System.Drawing.Point(308, 137);
            this.pickerTo.MaxDate = new System.DateTime(9998, 12, 31, 0, 0, 0, 0);
            this.pickerTo.MinDate = new System.DateTime(1900, 1, 1, 0, 0, 0, 0);
            this.pickerTo.Name = "pickerTo";
            this.pickerTo.NullDate = new System.DateTime(1900, 1, 1, 0, 0, 0, 0);
            this.pickerTo.Size = new System.Drawing.Size(183, 22);
            this.pickerTo.TabIndex = 23;
            this.pickerTo.TabStop = false;
            this.pickerTo.Text = "radDateTimePicker2";
            this.pickerTo.Value = new System.DateTime(2011, 12, 20, 8, 27, 16, 140);
            // 
            // radLabel2
            // 
            this.radLabel2.Location = new System.Drawing.Point(21, 65);
            this.radLabel2.Name = "radLabel2";
            this.radLabel2.Size = new System.Drawing.Size(81, 16);
            this.radLabel2.TabIndex = 18;
            this.radLabel2.Text = "Supplier Name";
            // 
            // lblTo
            // 
            this.lblTo.Location = new System.Drawing.Point(286, 143);
            this.lblTo.Name = "lblTo";
            this.lblTo.Size = new System.Drawing.Size(16, 16);
            this.lblTo.TabIndex = 22;
            this.lblTo.Text = "to";
            // 
            // lblPeriode
            // 
            this.lblPeriode.Location = new System.Drawing.Point(21, 137);
            this.lblPeriode.Name = "lblPeriode";
            this.lblPeriode.Size = new System.Drawing.Size(45, 16);
            this.lblPeriode.TabIndex = 16;
            this.lblPeriode.Text = "Periode";
            // 
            // pickerFrom
            // 
            this.pickerFrom.AutoSize = true;
            this.pickerFrom.Culture = new System.Globalization.CultureInfo("id-ID");
            this.pickerFrom.Format = System.Windows.Forms.DateTimePickerFormat.Long;
            this.pickerFrom.Location = new System.Drawing.Point(97, 137);
            this.pickerFrom.MaxDate = new System.DateTime(9998, 12, 31, 0, 0, 0, 0);
            this.pickerFrom.MinDate = new System.DateTime(1900, 1, 1, 0, 0, 0, 0);
            this.pickerFrom.Name = "pickerFrom";
            this.pickerFrom.NullDate = new System.DateTime(1900, 1, 1, 0, 0, 0, 0);
            this.pickerFrom.Size = new System.Drawing.Size(183, 22);
            this.pickerFrom.TabIndex = 21;
            this.pickerFrom.TabStop = false;
            this.pickerFrom.Text = "radDateTimePicker1";
            this.pickerFrom.Value = new System.DateTime(2011, 12, 20, 8, 27, 16, 140);
            // 
            // lblRecipient
            // 
            this.lblRecipient.Location = new System.Drawing.Point(327, 67);
            this.lblRecipient.Name = "lblRecipient";
            this.lblRecipient.Size = new System.Drawing.Size(54, 16);
            this.lblRecipient.TabIndex = 15;
            this.lblRecipient.Text = "Recipient";
            this.lblRecipient.Visible = false;
            // 
            // lblDestination
            // 
            this.lblDestination.Location = new System.Drawing.Point(21, 103);
            this.lblDestination.Name = "lblDestination";
            this.lblDestination.Size = new System.Drawing.Size(63, 16);
            this.lblDestination.TabIndex = 20;
            this.lblDestination.Text = "Destination";
            this.lblDestination.Visible = false;
            // 
            // lblCustomer
            // 
            this.lblCustomer.Location = new System.Drawing.Point(326, 31);
            this.lblCustomer.Name = "lblCustomer";
            this.lblCustomer.Size = new System.Drawing.Size(55, 16);
            this.lblCustomer.TabIndex = 17;
            this.lblCustomer.Text = "Customer";
            this.lblCustomer.Visible = false;
            // 
            // lblStuffing
            // 
            this.lblStuffing.Location = new System.Drawing.Point(327, 103);
            this.lblStuffing.Name = "lblStuffing";
            this.lblStuffing.Size = new System.Drawing.Size(76, 16);
            this.lblStuffing.TabIndex = 19;
            this.lblStuffing.Text = "Stuffing Place";
            this.lblStuffing.Visible = false;
            // 
            // splitPanel2
            // 
            this.splitPanel2.Controls.Add(this.PriceListGridView);
            this.splitPanel2.Location = new System.Drawing.Point(0, 271);
            this.splitPanel2.Name = "splitPanel2";
            // 
            // 
            // 
            this.splitPanel2.RootElement.MinSize = new System.Drawing.Size(25, 25);
            this.splitPanel2.Size = new System.Drawing.Size(932, 159);
            this.splitPanel2.SizeInfo.AutoSizeScale = new System.Drawing.SizeF(0F, -0.1276347F);
            this.splitPanel2.SizeInfo.SplitterCorrection = new System.Drawing.Size(0, -54);
            this.splitPanel2.TabIndex = 1;
            this.splitPanel2.TabStop = false;
            this.splitPanel2.Text = "splitPanel2";
            // 
            // PriceListGridView
            // 
            this.PriceListGridView.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(191)))), ((int)(((byte)(219)))), ((int)(((byte)(254)))));
            this.PriceListGridView.Cursor = System.Windows.Forms.Cursors.Default;
            this.PriceListGridView.Dock = System.Windows.Forms.DockStyle.Fill;
            this.PriceListGridView.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F);
            this.PriceListGridView.ForeColor = System.Drawing.SystemColors.ControlText;
            this.PriceListGridView.ImeMode = System.Windows.Forms.ImeMode.NoControl;
            this.PriceListGridView.Location = new System.Drawing.Point(0, 0);
            // 
            // 
            // 
            gridViewTextBoxColumn2.FieldAlias = "ID";
            gridViewTextBoxColumn2.FieldName = "ID";
            gridViewTextBoxColumn2.HeaderText = "ID";
            gridViewTextBoxColumn2.IsVisible = false;
            gridViewTextBoxColumn2.UniqueName = "ID";
            gridViewDateTimeColumn3.DataType = typeof(System.DateTime);
            gridViewDateTimeColumn3.FieldAlias = "dateFrom";
            gridViewDateTimeColumn3.FieldName = "dateFrom";
            gridViewDateTimeColumn3.FormatString = "{0:MM/dd/yyyy}";
            gridViewDateTimeColumn3.HeaderText = "Date From";
            gridViewDateTimeColumn3.MinWidth = 6;
            gridViewDateTimeColumn3.UniqueName = "dateFrom";
            gridViewDateTimeColumn3.Width = 100;
            gridViewDateTimeColumn4.DataType = typeof(System.DateTime);
            gridViewDateTimeColumn4.FieldAlias = "dateTo";
            gridViewDateTimeColumn4.FieldName = "dateTo";
            gridViewDateTimeColumn4.FormatString = "{0:MM/dd/yyyy}";
            gridViewDateTimeColumn4.HeaderText = "Date To";
            gridViewDateTimeColumn4.UniqueName = "dateTo";
            gridViewDateTimeColumn4.Width = 100;
            gridViewComboBoxColumn8.DisplayMember = null;
            gridViewComboBoxColumn8.FieldAlias = "supplier";
            gridViewComboBoxColumn8.FieldName = "supplier";
            gridViewComboBoxColumn8.HeaderText = "Supplier Name";
            gridViewComboBoxColumn8.UniqueName = "supplier";
            gridViewComboBoxColumn8.ValueMember = null;
            gridViewComboBoxColumn8.Width = 120;
            gridViewComboBoxColumn9.DisplayMember = null;
            gridViewComboBoxColumn9.FieldAlias = "column2";
            gridViewComboBoxColumn9.FieldName = "tujuan";
            gridViewComboBoxColumn9.HeaderText = "Tujuan";
            gridViewComboBoxColumn9.UniqueName = "tujuan";
            gridViewComboBoxColumn9.ValueMember = null;
            gridViewComboBoxColumn9.Width = 100;
            gridViewComboBoxColumn10.DisplayMember = null;
            gridViewComboBoxColumn10.FieldAlias = "column3";
            gridViewComboBoxColumn10.FieldName = "type";
            gridViewComboBoxColumn10.HeaderText = "Type";
            gridViewComboBoxColumn10.UniqueName = "type";
            gridViewComboBoxColumn10.ValueMember = null;
            gridViewComboBoxColumn10.Width = 100;
            gridViewComboBoxColumn11.DisplayMember = null;
            gridViewComboBoxColumn11.FieldAlias = "column4";
            gridViewComboBoxColumn11.FieldName = "condition";
            gridViewComboBoxColumn11.HeaderText = "Condition";
            gridViewComboBoxColumn11.UniqueName = "condition";
            gridViewComboBoxColumn11.ValueMember = null;
            gridViewComboBoxColumn11.Width = 100;
            gridViewComboBoxColumn12.DisplayMember = null;
            gridViewComboBoxColumn12.FieldAlias = "stuffing";
            gridViewComboBoxColumn12.FieldName = "stuffing";
            gridViewComboBoxColumn12.HeaderText = "Stuffing Place";
            gridViewComboBoxColumn12.UniqueName = "stuffing";
            gridViewComboBoxColumn12.ValueMember = null;
            gridViewComboBoxColumn12.Width = 130;
            gridViewComboBoxColumn13.DisplayMember = null;
            gridViewComboBoxColumn13.FieldAlias = "column1";
            gridViewComboBoxColumn13.FieldName = "recipient1";
            gridViewComboBoxColumn13.HeaderText = "Recipient";
            gridViewComboBoxColumn13.UniqueName = "recipient1";
            gridViewComboBoxColumn13.ValueMember = null;
            gridViewComboBoxColumn13.Width = 120;
            gridViewDecimalColumn4.DataType = typeof(decimal);
            gridViewDecimalColumn4.DecimalPlaces = 0;
            gridViewDecimalColumn4.FieldAlias = "column5";
            gridViewDecimalColumn4.FieldName = "price_supplier";
            gridViewDecimalColumn4.FormatInfo = new System.Globalization.CultureInfo("ii-CN");
            gridViewDecimalColumn4.FormatString = "{0:c}";
            gridViewDecimalColumn4.HeaderText = "Harga Supplier";
            gridViewDecimalColumn4.ThousandsSeparator = true;
            gridViewDecimalColumn4.UniqueName = "price_supplier";
            gridViewDecimalColumn4.Width = 120;
            gridViewComboBoxColumn14.DisplayMember = null;
            gridViewComboBoxColumn14.FieldAlias = "customer";
            gridViewComboBoxColumn14.FieldName = "customer";
            gridViewComboBoxColumn14.FormatString = "{0:c}";
            gridViewComboBoxColumn14.HeaderText = "Customer Name";
            gridViewComboBoxColumn14.UniqueName = "customer";
            gridViewComboBoxColumn14.ValueMember = null;
            gridViewComboBoxColumn14.Width = 110;
            gridViewDecimalColumn5.DataType = typeof(decimal);
            gridViewDecimalColumn5.FieldAlias = "price_customer";
            gridViewDecimalColumn5.FieldName = "price_customer";
            gridViewDecimalColumn5.FormatString = "{0:c}";
            gridViewDecimalColumn5.HeaderText = "Harga Customer";
            gridViewDecimalColumn5.UniqueName = "price_customer";
            gridViewDecimalColumn5.Width = 110;
            gridViewDecimalColumn6.DataType = typeof(decimal);
            gridViewDecimalColumn6.FieldAlias = "price_courier";
            gridViewDecimalColumn6.FieldName = "price_courier";
            gridViewDecimalColumn6.FormatString = "{0:c}";
            gridViewDecimalColumn6.HeaderText = "Harga Kurir";
            gridViewDecimalColumn6.UniqueName = "price_courier";
            gridViewDecimalColumn6.Width = 110;
            this.PriceListGridView.MasterGridViewTemplate.Columns.Add(gridViewTextBoxColumn2);
            this.PriceListGridView.MasterGridViewTemplate.Columns.Add(gridViewDateTimeColumn3);
            this.PriceListGridView.MasterGridViewTemplate.Columns.Add(gridViewDateTimeColumn4);
            this.PriceListGridView.MasterGridViewTemplate.Columns.Add(gridViewComboBoxColumn8);
            this.PriceListGridView.MasterGridViewTemplate.Columns.Add(gridViewComboBoxColumn9);
            this.PriceListGridView.MasterGridViewTemplate.Columns.Add(gridViewComboBoxColumn10);
            this.PriceListGridView.MasterGridViewTemplate.Columns.Add(gridViewComboBoxColumn11);
            this.PriceListGridView.MasterGridViewTemplate.Columns.Add(gridViewComboBoxColumn12);
            this.PriceListGridView.MasterGridViewTemplate.Columns.Add(gridViewComboBoxColumn13);
            this.PriceListGridView.MasterGridViewTemplate.Columns.Add(gridViewDecimalColumn4);
            this.PriceListGridView.MasterGridViewTemplate.Columns.Add(gridViewComboBoxColumn14);
            this.PriceListGridView.MasterGridViewTemplate.Columns.Add(gridViewDecimalColumn5);
            this.PriceListGridView.MasterGridViewTemplate.Columns.Add(gridViewDecimalColumn6);
            gridSortField2.FieldAlias = "Tanggal";
            gridSortField2.FieldName = "Tanggal";
            gridSortField2.SortOrder = Telerik.WinControls.UI.RadSortOrder.Ascending;
            this.PriceListGridView.MasterGridViewTemplate.SortExpressions.Add(gridSortField2);
            this.PriceListGridView.Name = "PriceListGridView";
            this.PriceListGridView.RightToLeft = System.Windows.Forms.RightToLeft.No;
            this.PriceListGridView.Size = new System.Drawing.Size(932, 159);
            this.PriceListGridView.TabIndex = 1;
            // 
            // PriceList
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.Controls.Add(this.radSplitContainer1);
            this.Name = "PriceList";
            this.Size = new System.Drawing.Size(932, 430);
            ((System.ComponentModel.ISupportInitialize)(this.radSplitContainer1)).EndInit();
            this.radSplitContainer1.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.splitPanel1)).EndInit();
            this.splitPanel1.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.radPanel1)).EndInit();
            this.radPanel1.ResumeLayout(false);
            this.radPanel1.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.cbRecipientDisplay)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.cbDislayAll)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.btnClearAll)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.btnSaveGrid)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radButton2)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.cboStuffingPlace)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.cboRecipient)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.btnSearch)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.txtCustomer)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.cbDestination)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.cbSupplier)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.cboTypeSupplier)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.pickerTo)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel2)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.lblTo)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.lblPeriode)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.pickerFrom)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.lblRecipient)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.lblDestination)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.lblCustomer)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.lblStuffing)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.splitPanel2)).EndInit();
            this.splitPanel2.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.PriceListGridView)).EndInit();
            this.ResumeLayout(false);

        }
        /// <summary>
        /// Required method for Designer support - do not modify
        /// the contents of this method with the code editor.
        /// </summary>
        private void InitializeComponent()
        {
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn1 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewComboBoxColumn gridViewComboBoxColumn1 = new Telerik.WinControls.UI.GridViewComboBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn2 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewComboBoxColumn gridViewComboBoxColumn2 = new Telerik.WinControls.UI.GridViewComboBoxColumn();
            Telerik.WinControls.UI.GridViewCheckBoxColumn gridViewCheckBoxColumn1 = new Telerik.WinControls.UI.GridViewCheckBoxColumn();
            Telerik.WinControls.Data.SortDescriptor sortDescriptor1 = new Telerik.WinControls.Data.SortDescriptor();
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Mante_KAM));
            this.btNuevo = new Telerik.WinControls.UI.RadButton();
            this.radGridView8 = new Telerik.WinControls.UI.RadGridView();
            ((System.ComponentModel.ISupportInitialize)(this.btNuevo)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radGridView8)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radGridView8.MasterTemplate)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
            this.SuspendLayout();
            // 
            // btNuevo
            // 
            this.btNuevo.Image = global::CRM_TOOLS.Properties.Resources.Add;
            this.btNuevo.ImageAlignment = System.Drawing.ContentAlignment.MiddleCenter;
            this.btNuevo.Location = new System.Drawing.Point(303, 12);
            this.btNuevo.Name = "btNuevo";
            this.btNuevo.Size = new System.Drawing.Size(46, 50);
            this.btNuevo.TabIndex = 3;
            // 
            // 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(365, 12);
            // 
            // radGridView8
            // 
            this.radGridView8.MasterTemplate.AllowColumnChooser = false;
            this.radGridView8.MasterTemplate.AllowColumnReorder = false;
            this.radGridView8.MasterTemplate.AllowColumnResize = false;
            this.radGridView8.MasterTemplate.AllowDragToGroup = false;
            this.radGridView8.MasterTemplate.AllowRowResize = false;
            this.radGridView8.MasterTemplate.AutoGenerateColumns = false;
            gridViewTextBoxColumn1.EnableExpressionEditor = false;
            gridViewTextBoxColumn1.FormatString = "";
            gridViewTextBoxColumn1.HeaderText = "Codigo KAM";
            gridViewTextBoxColumn1.Name = "clCodKam";
            gridViewTextBoxColumn1.SortOrder = Telerik.WinControls.UI.RadSortOrder.Ascending;
            gridViewTextBoxColumn1.Width = 185;
            gridViewComboBoxColumn1.DisplayMember = null;
            gridViewComboBoxColumn1.EnableExpressionEditor = false;
            gridViewComboBoxColumn1.FormatString = "";
            gridViewComboBoxColumn1.HeaderText = "Pais";
            gridViewComboBoxColumn1.Name = "clPais";
            gridViewComboBoxColumn1.ValueMember = null;
            gridViewComboBoxColumn1.Width = 111;
            gridViewTextBoxColumn2.EnableExpressionEditor = false;
            gridViewTextBoxColumn2.FormatString = "";
            gridViewTextBoxColumn2.HeaderText = "Key Accounts Manager";
            gridViewTextBoxColumn2.Name = "clKey";
            gridViewTextBoxColumn2.Width = 224;
            gridViewComboBoxColumn2.DisplayMember = null;
            gridViewComboBoxColumn2.EnableExpressionEditor = false;
            gridViewComboBoxColumn2.FormatString = "";
            gridViewComboBoxColumn2.HeaderText = "Territorio GBA";
            gridViewComboBoxColumn2.Name = "clTerritorio ";
            gridViewComboBoxColumn2.ValueMember = null;
            gridViewComboBoxColumn2.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[] {
            gridViewTextBoxColumn1,
            gridViewComboBoxColumn1,
            gridViewTextBoxColumn2,
            gridViewComboBoxColumn2,
            gridViewCheckBoxColumn1});
            this.radGridView8.MasterTemplate.EnableGrouping = false;
            sortDescriptor1.PropertyName = "clCodKam";
            this.radGridView8.MasterTemplate.SortDescriptors.AddRange(new Telerik.WinControls.Data.SortDescriptor[] {
            sortDescriptor1});
            this.radGridView8.Name = "radGridView8";
            this.radGridView8.RightToLeft = System.Windows.Forms.RightToLeft.No;
            this.radGridView8.ShowGroupPanel = false;
            this.radGridView8.Size = new System.Drawing.Size(750, 772);
            this.radGridView8.TabIndex = 2;
            this.radGridView8.Text = "radGridView8";
            this.radGridView8.ThemeName = "TelerikMetroBlue";
            // 
            // Mante_KAM
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.ClientSize = new System.Drawing.Size(1420, 796);
            this.Controls.Add(this.btNuevo);
            this.Controls.Add(this.radGridView8);
            this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
            this.Name = "Mante_KAM";
            // 
            // 
            // 
            this.RootElement.ApplyShapeToControl = true;
            this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
            this.Text = "Mantenimiento KAM\'s";
            this.ThemeName = "TelerikMetroBlue";
            this.WindowState = System.Windows.Forms.FormWindowState.Maximized;
            ((System.ComponentModel.ISupportInitialize)(this.btNuevo)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radGridView8.MasterTemplate)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radGridView8)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this)).EndInit();
            this.ResumeLayout(false);

        }
        /// <summary>
        /// Required method for Designer support - do not modify
        /// the contents of this method with the code editor.
        /// </summary>
        private void InitializeComponent()
        {
            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.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 gridViewTextBoxColumn4 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn5 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.Data.SortDescriptor sortDescriptor1 = new Telerik.WinControls.Data.SortDescriptor();
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Mante_Productos));
            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();
            ((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();
            ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
            this.SuspendLayout();
            // 
            // btLimpiarMP
            // 
            this.btLimpiarMP.Location = new System.Drawing.Point(606, 71);
            this.btLimpiarMP.Name = "btLimpiarMP";
            this.btLimpiarMP.Size = new System.Drawing.Size(75, 24);
            this.btLimpiarMP.TabIndex = 9;
            this.btLimpiarMP.Text = "Limpiar";
            // 
            // btAbrirMP
            // 
            this.btAbrirMP.Location = new System.Drawing.Point(525, 71);
            this.btAbrirMP.Name = "btAbrirMP";
            this.btAbrirMP.Size = new System.Drawing.Size(75, 24);
            this.btAbrirMP.TabIndex = 8;
            this.btAbrirMP.Text = "Abrir";
            // 
            // txtDir
            // 
            this.txtDir.Location = new System.Drawing.Point(12, 71);
            this.txtDir.Name = "txtDir";
            this.txtDir.Size = new System.Drawing.Size(494, 20);
            this.txtDir.TabIndex = 7;
            this.txtDir.TabStop = false;
            // 
            // radLabel13
            // 
            this.radLabel13.Location = new System.Drawing.Point(12, 45);
            this.radLabel13.Name = "radLabel13";
            this.radLabel13.Size = new System.Drawing.Size(84, 16);
            this.radLabel13.TabIndex = 6;
            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(12, 141);
            // 
            // radGridView5
            // 
            this.radGridView5.MasterTemplate.AllowColumnChooser = false;
            this.radGridView5.MasterTemplate.AllowColumnReorder = false;
            this.radGridView5.MasterTemplate.AllowColumnResize = false;
            this.radGridView5.MasterTemplate.AllowDragToGroup = false;
            this.radGridView5.MasterTemplate.AllowRowResize = false;
            gridViewTextBoxColumn1.EnableExpressionEditor = false;
            gridViewTextBoxColumn1.FormatString = "";
            gridViewTextBoxColumn1.HeaderText = "Codigo SAP";
            gridViewTextBoxColumn1.Name = "clCodSAP";
            gridViewTextBoxColumn1.Width = 104;
            gridViewTextBoxColumn2.EnableExpressionEditor = false;
            gridViewTextBoxColumn2.FormatString = "";
            gridViewTextBoxColumn2.HeaderText = "Nombre Producto";
            gridViewTextBoxColumn2.Name = "clNombre";
            gridViewTextBoxColumn2.Width = 374;
            gridViewTextBoxColumn3.EnableExpressionEditor = false;
            gridViewTextBoxColumn3.FormatString = "";
            gridViewTextBoxColumn3.HeaderText = "LAO Group";
            gridViewTextBoxColumn3.Name = "clLAO";
            gridViewTextBoxColumn3.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.FormatString = "";
            gridViewComboBoxColumn6.HeaderText = "Nivel 5";
            gridViewComboBoxColumn6.Name = "clN5";
            gridViewComboBoxColumn6.ValueMember = null;
            gridViewComboBoxColumn6.Width = 100;
            gridViewTextBoxColumn4.EnableExpressionEditor = false;
            gridViewTextBoxColumn4.FormatString = "";
            gridViewTextBoxColumn4.HeaderText = "Creacion ";
            gridViewTextBoxColumn4.Name = "clCreacion ";
            gridViewTextBoxColumn4.Width = 97;
            gridViewTextBoxColumn5.EnableExpressionEditor = false;
            gridViewTextBoxColumn5.HeaderText = "Actualizacion";
            gridViewTextBoxColumn5.Name = "clActual";
            gridViewTextBoxColumn5.Width = 107;
            this.radGridView5.MasterTemplate.Columns.AddRange(new Telerik.WinControls.UI.GridViewDataColumn[] {
            gridViewTextBoxColumn1,
            gridViewTextBoxColumn2,
            gridViewTextBoxColumn3,
            gridViewComboBoxColumn1,
            gridViewComboBoxColumn2,
            gridViewComboBoxColumn3,
            gridViewComboBoxColumn4,
            gridViewComboBoxColumn5,
            gridViewComboBoxColumn6,
            gridViewTextBoxColumn4,
            gridViewTextBoxColumn5});
            this.radGridView5.MasterTemplate.EnableGrouping = false;
            sortDescriptor1.PropertyName = "column1";
            this.radGridView5.MasterTemplate.SortDescriptors.AddRange(new Telerik.WinControls.Data.SortDescriptor[] {
            sortDescriptor1});
            this.radGridView5.Name = "radGridView5";
            this.radGridView5.RightToLeft = System.Windows.Forms.RightToLeft.No;
            this.radGridView5.ShowGroupPanel = false;
            this.radGridView5.Size = new System.Drawing.Size(1342, 643);
            this.radGridView5.TabIndex = 5;
            this.radGridView5.Text = "radGridView5";
            this.radGridView5.ThemeName = "TelerikMetroBlue";
            // 
            // Mante_Productos
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.ClientSize = new System.Drawing.Size(1420, 796);
            this.Controls.Add(this.btLimpiarMP);
            this.Controls.Add(this.btAbrirMP);
            this.Controls.Add(this.txtDir);
            this.Controls.Add(this.radLabel13);
            this.Controls.Add(this.radGridView5);
            this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
            this.Name = "Mante_Productos";
            // 
            // 
            // 
            this.RootElement.ApplyShapeToControl = true;
            this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
            this.Text = "Mantenimientos Productos";
            this.ThemeName = "TelerikMetroBlue";
            this.WindowState = System.Windows.Forms.FormWindowState.Maximized;
            ((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();
            ((System.ComponentModel.ISupportInitialize)(this)).EndInit();
            this.ResumeLayout(false);
            this.PerformLayout();

        }
Example #23
0
        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;
            }
        }
Example #24
0
        /// <summary>
        /// 设计器支持所需的方法 - 不要
        /// 使用代码编辑器修改此方法的内容。
        /// </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();
            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.GridViewComboBoxColumn gridViewComboBoxColumn7 = new Telerik.WinControls.UI.GridViewComboBoxColumn();
            Telerik.WinControls.UI.GridViewComboBoxColumn gridViewComboBoxColumn8 = new Telerik.WinControls.UI.GridViewComboBoxColumn();
            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.GridViewComboBoxColumn gridViewComboBoxColumn12 = new Telerik.WinControls.UI.GridViewComboBoxColumn();
            Telerik.WinControls.UI.GridViewComboBoxColumn gridViewComboBoxColumn13 = new Telerik.WinControls.UI.GridViewComboBoxColumn();
            Telerik.WinControls.UI.GridViewComboBoxColumn gridViewComboBoxColumn14 = new Telerik.WinControls.UI.GridViewComboBoxColumn();
            Telerik.WinControls.UI.GridViewComboBoxColumn gridViewComboBoxColumn15 = new Telerik.WinControls.UI.GridViewComboBoxColumn();
            Telerik.WinControls.UI.GridViewComboBoxColumn gridViewComboBoxColumn16 = new Telerik.WinControls.UI.GridViewComboBoxColumn();
            Telerik.WinControls.UI.GridViewComboBoxColumn gridViewComboBoxColumn17 = new Telerik.WinControls.UI.GridViewComboBoxColumn();
            Telerik.WinControls.UI.GridViewComboBoxColumn gridViewComboBoxColumn18 = new Telerik.WinControls.UI.GridViewComboBoxColumn();
            Telerik.WinControls.UI.GridViewComboBoxColumn gridViewComboBoxColumn19 = new Telerik.WinControls.UI.GridViewComboBoxColumn();
            Telerik.WinControls.UI.GridViewComboBoxColumn gridViewComboBoxColumn20 = new Telerik.WinControls.UI.GridViewComboBoxColumn();
            Telerik.WinControls.UI.GridViewComboBoxColumn gridViewComboBoxColumn21 = new Telerik.WinControls.UI.GridViewComboBoxColumn();
            Telerik.WinControls.UI.GridViewComboBoxColumn gridViewComboBoxColumn22 = new Telerik.WinControls.UI.GridViewComboBoxColumn();
            Telerik.WinControls.UI.GridViewComboBoxColumn gridViewComboBoxColumn23 = new Telerik.WinControls.UI.GridViewComboBoxColumn();
            Telerik.WinControls.UI.GridViewComboBoxColumn gridViewComboBoxColumn24 = new Telerik.WinControls.UI.GridViewComboBoxColumn();
            Telerik.WinControls.UI.GridViewComboBoxColumn gridViewComboBoxColumn25 = new Telerik.WinControls.UI.GridViewComboBoxColumn();
            Telerik.WinControls.UI.GridViewComboBoxColumn gridViewComboBoxColumn26 = new Telerik.WinControls.UI.GridViewComboBoxColumn();
            Telerik.WinControls.UI.GridViewComboBoxColumn gridViewComboBoxColumn27 = new Telerik.WinControls.UI.GridViewComboBoxColumn();
            Telerik.WinControls.UI.GridViewComboBoxColumn gridViewComboBoxColumn28 = new Telerik.WinControls.UI.GridViewComboBoxColumn();
            Telerik.WinControls.UI.GridViewComboBoxColumn gridViewComboBoxColumn29 = new Telerik.WinControls.UI.GridViewComboBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn1 = 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.ConditionalFormattingObject conditionalFormattingObject1 = new Telerik.WinControls.UI.ConditionalFormattingObject();
            Telerik.WinControls.UI.ConditionalFormattingObject conditionalFormattingObject2 = new Telerik.WinControls.UI.ConditionalFormattingObject();
            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.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.GridViewDecimalColumn gridViewDecimalColumn15 = new Telerik.WinControls.UI.GridViewDecimalColumn();
            Telerik.WinControls.UI.GridViewDecimalColumn gridViewDecimalColumn16 = new Telerik.WinControls.UI.GridViewDecimalColumn();
            Telerik.WinControls.UI.GridViewDecimalColumn gridViewDecimalColumn17 = 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.GridViewTextBoxColumn gridViewTextBoxColumn4 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewDecimalColumn gridViewDecimalColumn18 = new Telerik.WinControls.UI.GridViewDecimalColumn();
            Telerik.WinControls.UI.GridViewSummaryItem gridViewSummaryItem1 = new Telerik.WinControls.UI.GridViewSummaryItem();
            this.enumBinder1 = new Telerik.WinControls.UI.Data.EnumBinder();
            this.enumBinder2 = new Telerik.WinControls.UI.Data.EnumBinder();
            this.enumBinder3 = new Telerik.WinControls.UI.Data.EnumBinder();
            this.enumBinder4 = new Telerik.WinControls.UI.Data.EnumBinder();
            this.enumBinder5 = new Telerik.WinControls.UI.Data.EnumBinder();
            this.enumBinder6 = new Telerik.WinControls.UI.Data.EnumBinder();
            this.enumBinder7 = new Telerik.WinControls.UI.Data.EnumBinder();
            this.enumBinder8 = new Telerik.WinControls.UI.Data.EnumBinder();
            this.enumBinder9 = new Telerik.WinControls.UI.Data.EnumBinder();
            this.enumBinder10 = new Telerik.WinControls.UI.Data.EnumBinder();
            this.enumBinder11 = new Telerik.WinControls.UI.Data.EnumBinder();
            this.enumBinder12 = new Telerik.WinControls.UI.Data.EnumBinder();
            this.enumBinder13 = new Telerik.WinControls.UI.Data.EnumBinder();
            this.enumBinder14 = new Telerik.WinControls.UI.Data.EnumBinder();
            this.enumBinder15 = new Telerik.WinControls.UI.Data.EnumBinder();
            this.enumBinder16 = new Telerik.WinControls.UI.Data.EnumBinder();
            this.enumBinder17 = new Telerik.WinControls.UI.Data.EnumBinder();
            this.enumBinder18 = new Telerik.WinControls.UI.Data.EnumBinder();
            this.enumBinder19 = new Telerik.WinControls.UI.Data.EnumBinder();
            this.enumBinder20 = new Telerik.WinControls.UI.Data.EnumBinder();
            this.enumBinder21 = new Telerik.WinControls.UI.Data.EnumBinder();
            this.enumBinder22 = new Telerik.WinControls.UI.Data.EnumBinder();
            this.enumBinder23 = new Telerik.WinControls.UI.Data.EnumBinder();
            this.enumBinder24 = new Telerik.WinControls.UI.Data.EnumBinder();
            this.enumBinder25 = new Telerik.WinControls.UI.Data.EnumBinder();
            this.enumBinder26 = new Telerik.WinControls.UI.Data.EnumBinder();
            this.enumBinder27 = new Telerik.WinControls.UI.Data.EnumBinder();
            this.enumBinder28 = new Telerik.WinControls.UI.Data.EnumBinder();
            this.enumBinder29 = new Telerik.WinControls.UI.Data.EnumBinder();
            this.positionDetailBindingSource = new System.Windows.Forms.BindingSource(this.components);
            this.radStatusStrip1 = new Telerik.WinControls.UI.RadStatusStrip();
            this.dtTradingDay = new Telerik.WinControls.UI.RadDateTimePicker();
            this.radSplitContainer1 = new Telerik.WinControls.UI.RadSplitContainer();
            this.splitPanel1 = new Telerik.WinControls.UI.SplitPanel();
            this.rgAccount = new Telerik.WinControls.UI.RadGridView();
            this.splitPanel2 = new Telerik.WinControls.UI.SplitPanel();
            this.gvInstrument = new Telerik.WinControls.UI.RadGridView();
            this.splitPanel3 = new Telerik.WinControls.UI.SplitPanel();
            this.radSplitContainer3 = new Telerik.WinControls.UI.RadSplitContainer();
            this.splitPanel7 = new Telerik.WinControls.UI.SplitPanel();
            this.radPageView3 = new Telerik.WinControls.UI.RadPageView();
            this.radPageViewPage6 = new Telerik.WinControls.UI.RadPageViewPage();
            this.gvOrder = new Telerik.WinControls.UI.RadGridView();
            this.radPageViewPage1 = new Telerik.WinControls.UI.RadPageViewPage();
            this.gvOrderLog = new Telerik.WinControls.UI.RadGridView();
            this.radPageViewPage5 = new Telerik.WinControls.UI.RadPageViewPage();
            this.radGridView6 = new Telerik.WinControls.UI.RadGridView();
            this.radPageViewPage4 = new Telerik.WinControls.UI.RadPageViewPage();
            this.radGridView9 = new Telerik.WinControls.UI.RadGridView();
            this.splitPanel4 = new Telerik.WinControls.UI.SplitPanel();
            this.radPropertyGrid1 = new Telerik.WinControls.UI.RadPropertyGrid();
            this.orderRecordBindingSource = new System.Windows.Forms.BindingSource(this.components);
            this.tradeRecordBindingSource = new System.Windows.Forms.BindingSource(this.components);
            this.positionRecordBindingSource = new System.Windows.Forms.BindingSource(this.components);
            this.radMenu1 = new Telerik.WinControls.UI.RadMenu();
            this.radMenuItem1 = new Telerik.WinControls.UI.RadMenuItem();
            this.radMenuItem2 = new Telerik.WinControls.UI.RadMenuItem();
            this.radMenuItem3 = new Telerik.WinControls.UI.RadMenuItem();
            this.telerikMetroTheme1 = new Telerik.WinControls.Themes.TelerikMetroTheme();
            this.radMenuItem4 = new Telerik.WinControls.UI.RadMenuItem();
            this.radMenuItem12 = new Telerik.WinControls.UI.RadMenuItem();
            this.radMenuItem8 = new Telerik.WinControls.UI.RadMenuItem();
            this.radMenuItem7 = new Telerik.WinControls.UI.RadMenuItem();
            this.radMenuItem9 = new Telerik.WinControls.UI.RadMenuItem();
            this.miClose = new Telerik.WinControls.UI.RadMenuItem();
            this.radMenuItem11 = new Telerik.WinControls.UI.RadMenuItem();
            this.cmOrder = new Telerik.WinControls.UI.RadContextMenu(this.components);
            this.miDetail = new Telerik.WinControls.UI.RadMenuItem();
            this.miCancelOrder = new Telerik.WinControls.UI.RadMenuItem();
            this.miCancelAll = new Telerik.WinControls.UI.RadMenuItem();
            this.miCloseOrder = new Telerik.WinControls.UI.RadMenuItem();
            this.miDeleteOrder = new Telerik.WinControls.UI.RadMenuItem();
            this.cmOrderLog = new Telerik.WinControls.UI.RadContextMenu(this.components);
            this.miOrderLogDetail = new Telerik.WinControls.UI.RadMenuItem();
            this.cmMarket = new Telerik.WinControls.UI.RadContextMenu(this.components);
            this.miSellOrder = new Telerik.WinControls.UI.RadMenuItem();
            this.miBuyOrder = new Telerik.WinControls.UI.RadMenuItem();
            this.radMenu2 = new Telerik.WinControls.UI.RadMenu();
            this.radMenuItem5 = new Telerik.WinControls.UI.RadMenuItem();
            this.radMenuItem6 = new Telerik.WinControls.UI.RadMenuItem();
            this.openFileDialog1 = new System.Windows.Forms.OpenFileDialog();
            this.miStart = new Telerik.WinControls.UI.RadMenuItem();
            ((System.ComponentModel.ISupportInitialize)(this.positionDetailBindingSource)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radStatusStrip1)).BeginInit();
            this.radStatusStrip1.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.dtTradingDay)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radSplitContainer1)).BeginInit();
            this.radSplitContainer1.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.splitPanel1)).BeginInit();
            this.splitPanel1.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.rgAccount)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.rgAccount.MasterTemplate)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.splitPanel2)).BeginInit();
            this.splitPanel2.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.gvInstrument)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.gvInstrument.MasterTemplate)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.splitPanel3)).BeginInit();
            this.splitPanel3.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.radSplitContainer3)).BeginInit();
            this.radSplitContainer3.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.splitPanel7)).BeginInit();
            this.splitPanel7.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.radPageView3)).BeginInit();
            this.radPageView3.SuspendLayout();
            this.radPageViewPage6.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.gvOrder)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.gvOrder.MasterTemplate)).BeginInit();
            this.radPageViewPage1.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.gvOrderLog)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.gvOrderLog.MasterTemplate)).BeginInit();
            this.radPageViewPage5.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.radGridView6)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radGridView6.MasterTemplate)).BeginInit();
            this.radPageViewPage4.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.radGridView9)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radGridView9.MasterTemplate)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.splitPanel4)).BeginInit();
            this.splitPanel4.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.radPropertyGrid1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.orderRecordBindingSource)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.tradeRecordBindingSource)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.positionRecordBindingSource)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radMenu1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radMenu2)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
            this.SuspendLayout();
            // 
            // enumBinder1
            // 
            this.enumBinder1.Source = typeof(QuantBox.CSharp2CTP.TThostFtdcDirectionType);
            gridViewComboBoxColumn1.DataSource = this.enumBinder1;
            gridViewComboBoxColumn1.DataType = typeof(object);
            gridViewComboBoxColumn1.DisplayMember = "Description";
            gridViewComboBoxColumn1.FieldName = "Direction";
            gridViewComboBoxColumn1.HeaderText = "Direction";
            gridViewComboBoxColumn1.IsAutoGenerated = true;
            gridViewComboBoxColumn1.Name = "Direction";
            gridViewComboBoxColumn1.ValueMember = "Value";
            gridViewComboBoxColumn1.Width = 66;
            this.enumBinder1.Target = gridViewComboBoxColumn1;
            // 
            // enumBinder2
            // 
            this.enumBinder2.Source = typeof(QuantBox.CSharp2CTP.TThostFtdcHedgeFlagType);
            gridViewComboBoxColumn2.DataSource = this.enumBinder2;
            gridViewComboBoxColumn2.DataType = typeof(object);
            gridViewComboBoxColumn2.DisplayMember = "Description";
            gridViewComboBoxColumn2.FieldName = "HedgeFlag";
            gridViewComboBoxColumn2.HeaderText = "HedgeFlag";
            gridViewComboBoxColumn2.IsAutoGenerated = true;
            gridViewComboBoxColumn2.Name = "HedgeFlag";
            gridViewComboBoxColumn2.ValueMember = "Value";
            gridViewComboBoxColumn2.Width = 77;
            this.enumBinder2.Target = gridViewComboBoxColumn2;
            // 
            // enumBinder3
            // 
            this.enumBinder3.Source = typeof(QuantBox.CSharp2CTP.TThostFtdcTradeTypeType);
            gridViewComboBoxColumn3.DataSource = this.enumBinder3;
            gridViewComboBoxColumn3.DataType = typeof(object);
            gridViewComboBoxColumn3.DisplayMember = "Description";
            gridViewComboBoxColumn3.FieldName = "TradeType";
            gridViewComboBoxColumn3.HeaderText = "TradeType";
            gridViewComboBoxColumn3.IsAutoGenerated = true;
            gridViewComboBoxColumn3.Name = "TradeType";
            gridViewComboBoxColumn3.ValueMember = "Value";
            gridViewComboBoxColumn3.Width = 74;
            this.enumBinder3.Target = gridViewComboBoxColumn3;
            // 
            // enumBinder4
            // 
            this.enumBinder4.Source = typeof(QuantBox.CSharp2CTP.TThostFtdcDirectionType);
            gridViewComboBoxColumn4.DataSource = this.enumBinder4;
            gridViewComboBoxColumn4.DataType = typeof(object);
            gridViewComboBoxColumn4.DisplayMember = "Description";
            gridViewComboBoxColumn4.FieldName = "Direction";
            gridViewComboBoxColumn4.HeaderText = "Direction";
            gridViewComboBoxColumn4.IsAutoGenerated = true;
            gridViewComboBoxColumn4.Name = "Direction";
            gridViewComboBoxColumn4.ValueMember = "Value";
            gridViewComboBoxColumn4.Width = 66;
            this.enumBinder4.Target = gridViewComboBoxColumn4;
            // 
            // enumBinder5
            // 
            this.enumBinder5.Source = typeof(QuantBox.CSharp2CTP.TThostFtdcOffsetFlagType);
            gridViewComboBoxColumn5.DataSource = this.enumBinder5;
            gridViewComboBoxColumn5.DataType = typeof(object);
            gridViewComboBoxColumn5.DisplayMember = "Description";
            gridViewComboBoxColumn5.FieldName = "OffsetFlag";
            gridViewComboBoxColumn5.HeaderText = "OffsetFlag";
            gridViewComboBoxColumn5.IsAutoGenerated = true;
            gridViewComboBoxColumn5.Name = "OffsetFlag";
            gridViewComboBoxColumn5.ValueMember = "Value";
            gridViewComboBoxColumn5.Width = 73;
            this.enumBinder5.Target = gridViewComboBoxColumn5;
            // 
            // enumBinder6
            // 
            this.enumBinder6.Source = typeof(QuantBox.CSharp2CTP.TThostFtdcTradeTypeType);
            gridViewComboBoxColumn6.DataSource = this.enumBinder6;
            gridViewComboBoxColumn6.DataType = typeof(object);
            gridViewComboBoxColumn6.DisplayMember = "Description";
            gridViewComboBoxColumn6.FieldName = "TradeType";
            gridViewComboBoxColumn6.HeaderText = "TradeType";
            gridViewComboBoxColumn6.IsAutoGenerated = true;
            gridViewComboBoxColumn6.Name = "TradeType";
            gridViewComboBoxColumn6.ValueMember = "Value";
            gridViewComboBoxColumn6.Width = 74;
            this.enumBinder6.Target = gridViewComboBoxColumn6;
            // 
            // enumBinder7
            // 
            this.enumBinder7.Source = typeof(QuantBox.CSharp2CTP.TThostFtdcHedgeFlagType);
            gridViewComboBoxColumn7.DataSource = this.enumBinder7;
            gridViewComboBoxColumn7.DataType = typeof(object);
            gridViewComboBoxColumn7.DisplayMember = "Description";
            gridViewComboBoxColumn7.FieldName = "HedgeFlag";
            gridViewComboBoxColumn7.HeaderText = "HedgeFlag";
            gridViewComboBoxColumn7.IsAutoGenerated = true;
            gridViewComboBoxColumn7.Name = "HedgeFlag";
            gridViewComboBoxColumn7.ValueMember = "Value";
            gridViewComboBoxColumn7.Width = 77;
            this.enumBinder7.Target = gridViewComboBoxColumn7;
            // 
            // enumBinder8
            // 
            this.enumBinder8.Source = typeof(QuantBox.CSharp2CTP.TThostFtdcDirectionType);
            gridViewComboBoxColumn8.DataSource = this.enumBinder8;
            gridViewComboBoxColumn8.DataType = typeof(object);
            gridViewComboBoxColumn8.DisplayMember = "Description";
            gridViewComboBoxColumn8.FieldName = "Direction";
            gridViewComboBoxColumn8.HeaderText = "买卖";
            gridViewComboBoxColumn8.IsAutoGenerated = true;
            gridViewComboBoxColumn8.Name = "Direction";
            gridViewComboBoxColumn8.ValueMember = "Value";
            gridViewComboBoxColumn8.Width = 48;
            this.enumBinder8.Target = gridViewComboBoxColumn8;
            // 
            // enumBinder9
            // 
            this.enumBinder9.Source = typeof(QuantBox.CSharp2CTP.TThostFtdcHedgeFlagType);
            gridViewComboBoxColumn9.DataSource = this.enumBinder9;
            gridViewComboBoxColumn9.DataType = typeof(object);
            gridViewComboBoxColumn9.DisplayMember = "Description";
            gridViewComboBoxColumn9.FieldName = "HedgeFlag";
            gridViewComboBoxColumn9.HeaderText = "投保";
            gridViewComboBoxColumn9.IsAutoGenerated = true;
            gridViewComboBoxColumn9.Name = "HedgeFlag";
            gridViewComboBoxColumn9.ValueMember = "Value";
            gridViewComboBoxColumn9.Width = 48;
            this.enumBinder9.Target = gridViewComboBoxColumn9;
            // 
            // enumBinder10
            // 
            this.enumBinder10.Source = typeof(QuantBox.CSharp2CTP.TThostFtdcTradeTypeType);
            gridViewComboBoxColumn10.DataSource = this.enumBinder10;
            gridViewComboBoxColumn10.DataType = typeof(object);
            gridViewComboBoxColumn10.DisplayMember = "Description";
            gridViewComboBoxColumn10.FieldName = "TradeType";
            gridViewComboBoxColumn10.HeaderText = "持仓类型";
            gridViewComboBoxColumn10.IsAutoGenerated = true;
            gridViewComboBoxColumn10.Name = "TradeType";
            gridViewComboBoxColumn10.ValueMember = "Value";
            gridViewComboBoxColumn10.Width = 86;
            this.enumBinder10.Target = gridViewComboBoxColumn10;
            // 
            // enumBinder11
            // 
            this.enumBinder11.Source = typeof(QuantBox.CSharp2CTP.TThostFtdcDirectionType);
            gridViewComboBoxColumn11.DataSource = this.enumBinder11;
            gridViewComboBoxColumn11.DataType = typeof(object);
            gridViewComboBoxColumn11.DisplayMember = "Description";
            gridViewComboBoxColumn11.FieldName = "Direction";
            gridViewComboBoxColumn11.HeaderText = "Direction";
            gridViewComboBoxColumn11.IsAutoGenerated = true;
            gridViewComboBoxColumn11.Name = "Direction";
            gridViewComboBoxColumn11.ValueMember = "Value";
            gridViewComboBoxColumn11.Width = 66;
            this.enumBinder11.Target = gridViewComboBoxColumn11;
            // 
            // enumBinder12
            // 
            this.enumBinder12.Source = typeof(QuantBox.CSharp2CTP.TThostFtdcOffsetFlagType);
            gridViewComboBoxColumn12.DataSource = this.enumBinder12;
            gridViewComboBoxColumn12.DataType = typeof(object);
            gridViewComboBoxColumn12.DisplayMember = "Description";
            gridViewComboBoxColumn12.FieldName = "OffsetFlag";
            gridViewComboBoxColumn12.HeaderText = "OffsetFlag";
            gridViewComboBoxColumn12.IsAutoGenerated = true;
            gridViewComboBoxColumn12.Name = "OffsetFlag";
            gridViewComboBoxColumn12.ValueMember = "Value";
            gridViewComboBoxColumn12.Width = 73;
            this.enumBinder12.Target = gridViewComboBoxColumn12;
            // 
            // enumBinder13
            // 
            this.enumBinder13.Source = typeof(QuantBox.CSharp2CTP.TThostFtdcTradeTypeType);
            gridViewComboBoxColumn13.DataSource = this.enumBinder13;
            gridViewComboBoxColumn13.DataType = typeof(object);
            gridViewComboBoxColumn13.DisplayMember = "Description";
            gridViewComboBoxColumn13.FieldName = "TradeType";
            gridViewComboBoxColumn13.HeaderText = "TradeType";
            gridViewComboBoxColumn13.IsAutoGenerated = true;
            gridViewComboBoxColumn13.Name = "TradeType";
            gridViewComboBoxColumn13.ValueMember = "Value";
            gridViewComboBoxColumn13.Width = 74;
            this.enumBinder13.Target = gridViewComboBoxColumn13;
            // 
            // enumBinder14
            // 
            this.enumBinder14.Source = typeof(QuantBox.CSharp2CTP.TThostFtdcHedgeFlagType);
            gridViewComboBoxColumn14.DataSource = this.enumBinder14;
            gridViewComboBoxColumn14.DataType = typeof(object);
            gridViewComboBoxColumn14.DisplayMember = "Description";
            gridViewComboBoxColumn14.FieldName = "HedgeFlag";
            gridViewComboBoxColumn14.HeaderText = "HedgeFlag";
            gridViewComboBoxColumn14.IsAutoGenerated = true;
            gridViewComboBoxColumn14.Name = "HedgeFlag";
            gridViewComboBoxColumn14.ValueMember = "Value";
            gridViewComboBoxColumn14.Width = 77;
            this.enumBinder14.Target = gridViewComboBoxColumn14;
            // 
            // enumBinder15
            // 
            this.enumBinder15.Source = typeof(QuantBox.CSharp2CTP.TThostFtdcOffsetFlagType);
            gridViewComboBoxColumn15.DataSource = this.enumBinder15;
            gridViewComboBoxColumn15.DataType = typeof(object);
            gridViewComboBoxColumn15.DisplayMember = "Description";
            gridViewComboBoxColumn15.FieldName = "OffsetFlag";
            gridViewComboBoxColumn15.HeaderText = "OffsetFlag";
            gridViewComboBoxColumn15.IsAutoGenerated = true;
            gridViewComboBoxColumn15.Name = "OffsetFlag";
            gridViewComboBoxColumn15.ValueMember = "Value";
            this.enumBinder15.Target = gridViewComboBoxColumn15;
            // 
            // enumBinder16
            // 
            this.enumBinder16.Source = typeof(QuantBox.CSharp2CTP.TThostFtdcTradeTypeType);
            gridViewComboBoxColumn16.DataSource = this.enumBinder16;
            gridViewComboBoxColumn16.DataType = typeof(object);
            gridViewComboBoxColumn16.DisplayMember = "Description";
            gridViewComboBoxColumn16.FieldName = "TradeType";
            gridViewComboBoxColumn16.HeaderText = "TradeType";
            gridViewComboBoxColumn16.IsAutoGenerated = true;
            gridViewComboBoxColumn16.Name = "TradeType";
            gridViewComboBoxColumn16.ValueMember = "Value";
            this.enumBinder16.Target = gridViewComboBoxColumn16;
            // 
            // enumBinder17
            // 
            this.enumBinder17.Source = typeof(QuantBox.CSharp2CTP.TThostFtdcHedgeFlagType);
            gridViewComboBoxColumn17.DataSource = this.enumBinder17;
            gridViewComboBoxColumn17.DataType = typeof(object);
            gridViewComboBoxColumn17.DisplayMember = "Description";
            gridViewComboBoxColumn17.FieldName = "HedgeFlag";
            gridViewComboBoxColumn17.HeaderText = "HedgeFlag";
            gridViewComboBoxColumn17.IsAutoGenerated = true;
            gridViewComboBoxColumn17.Name = "HedgeFlag";
            gridViewComboBoxColumn17.ValueMember = "Value";
            this.enumBinder17.Target = gridViewComboBoxColumn17;
            // 
            // enumBinder18
            // 
            this.enumBinder18.Source = typeof(QuantBox.CSharp2CTP.TThostFtdcDirectionType);
            gridViewComboBoxColumn18.DataSource = this.enumBinder18;
            gridViewComboBoxColumn18.DisplayMember = "Description";
            gridViewComboBoxColumn18.ValueMember = "Value";
            this.enumBinder18.Target = gridViewComboBoxColumn18;
            // 
            // enumBinder19
            // 
            this.enumBinder19.Source = typeof(QuantBox.CSharp2CTP.TThostFtdcOffsetFlagType);
            gridViewComboBoxColumn19.DataSource = this.enumBinder19;
            gridViewComboBoxColumn19.DataType = typeof(object);
            gridViewComboBoxColumn19.DisplayMember = "Description";
            gridViewComboBoxColumn19.FieldName = "OffsetFlag";
            gridViewComboBoxColumn19.HeaderText = "开平";
            gridViewComboBoxColumn19.IsAutoGenerated = true;
            gridViewComboBoxColumn19.Name = "OffsetFlag";
            gridViewComboBoxColumn19.ValueMember = "Value";
            gridViewComboBoxColumn19.Width = 48;
            this.enumBinder19.Target = gridViewComboBoxColumn19;
            // 
            // enumBinder20
            // 
            this.enumBinder20.Source = typeof(QuantBox.CSharp2CTP.TThostFtdcTradeTypeType);
            gridViewComboBoxColumn20.DataSource = this.enumBinder20;
            gridViewComboBoxColumn20.DataType = typeof(object);
            gridViewComboBoxColumn20.DisplayMember = "Description";
            gridViewComboBoxColumn20.FieldName = "TradeType";
            gridViewComboBoxColumn20.HeaderText = "成交类型";
            gridViewComboBoxColumn20.IsAutoGenerated = true;
            gridViewComboBoxColumn20.Name = "TradeType";
            gridViewComboBoxColumn20.ValueMember = "Value";
            gridViewComboBoxColumn20.Width = 86;
            this.enumBinder20.Target = gridViewComboBoxColumn20;
            // 
            // enumBinder21
            // 
            this.enumBinder21.Source = typeof(QuantBox.CSharp2CTP.TThostFtdcHedgeFlagType);
            gridViewComboBoxColumn21.DataSource = this.enumBinder21;
            gridViewComboBoxColumn21.DataType = typeof(object);
            gridViewComboBoxColumn21.DisplayMember = "Description";
            gridViewComboBoxColumn21.FieldName = "HedgeFlag";
            gridViewComboBoxColumn21.HeaderText = "投保";
            gridViewComboBoxColumn21.IsAutoGenerated = true;
            gridViewComboBoxColumn21.Name = "HedgeFlag";
            gridViewComboBoxColumn21.ValueMember = "Value";
            gridViewComboBoxColumn21.Width = 48;
            this.enumBinder21.Target = gridViewComboBoxColumn21;
            // 
            // enumBinder22
            // 
            this.enumBinder22.Source = typeof(QuantBox.CSharp2CTP.TThostFtdcPosiDirectionType);
            gridViewComboBoxColumn22.DataSource = this.enumBinder22;
            gridViewComboBoxColumn22.DataType = typeof(object);
            gridViewComboBoxColumn22.DisplayMember = "Description";
            gridViewComboBoxColumn22.FieldName = "PosiDirection";
            gridViewComboBoxColumn22.HeaderText = "买卖";
            gridViewComboBoxColumn22.IsAutoGenerated = true;
            gridViewComboBoxColumn22.Name = "PosiDirection";
            gridViewComboBoxColumn22.ValueMember = "Value";
            gridViewComboBoxColumn22.Width = 48;
            this.enumBinder22.Target = gridViewComboBoxColumn22;
            // 
            // enumBinder23
            // 
            this.enumBinder23.Source = typeof(QuantBox.CSharp2CTP.TThostFtdcHedgeFlagType);
            gridViewComboBoxColumn23.DataSource = this.enumBinder23;
            gridViewComboBoxColumn23.DataType = typeof(object);
            gridViewComboBoxColumn23.DisplayMember = "Description";
            gridViewComboBoxColumn23.FieldName = "HedgeFlag";
            gridViewComboBoxColumn23.HeaderText = "占用保证金";
            gridViewComboBoxColumn23.IsAutoGenerated = true;
            gridViewComboBoxColumn23.Name = "HedgeFlag";
            gridViewComboBoxColumn23.ValueMember = "Value";
            gridViewComboBoxColumn23.Width = 105;
            this.enumBinder23.Target = gridViewComboBoxColumn23;
            // 
            // enumBinder24
            // 
            this.enumBinder24.Source = typeof(QuantBox.CSharp2CTP.TThostFtdcDirectionType);
            gridViewComboBoxColumn24.DataSource = this.enumBinder24;
            gridViewComboBoxColumn24.DataType = typeof(object);
            gridViewComboBoxColumn24.DisplayMember = "Description";
            gridViewComboBoxColumn24.FieldName = "Direction";
            gridViewComboBoxColumn24.HeaderText = "买卖";
            gridViewComboBoxColumn24.IsAutoGenerated = true;
            gridViewComboBoxColumn24.Name = "Direction";
            gridViewComboBoxColumn24.ValueMember = "Value";
            gridViewComboBoxColumn24.Width = 48;
            this.enumBinder24.Target = gridViewComboBoxColumn24;
            // 
            // enumBinder25
            // 
            this.enumBinder25.Source = typeof(QuantBox.CSharp2CTP.TThostFtdcOrderStatusType);
            gridViewComboBoxColumn25.DataSource = this.enumBinder25;
            gridViewComboBoxColumn25.DataType = typeof(object);
            gridViewComboBoxColumn25.DisplayMember = "Description";
            gridViewComboBoxColumn25.FieldName = "OrderStatus";
            gridViewComboBoxColumn25.HeaderText = "挂单状态";
            gridViewComboBoxColumn25.IsAutoGenerated = true;
            gridViewComboBoxColumn25.Name = "OrderStatus";
            gridViewComboBoxColumn25.ValueMember = "Value";
            gridViewComboBoxColumn25.Width = 86;
            this.enumBinder25.Target = gridViewComboBoxColumn25;
            // 
            // enumBinder26
            // 
            this.enumBinder26.Source = typeof(QuantBox.CSharp2CTP.TThostFtdcOrderTypeType);
            gridViewComboBoxColumn26.DataSource = this.enumBinder26;
            gridViewComboBoxColumn26.DataType = typeof(object);
            gridViewComboBoxColumn26.DisplayMember = "Description";
            gridViewComboBoxColumn26.FieldName = "OrderType";
            gridViewComboBoxColumn26.HeaderText = "OrderType";
            gridViewComboBoxColumn26.IsAutoGenerated = true;
            gridViewComboBoxColumn26.Name = "OrderType";
            gridViewComboBoxColumn26.ValueMember = "Value";
            gridViewComboBoxColumn26.Width = 95;
            this.enumBinder26.Target = gridViewComboBoxColumn26;
            // 
            // enumBinder27
            // 
            this.enumBinder27.Source = typeof(QuantBox.CSharp2CTP.TThostFtdcDirectionType);
            gridViewComboBoxColumn27.DataSource = this.enumBinder27;
            gridViewComboBoxColumn27.DataType = typeof(object);
            gridViewComboBoxColumn27.DisplayMember = "Description";
            gridViewComboBoxColumn27.FieldName = "Direction";
            gridViewComboBoxColumn27.HeaderText = "买卖";
            gridViewComboBoxColumn27.IsAutoGenerated = true;
            gridViewComboBoxColumn27.Name = "Direction";
            gridViewComboBoxColumn27.ValueMember = "Value";
            gridViewComboBoxColumn27.Width = 67;
            this.enumBinder27.Target = gridViewComboBoxColumn27;
            // 
            // enumBinder28
            // 
            this.enumBinder28.Source = typeof(QuantBox.CSharp2CTP.TThostFtdcHedgeFlagType);
            gridViewComboBoxColumn28.DataSource = this.enumBinder28;
            gridViewComboBoxColumn28.DataType = typeof(object);
            gridViewComboBoxColumn28.DisplayMember = "Description";
            gridViewComboBoxColumn28.FieldName = "HedgeFlag";
            gridViewComboBoxColumn28.HeaderText = "持仓类型";
            gridViewComboBoxColumn28.IsAutoGenerated = true;
            gridViewComboBoxColumn28.Name = "HedgeFlag";
            gridViewComboBoxColumn28.ValueMember = "Value";
            gridViewComboBoxColumn28.Width = 78;
            this.enumBinder28.Target = gridViewComboBoxColumn28;
            // 
            // enumBinder29
            // 
            this.enumBinder29.Source = typeof(QuantBox.CSharp2CTP.TThostFtdcTradeTypeType);
            gridViewComboBoxColumn29.DataSource = this.enumBinder29;
            gridViewComboBoxColumn29.DataType = typeof(object);
            gridViewComboBoxColumn29.DisplayMember = "Description";
            gridViewComboBoxColumn29.FieldName = "TradeType";
            gridViewComboBoxColumn29.HeaderText = "交易类型";
            gridViewComboBoxColumn29.IsAutoGenerated = true;
            gridViewComboBoxColumn29.Name = "TradeType";
            gridViewComboBoxColumn29.ValueMember = "Value";
            gridViewComboBoxColumn29.Width = 76;
            this.enumBinder29.Target = gridViewComboBoxColumn29;
            // 
            // positionDetailBindingSource
            // 
            this.positionDetailBindingSource.DataSource = typeof(autotrade.model.PositionDetail);
            this.positionDetailBindingSource.Sort = "TradeID";
            // 
            // radStatusStrip1
            // 
            this.radStatusStrip1.Controls.Add(this.dtTradingDay);
            this.radStatusStrip1.Location = new System.Drawing.Point(0, 829);
            this.radStatusStrip1.Name = "radStatusStrip1";
            this.radStatusStrip1.Size = new System.Drawing.Size(1392, 24);
            this.radStatusStrip1.TabIndex = 0;
            this.radStatusStrip1.Text = "radStatusStrip1";
            // 
            // dtTradingDay
            // 
            this.dtTradingDay.Dock = System.Windows.Forms.DockStyle.Right;
            this.dtTradingDay.Location = new System.Drawing.Point(1187, 0);
            this.dtTradingDay.Name = "dtTradingDay";
            this.dtTradingDay.Size = new System.Drawing.Size(205, 24);
            this.dtTradingDay.TabIndex = 0;
            this.dtTradingDay.TabStop = false;
            this.dtTradingDay.Text = "2014年8月7日";
            this.dtTradingDay.Value = new System.DateTime(2014, 8, 7, 20, 39, 31, 922);
            this.dtTradingDay.ValueChanged += new System.EventHandler(this.dtTradingDay_ValueChanged);
            // 
            // radSplitContainer1
            // 
            this.radSplitContainer1.Controls.Add(this.splitPanel1);
            this.radSplitContainer1.Controls.Add(this.splitPanel2);
            this.radSplitContainer1.Controls.Add(this.splitPanel3);
            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.Size = new System.Drawing.Size(1392, 829);
            this.radSplitContainer1.TabIndex = 2;
            this.radSplitContainer1.TabStop = false;
            this.radSplitContainer1.Text = "radSplitContainer1";
            // 
            // splitPanel1
            // 
            this.splitPanel1.Controls.Add(this.rgAccount);
            this.splitPanel1.Location = new System.Drawing.Point(0, 0);
            this.splitPanel1.Name = "splitPanel1";
            this.splitPanel1.Size = new System.Drawing.Size(1392, 100);
            this.splitPanel1.SizeInfo.AutoSizeScale = new System.Drawing.SizeF(0F, -0.2115307F);
            this.splitPanel1.SizeInfo.SplitterCorrection = new System.Drawing.Size(0, -158);
            this.splitPanel1.TabIndex = 0;
            this.splitPanel1.TabStop = false;
            this.splitPanel1.Text = "splitPanel1";
            // 
            // rgAccount
            // 
            this.rgAccount.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(191)))), ((int)(((byte)(219)))), ((int)(((byte)(255)))));
            this.rgAccount.Cursor = System.Windows.Forms.Cursors.Default;
            this.rgAccount.Dock = System.Windows.Forms.DockStyle.Fill;
            this.rgAccount.Font = new System.Drawing.Font("Segoe UI", 8.25F);
            this.rgAccount.ForeColor = System.Drawing.Color.Black;
            this.rgAccount.ImeMode = System.Windows.Forms.ImeMode.NoControl;
            this.rgAccount.Location = new System.Drawing.Point(0, 0);
            // 
            // rgAccount
            // 
            this.rgAccount.MasterTemplate.AllowAddNewRow = false;
            this.rgAccount.Name = "rgAccount";
            this.rgAccount.RightToLeft = System.Windows.Forms.RightToLeft.No;
            this.rgAccount.Size = new System.Drawing.Size(1392, 100);
            this.rgAccount.TabIndex = 0;
            this.rgAccount.Text = "radGridView8";
            this.rgAccount.ThemeName = "TelerikMetro";
            this.rgAccount.EditorRequired += new Telerik.WinControls.UI.EditorRequiredEventHandler(this.rgAccount_EditorRequired);
            this.rgAccount.ValueChanged += new System.EventHandler(this.rgAccount_ValueChanged);
            // 
            // splitPanel2
            // 
            this.splitPanel2.Controls.Add(this.gvInstrument);
            this.splitPanel2.Location = new System.Drawing.Point(0, 104);
            this.splitPanel2.Name = "splitPanel2";
            this.splitPanel2.Size = new System.Drawing.Size(1392, 294);
            this.splitPanel2.SizeInfo.AutoSizeScale = new System.Drawing.SizeF(0F, 0.02476653F);
            this.splitPanel2.SizeInfo.SplitterCorrection = new System.Drawing.Size(0, 18);
            this.splitPanel2.TabIndex = 1;
            this.splitPanel2.TabStop = false;
            this.splitPanel2.Text = "splitPanel2";
            // 
            // gvInstrument
            // 
            this.gvInstrument.BackColor = System.Drawing.SystemColors.Control;
            this.gvInstrument.Cursor = System.Windows.Forms.Cursors.Default;
            this.gvInstrument.Dock = System.Windows.Forms.DockStyle.Fill;
            this.gvInstrument.EnableGestures = false;
            this.gvInstrument.EnableHotTracking = false;
            this.gvInstrument.Font = new System.Drawing.Font("Segoe UI", 8.25F);
            this.gvInstrument.ForeColor = System.Drawing.Color.Black;
            this.gvInstrument.ImeMode = System.Windows.Forms.ImeMode.NoControl;
            this.gvInstrument.Location = new System.Drawing.Point(0, 0);
            // 
            // gvInstrument
            // 
            this.gvInstrument.MasterTemplate.AllowAddNewRow = false;
            this.gvInstrument.MasterTemplate.AllowColumnChooser = false;
            this.gvInstrument.MasterTemplate.AllowDeleteRow = false;
            this.gvInstrument.MasterTemplate.AllowEditRow = false;
            gridViewTextBoxColumn1.EnableExpressionEditor = false;
            gridViewTextBoxColumn1.FieldName = "InstrumentId";
            gridViewTextBoxColumn1.HeaderText = "合约";
            gridViewTextBoxColumn1.IsAutoGenerated = true;
            gridViewTextBoxColumn1.Name = "InstrumentId";
            gridViewTextBoxColumn1.Width = 70;
            gridViewDecimalColumn1.DecimalPlaces = 1;
            gridViewDecimalColumn1.EnableExpressionEditor = false;
            gridViewDecimalColumn1.FieldName = "LastPrice";
            gridViewDecimalColumn1.FormatString = "{0:F1}";
            gridViewDecimalColumn1.HeaderText = "最新价";
            gridViewDecimalColumn1.IsAutoGenerated = true;
            gridViewDecimalColumn1.Name = "LastPrice";
            gridViewDecimalColumn1.Width = 67;
            conditionalFormattingObject1.ApplyToRow = true;
            conditionalFormattingObject1.CellBackColor = System.Drawing.Color.Empty;
            conditionalFormattingObject1.CellFont = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Bold);
            conditionalFormattingObject1.CellForeColor = System.Drawing.Color.Red;
            conditionalFormattingObject1.ConditionType = Telerik.WinControls.UI.ConditionTypes.Greater;
            conditionalFormattingObject1.Name = "NewCondition";
            conditionalFormattingObject1.RowBackColor = System.Drawing.Color.White;
            conditionalFormattingObject1.RowFont = new System.Drawing.Font("Microsoft Sans Serif", 8.25F);
            conditionalFormattingObject1.RowForeColor = System.Drawing.Color.Empty;
            conditionalFormattingObject1.TValue1 = "0";
            conditionalFormattingObject2.ApplyToRow = true;
            conditionalFormattingObject2.CellBackColor = System.Drawing.Color.Empty;
            conditionalFormattingObject2.CellFont = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Bold);
            conditionalFormattingObject2.CellForeColor = System.Drawing.Color.Green;
            conditionalFormattingObject2.ConditionType = Telerik.WinControls.UI.ConditionTypes.Less;
            conditionalFormattingObject2.Name = "NewCondition";
            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 = "0";
            gridViewDecimalColumn2.ConditionalFormattingObjectList.Add(conditionalFormattingObject1);
            gridViewDecimalColumn2.ConditionalFormattingObjectList.Add(conditionalFormattingObject2);
            gridViewDecimalColumn2.DecimalPlaces = 1;
            gridViewDecimalColumn2.EnableExpressionEditor = false;
            gridViewDecimalColumn2.Expression = "LastPrice - PreSettlementPrice ";
            gridViewDecimalColumn2.FormatString = "{0:F1}";
            gridViewDecimalColumn2.HeaderText = "涨跌";
            gridViewDecimalColumn2.Name = "Change";
            gridViewDecimalColumn2.ReadOnly = true;
            gridViewDecimalColumn3.DecimalPlaces = 1;
            gridViewDecimalColumn3.EnableExpressionEditor = false;
            gridViewDecimalColumn3.FieldName = "BidPrice1";
            gridViewDecimalColumn3.FormatString = "{0:F1}";
            gridViewDecimalColumn3.HeaderText = "买价";
            gridViewDecimalColumn3.IsAutoGenerated = true;
            gridViewDecimalColumn3.Name = "BidPrice1";
            gridViewDecimalColumn3.Width = 75;
            gridViewDecimalColumn4.DecimalPlaces = 1;
            gridViewDecimalColumn4.EnableExpressionEditor = false;
            gridViewDecimalColumn4.FieldName = "BidVolume1";
            gridViewDecimalColumn4.HeaderText = "买量";
            gridViewDecimalColumn4.IsAutoGenerated = true;
            gridViewDecimalColumn4.Name = "BidVolume1";
            gridViewDecimalColumn4.Width = 48;
            gridViewDecimalColumn5.DecimalPlaces = 1;
            gridViewDecimalColumn5.EnableExpressionEditor = false;
            gridViewDecimalColumn5.FieldName = "AskPrice1";
            gridViewDecimalColumn5.FormatString = "{0:F1}";
            gridViewDecimalColumn5.HeaderText = "卖价";
            gridViewDecimalColumn5.IsAutoGenerated = true;
            gridViewDecimalColumn5.Name = "AskPrice1";
            gridViewDecimalColumn5.Width = 78;
            gridViewDecimalColumn6.DecimalPlaces = 1;
            gridViewDecimalColumn6.EnableExpressionEditor = false;
            gridViewDecimalColumn6.FieldName = "AskVolume1";
            gridViewDecimalColumn6.HeaderText = "卖量";
            gridViewDecimalColumn6.IsAutoGenerated = true;
            gridViewDecimalColumn6.Name = "AskVolume1";
            gridViewDecimalColumn6.Width = 48;
            gridViewDecimalColumn7.EnableExpressionEditor = false;
            gridViewDecimalColumn7.FieldName = "Volume";
            gridViewDecimalColumn7.HeaderText = "成交量";
            gridViewDecimalColumn7.IsAutoGenerated = true;
            gridViewDecimalColumn7.Name = "Volume";
            gridViewDecimalColumn7.Width = 88;
            gridViewDecimalColumn8.EnableExpressionEditor = false;
            gridViewDecimalColumn8.FieldName = "OpenInterest";
            gridViewDecimalColumn8.HeaderText = "持仓量";
            gridViewDecimalColumn8.IsAutoGenerated = true;
            gridViewDecimalColumn8.Name = "OpenInterest";
            gridViewDecimalColumn8.Width = 89;
            gridViewDecimalColumn9.DecimalPlaces = 1;
            gridViewDecimalColumn9.EnableExpressionEditor = false;
            gridViewDecimalColumn9.FieldName = "UpperLimitPrice";
            gridViewDecimalColumn9.FormatString = "{0:F1}";
            gridViewDecimalColumn9.HeaderText = "涨停价";
            gridViewDecimalColumn9.IsAutoGenerated = true;
            gridViewDecimalColumn9.Name = "UpperLimitPrice";
            gridViewDecimalColumn9.Width = 67;
            gridViewDecimalColumn10.DecimalPlaces = 1;
            gridViewDecimalColumn10.EnableExpressionEditor = false;
            gridViewDecimalColumn10.FieldName = "LowerLimitPrice";
            gridViewDecimalColumn10.FormatString = "{0:F1}";
            gridViewDecimalColumn10.HeaderText = "跌停价";
            gridViewDecimalColumn10.IsAutoGenerated = true;
            gridViewDecimalColumn10.Name = "LowerLimitPrice";
            gridViewDecimalColumn10.Width = 67;
            gridViewDecimalColumn11.DecimalPlaces = 1;
            gridViewDecimalColumn11.EnableExpressionEditor = false;
            gridViewDecimalColumn11.FieldName = "OpenPrice";
            gridViewDecimalColumn11.FormatString = "{0:F1}";
            gridViewDecimalColumn11.HeaderText = "今开盘";
            gridViewDecimalColumn11.IsAutoGenerated = true;
            gridViewDecimalColumn11.Name = "OpenPrice";
            gridViewDecimalColumn11.Width = 67;
            gridViewDecimalColumn12.DecimalPlaces = 1;
            gridViewDecimalColumn12.EnableExpressionEditor = false;
            gridViewDecimalColumn12.FieldName = "PreSettlementPrice";
            gridViewDecimalColumn12.FormatString = "{0:F1}";
            gridViewDecimalColumn12.HeaderText = "昨结算";
            gridViewDecimalColumn12.IsAutoGenerated = true;
            gridViewDecimalColumn12.Name = "PreSettlementPrice";
            gridViewDecimalColumn12.Width = 67;
            gridViewDecimalColumn13.DecimalPlaces = 1;
            gridViewDecimalColumn13.EnableExpressionEditor = false;
            gridViewDecimalColumn13.FieldName = "HighestPrice";
            gridViewDecimalColumn13.FormatString = "{0:F1}";
            gridViewDecimalColumn13.HeaderText = "最高价";
            gridViewDecimalColumn13.IsAutoGenerated = true;
            gridViewDecimalColumn13.Name = "HighestPrice";
            gridViewDecimalColumn13.Width = 67;
            gridViewDecimalColumn14.DecimalPlaces = 1;
            gridViewDecimalColumn14.EnableExpressionEditor = false;
            gridViewDecimalColumn14.FieldName = "LowestPrice";
            gridViewDecimalColumn14.FormatString = "{0:F1}";
            gridViewDecimalColumn14.HeaderText = "最低价";
            gridViewDecimalColumn14.IsAutoGenerated = true;
            gridViewDecimalColumn14.Name = "LowestPrice";
            gridViewDecimalColumn14.Width = 67;
            gridViewDecimalColumn15.EnableExpressionEditor = false;
            gridViewDecimalColumn15.Expression = "";
            gridViewDecimalColumn15.FormatString = "{0:P2}";
            gridViewDecimalColumn15.HeaderText = "涨跌幅";
            gridViewDecimalColumn15.Name = "column2";
            gridViewDecimalColumn15.ReadOnly = true;
            gridViewDecimalColumn15.Width = 77;
            gridViewDecimalColumn16.DecimalPlaces = 1;
            gridViewDecimalColumn16.EnableExpressionEditor = false;
            gridViewDecimalColumn16.FieldName = "PreClosePrice";
            gridViewDecimalColumn16.FormatString = "{0:F1}";
            gridViewDecimalColumn16.HeaderText = "昨收盘";
            gridViewDecimalColumn16.IsAutoGenerated = true;
            gridViewDecimalColumn16.Name = "PreClosePrice";
            gridViewDecimalColumn16.Width = 67;
            gridViewDecimalColumn17.EnableExpressionEditor = false;
            gridViewDecimalColumn17.FieldName = "Turnover";
            gridViewDecimalColumn17.FormatString = "{0:N0}";
            gridViewDecimalColumn17.HeaderText = "成交额";
            gridViewDecimalColumn17.IsAutoGenerated = true;
            gridViewDecimalColumn17.Name = "Turnover";
            gridViewDecimalColumn17.Width = 116;
            gridViewTextBoxColumn2.EnableExpressionEditor = false;
            gridViewTextBoxColumn2.FieldName = "ExchangeID";
            gridViewTextBoxColumn2.HeaderText = "交易所";
            gridViewTextBoxColumn2.Name = "ExchangeID";
            gridViewTextBoxColumn2.Width = 78;
            gridViewTextBoxColumn3.EnableExpressionEditor = false;
            gridViewTextBoxColumn3.FieldName = "UpdateTime";
            gridViewTextBoxColumn3.HeaderText = "行情更新时间";
            gridViewTextBoxColumn3.IsAutoGenerated = true;
            gridViewTextBoxColumn3.Name = "UpdateTime";
            gridViewTextBoxColumn3.Width = 124;
            gridViewTextBoxColumn4.EnableExpressionEditor = false;
            gridViewTextBoxColumn4.FieldName = "TradingDay";
            gridViewTextBoxColumn4.HeaderText = "交易日";
            gridViewTextBoxColumn4.IsAutoGenerated = true;
            gridViewTextBoxColumn4.Name = "TradingDay";
            gridViewTextBoxColumn4.Width = 98;
            gridViewDecimalColumn18.DecimalPlaces = 1;
            gridViewDecimalColumn18.EnableExpressionEditor = false;
            gridViewDecimalColumn18.FieldName = "AveragePrice";
            gridViewDecimalColumn18.FormatString = "{0:F1}";
            gridViewDecimalColumn18.HeaderText = "均价";
            gridViewDecimalColumn18.IsAutoGenerated = true;
            gridViewDecimalColumn18.Name = "AveragePrice";
            gridViewDecimalColumn18.Width = 114;
            this.gvInstrument.MasterTemplate.Columns.AddRange(new Telerik.WinControls.UI.GridViewDataColumn[] {
            gridViewTextBoxColumn1,
            gridViewDecimalColumn1,
            gridViewDecimalColumn2,
            gridViewDecimalColumn3,
            gridViewDecimalColumn4,
            gridViewDecimalColumn5,
            gridViewDecimalColumn6,
            gridViewDecimalColumn7,
            gridViewDecimalColumn8,
            gridViewDecimalColumn9,
            gridViewDecimalColumn10,
            gridViewDecimalColumn11,
            gridViewDecimalColumn12,
            gridViewDecimalColumn13,
            gridViewDecimalColumn14,
            gridViewDecimalColumn15,
            gridViewDecimalColumn16,
            gridViewDecimalColumn17,
            gridViewTextBoxColumn2,
            gridViewTextBoxColumn3,
            gridViewTextBoxColumn4,
            gridViewDecimalColumn18});
            this.gvInstrument.MasterTemplate.EnableAlternatingRowColor = true;
            this.gvInstrument.MasterTemplate.EnableGrouping = false;
            this.gvInstrument.MasterTemplate.EnableSorting = false;
            this.gvInstrument.MasterTemplate.ShowFilteringRow = false;
            this.gvInstrument.MasterTemplate.ShowRowHeaderColumn = false;
            this.gvInstrument.Name = "gvInstrument";
            this.gvInstrument.Padding = new System.Windows.Forms.Padding(0, 0, 0, 1);
            this.gvInstrument.ReadOnly = true;
            this.gvInstrument.RightToLeft = System.Windows.Forms.RightToLeft.No;
            this.gvInstrument.ShowGroupPanel = false;
            this.gvInstrument.ShowItemToolTips = false;
            this.gvInstrument.Size = new System.Drawing.Size(1392, 294);
            this.gvInstrument.TabIndex = 0;
            this.gvInstrument.Text = "合约";
            this.gvInstrument.ThemeName = "TelerikMetro";
            this.gvInstrument.SelectionChanged += new System.EventHandler(this.RadGridView_SelectionChanged);
            this.gvInstrument.ContextMenuOpening += new Telerik.WinControls.UI.ContextMenuOpeningEventHandler(this.gvInstrument_ContextMenuOpening);
            // 
            // splitPanel3
            // 
            this.splitPanel3.Controls.Add(this.radSplitContainer3);
            this.splitPanel3.Location = new System.Drawing.Point(0, 402);
            this.splitPanel3.Name = "splitPanel3";
            this.splitPanel3.Size = new System.Drawing.Size(1392, 427);
            this.splitPanel3.SizeInfo.AutoSizeScale = new System.Drawing.SizeF(0F, 0.1867641F);
            this.splitPanel3.SizeInfo.SplitterCorrection = new System.Drawing.Size(0, 21);
            this.splitPanel3.TabIndex = 2;
            this.splitPanel3.TabStop = false;
            this.splitPanel3.Text = "splitPanel3";
            // 
            // radSplitContainer3
            // 
            this.radSplitContainer3.Controls.Add(this.splitPanel7);
            this.radSplitContainer3.Controls.Add(this.splitPanel4);
            this.radSplitContainer3.Dock = System.Windows.Forms.DockStyle.Fill;
            this.radSplitContainer3.Location = new System.Drawing.Point(0, 0);
            this.radSplitContainer3.Name = "radSplitContainer3";
            this.radSplitContainer3.Size = new System.Drawing.Size(1392, 427);
            this.radSplitContainer3.TabIndex = 0;
            this.radSplitContainer3.TabStop = false;
            this.radSplitContainer3.Text = "radSplitContainer3";
            // 
            // splitPanel7
            // 
            this.splitPanel7.Controls.Add(this.radPageView3);
            this.splitPanel7.Location = new System.Drawing.Point(0, 0);
            this.splitPanel7.Name = "splitPanel7";
            this.splitPanel7.Size = new System.Drawing.Size(1089, 427);
            this.splitPanel7.SizeInfo.AutoSizeScale = new System.Drawing.SizeF(0.2845821F, 0F);
            this.splitPanel7.SizeInfo.SplitterCorrection = new System.Drawing.Size(343, 0);
            this.splitPanel7.TabIndex = 0;
            this.splitPanel7.TabStop = false;
            this.splitPanel7.Text = "splitPanel7";
            // 
            // radPageView3
            // 
            this.radPageView3.Controls.Add(this.radPageViewPage6);
            this.radPageView3.Controls.Add(this.radPageViewPage1);
            this.radPageView3.Controls.Add(this.radPageViewPage5);
            this.radPageView3.Controls.Add(this.radPageViewPage4);
            this.radPageView3.Dock = System.Windows.Forms.DockStyle.Fill;
            this.radPageView3.Location = new System.Drawing.Point(0, 0);
            this.radPageView3.Name = "radPageView3";
            this.radPageView3.SelectedPage = this.radPageViewPage6;
            this.radPageView3.Size = new System.Drawing.Size(1089, 427);
            this.radPageView3.TabIndex = 1;
            this.radPageView3.ThemeName = "TelerikMetro";
            // 
            // radPageViewPage6
            // 
            this.radPageViewPage6.Controls.Add(this.gvOrder);
            this.radPageViewPage6.ItemSize = new System.Drawing.SizeF(50F, 25F);
            this.radPageViewPage6.Location = new System.Drawing.Point(5, 31);
            this.radPageViewPage6.Name = "radPageViewPage6";
            this.radPageViewPage6.Size = new System.Drawing.Size(1079, 391);
            this.radPageViewPage6.Text = "系统单";
            // 
            // gvOrder
            // 
            this.gvOrder.BackColor = System.Drawing.Color.White;
            this.gvOrder.Cursor = System.Windows.Forms.Cursors.Default;
            this.gvOrder.Dock = System.Windows.Forms.DockStyle.Fill;
            this.gvOrder.Font = new System.Drawing.Font("Segoe UI", 9F);
            this.gvOrder.ForeColor = System.Drawing.Color.Black;
            this.gvOrder.ImeMode = System.Windows.Forms.ImeMode.NoControl;
            this.gvOrder.Location = new System.Drawing.Point(0, 0);
            // 
            // gvOrder
            // 
            this.gvOrder.MasterTemplate.AllowAddNewRow = false;
            this.gvOrder.MasterTemplate.EnableAlternatingRowColor = true;
            gridViewSummaryItem1.Aggregate = Telerik.WinControls.UI.GridAggregateFunction.Count;
            gridViewSummaryItem1.FormatString = "{0}";
            gridViewSummaryItem1.Name = "InstrumentId";
            this.gvOrder.MasterTemplate.SummaryRowsTop.Add(new Telerik.WinControls.UI.GridViewSummaryRowItem(new Telerik.WinControls.UI.GridViewSummaryItem[] {
                gridViewSummaryItem1}));
            this.gvOrder.Name = "gvOrder";
            this.gvOrder.ReadOnly = true;
            this.gvOrder.RightToLeft = System.Windows.Forms.RightToLeft.No;
            this.gvOrder.Size = new System.Drawing.Size(1079, 391);
            this.gvOrder.TabIndex = 0;
            this.gvOrder.Text = "系统单";
            this.gvOrder.ThemeName = "TelerikMetro";
            this.gvOrder.ContextMenuOpening += new Telerik.WinControls.UI.ContextMenuOpeningEventHandler(this.gvOrder_ContextMenuOpening);
            // 
            // radPageViewPage1
            // 
            this.radPageViewPage1.Controls.Add(this.gvOrderLog);
            this.radPageViewPage1.ItemSize = new System.Drawing.SizeF(50F, 25F);
            this.radPageViewPage1.Location = new System.Drawing.Point(5, 36);
            this.radPageViewPage1.Name = "radPageViewPage1";
            this.radPageViewPage1.Size = new System.Drawing.Size(1079, 390);
            this.radPageViewPage1.Text = "完成单";
            // 
            // gvOrderLog
            // 
            this.gvOrderLog.Dock = System.Windows.Forms.DockStyle.Fill;
            this.gvOrderLog.Location = new System.Drawing.Point(0, 0);
            // 
            // 
            // 
            this.gvOrderLog.MasterTemplate.AllowAddNewRow = false;
            this.gvOrderLog.Name = "gvOrderLog";
            this.gvOrderLog.ReadOnly = true;
            this.gvOrderLog.Size = new System.Drawing.Size(1079, 390);
            this.gvOrderLog.TabIndex = 2;
            this.gvOrderLog.ThemeName = "TelerikMetro";
            this.gvOrderLog.ContextMenuOpening += new Telerik.WinControls.UI.ContextMenuOpeningEventHandler(this.gvOrderLog_ContextMenuOpening);
            // 
            // radPageViewPage5
            // 
            this.radPageViewPage5.Controls.Add(this.radGridView6);
            this.radPageViewPage5.ItemSize = new System.Drawing.SizeF(75F, 25F);
            this.radPageViewPage5.Location = new System.Drawing.Point(5, 31);
            this.radPageViewPage5.Name = "radPageViewPage5";
            this.radPageViewPage5.Size = new System.Drawing.Size(1382, 401);
            this.radPageViewPage5.Text = "所有委托单";
            // 
            // radGridView6
            // 
            this.radGridView6.Dock = System.Windows.Forms.DockStyle.Fill;
            this.radGridView6.Location = new System.Drawing.Point(0, 0);
            this.radGridView6.Name = "radGridView6";
            this.radGridView6.ReadOnly = true;
            this.radGridView6.Size = new System.Drawing.Size(1382, 401);
            this.radGridView6.TabIndex = 0;
            this.radGridView6.Text = "radGridView6";
            this.radGridView6.ThemeName = "TelerikMetro";
            // 
            // radPageViewPage4
            // 
            this.radPageViewPage4.Controls.Add(this.radGridView9);
            this.radPageViewPage4.Description = null;
            this.radPageViewPage4.ItemSize = new System.Drawing.SizeF(62F, 25F);
            this.radPageViewPage4.Location = new System.Drawing.Point(5, 31);
            this.radPageViewPage4.Name = "radPageViewPage4";
            this.radPageViewPage4.Size = new System.Drawing.Size(1382, 401);
            this.radPageViewPage4.Text = "成交记录";
            this.radPageViewPage4.Title = "成交记录";
            // 
            // radGridView9
            // 
            this.radGridView9.BackColor = System.Drawing.Color.White;
            this.radGridView9.Cursor = System.Windows.Forms.Cursors.Default;
            this.radGridView9.Dock = System.Windows.Forms.DockStyle.Fill;
            this.radGridView9.Font = new System.Drawing.Font("Segoe UI", 9F);
            this.radGridView9.ForeColor = System.Drawing.Color.Black;
            this.radGridView9.ImeMode = System.Windows.Forms.ImeMode.NoControl;
            this.radGridView9.Location = new System.Drawing.Point(0, 0);
            this.radGridView9.Name = "radGridView9";
            this.radGridView9.ReadOnly = true;
            this.radGridView9.RightToLeft = System.Windows.Forms.RightToLeft.No;
            this.radGridView9.Size = new System.Drawing.Size(1382, 401);
            this.radGridView9.TabIndex = 2;
            this.radGridView9.Text = "gvTradeRecord";
            this.radGridView9.ThemeName = "TelerikMetro";
            // 
            // splitPanel4
            // 
            this.splitPanel4.Controls.Add(this.radPropertyGrid1);
            this.splitPanel4.Location = new System.Drawing.Point(1093, 0);
            this.splitPanel4.Name = "splitPanel4";
            this.splitPanel4.Size = new System.Drawing.Size(299, 427);
            this.splitPanel4.SizeInfo.AutoSizeScale = new System.Drawing.SizeF(-0.2845821F, 0F);
            this.splitPanel4.SizeInfo.SplitterCorrection = new System.Drawing.Size(-703, 0);
            this.splitPanel4.TabIndex = 1;
            this.splitPanel4.TabStop = false;
            this.splitPanel4.Text = "splitPanel4";
            // 
            // radPropertyGrid1
            // 
            this.radPropertyGrid1.Dock = System.Windows.Forms.DockStyle.Fill;
            this.radPropertyGrid1.Location = new System.Drawing.Point(0, 0);
            this.radPropertyGrid1.Name = "radPropertyGrid1";
            this.radPropertyGrid1.Size = new System.Drawing.Size(299, 427);
            this.radPropertyGrid1.SortOrder = System.Windows.Forms.SortOrder.Ascending;
            this.radPropertyGrid1.TabIndex = 0;
            this.radPropertyGrid1.Text = "radPropertyGrid1";
            // 
            // orderRecordBindingSource
            // 
            this.orderRecordBindingSource.DataSource = typeof(autotrade.model.OrderRecord);
            // 
            // tradeRecordBindingSource
            // 
            this.tradeRecordBindingSource.DataSource = typeof(autotrade.model.TradeRecord);
            // 
            // positionRecordBindingSource
            // 
            this.positionRecordBindingSource.DataSource = typeof(autotrade.model.PositionRecord);
            // 
            // radMenu1
            // 
            this.radMenu1.Location = new System.Drawing.Point(0, 0);
            this.radMenu1.Name = "radMenu1";
            this.radMenu1.Size = new System.Drawing.Size(1624, 20);
            this.radMenu1.TabIndex = 1;
            this.radMenu1.Text = "radMenu1";
            // 
            // radMenuItem1
            // 
            this.radMenuItem1.AccessibleDescription = "查询";
            this.radMenuItem1.AccessibleName = "查询";
            this.radMenuItem1.Name = "radMenuItem1";
            this.radMenuItem1.Text = "查询";
            this.radMenuItem1.Visibility = Telerik.WinControls.ElementVisibility.Visible;
            // 
            // radMenuItem2
            // 
            this.radMenuItem2.AccessibleDescription = "报单";
            this.radMenuItem2.AccessibleName = "报单";
            this.radMenuItem2.Name = "radMenuItem2";
            this.radMenuItem2.Text = "报单";
            this.radMenuItem2.Visibility = Telerik.WinControls.ElementVisibility.Visible;
            this.radMenuItem2.Click += new System.EventHandler(this.radMenuItem2_Click);
            // 
            // radMenuItem3
            // 
            this.radMenuItem3.AccessibleDescription = "行情";
            this.radMenuItem3.AccessibleName = "行情";
            this.radMenuItem3.Name = "radMenuItem3";
            this.radMenuItem3.Text = "行情";
            this.radMenuItem3.Visibility = Telerik.WinControls.ElementVisibility.Visible;
            this.radMenuItem3.Click += new System.EventHandler(this.radMenuItem3_Click);
            // 
            // radMenuItem4
            // 
            this.radMenuItem4.AccessibleDescription = "系统";
            this.radMenuItem4.AccessibleName = "系统";
            this.radMenuItem4.Items.AddRange(new Telerik.WinControls.RadItem[] {
            this.radMenuItem12,
            this.radMenuItem8,
            this.miStart});
            this.radMenuItem4.Name = "radMenuItem4";
            this.radMenuItem4.Text = "系统";
            this.radMenuItem4.Visibility = Telerik.WinControls.ElementVisibility.Visible;
            // 
            // radMenuItem12
            // 
            this.radMenuItem12.AccessibleDescription = "关闭";
            this.radMenuItem12.AccessibleName = "关闭";
            this.radMenuItem12.Name = "radMenuItem12";
            this.radMenuItem12.Text = "退出";
            this.radMenuItem12.Visibility = Telerik.WinControls.ElementVisibility.Visible;
            this.radMenuItem12.Click += new System.EventHandler(this.miClose_Click);
            // 
            // radMenuItem8
            // 
            this.radMenuItem8.AccessibleDescription = "导出Tick";
            this.radMenuItem8.AccessibleName = "导出Tick";
            this.radMenuItem8.Name = "radMenuItem8";
            this.radMenuItem8.Text = "导入Tick";
            this.radMenuItem8.Visibility = Telerik.WinControls.ElementVisibility.Visible;
            this.radMenuItem8.Click += new System.EventHandler(this.radMenuItem8_Click);
            // 
            // radMenuItem7
            // 
            this.radMenuItem7.AccessibleDescription = "选项";
            this.radMenuItem7.AccessibleName = "选项";
            this.radMenuItem7.Items.AddRange(new Telerik.WinControls.RadItem[] {
            this.radMenuItem9});
            this.radMenuItem7.Name = "radMenuItem7";
            this.radMenuItem7.Text = "选项";
            this.radMenuItem7.Visibility = Telerik.WinControls.ElementVisibility.Visible;
            // 
            // radMenuItem9
            // 
            this.radMenuItem9.AccessibleDescription = "合约";
            this.radMenuItem9.AccessibleName = "合约";
            this.radMenuItem9.Name = "radMenuItem9";
            this.radMenuItem9.Text = "合约";
            this.radMenuItem9.Visibility = Telerik.WinControls.ElementVisibility.Visible;
            this.radMenuItem9.Click += new System.EventHandler(this.radMenuItem10_Click);
            // 
            // miClose
            // 
            this.miClose.AccessibleDescription = "退出";
            this.miClose.AccessibleName = "退出";
            this.miClose.Name = "miClose";
            this.miClose.Text = "退出";
            this.miClose.Visibility = Telerik.WinControls.ElementVisibility.Visible;
            this.miClose.Click += new System.EventHandler(this.miClose_Click);
            // 
            // radMenuItem11
            // 
            this.radMenuItem11.AccessibleDescription = "开始";
            this.radMenuItem11.AccessibleName = "开始";
            this.radMenuItem11.Name = "radMenuItem11";
            this.radMenuItem11.Text = "开始";
            this.radMenuItem11.Visibility = Telerik.WinControls.ElementVisibility.Visible;
            this.radMenuItem11.Click += new System.EventHandler(this.radMenuItem11_Click);
            // 
            // cmOrder
            // 
            this.cmOrder.Items.AddRange(new Telerik.WinControls.RadItem[] {
            this.miDetail,
            this.miCancelOrder,
            this.miCancelAll,
            this.miCloseOrder,
            this.miDeleteOrder});
            this.cmOrder.ThemeName = "TelerikMetro";
            // 
            // miDetail
            // 
            this.miDetail.AccessibleDescription = "详情.";
            this.miDetail.AccessibleName = "详情.";
            this.miDetail.Name = "miDetail";
            this.miDetail.Text = "详情.";
            this.miDetail.Visibility = Telerik.WinControls.ElementVisibility.Visible;
            // 
            // miCancelOrder
            // 
            this.miCancelOrder.AccessibleDescription = "撤单";
            this.miCancelOrder.AccessibleName = "撤单";
            this.miCancelOrder.Name = "miCancelOrder";
            this.miCancelOrder.Text = "撤单";
            this.miCancelOrder.Visibility = Telerik.WinControls.ElementVisibility.Visible;
            // 
            // miCancelAll
            // 
            this.miCancelAll.AccessibleDescription = "撤所有单";
            this.miCancelAll.AccessibleName = "撤所有单";
            this.miCancelAll.Name = "miCancelAll";
            this.miCancelAll.Text = "撤所有单";
            this.miCancelAll.Visibility = Telerik.WinControls.ElementVisibility.Visible;
            // 
            // miCloseOrder
            // 
            this.miCloseOrder.AccessibleDescription = "平仓";
            this.miCloseOrder.AccessibleName = "平仓";
            this.miCloseOrder.Name = "miCloseOrder";
            this.miCloseOrder.Text = "平仓";
            this.miCloseOrder.Visibility = Telerik.WinControls.ElementVisibility.Visible;
            // 
            // miDeleteOrder
            // 
            this.miDeleteOrder.AccessibleDescription = "删除单";
            this.miDeleteOrder.AccessibleName = "删除单";
            this.miDeleteOrder.Name = "miDeleteOrder";
            this.miDeleteOrder.Text = "删除单";
            this.miDeleteOrder.Visibility = Telerik.WinControls.ElementVisibility.Visible;
            // 
            // cmOrderLog
            // 
            this.cmOrderLog.Items.AddRange(new Telerik.WinControls.RadItem[] {
            this.miOrderLogDetail});
            // 
            // miOrderLogDetail
            // 
            this.miOrderLogDetail.AccessibleDescription = "详情..";
            this.miOrderLogDetail.AccessibleName = "详情..";
            this.miOrderLogDetail.Name = "miOrderLogDetail";
            this.miOrderLogDetail.Text = "详情..";
            this.miOrderLogDetail.Visibility = Telerik.WinControls.ElementVisibility.Visible;
            // 
            // cmMarket
            // 
            this.cmMarket.Items.AddRange(new Telerik.WinControls.RadItem[] {
            this.miSellOrder,
            this.miBuyOrder});
            // 
            // miSellOrder
            // 
            this.miSellOrder.AccessibleDescription = "开空仓";
            this.miSellOrder.AccessibleName = "开空仓";
            this.miSellOrder.Name = "miSellOrder";
            this.miSellOrder.Text = "开空仓";
            this.miSellOrder.Visibility = Telerik.WinControls.ElementVisibility.Visible;
            // 
            // miBuyOrder
            // 
            this.miBuyOrder.AccessibleDescription = "开多仓";
            this.miBuyOrder.AccessibleName = "开多仓";
            this.miBuyOrder.Name = "miBuyOrder";
            this.miBuyOrder.Text = "开多仓";
            this.miBuyOrder.Visibility = Telerik.WinControls.ElementVisibility.Visible;
            // 
            // radMenu2
            // 
            this.radMenu2.Items.AddRange(new Telerik.WinControls.RadItem[] {
            this.radMenuItem4,
            this.radMenuItem7,
            this.radMenuItem5});
            this.radMenu2.Location = new System.Drawing.Point(0, 0);
            this.radMenu2.Name = "radMenu2";
            this.radMenu2.Size = new System.Drawing.Size(1392, 20);
            this.radMenu2.TabIndex = 3;
            this.radMenu2.Text = "radMenu2";
            // 
            // radMenuItem5
            // 
            this.radMenuItem5.AccessibleDescription = "银期";
            this.radMenuItem5.AccessibleName = "银期";
            this.radMenuItem5.Items.AddRange(new Telerik.WinControls.RadItem[] {
            this.radMenuItem6});
            this.radMenuItem5.Name = "radMenuItem5";
            this.radMenuItem5.Text = "银期";
            this.radMenuItem5.Visibility = Telerik.WinControls.ElementVisibility.Visible;
            // 
            // radMenuItem6
            // 
            this.radMenuItem6.AccessibleDescription = "查询";
            this.radMenuItem6.AccessibleName = "查询";
            this.radMenuItem6.Name = "radMenuItem6";
            this.radMenuItem6.Text = "查询";
            this.radMenuItem6.Visibility = Telerik.WinControls.ElementVisibility.Visible;
            this.radMenuItem6.Click += new System.EventHandler(this.radMenuItem6_Click);
            // 
            // openFileDialog1
            // 
            this.openFileDialog1.FileName = "openFileDialog1";
            // 
            // miStart
            // 
            this.miStart.AccessibleDescription = "开始交易";
            this.miStart.AccessibleName = "开始交易";
            this.miStart.Name = "miStart";
            this.miStart.Text = "开始交易";
            this.miStart.Visibility = Telerik.WinControls.ElementVisibility.Visible;
            this.miStart.Click += new System.EventHandler(this.miStart_Click);
            // 
            // MainForm
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.ClientSize = new System.Drawing.Size(1392, 853);
            this.Controls.Add(this.radMenu2);
            this.Controls.Add(this.radSplitContainer1);
            this.Controls.Add(this.radStatusStrip1);
            this.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
            this.Margin = new System.Windows.Forms.Padding(4);
            this.Name = "MainForm";
            // 
            // 
            // 
            this.RootElement.ApplyShapeToControl = true;
            this.Text = "天网自动交易系统";
            this.WindowState = System.Windows.Forms.FormWindowState.Maximized;
            this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.MainForm_FormClosing);
            this.Load += new System.EventHandler(this.MainForm_Load);
            ((System.ComponentModel.ISupportInitialize)(this.positionDetailBindingSource)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radStatusStrip1)).EndInit();
            this.radStatusStrip1.ResumeLayout(false);
            this.radStatusStrip1.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.dtTradingDay)).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.rgAccount.MasterTemplate)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.rgAccount)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.splitPanel2)).EndInit();
            this.splitPanel2.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.gvInstrument.MasterTemplate)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.gvInstrument)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.splitPanel3)).EndInit();
            this.splitPanel3.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.radSplitContainer3)).EndInit();
            this.radSplitContainer3.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.splitPanel7)).EndInit();
            this.splitPanel7.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.radPageView3)).EndInit();
            this.radPageView3.ResumeLayout(false);
            this.radPageViewPage6.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.gvOrder.MasterTemplate)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.gvOrder)).EndInit();
            this.radPageViewPage1.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.gvOrderLog.MasterTemplate)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.gvOrderLog)).EndInit();
            this.radPageViewPage5.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.radGridView6.MasterTemplate)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radGridView6)).EndInit();
            this.radPageViewPage4.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.radGridView9.MasterTemplate)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radGridView9)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.splitPanel4)).EndInit();
            this.splitPanel4.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.radPropertyGrid1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.orderRecordBindingSource)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.tradeRecordBindingSource)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.positionRecordBindingSource)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radMenu1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radMenu2)).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()
		{
			this.components = new System.ComponentModel.Container();
			System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmMain));
			Telerik.WinControls.UI.GridViewComboBoxColumn gridViewComboBoxColumn1 = 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.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.Data.SortDescriptor sortDescriptor1 = new Telerik.WinControls.Data.SortDescriptor();
			this.niSysTray = new System.Windows.Forms.NotifyIcon(this.components);
			this.trayMenu = new System.Windows.Forms.ContextMenuStrip(this.components);
			this.trayMenu_Start = new System.Windows.Forms.ToolStripMenuItem();
			this.trayMenu_Stop = new System.Windows.Forms.ToolStripMenuItem();
			this.trayMenu_EditProjects = new System.Windows.Forms.ToolStripMenuItem();
			this.trayMenu_Open = new System.Windows.Forms.ToolStripMenuItem();
			this.trayMenu_Exit = new System.Windows.Forms.ToolStripMenuItem();
			this.btnSave = new System.Windows.Forms.Button();
			this.btnCancel = new System.Windows.Forms.Button();
			this.grdTimeLog = new Telerik.WinControls.UI.RadGridView();
			this.office2010BlueTheme1 = new Telerik.WinControls.Themes.Office2010BlueTheme();
			this.mnuMain = new Telerik.WinControls.UI.RadMenu();
			this.radMenuItem1 = new Telerik.WinControls.UI.RadMenuItem();
			this.mnuExit = new Telerik.WinControls.UI.RadMenuItem();
			this.radMenuItem2 = new Telerik.WinControls.UI.RadMenuItem();
			this.mnuEditProjects = new Telerik.WinControls.UI.RadMenuItem();
			this.radMenuItem3 = new Telerik.WinControls.UI.RadMenuItem();
			this.mnuAbout = new Telerik.WinControls.UI.RadMenuItem();
			this.ctxProjectMenu = new Telerik.WinControls.UI.RadContextMenu(this.components);
			this.ctxPrjMnu_Edit = new Telerik.WinControls.UI.RadMenuItem();
			this.ctxPrjMnu_Delete = new Telerik.WinControls.UI.RadMenuItem();
			this.ctxPrjMnu_Add = new Telerik.WinControls.UI.RadMenuItem();
			this.timeRecordBindingSource = new System.Windows.Forms.BindingSource(this.components);
			this.trayMenu.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.grdTimeLog)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.mnuMain)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.timeRecordBindingSource)).BeginInit();
			this.SuspendLayout();
			// 
			// niSysTray
			// 
			this.niSysTray.BalloonTipIcon = System.Windows.Forms.ToolTipIcon.Info;
			this.niSysTray.ContextMenuStrip = this.trayMenu;
			this.niSysTray.Icon = ((System.Drawing.Icon)(resources.GetObject("niSysTray.Icon")));
			this.niSysTray.Text = "Right-click to select a project to record time for.";
			this.niSysTray.MouseDown += new System.Windows.Forms.MouseEventHandler(this.niSysTray_MouseDown);
			// 
			// trayMenu
			// 
			this.trayMenu.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.trayMenu_Start,
            this.trayMenu_Stop,
            this.trayMenu_EditProjects,
            this.trayMenu_Open,
            this.trayMenu_Exit});
			this.trayMenu.Name = "ctxSysTray";
			this.trayMenu.Size = new System.Drawing.Size(176, 114);
			// 
			// trayMenu_Start
			// 
			this.trayMenu_Start.Name = "trayMenu_Start";
			this.trayMenu_Start.Size = new System.Drawing.Size(175, 22);
			this.trayMenu_Start.Text = "&Create New Project";
			this.trayMenu_Start.Click += new System.EventHandler(this.trayMenu_Start_Click);
			// 
			// trayMenu_Stop
			// 
			this.trayMenu_Stop.Enabled = false;
			this.trayMenu_Stop.Name = "trayMenu_Stop";
			this.trayMenu_Stop.Size = new System.Drawing.Size(175, 22);
			this.trayMenu_Stop.Text = "Sto&p Project";
			this.trayMenu_Stop.Click += new System.EventHandler(this.trayMenu_Stop_Click);
			// 
			// trayMenu_EditProjects
			// 
			this.trayMenu_EditProjects.Name = "trayMenu_EditProjects";
			this.trayMenu_EditProjects.Size = new System.Drawing.Size(175, 22);
			this.trayMenu_EditProjects.Text = "&Edit Project List";
			this.trayMenu_EditProjects.Click += new System.EventHandler(this.trayMenu_EditProjects_Click);
			// 
			// trayMenu_Open
			// 
			this.trayMenu_Open.Font = new System.Drawing.Font("Segoe UI", 9F, System.Drawing.FontStyle.Bold);
			this.trayMenu_Open.Name = "trayMenu_Open";
			this.trayMenu_Open.Size = new System.Drawing.Size(175, 22);
			this.trayMenu_Open.Text = "&Open";
			this.trayMenu_Open.Click += new System.EventHandler(this.trayMenu_Open_Click);
			// 
			// trayMenu_Exit
			// 
			this.trayMenu_Exit.Name = "trayMenu_Exit";
			this.trayMenu_Exit.Size = new System.Drawing.Size(175, 22);
			this.trayMenu_Exit.Text = "E&xit";
			this.trayMenu_Exit.Click += new System.EventHandler(this.trayMenu_Exit_Click);
			// 
			// btnSave
			// 
			this.btnSave.Anchor = System.Windows.Forms.AnchorStyles.Bottom;
			this.btnSave.Location = new System.Drawing.Point(407, 478);
			this.btnSave.Name = "btnSave";
			this.btnSave.Size = new System.Drawing.Size(75, 32);
			this.btnSave.TabIndex = 2;
			this.btnSave.Text = "&Save";
			this.btnSave.UseVisualStyleBackColor = true;
			this.btnSave.Click += new System.EventHandler(this.btnSave_Click);
			// 
			// btnCancel
			// 
			this.btnCancel.Anchor = System.Windows.Forms.AnchorStyles.Bottom;
			this.btnCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
			this.btnCancel.Location = new System.Drawing.Point(560, 478);
			this.btnCancel.Name = "btnCancel";
			this.btnCancel.Size = new System.Drawing.Size(75, 32);
			this.btnCancel.TabIndex = 3;
			this.btnCancel.Text = "&Cancel";
			this.btnCancel.UseVisualStyleBackColor = true;
			this.btnCancel.Click += new System.EventHandler(this.btnCancel_Click);
			// 
			// grdTimeLog
			// 
			this.grdTimeLog.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.grdTimeLog.BackColor = System.Drawing.SystemColors.Control;
			this.grdTimeLog.Cursor = System.Windows.Forms.Cursors.Default;
			this.grdTimeLog.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F);
			this.grdTimeLog.ForeColor = System.Drawing.SystemColors.ControlText;
			this.grdTimeLog.ImeMode = System.Windows.Forms.ImeMode.NoControl;
			this.grdTimeLog.Location = new System.Drawing.Point(2, 22);
			// 
			// grdTimeLog
			// 
			this.grdTimeLog.MasterTemplate.AutoSizeColumnsMode = Telerik.WinControls.UI.GridViewAutoSizeColumnsMode.Fill;
			gridViewComboBoxColumn1.DisplayMember = null;
			gridViewComboBoxColumn1.FieldName = "Project";
			gridViewComboBoxColumn1.FormatString = "";
			gridViewComboBoxColumn1.HeaderText = "Project Name";
			gridViewComboBoxColumn1.Name = "cmbProject";
			gridViewComboBoxColumn1.ValueMember = null;
			gridViewComboBoxColumn1.Width = 231;
			gridViewDateTimeColumn1.DataEditFormatString = "{0:g}";
			gridViewDateTimeColumn1.DataType = typeof(System.Nullable<System.DateTime>);
			gridViewDateTimeColumn1.FieldName = "StartTime";
			gridViewDateTimeColumn1.Format = System.Windows.Forms.DateTimePickerFormat.Time;
			gridViewDateTimeColumn1.FormatString = "";
			gridViewDateTimeColumn1.HeaderText = "Start Time";
			gridViewDateTimeColumn1.Name = "colStartTime";
			gridViewDateTimeColumn1.SortOrder = Telerik.WinControls.UI.RadSortOrder.Descending;
			gridViewDateTimeColumn1.Width = 150;
			gridViewDateTimeColumn2.DataType = typeof(System.Nullable<System.DateTime>);
			gridViewDateTimeColumn2.FieldName = "EndTime";
			gridViewDateTimeColumn2.Format = System.Windows.Forms.DateTimePickerFormat.Time;
			gridViewDateTimeColumn2.FormatString = "";
			gridViewDateTimeColumn2.HeaderText = "End Time";
			gridViewDateTimeColumn2.Name = "colEndTime";
			gridViewDateTimeColumn2.Width = 125;
			gridViewTextBoxColumn1.DataType = typeof(System.Nullable<System.TimeSpan>);
			gridViewTextBoxColumn1.FieldName = "Duration";
			gridViewTextBoxColumn1.FormatString = "{0:h\\:mm}";
			gridViewTextBoxColumn1.HeaderText = "Duration";
			gridViewTextBoxColumn1.Name = "colDuration";
			gridViewTextBoxColumn1.Width = 98;
			gridViewTextBoxColumn2.FieldName = "Description";
			gridViewTextBoxColumn2.FormatString = "";
			gridViewTextBoxColumn2.HeaderText = "Remarks";
			gridViewTextBoxColumn2.Name = "colRemarks";
			gridViewTextBoxColumn2.Width = 372;
			gridViewTextBoxColumn3.FieldName = "Project";
			gridViewTextBoxColumn3.FormatString = "";
			gridViewTextBoxColumn3.HeaderText = "Project";
			gridViewTextBoxColumn3.IsAutoGenerated = true;
			gridViewTextBoxColumn3.Name = "Project";
			gridViewTextBoxColumn3.Width = 48;
			this.grdTimeLog.MasterTemplate.Columns.AddRange(new Telerik.WinControls.UI.GridViewDataColumn[] {
            gridViewComboBoxColumn1,
            gridViewDateTimeColumn1,
            gridViewDateTimeColumn2,
            gridViewTextBoxColumn1,
            gridViewTextBoxColumn2,
            gridViewTextBoxColumn3});
			this.grdTimeLog.MasterTemplate.DataSource = this.timeRecordBindingSource;
			this.grdTimeLog.MasterTemplate.EnableAlternatingRowColor = true;
			this.grdTimeLog.MasterTemplate.MultiSelect = true;
			sortDescriptor1.Direction = System.ComponentModel.ListSortDirection.Descending;
			sortDescriptor1.PropertyName = "colStartTime";
			this.grdTimeLog.MasterTemplate.SortDescriptors.AddRange(new Telerik.WinControls.Data.SortDescriptor[] {
            sortDescriptor1});
			this.grdTimeLog.Name = "grdTimeLog";
			this.grdTimeLog.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.grdTimeLog.Size = new System.Drawing.Size(1040, 448);
			this.grdTimeLog.TabIndex = 4;
			this.grdTimeLog.Text = "Time Log";
			this.grdTimeLog.ThemeName = "Office2010Blue";
			this.grdTimeLog.CellEndEdit += new Telerik.WinControls.UI.GridViewCellEventHandler(this.grdTimeLog_CellEndEdit);
			this.grdTimeLog.CellValidating += new Telerik.WinControls.UI.CellValidatingEventHandler(this.grdTimeLog_CellValidating);
			this.grdTimeLog.CellValidated += new Telerik.WinControls.UI.CellValidatedEventHandler(this.grdTimeLog_CellValidated);
			this.grdTimeLog.DataError += new Telerik.WinControls.UI.GridViewDataErrorEventHandler(this.grdTimeLog_DataError);
			this.grdTimeLog.Validating += new System.ComponentModel.CancelEventHandler(this.grdTimeLog_Validating);
			((Telerik.WinControls.UI.RadGridViewElement)(this.grdTimeLog.GetChildAt(0))).AutoSizeMode = Telerik.WinControls.RadAutoSizeMode.WrapAroundChildren;
			// 
			// mnuMain
			// 
			this.mnuMain.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F);
			this.mnuMain.Items.AddRange(new Telerik.WinControls.RadItem[] {
            this.radMenuItem1,
            this.radMenuItem2,
            this.radMenuItem3});
			this.mnuMain.Location = new System.Drawing.Point(0, 0);
			this.mnuMain.Name = "mnuMain";
			this.mnuMain.Owner = null;
			this.mnuMain.Size = new System.Drawing.Size(1042, 21);
			this.mnuMain.TabIndex = 0;
			this.mnuMain.Text = "radMenu1";
			this.mnuMain.ThemeName = "Office2010Blue";
			// 
			// radMenuItem1
			// 
			this.radMenuItem1.AccessibleDescription = "&File";
			this.radMenuItem1.AccessibleName = "&File";
			this.radMenuItem1.Items.AddRange(new Telerik.WinControls.RadItem[] {
            this.mnuExit});
			this.radMenuItem1.Name = "radMenuItem1";
			this.radMenuItem1.Text = "&File";
			this.radMenuItem1.Visibility = Telerik.WinControls.ElementVisibility.Visible;
			// 
			// mnuExit
			// 
			this.mnuExit.AccessibleDescription = "radMenuItem2";
			this.mnuExit.AccessibleName = "radMenuItem2";
			this.mnuExit.Name = "mnuExit";
			this.mnuExit.Text = "E&xit";
			this.mnuExit.Visibility = Telerik.WinControls.ElementVisibility.Visible;
			this.mnuExit.Click += new System.EventHandler(this.mnuExit_Click);
			// 
			// radMenuItem2
			// 
			this.radMenuItem2.AccessibleDescription = "&Edit";
			this.radMenuItem2.AccessibleName = "&Edit";
			this.radMenuItem2.Items.AddRange(new Telerik.WinControls.RadItem[] {
            this.mnuEditProjects});
			this.radMenuItem2.Name = "radMenuItem2";
			this.radMenuItem2.Text = "&Edit";
			this.radMenuItem2.Visibility = Telerik.WinControls.ElementVisibility.Visible;
			// 
			// mnuEditProjects
			// 
			this.mnuEditProjects.AccessibleDescription = "radMenuItem3";
			this.mnuEditProjects.AccessibleName = "radMenuItem3";
			this.mnuEditProjects.Name = "mnuEditProjects";
			this.mnuEditProjects.Text = "&Projects";
			this.mnuEditProjects.Visibility = Telerik.WinControls.ElementVisibility.Visible;
			this.mnuEditProjects.Click += new System.EventHandler(this.mnuEditProjects_Click);
			// 
			// radMenuItem3
			// 
			this.radMenuItem3.AccessibleDescription = "&Help";
			this.radMenuItem3.AccessibleName = "&Help";
			this.radMenuItem3.Items.AddRange(new Telerik.WinControls.RadItem[] {
            this.mnuAbout});
			this.radMenuItem3.Name = "radMenuItem3";
			this.radMenuItem3.Text = "&Help";
			this.radMenuItem3.Visibility = Telerik.WinControls.ElementVisibility.Visible;
			// 
			// mnuAbout
			// 
			this.mnuAbout.AccessibleDescription = "&About";
			this.mnuAbout.AccessibleName = "&About";
			this.mnuAbout.Name = "mnuAbout";
			this.mnuAbout.Text = "&About";
			this.mnuAbout.Visibility = Telerik.WinControls.ElementVisibility.Visible;
			this.mnuAbout.Click += new System.EventHandler(this.mnuAbout_Click);
			// 
			// ctxProjectMenu
			// 
			this.ctxProjectMenu.Items.AddRange(new Telerik.WinControls.RadItem[] {
            this.ctxPrjMnu_Edit,
            this.ctxPrjMnu_Delete,
            this.ctxPrjMnu_Add});
			// 
			// ctxPrjMnu_Edit
			// 
			this.ctxPrjMnu_Edit.AccessibleDescription = "&Edit Project";
			this.ctxPrjMnu_Edit.AccessibleName = "&Edit Project";
			this.ctxPrjMnu_Edit.Name = "ctxPrjMnu_Edit";
			this.ctxPrjMnu_Edit.Text = "&Edit Project";
			this.ctxPrjMnu_Edit.Visibility = Telerik.WinControls.ElementVisibility.Visible;
			this.ctxPrjMnu_Edit.Click += new System.EventHandler(this.ctxPrjMnu_Edit_Click);
			// 
			// ctxPrjMnu_Delete
			// 
			this.ctxPrjMnu_Delete.AccessibleDescription = "&Delete Project";
			this.ctxPrjMnu_Delete.AccessibleName = "&Delete Project";
			this.ctxPrjMnu_Delete.Name = "ctxPrjMnu_Delete";
			this.ctxPrjMnu_Delete.Text = "&Delete Project";
			this.ctxPrjMnu_Delete.Visibility = Telerik.WinControls.ElementVisibility.Visible;
			this.ctxPrjMnu_Delete.Click += new System.EventHandler(this.ctxPrjMnu_Delete_Click);
			// 
			// ctxPrjMnu_Add
			// 
			this.ctxPrjMnu_Add.AccessibleDescription = "&Add New Project";
			this.ctxPrjMnu_Add.AccessibleName = "&Add New Project";
			this.ctxPrjMnu_Add.Name = "ctxPrjMnu_Add";
			this.ctxPrjMnu_Add.Text = "&Add New Project";
			this.ctxPrjMnu_Add.Visibility = Telerik.WinControls.ElementVisibility.Visible;
			this.ctxPrjMnu_Add.Click += new System.EventHandler(this.ctxPrjMnu_Add_Click);
			// 
			// timeRecordBindingSource
			// 
			this.timeRecordBindingSource.DataSource = typeof(MyTimeTracker.Classes.TimeEntry);
			// 
			// frmMain
			// 
			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(1042, 522);
			this.Controls.Add(this.mnuMain);
			this.Controls.Add(this.grdTimeLog);
			this.Controls.Add(this.btnCancel);
			this.Controls.Add(this.btnSave);
			this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
			this.Name = "frmMain";
			this.Text = "Time Tracker";
			this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.frmMain_FormClosing);
			this.Load += new System.EventHandler(this.frmMain_Load);
			this.Resize += new System.EventHandler(this.frmMain_Resize);
			this.trayMenu.ResumeLayout(false);
			((System.ComponentModel.ISupportInitialize)(this.grdTimeLog)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.mnuMain)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.timeRecordBindingSource)).EndInit();
			this.ResumeLayout(false);
			this.PerformLayout();

		}
Example #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.GridViewComboBoxColumn gridViewComboBoxColumn1 = new Telerik.WinControls.UI.GridViewComboBoxColumn();
     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.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(CameraListForm));
     this.enumBinder3 = new Telerik.WinControls.UI.Data.EnumBinder();
     this.enumBinder1 = new Telerik.WinControls.UI.Data.EnumBinder();
     this.enumBinder2 = new Telerik.WinControls.UI.Data.EnumBinder();
     this.cameraBindingSource = new System.Windows.Forms.BindingSource(this.components);
     this.ok_Button = new System.Windows.Forms.Button();
     this.panel1 = new System.Windows.Forms.Panel();
     this.radGridViewCameras = new Telerik.WinControls.UI.RadGridView();
     this.toolStrip1 = new System.Windows.Forms.ToolStrip();
     this.newToolStripButton = new System.Windows.Forms.ToolStripButton();
     this.editToolStripButton = new System.Windows.Forms.ToolStripButton();
     this.removeToolStripButton = new System.Windows.Forms.ToolStripButton();
     this.reservationToolStripButton = new System.Windows.Forms.ToolStripButton();
     ((System.ComponentModel.ISupportInitialize)(this.cameraBindingSource)).BeginInit();
     this.panel1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.radGridViewCameras)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radGridViewCameras.MasterTemplate)).BeginInit();
     this.toolStrip1.SuspendLayout();
     this.SuspendLayout();
     //
     // enumBinder3
     //
     this.enumBinder3.Source = typeof(HP.ScalableTest.Framework.Assets.AssetAttributes);
     gridViewComboBoxColumn1.DataSource = this.enumBinder3;
     gridViewComboBoxColumn1.DataType = typeof(HP.ScalableTest.Framework.Assets.AssetAttributes);
     gridViewComboBoxColumn1.DisplayMember = "Description";
     gridViewComboBoxColumn1.FieldName = "Capability";
     gridViewComboBoxColumn1.HeaderText = "Capability";
     gridViewComboBoxColumn1.IsAutoGenerated = true;
     gridViewComboBoxColumn1.Name = "Capability";
     gridViewComboBoxColumn1.ValueMember = "Value";
     this.enumBinder3.Target = gridViewComboBoxColumn1;
     //
     // enumBinder1
     //
     this.enumBinder1.Source = typeof(HP.ScalableTest.Framework.Assets.AssetAttributes);
     //
     // enumBinder2
     //
     this.enumBinder2.Source = typeof(HP.ScalableTest.Framework.Assets.AssetAttributes);
     //
     // cameraBindingSource
     //
     this.cameraBindingSource.DataSource = typeof(HP.ScalableTest.Core.AssetInventory.Camera);
     //
     // ok_Button
     //
     this.ok_Button.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.ok_Button.DialogResult = System.Windows.Forms.DialogResult.OK;
     this.ok_Button.Location = new System.Drawing.Point(854, 484);
     this.ok_Button.Margin = new System.Windows.Forms.Padding(4);
     this.ok_Button.Name = "ok_Button";
     this.ok_Button.Size = new System.Drawing.Size(112, 32);
     this.ok_Button.TabIndex = 1;
     this.ok_Button.Text = "OK";
     this.ok_Button.UseVisualStyleBackColor = true;
     //
     // panel1
     //
     this.panel1.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
     | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.panel1.Controls.Add(this.radGridViewCameras);
     this.panel1.Controls.Add(this.toolStrip1);
     this.panel1.Location = new System.Drawing.Point(1, 4);
     this.panel1.Margin = new System.Windows.Forms.Padding(4);
     this.panel1.Name = "panel1";
     this.panel1.Size = new System.Drawing.Size(965, 472);
     this.panel1.TabIndex = 6;
     //
     // radGridViewCameras
     //
     this.radGridViewCameras.BackColor = System.Drawing.SystemColors.Control;
     this.radGridViewCameras.Cursor = System.Windows.Forms.Cursors.Default;
     this.radGridViewCameras.Dock = System.Windows.Forms.DockStyle.Fill;
     this.radGridViewCameras.Font = new System.Drawing.Font("Segoe UI", 8.25F);
     this.radGridViewCameras.ForeColor = System.Drawing.SystemColors.ControlText;
     this.radGridViewCameras.ImeMode = System.Windows.Forms.ImeMode.NoControl;
     this.radGridViewCameras.Location = new System.Drawing.Point(0, 27);
     //
     //
     //
     this.radGridViewCameras.MasterTemplate.AllowAddNewRow = false;
     this.radGridViewCameras.MasterTemplate.AllowDeleteRow = false;
     this.radGridViewCameras.MasterTemplate.AllowEditRow = false;
     gridViewTextBoxColumn1.EnableExpressionEditor = false;
     gridViewTextBoxColumn1.FieldName = "AssetId";
     gridViewTextBoxColumn1.HeaderText = "AssetId";
     gridViewTextBoxColumn1.IsAutoGenerated = true;
     gridViewTextBoxColumn1.Name = "AssetId";
     gridViewTextBoxColumn1.Width = 100;
     gridViewTextBoxColumn2.EnableExpressionEditor = false;
     gridViewTextBoxColumn2.FieldName = "IPAddress";
     gridViewTextBoxColumn2.HeaderText = "IPAddress";
     gridViewTextBoxColumn2.IsAutoGenerated = true;
     gridViewTextBoxColumn2.Name = "IPAddress";
     gridViewTextBoxColumn2.Width = 100;
     gridViewTextBoxColumn3.EnableExpressionEditor = false;
     gridViewTextBoxColumn3.FieldName = "CameraServer";
     gridViewTextBoxColumn3.HeaderText = "CameraServer";
     gridViewTextBoxColumn3.IsAutoGenerated = true;
     gridViewTextBoxColumn3.Name = "CameraServer";
     gridViewTextBoxColumn3.Width = 100;
     gridViewTextBoxColumn4.EnableExpressionEditor = false;
     gridViewTextBoxColumn4.FieldName = "PrinterId";
     gridViewTextBoxColumn4.HeaderText = "PrinterId";
     gridViewTextBoxColumn4.IsAutoGenerated = true;
     gridViewTextBoxColumn4.Name = "PrinterId";
     gridViewTextBoxColumn4.Width = 100;
     gridViewTextBoxColumn5.EnableExpressionEditor = false;
     gridViewTextBoxColumn5.FieldName = "Description";
     gridViewTextBoxColumn5.HeaderText = "Description";
     gridViewTextBoxColumn5.IsAutoGenerated = true;
     gridViewTextBoxColumn5.Name = "Description";
     gridViewTextBoxColumn5.SortOrder = Telerik.WinControls.UI.RadSortOrder.Ascending;
     gridViewTextBoxColumn5.Width = 200;
     gridViewTextBoxColumn6.DataType = typeof(HP.ScalableTest.Core.AssetInventory.AssetPool);
     gridViewTextBoxColumn6.EnableExpressionEditor = false;
     gridViewTextBoxColumn6.FieldName = "PoolName";
     gridViewTextBoxColumn6.HeaderText = "Asset Pool";
     gridViewTextBoxColumn6.MinWidth = 25;
     gridViewTextBoxColumn6.Name = "PoolName";
     gridViewTextBoxColumn6.Width = 100;
     this.radGridViewCameras.MasterTemplate.Columns.AddRange(new Telerik.WinControls.UI.GridViewDataColumn[] {
     gridViewTextBoxColumn1,
     gridViewTextBoxColumn2,
     gridViewTextBoxColumn3,
     gridViewTextBoxColumn4,
     gridViewTextBoxColumn5,
     gridViewTextBoxColumn6});
     this.radGridViewCameras.MasterTemplate.DataSource = this.cameraBindingSource;
     this.radGridViewCameras.MasterTemplate.EnableAlternatingRowColor = true;
     this.radGridViewCameras.MasterTemplate.EnableFiltering = true;
     this.radGridViewCameras.MasterTemplate.EnableGrouping = false;
     this.radGridViewCameras.MasterTemplate.ShowRowHeaderColumn = false;
     sortDescriptor1.PropertyName = "Description";
     this.radGridViewCameras.MasterTemplate.SortDescriptors.AddRange(new Telerik.WinControls.Data.SortDescriptor[] {
     sortDescriptor1});
     this.radGridViewCameras.MasterTemplate.ViewDefinition = tableViewDefinition1;
     this.radGridViewCameras.Name = "radGridViewCameras";
     this.radGridViewCameras.ReadOnly = true;
     this.radGridViewCameras.RightToLeft = System.Windows.Forms.RightToLeft.No;
     //
     //
     //
     this.radGridViewCameras.RootElement.ControlBounds = new System.Drawing.Rectangle(0, 27, 240, 150);
     this.radGridViewCameras.Size = new System.Drawing.Size(965, 445);
     this.radGridViewCameras.TabIndex = 2;
     this.radGridViewCameras.Text = "radGridView1";
     this.radGridViewCameras.CellDoubleClick += new Telerik.WinControls.UI.GridViewCellEventHandler(this.radGridViewCameras_CellDoubleClick);
     //
     // 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.newToolStripButton,
     this.editToolStripButton,
     this.removeToolStripButton,
     this.reservationToolStripButton});
     this.toolStrip1.LayoutStyle = System.Windows.Forms.ToolStripLayoutStyle.HorizontalStackWithOverflow;
     this.toolStrip1.Location = new System.Drawing.Point(0, 0);
     this.toolStrip1.Name = "toolStrip1";
     this.toolStrip1.Padding = new System.Windows.Forms.Padding(5, 0, 1, 0);
     this.toolStrip1.Size = new System.Drawing.Size(965, 27);
     this.toolStrip1.TabIndex = 1;
     this.toolStrip1.Text = "toolStrip1";
     //
     // newToolStripButton
     //
     this.newToolStripButton.Image = ((System.Drawing.Image)(resources.GetObject("newToolStripButton.Image")));
     this.newToolStripButton.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.newToolStripButton.Name = "newToolStripButton";
     this.newToolStripButton.Size = new System.Drawing.Size(53, 24);
     this.newToolStripButton.Text = "Add";
     this.newToolStripButton.ToolTipText = "Add a new camera to the inventory";
     this.newToolStripButton.Click += new System.EventHandler(this.add_Button_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(51, 24);
     this.editToolStripButton.Text = "Edit";
     this.editToolStripButton.ToolTipText = "Edit the selected camera";
     this.editToolStripButton.Click += new System.EventHandler(this.edit_Button_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(74, 24);
     this.removeToolStripButton.Text = "Remove";
     this.removeToolStripButton.ToolTipText = "Delete the selected camera from the inventory";
     this.removeToolStripButton.Click += new System.EventHandler(this.remove_Button_Click);
     //
     // reservationToolStripButton
     //
     this.reservationToolStripButton.Image = ((System.Drawing.Image)(resources.GetObject("reservationToolStripButton.Image")));
     this.reservationToolStripButton.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.reservationToolStripButton.Name = "reservationToolStripButton";
     this.reservationToolStripButton.Size = new System.Drawing.Size(97, 24);
     this.reservationToolStripButton.Text = "Reservations";
     this.reservationToolStripButton.ToolTipText = "Manage reservations for the selected camera";
     this.reservationToolStripButton.Click += new System.EventHandler(this.reservationToolStripButton_Click);
     //
     // CameraListForm
     //
     this.AcceptButton = this.ok_Button;
     this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 15F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
     this.CancelButton = this.ok_Button;
     this.ClientSize = new System.Drawing.Size(969, 519);
     this.Controls.Add(this.panel1);
     this.Controls.Add(this.ok_Button);
     this.Font = new System.Drawing.Font("Segoe UI", 9F);
     this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.Margin = new System.Windows.Forms.Padding(4);
     this.Name = "CameraListForm";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
     this.Text = "Camera Inventory";
     this.Load += new System.EventHandler(this.AssetListForm_Load);
     ((System.ComponentModel.ISupportInitialize)(this.cameraBindingSource)).EndInit();
     this.panel1.ResumeLayout(false);
     this.panel1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.radGridViewCameras.MasterTemplate)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radGridViewCameras)).EndInit();
     this.toolStrip1.ResumeLayout(false);
     this.toolStrip1.PerformLayout();
     this.ResumeLayout(false);
 }
Example #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.GridViewComboBoxColumn gridViewComboBoxColumn3  = new Telerik.WinControls.UI.GridViewComboBoxColumn();
     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.GridViewCheckBoxColumn gridViewCheckBoxColumn9  = new Telerik.WinControls.UI.GridViewCheckBoxColumn();
     Telerik.WinControls.UI.GridViewCheckBoxColumn gridViewCheckBoxColumn10 = new Telerik.WinControls.UI.GridViewCheckBoxColumn();
     Telerik.WinControls.UI.GridViewCheckBoxColumn gridViewCheckBoxColumn11 = new Telerik.WinControls.UI.GridViewCheckBoxColumn();
     Telerik.WinControls.UI.GridViewCheckBoxColumn gridViewCheckBoxColumn12 = new Telerik.WinControls.UI.GridViewCheckBoxColumn();
     Telerik.WinControls.UI.GridViewDecimalColumn  gridViewDecimalColumn12  = new Telerik.WinControls.UI.GridViewDecimalColumn();
     Telerik.WinControls.UI.GridViewCommandColumn  gridViewCommandColumn4   = new Telerik.WinControls.UI.GridViewCommandColumn();
     Telerik.WinControls.UI.GridViewCommandColumn  gridViewCommandColumn5   = new Telerik.WinControls.UI.GridViewCommandColumn();
     Telerik.WinControls.UI.GridViewCommandColumn  gridViewCommandColumn6   = new Telerik.WinControls.UI.GridViewCommandColumn();
     Telerik.WinControls.UI.GridViewComboBoxColumn gridViewComboBoxColumn4  = new Telerik.WinControls.UI.GridViewComboBoxColumn();
     Telerik.WinControls.UI.GridViewDecimalColumn  gridViewDecimalColumn13  = new Telerik.WinControls.UI.GridViewDecimalColumn();
     Telerik.WinControls.UI.GridViewDecimalColumn  gridViewDecimalColumn14  = new Telerik.WinControls.UI.GridViewDecimalColumn();
     Telerik.WinControls.UI.GridViewDecimalColumn  gridViewDecimalColumn15  = new Telerik.WinControls.UI.GridViewDecimalColumn();
     Telerik.WinControls.UI.GridViewCheckBoxColumn gridViewCheckBoxColumn13 = new Telerik.WinControls.UI.GridViewCheckBoxColumn();
     Telerik.WinControls.UI.GridViewCheckBoxColumn gridViewCheckBoxColumn14 = new Telerik.WinControls.UI.GridViewCheckBoxColumn();
     Telerik.WinControls.UI.GridViewCheckBoxColumn gridViewCheckBoxColumn15 = new Telerik.WinControls.UI.GridViewCheckBoxColumn();
     Telerik.WinControls.UI.GridViewCheckBoxColumn gridViewCheckBoxColumn16 = new Telerik.WinControls.UI.GridViewCheckBoxColumn();
     Telerik.WinControls.UI.GridViewDecimalColumn  gridViewDecimalColumn16  = new Telerik.WinControls.UI.GridViewDecimalColumn();
     this.authBindingSource             = new System.Windows.Forms.BindingSource(this.components);
     this.fingermachDataSet             = new Manager.fingermachDataSet();
     this.radGridView1                  = new Telerik.WinControls.UI.RadGridView();
     this.pSelectMenuAuthBindingSource  = new System.Windows.Forms.BindingSource(this.components);
     this.authBindingSource1            = new System.Windows.Forms.BindingSource(this.components);
     this.pSelectMenuAuthBindingSource1 = new System.Windows.Forms.BindingSource(this.components);
     this.roundRectShapeForm            = new Telerik.WinControls.RoundRectShape(this.components);
     this.pSelectMenuAuthTableAdapter   = new Manager.fingermachDataSetTableAdapters.pSelectMenuAuthTableAdapter();
     this.authTableAdapter              = new Manager.fingermachDataSetTableAdapters.authTableAdapter();
     this.rddStaff              = new Telerik.WinControls.UI.RadDropDownList();
     this.staffBindingSource    = new System.Windows.Forms.BindingSource(this.components);
     this.staffTableAdapter     = new Manager.fingermachDataSetTableAdapters.staffTableAdapter();
     this.btnExit               = new Telerik.WinControls.UI.RadButton();
     this.btnChange             = new Telerik.WinControls.UI.RadButton();
     this.radGridView2          = new Telerik.WinControls.UI.RadGridView();
     this.radGroupBox1          = new Telerik.WinControls.UI.RadGroupBox();
     this.btnDelete             = new Telerik.WinControls.UI.RadButton();
     this.btnReset              = new Telerik.WinControls.UI.RadButton();
     this.radLabel4             = new Telerik.WinControls.UI.RadLabel();
     this.txtReset              = new Telerik.WinControls.UI.RadMaskedEditBox();
     this.radGroupBox2          = new Telerik.WinControls.UI.RadGroupBox();
     this.btnCreate             = new Telerik.WinControls.UI.RadButton();
     this.txtPwd                = new Telerik.WinControls.UI.RadMaskedEditBox();
     this.txtUser               = new Telerik.WinControls.UI.RadMaskedEditBox();
     this.radLabel2             = new Telerik.WinControls.UI.RadLabel();
     this.radLabel1             = new Telerik.WinControls.UI.RadLabel();
     this.rddCopyFrom           = new Telerik.WinControls.UI.RadDropDownList();
     this.btnCopy               = new Telerik.WinControls.UI.RadButton();
     this.grpReset              = new Telerik.WinControls.UI.RadGroupBox();
     this.grpPermission         = new Telerik.WinControls.UI.RadGroupBox();
     this.grpIndividual         = new Telerik.WinControls.UI.RadGroupBox();
     this.copyFromBindingSource = new System.Windows.Forms.BindingSource(this.components);
     ((System.ComponentModel.ISupportInitialize)(this.authBindingSource)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.fingermachDataSet)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radGridView1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radGridView1.MasterTemplate)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.pSelectMenuAuthBindingSource)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.authBindingSource1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.pSelectMenuAuthBindingSource1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.rddStaff)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.staffBindingSource)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.btnExit)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.btnChange)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radGridView2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radGridView2.MasterTemplate)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radGroupBox1)).BeginInit();
     this.radGroupBox1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.btnDelete)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.btnReset)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel4)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtReset)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radGroupBox2)).BeginInit();
     this.radGroupBox2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.btnCreate)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtPwd)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtUser)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.rddCopyFrom)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.btnCopy)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.grpReset)).BeginInit();
     this.grpReset.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.grpPermission)).BeginInit();
     this.grpPermission.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.grpIndividual)).BeginInit();
     this.grpIndividual.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.copyFromBindingSource)).BeginInit();
     this.SuspendLayout();
     //
     // authBindingSource
     //
     this.authBindingSource.DataMember = "auth";
     this.authBindingSource.DataSource = this.fingermachDataSet;
     this.authBindingSource.Filter     = "";
     //
     // fingermachDataSet
     //
     this.fingermachDataSet.DataSetName             = "fingermachDataSet";
     this.fingermachDataSet.SchemaSerializationMode = System.Data.SchemaSerializationMode.IncludeSchema;
     //
     // radGridView1
     //
     this.radGridView1.AutoGenerateHierarchy = true;
     this.radGridView1.Dock     = System.Windows.Forms.DockStyle.Left;
     this.radGridView1.Font     = new System.Drawing.Font("Segoe UI", 10F);
     this.radGridView1.Location = new System.Drawing.Point(2, 18);
     //
     // radGridView1
     //
     this.radGridView1.MasterTemplate.AllowAddNewRow      = false;
     this.radGridView1.MasterTemplate.AllowColumnReorder  = false;
     this.radGridView1.MasterTemplate.AllowDeleteRow      = false;
     this.radGridView1.MasterTemplate.AllowEditRow        = false;
     this.radGridView1.MasterTemplate.AutoExpandGroups    = true;
     this.radGridView1.MasterTemplate.AutoGenerateColumns = false;
     gridViewComboBoxColumn3.DataSource      = this.authBindingSource;
     gridViewComboBoxColumn3.DataType        = typeof(int);
     gridViewComboBoxColumn3.DisplayMember   = "Name";
     gridViewComboBoxColumn3.FieldName       = "authid";
     gridViewComboBoxColumn3.HeaderText      = "Menu Name";
     gridViewComboBoxColumn3.Name            = "Auth";
     gridViewComboBoxColumn3.ReadOnly        = true;
     gridViewComboBoxColumn3.ValueMember     = "authid";
     gridViewComboBoxColumn3.Width           = 200;
     gridViewDecimalColumn9.DataType         = typeof(int);
     gridViewDecimalColumn9.FieldName        = "authid";
     gridViewDecimalColumn9.HeaderText       = "authid";
     gridViewDecimalColumn9.IsAutoGenerated  = true;
     gridViewDecimalColumn9.IsVisible        = false;
     gridViewDecimalColumn9.Name             = "authid";
     gridViewDecimalColumn10.DataType        = typeof(int);
     gridViewDecimalColumn10.FieldName       = "userid";
     gridViewDecimalColumn10.HeaderText      = "userid";
     gridViewDecimalColumn10.IsAutoGenerated = true;
     gridViewDecimalColumn10.IsVisible       = false;
     gridViewDecimalColumn10.Name            = "userid";
     gridViewDecimalColumn11.DataType        = typeof(int);
     gridViewDecimalColumn11.FieldName       = "authuserid";
     gridViewDecimalColumn11.HeaderText      = "authuserid";
     gridViewDecimalColumn11.IsAutoGenerated = true;
     gridViewDecimalColumn11.IsVisible       = false;
     gridViewDecimalColumn11.Name            = "authuserid";
     gridViewCheckBoxColumn9.DataType        = typeof(sbyte);
     gridViewCheckBoxColumn9.FieldName       = "view";
     gridViewCheckBoxColumn9.HeaderText      = "V";
     gridViewCheckBoxColumn9.Name            = "view";
     gridViewCheckBoxColumn9.Width           = 25;
     gridViewCheckBoxColumn10.DataType       = typeof(sbyte);
     gridViewCheckBoxColumn10.FieldName      = "add";
     gridViewCheckBoxColumn10.HeaderText     = "A";
     gridViewCheckBoxColumn10.Name           = "add";
     gridViewCheckBoxColumn10.Width          = 25;
     gridViewCheckBoxColumn11.DataType       = typeof(sbyte);
     gridViewCheckBoxColumn11.FieldName      = "edit";
     gridViewCheckBoxColumn11.HeaderText     = "E";
     gridViewCheckBoxColumn11.Name           = "edit";
     gridViewCheckBoxColumn11.Width          = 25;
     gridViewCheckBoxColumn12.DataType       = typeof(sbyte);
     gridViewCheckBoxColumn12.FieldName      = "delete";
     gridViewCheckBoxColumn12.HeaderText     = "D";
     gridViewCheckBoxColumn12.Name           = "delete";
     gridViewCheckBoxColumn12.Width          = 25;
     gridViewDecimalColumn12.DataType        = typeof(int);
     gridViewDecimalColumn12.FieldName       = "parentid";
     gridViewDecimalColumn12.HeaderText      = "parentid";
     gridViewDecimalColumn12.IsVisible       = false;
     gridViewDecimalColumn12.Name            = "parentid";
     gridViewCommandColumn4.DefaultText      = "Allow";
     gridViewCommandColumn4.HeaderText       = "All";
     gridViewCommandColumn4.Name             = "Admin";
     gridViewCommandColumn4.UseDefaultText   = true;
     gridViewCommandColumn5.DefaultText      = "Deny";
     gridViewCommandColumn5.HeaderText       = "Deny";
     gridViewCommandColumn5.Name             = "Deny";
     gridViewCommandColumn5.UseDefaultText   = true;
     gridViewCommandColumn6.DefaultText      = "DUP";
     gridViewCommandColumn6.HeaderText       = "DUP";
     gridViewCommandColumn6.Name             = "Same";
     gridViewCommandColumn6.UseDefaultText   = true;
     this.radGridView1.MasterTemplate.Columns.AddRange(new Telerik.WinControls.UI.GridViewDataColumn[] {
         gridViewComboBoxColumn3,
         gridViewDecimalColumn9,
         gridViewDecimalColumn10,
         gridViewDecimalColumn11,
         gridViewCheckBoxColumn9,
         gridViewCheckBoxColumn10,
         gridViewCheckBoxColumn11,
         gridViewCheckBoxColumn12,
         gridViewDecimalColumn12,
         gridViewCommandColumn4,
         gridViewCommandColumn5,
         gridViewCommandColumn6
     });
     this.radGridView1.MasterTemplate.DataSource          = this.pSelectMenuAuthBindingSource;
     this.radGridView1.MasterTemplate.ShowRowHeaderColumn = false;
     this.radGridView1.Name               = "radGridView1";
     this.radGridView1.ReadOnly           = true;
     this.radGridView1.ShowGroupPanel     = false;
     this.radGridView1.Size               = new System.Drawing.Size(459, 508);
     this.radGridView1.TabIndex           = 2;
     this.radGridView1.Text               = "radGridView1";
     this.radGridView1.ThemeName          = "TelerikMetro";
     this.radGridView1.CellEndEdit       += new Telerik.WinControls.UI.GridViewCellEventHandler(this.radGridView1_CellEndEdit);
     this.radGridView1.CurrentRowChanged += new Telerik.WinControls.UI.CurrentRowChangedEventHandler(this.radGridView1_CurrentRowChanged);
     this.radGridView1.CommandCellClick  += new Telerik.WinControls.UI.CommandCellClickEventHandler(this.radGridView1_CommandCellClick);
     //
     // pSelectMenuAuthBindingSource
     //
     this.pSelectMenuAuthBindingSource.DataMember = "pSelectMenuAuth";
     this.pSelectMenuAuthBindingSource.DataSource = this.fingermachDataSet;
     this.pSelectMenuAuthBindingSource.Filter     = "parentid = 0";
     //
     // authBindingSource1
     //
     this.authBindingSource1.DataMember = "auth";
     this.authBindingSource1.DataSource = this.fingermachDataSet;
     //
     // pSelectMenuAuthBindingSource1
     //
     this.pSelectMenuAuthBindingSource1.DataMember = "pSelectMenuAuth";
     this.pSelectMenuAuthBindingSource1.DataSource = this.fingermachDataSet;
     //
     // pSelectMenuAuthTableAdapter
     //
     this.pSelectMenuAuthTableAdapter.ClearBeforeFill = true;
     //
     // authTableAdapter
     //
     this.authTableAdapter.ClearBeforeFill = true;
     //
     // rddStaff
     //
     this.rddStaff.AutoCompleteDisplayMember = "logname";
     this.rddStaff.AutoCompleteMode          = System.Windows.Forms.AutoCompleteMode.SuggestAppend;
     this.rddStaff.AutoCompleteValueMember   = "StaffID";
     this.rddStaff.DataSource            = this.staffBindingSource;
     this.rddStaff.DisplayMember         = "logname";
     this.rddStaff.Font                  = new System.Drawing.Font("Segoe UI", 10F);
     this.rddStaff.Location              = new System.Drawing.Point(66, 32);
     this.rddStaff.Name                  = "rddStaff";
     this.rddStaff.Size                  = new System.Drawing.Size(172, 23);
     this.rddStaff.SortStyle             = Telerik.WinControls.Enumerations.SortStyle.Ascending;
     this.rddStaff.TabIndex              = 1;
     this.rddStaff.Text                  = "radDropDownList1";
     this.rddStaff.ThemeName             = "TelerikMetro";
     this.rddStaff.ValueMember           = "StaffID";
     this.rddStaff.SelectedValueChanged += new System.EventHandler(this.rddStaff_SelectedValueChanged);
     //
     // staffBindingSource
     //
     this.staffBindingSource.AllowNew   = false;
     this.staffBindingSource.DataMember = "staff";
     this.staffBindingSource.DataSource = this.fingermachDataSet;
     this.staffBindingSource.Filter     = "logname is not null";
     //
     // staffTableAdapter
     //
     this.staffTableAdapter.ClearBeforeFill = true;
     //
     // btnExit
     //
     this.btnExit.Font      = new System.Drawing.Font("Segoe UI", 10F);
     this.btnExit.Location  = new System.Drawing.Point(823, 32);
     this.btnExit.Name      = "btnExit";
     this.btnExit.Size      = new System.Drawing.Size(188, 34);
     this.btnExit.TabIndex  = 2;
     this.btnExit.Text      = "E&xit";
     this.btnExit.ThemeName = "TelerikMetro";
     this.btnExit.Click    += new System.EventHandler(this.btnExit_Click);
     //
     // btnChange
     //
     this.btnChange.Font      = new System.Drawing.Font("Segoe UI", 10F);
     this.btnChange.Location  = new System.Drawing.Point(253, 30);
     this.btnChange.Name      = "btnChange";
     this.btnChange.Size      = new System.Drawing.Size(128, 25);
     this.btnChange.TabIndex  = 3;
     this.btnChange.Tag       = "start";
     this.btnChange.Text      = "&Change Permission";
     this.btnChange.ThemeName = "TelerikMetro";
     this.btnChange.Click    += new System.EventHandler(this.btnChange_Click);
     //
     // radGridView2
     //
     this.radGridView2.AutoGenerateHierarchy = true;
     this.radGridView2.Dock     = System.Windows.Forms.DockStyle.Right;
     this.radGridView2.Font     = new System.Drawing.Font("Segoe UI", 10F);
     this.radGridView2.Location = new System.Drawing.Point(467, 18);
     //
     // radGridView2
     //
     this.radGridView2.MasterTemplate.AllowAddNewRow      = false;
     this.radGridView2.MasterTemplate.AllowDeleteRow      = false;
     this.radGridView2.MasterTemplate.AllowEditRow        = false;
     this.radGridView2.MasterTemplate.AutoExpandGroups    = true;
     this.radGridView2.MasterTemplate.AutoGenerateColumns = false;
     gridViewComboBoxColumn4.DataSource      = this.authBindingSource;
     gridViewComboBoxColumn4.DataType        = typeof(int);
     gridViewComboBoxColumn4.DisplayMember   = "Name";
     gridViewComboBoxColumn4.FieldName       = "authid";
     gridViewComboBoxColumn4.HeaderText      = "Menu Name";
     gridViewComboBoxColumn4.Name            = "Auth";
     gridViewComboBoxColumn4.ReadOnly        = true;
     gridViewComboBoxColumn4.ValueMember     = "authid";
     gridViewComboBoxColumn4.Width           = 200;
     gridViewDecimalColumn13.DataType        = typeof(int);
     gridViewDecimalColumn13.FieldName       = "authid";
     gridViewDecimalColumn13.HeaderText      = "authid";
     gridViewDecimalColumn13.IsAutoGenerated = true;
     gridViewDecimalColumn13.IsVisible       = false;
     gridViewDecimalColumn13.Name            = "authid";
     gridViewDecimalColumn14.DataType        = typeof(int);
     gridViewDecimalColumn14.FieldName       = "userid";
     gridViewDecimalColumn14.HeaderText      = "userid";
     gridViewDecimalColumn14.IsAutoGenerated = true;
     gridViewDecimalColumn14.IsVisible       = false;
     gridViewDecimalColumn14.Name            = "userid";
     gridViewDecimalColumn15.DataType        = typeof(int);
     gridViewDecimalColumn15.FieldName       = "authuserid";
     gridViewDecimalColumn15.HeaderText      = "authuserid";
     gridViewDecimalColumn15.IsAutoGenerated = true;
     gridViewDecimalColumn15.IsVisible       = false;
     gridViewDecimalColumn15.Name            = "authuserid";
     gridViewCheckBoxColumn13.DataType       = typeof(sbyte);
     gridViewCheckBoxColumn13.FieldName      = "view";
     gridViewCheckBoxColumn13.HeaderText     = "V";
     gridViewCheckBoxColumn13.Name           = "view";
     gridViewCheckBoxColumn13.Width          = 25;
     gridViewCheckBoxColumn14.DataType       = typeof(sbyte);
     gridViewCheckBoxColumn14.FieldName      = "add";
     gridViewCheckBoxColumn14.HeaderText     = "A";
     gridViewCheckBoxColumn14.Name           = "add";
     gridViewCheckBoxColumn14.Width          = 25;
     gridViewCheckBoxColumn15.DataType       = typeof(sbyte);
     gridViewCheckBoxColumn15.FieldName      = "edit";
     gridViewCheckBoxColumn15.HeaderText     = "E";
     gridViewCheckBoxColumn15.Name           = "edit";
     gridViewCheckBoxColumn15.Width          = 25;
     gridViewCheckBoxColumn16.DataType       = typeof(sbyte);
     gridViewCheckBoxColumn16.FieldName      = "delete";
     gridViewCheckBoxColumn16.HeaderText     = "D";
     gridViewCheckBoxColumn16.Name           = "delete";
     gridViewCheckBoxColumn16.Width          = 25;
     gridViewDecimalColumn16.DataType        = typeof(int);
     gridViewDecimalColumn16.FieldName       = "parentid";
     gridViewDecimalColumn16.HeaderText      = "column5";
     gridViewDecimalColumn16.IsVisible       = false;
     gridViewDecimalColumn16.Name            = "column5";
     this.radGridView2.MasterTemplate.Columns.AddRange(new Telerik.WinControls.UI.GridViewDataColumn[] {
         gridViewComboBoxColumn4,
         gridViewDecimalColumn13,
         gridViewDecimalColumn14,
         gridViewDecimalColumn15,
         gridViewCheckBoxColumn13,
         gridViewCheckBoxColumn14,
         gridViewCheckBoxColumn15,
         gridViewCheckBoxColumn16,
         gridViewDecimalColumn16
     });
     this.radGridView2.MasterTemplate.DataSource          = this.pSelectMenuAuthBindingSource1;
     this.radGridView2.MasterTemplate.ShowRowHeaderColumn = false;
     this.radGridView2.Name           = "radGridView2";
     this.radGridView2.ReadOnly       = true;
     this.radGridView2.ShowGroupPanel = false;
     this.radGridView2.Size           = new System.Drawing.Size(336, 508);
     this.radGridView2.TabIndex       = 1;
     this.radGridView2.Text           = "radGridView2";
     this.radGridView2.ThemeName      = "TelerikMetro";
     this.radGridView2.CellEndEdit   += new Telerik.WinControls.UI.GridViewCellEventHandler(this.radGridView2_CellEndEdit);
     //
     // radGroupBox1
     //
     this.radGroupBox1.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
     this.radGroupBox1.Controls.Add(this.btnDelete);
     this.radGroupBox1.Controls.Add(this.radLabel4);
     this.radGroupBox1.Controls.Add(this.rddStaff);
     this.radGroupBox1.Controls.Add(this.btnChange);
     this.radGroupBox1.Font       = new System.Drawing.Font("Segoe UI", 10F);
     this.radGroupBox1.HeaderText = "Manage Existing User";
     this.radGroupBox1.Location   = new System.Drawing.Point(3, 6);
     this.radGroupBox1.Name       = "radGroupBox1";
     this.radGroupBox1.Size       = new System.Drawing.Size(400, 104);
     this.radGroupBox1.TabIndex   = 5;
     this.radGroupBox1.Text       = "Manage Existing User";
     this.radGroupBox1.ThemeName  = "TelerikMetro";
     //
     // btnDelete
     //
     this.btnDelete.Font      = new System.Drawing.Font("Segoe UI", 10F);
     this.btnDelete.Location  = new System.Drawing.Point(253, 63);
     this.btnDelete.Name      = "btnDelete";
     this.btnDelete.Size      = new System.Drawing.Size(128, 23);
     this.btnDelete.TabIndex  = 8;
     this.btnDelete.Tag       = "start";
     this.btnDelete.Text      = "&Delete User";
     this.btnDelete.ThemeName = "TelerikMetro";
     this.btnDelete.Click    += new System.EventHandler(this.btnDelete_Click);
     //
     // btnReset
     //
     this.btnReset.Font      = new System.Drawing.Font("Segoe UI", 10F);
     this.btnReset.Location  = new System.Drawing.Point(9, 62);
     this.btnReset.Name      = "btnReset";
     this.btnReset.Size      = new System.Drawing.Size(172, 23);
     this.btnReset.TabIndex  = 7;
     this.btnReset.Tag       = "start";
     this.btnReset.Text      = "&Reset Password";
     this.btnReset.ThemeName = "TelerikMetro";
     this.btnReset.Click    += new System.EventHandler(this.btnReset_Click);
     //
     // radLabel4
     //
     this.radLabel4.Font     = new System.Drawing.Font("Segoe UI", 10F);
     this.radLabel4.Location = new System.Drawing.Point(9, 34);
     this.radLabel4.Name     = "radLabel4";
     this.radLabel4.Size     = new System.Drawing.Size(50, 21);
     this.radLabel4.TabIndex = 6;
     this.radLabel4.Text     = "Nama :";
     //
     // txtReset
     //
     this.txtReset.Font         = new System.Drawing.Font("Segoe UI", 10F);
     this.txtReset.Location     = new System.Drawing.Point(9, 33);
     this.txtReset.Name         = "txtReset";
     this.txtReset.NullText     = "new password";
     this.txtReset.PasswordChar = '*';
     this.txtReset.Size         = new System.Drawing.Size(172, 23);
     this.txtReset.TabIndex     = 5;
     this.txtReset.TabStop      = false;
     this.txtReset.ThemeName    = "TelerikMetro";
     //
     // radGroupBox2
     //
     this.radGroupBox2.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
     this.radGroupBox2.Controls.Add(this.btnCreate);
     this.radGroupBox2.Controls.Add(this.txtPwd);
     this.radGroupBox2.Controls.Add(this.txtUser);
     this.radGroupBox2.Controls.Add(this.radLabel2);
     this.radGroupBox2.Controls.Add(this.radLabel1);
     this.radGroupBox2.Font       = new System.Drawing.Font("Segoe UI", 10F);
     this.radGroupBox2.HeaderText = "Create New User";
     this.radGroupBox2.Location   = new System.Drawing.Point(426, 1);
     this.radGroupBox2.Name       = "radGroupBox2";
     this.radGroupBox2.Size       = new System.Drawing.Size(382, 109);
     this.radGroupBox2.TabIndex   = 6;
     this.radGroupBox2.Text       = "Create New User";
     this.radGroupBox2.ThemeName  = "TelerikMetro";
     //
     // btnCreate
     //
     this.btnCreate.Font      = new System.Drawing.Font("Segoe UI", 10F);
     this.btnCreate.Location  = new System.Drawing.Point(246, 54);
     this.btnCreate.Name      = "btnCreate";
     this.btnCreate.Size      = new System.Drawing.Size(117, 24);
     this.btnCreate.TabIndex  = 4;
     this.btnCreate.Tag       = "start";
     this.btnCreate.Text      = "Save &New User";
     this.btnCreate.ThemeName = "TelerikMetro";
     this.btnCreate.Click    += new System.EventHandler(this.btnCreate_Click);
     //
     // txtPwd
     //
     this.txtPwd.Font         = new System.Drawing.Font("Segoe UI", 10F);
     this.txtPwd.Location     = new System.Drawing.Point(87, 56);
     this.txtPwd.Name         = "txtPwd";
     this.txtPwd.NullText     = "type password here";
     this.txtPwd.PasswordChar = '*';
     this.txtPwd.Size         = new System.Drawing.Size(139, 23);
     this.txtPwd.TabIndex     = 3;
     this.txtPwd.TabStop      = false;
     this.txtPwd.ThemeName    = "TelerikMetro";
     //
     // txtUser
     //
     this.txtUser.Font      = new System.Drawing.Font("Segoe UI", 10F);
     this.txtUser.Location  = new System.Drawing.Point(66, 20);
     this.txtUser.Name      = "txtUser";
     this.txtUser.NullText  = "type log in name";
     this.txtUser.Size      = new System.Drawing.Size(161, 23);
     this.txtUser.TabIndex  = 2;
     this.txtUser.TabStop   = false;
     this.txtUser.ThemeName = "TelerikMetro";
     //
     // radLabel2
     //
     this.radLabel2.Font      = new System.Drawing.Font("Segoe UI", 10F);
     this.radLabel2.Location  = new System.Drawing.Point(9, 57);
     this.radLabel2.Name      = "radLabel2";
     this.radLabel2.Size      = new System.Drawing.Size(71, 21);
     this.radLabel2.TabIndex  = 1;
     this.radLabel2.Text      = "Password :"******"TelerikMetro";
     //
     // radLabel1
     //
     this.radLabel1.Font      = new System.Drawing.Font("Segoe UI", 10F);
     this.radLabel1.Location  = new System.Drawing.Point(9, 21);
     this.radLabel1.Name      = "radLabel1";
     this.radLabel1.Size      = new System.Drawing.Size(50, 21);
     this.radLabel1.TabIndex  = 0;
     this.radLabel1.Text      = "Nama :";
     this.radLabel1.ThemeName = "TelerikMetro";
     //
     // rddCopyFrom
     //
     this.rddCopyFrom.AutoCompleteDisplayMember = "logname";
     this.rddCopyFrom.AutoCompleteMode          = System.Windows.Forms.AutoCompleteMode.SuggestAppend;
     this.rddCopyFrom.AutoCompleteValueMember   = "StaffID";
     this.rddCopyFrom.DataSource    = this.copyFromBindingSource;
     this.rddCopyFrom.DisplayMember = "logname";
     this.rddCopyFrom.Font          = new System.Drawing.Font("Segoe UI", 10F);
     this.rddCopyFrom.Location      = new System.Drawing.Point(9, 31);
     this.rddCopyFrom.Name          = "rddCopyFrom";
     this.rddCopyFrom.Size          = new System.Drawing.Size(172, 23);
     this.rddCopyFrom.SortStyle     = Telerik.WinControls.Enumerations.SortStyle.Ascending;
     this.rddCopyFrom.TabIndex      = 9;
     this.rddCopyFrom.Text          = "radDropDownList1";
     this.rddCopyFrom.ThemeName     = "TelerikMetro";
     this.rddCopyFrom.ValueMember   = "StaffID";
     //
     // btnCopy
     //
     this.btnCopy.Font      = new System.Drawing.Font("Segoe UI", 10F);
     this.btnCopy.Location  = new System.Drawing.Point(9, 60);
     this.btnCopy.Name      = "btnCopy";
     this.btnCopy.Size      = new System.Drawing.Size(172, 23);
     this.btnCopy.TabIndex  = 11;
     this.btnCopy.Tag       = "start";
     this.btnCopy.Text      = "&Copy Permission";
     this.btnCopy.ThemeName = "TelerikMetro";
     this.btnCopy.Click    += new System.EventHandler(this.btnCopy_Click);
     //
     // grpReset
     //
     this.grpReset.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
     this.grpReset.Controls.Add(this.txtReset);
     this.grpReset.Controls.Add(this.btnReset);
     this.grpReset.Font       = new System.Drawing.Font("Segoe UI", 10F);
     this.grpReset.HeaderText = "Reset Password";
     this.grpReset.Location   = new System.Drawing.Point(814, 220);
     this.grpReset.Name       = "grpReset";
     this.grpReset.Size       = new System.Drawing.Size(197, 100);
     this.grpReset.TabIndex   = 12;
     this.grpReset.Text       = "Reset Password";
     //
     // grpPermission
     //
     this.grpPermission.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
     this.grpPermission.Controls.Add(this.rddCopyFrom);
     this.grpPermission.Controls.Add(this.btnCopy);
     this.grpPermission.Font       = new System.Drawing.Font("Segoe UI", 10F);
     this.grpPermission.HeaderText = "Copy Permission From";
     this.grpPermission.Location   = new System.Drawing.Point(814, 114);
     this.grpPermission.Name       = "grpPermission";
     this.grpPermission.Size       = new System.Drawing.Size(197, 100);
     this.grpPermission.TabIndex   = 13;
     this.grpPermission.Text       = "Copy Permission From";
     //
     // grpIndividual
     //
     this.grpIndividual.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
     this.grpIndividual.Anchor         = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                                                                               | System.Windows.Forms.AnchorStyles.Left)));
     this.grpIndividual.Controls.Add(this.radGridView1);
     this.grpIndividual.Controls.Add(this.radGridView2);
     this.grpIndividual.Font       = new System.Drawing.Font("Segoe UI", 10F);
     this.grpIndividual.HeaderText = "Manage Permission Individually";
     this.grpIndividual.Location   = new System.Drawing.Point(3, 116);
     this.grpIndividual.Name       = "grpIndividual";
     this.grpIndividual.Size       = new System.Drawing.Size(805, 528);
     this.grpIndividual.TabIndex   = 15;
     this.grpIndividual.Text       = "Manage Permission Individually";
     //
     // copyFromBindingSource
     //
     this.copyFromBindingSource.AllowNew   = false;
     this.copyFromBindingSource.DataMember = "staff";
     this.copyFromBindingSource.DataSource = this.fingermachDataSet;
     this.copyFromBindingSource.Filter     = "logname is not null";
     //
     // sfrmManageUser
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.BorderColor         = System.Drawing.Color.FromArgb(((int)(((byte)(152)))), ((int)(((byte)(152)))), ((int)(((byte)(152)))));
     this.ClientSize          = new System.Drawing.Size(1026, 645);
     this.Controls.Add(this.grpIndividual);
     this.Controls.Add(this.grpPermission);
     this.Controls.Add(this.grpReset);
     this.Controls.Add(this.radGroupBox2);
     this.Controls.Add(this.btnExit);
     this.Controls.Add(this.radGroupBox1);
     this.Name          = "sfrmManageUser";
     this.Shape         = this.roundRectShapeForm;
     this.ShowIcon      = false;
     this.ShowInTaskbar = false;
     this.Text          = "sfrmManageUser";
     this.ThemeName     = "TelerikMetro";
     this.Load         += new System.EventHandler(this.sfrmManageUser_Load);
     ((System.ComponentModel.ISupportInitialize)(this.authBindingSource)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.fingermachDataSet)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radGridView1.MasterTemplate)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radGridView1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.pSelectMenuAuthBindingSource)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.authBindingSource1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.pSelectMenuAuthBindingSource1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.rddStaff)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.staffBindingSource)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.btnExit)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.btnChange)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radGridView2.MasterTemplate)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radGridView2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radGroupBox1)).EndInit();
     this.radGroupBox1.ResumeLayout(false);
     this.radGroupBox1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.btnDelete)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.btnReset)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel4)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtReset)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radGroupBox2)).EndInit();
     this.radGroupBox2.ResumeLayout(false);
     this.radGroupBox2.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.btnCreate)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtPwd)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtUser)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.rddCopyFrom)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.btnCopy)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.grpReset)).EndInit();
     this.grpReset.ResumeLayout(false);
     this.grpReset.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.grpPermission)).EndInit();
     this.grpPermission.ResumeLayout(false);
     this.grpPermission.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.grpIndividual)).EndInit();
     this.grpIndividual.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.copyFromBindingSource)).EndInit();
     this.ResumeLayout(false);
 }
        /// <summary>
        /// Required method for Designer support - do not modify
        /// the contents of this method with the code editor.
        /// </summary>
        private void InitializeComponent()
        {
            this.components = new System.ComponentModel.Container();
            Telerik.WinControls.UI.RelationBinding relationBinding1 = new Telerik.WinControls.UI.RelationBinding();
            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.GridViewTextBoxColumn gridViewTextBoxColumn1 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewComboBoxColumn gridViewComboBoxColumn1 = new Telerik.WinControls.UI.GridViewComboBoxColumn();
            Telerik.WinControls.UI.GridViewDateTimeColumn gridViewDateTimeColumn1 = new Telerik.WinControls.UI.GridViewDateTimeColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn2 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn3 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.Data.SortDescriptor sortDescriptor1 = new Telerik.WinControls.Data.SortDescriptor();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn4 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewDecimalColumn gridViewDecimalColumn4 = new Telerik.WinControls.UI.GridViewDecimalColumn();
            Telerik.WinControls.UI.GridViewDecimalColumn gridViewDecimalColumn5 = new Telerik.WinControls.UI.GridViewDecimalColumn();
            Telerik.WinControls.UI.GridViewDateTimeColumn gridViewDateTimeColumn2 = new Telerik.WinControls.UI.GridViewDateTimeColumn();
            Telerik.WinControls.UI.GridViewDecimalColumn gridViewDecimalColumn6 = new Telerik.WinControls.UI.GridViewDecimalColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn5 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(ThinkManageMain));
            this.categoryBindingSource = new System.Windows.Forms.BindingSource(this.components);
            this.documentContainer1 = new Telerik.WinControls.UI.Docking.DocumentContainer();
            this.documentTabStrip1 = new Telerik.WinControls.UI.Docking.DocumentTabStrip();
            this.documentWindow1 = new Telerik.WinControls.UI.Docking.DocumentWindow();
            this.radStatusStrip1 = new Telerik.WinControls.UI.RadStatusStrip();
            this.toolTabStrip1 = new Telerik.WinControls.UI.Docking.ToolTabStrip();
            this.radPanel1 = new Telerik.WinControls.UI.RadPanel();
            this.radDock1 = new Telerik.WinControls.UI.Docking.RadDock();
            this.toolWindow7 = new Telerik.WinControls.UI.Docking.ToolWindow();
            this.radTreeView1 = new Telerik.WinControls.UI.RadTreeView();
            this.radContextMenu1 = new Telerik.WinControls.UI.RadContextMenu(this.components);
            this.radMenuItem1 = new Telerik.WinControls.UI.RadMenuItem();
            this.radMenuItem2 = new Telerik.WinControls.UI.RadMenuItem();
            this.radMenuItem3 = new Telerik.WinControls.UI.RadMenuItem();
            this.radMenuItem4 = new Telerik.WinControls.UI.RadMenuItem();
            this.radMenuItem5 = new Telerik.WinControls.UI.RadMenuItem();
            this.toolTabStrip4 = new Telerik.WinControls.UI.Docking.ToolTabStrip();
            this.radSplitContainer1 = new Telerik.WinControls.UI.RadSplitContainer();
            this.documentContainer2 = new Telerik.WinControls.UI.Docking.DocumentContainer();
            this.documentTabStrip2 = new Telerik.WinControls.UI.Docking.DocumentTabStrip();
            this.documentWindow4 = new Telerik.WinControls.UI.Docking.DocumentWindow();
            this.radGridView1 = new Telerik.WinControls.UI.RadGridView();
            this.thinkContentsBindingSource = new System.Windows.Forms.BindingSource(this.components);
            this.documentWindow3 = new Telerik.WinControls.UI.Docking.DocumentWindow();
            this.toolTabStrip2 = new Telerik.WinControls.UI.Docking.ToolTabStrip();
            this.toolWindow8 = new Telerik.WinControls.UI.Docking.ToolWindow();
            this.radPageView1 = new Telerik.WinControls.UI.RadPageView();
            this.radPageViewPage1 = new Telerik.WinControls.UI.RadPageViewPage();
            this.radPageViewPage2 = new Telerik.WinControls.UI.RadPageViewPage();
            this.radPageViewPage3 = new Telerik.WinControls.UI.RadPageViewPage();
            this.radMultiColumnComboBox1 = new Telerik.WinControls.UI.RadMultiColumnComboBox();
            this.radRibbonBar2 = new Telerik.WinControls.UI.RadRibbonBar();
            this.homeTab = new Telerik.WinControls.UI.RibbonTab();
            this.databaseGroup = new Telerik.WinControls.UI.RadRibbonBarGroup();
            this.loadDatabaseButton = new Telerik.WinControls.UI.RadButtonElement();
            this.editGroup = new Telerik.WinControls.UI.RadRibbonBarGroup();
            this.addButton = new Telerik.WinControls.UI.RadButtonElement();
            this.removeButton = new Telerik.WinControls.UI.RadButtonElement();
            this.editButton = new Telerik.WinControls.UI.RadButtonElement();
            this.radButtonElement3 = new Telerik.WinControls.UI.RadButtonElement();
            this.radButtonElement5 = new Telerik.WinControls.UI.RadButtonElement();
            this.viewGroup = new Telerik.WinControls.UI.RadRibbonBarGroup();
            this.sortDropDownButton = new Telerik.WinControls.UI.RadDropDownButtonElement();
            this.radRibbonBarButtonGroup1 = new Telerik.WinControls.UI.RadRibbonBarButtonGroup();
            this.radRibbonBarButtonGroup2 = new Telerik.WinControls.UI.RadRibbonBarButtonGroup();
            this.openCheckBox = new Telerik.WinControls.UI.RadCheckBoxElement();
            this.readyForTestCheckBox = new Telerik.WinControls.UI.RadCheckBoxElement();
            this.doneCheckBox = new Telerik.WinControls.UI.RadCheckBoxElement();
            this.radRibbonBarButtonGroup3 = new Telerik.WinControls.UI.RadRibbonBarButtonGroup();
            this.unassignedCheckBox = new Telerik.WinControls.UI.RadCheckBoxElement();
            this.newCheckBox = new Telerik.WinControls.UI.RadCheckBoxElement();
            this.viewTab = new Telerik.WinControls.UI.RibbonTab();
            this.layoutGroup = new Telerik.WinControls.UI.RadRibbonBarGroup();
            this.loadLayoutButton = new Telerik.WinControls.UI.RadButtonElement();
            this.saveLayoutButton = new Telerik.WinControls.UI.RadButtonElement();
            this.panelsGroup = new Telerik.WinControls.UI.RadRibbonBarGroup();
            this.projectsButton = new Telerik.WinControls.UI.RadButtonElement();
            this.detailsButton = new Telerik.WinControls.UI.RadButtonElement();
            this.bugsButton = new Telerik.WinControls.UI.RadButtonElement();
            this.featuresButton = new Telerik.WinControls.UI.RadButtonElement();
            this.radRibbonBarGroup2 = new Telerik.WinControls.UI.RadRibbonBarGroup();
            this.radGalleryElement1 = new Telerik.WinControls.UI.RadGalleryElement();
            this.office2010BlackButton = new Telerik.WinControls.UI.RadGalleryItem();
            this.office2010BlueButton = new Telerik.WinControls.UI.RadGalleryItem();
            this.office2010SilverButton = new Telerik.WinControls.UI.RadGalleryItem();
            this.controlDefaultButton = new Telerik.WinControls.UI.RadGalleryItem();
            this.telerikButton = new Telerik.WinControls.UI.RadGalleryItem();
            this.toolWindow2 = new Telerik.WinControls.UI.Docking.ToolWindow();
            this.toolWindow3 = new Telerik.WinControls.UI.Docking.ToolWindow();
            this.toolWindow4 = new Telerik.WinControls.UI.Docking.ToolWindow();
            this.toolWindow1 = new Telerik.WinControls.UI.Docking.ToolWindow();
            this.toolWindow5 = new Telerik.WinControls.UI.Docking.ToolWindow();
            this.toolWindow6 = new Telerik.WinControls.UI.Docking.ToolWindow();
            this.documentWindow2 = new Telerik.WinControls.UI.Docking.DocumentWindow();
            this.saveDatabaseButton = new Telerik.WinControls.UI.RadButtonElement();
            this.radButtonElement1 = new Telerik.WinControls.UI.RadButtonElement();
            this.radButtonElement2 = new Telerik.WinControls.UI.RadButtonElement();
            this.radRibbonBarButtonGroup4 = new Telerik.WinControls.UI.RadRibbonBarButtonGroup();
            this.radButtonElement4 = new Telerik.WinControls.UI.RadButtonElement();
            this.radContextMenuManager1 = new Telerik.WinControls.UI.RadContextMenuManager();
            this.thinkContentsBindingSource6 = new System.Windows.Forms.BindingSource(this.components);
            ((System.ComponentModel.ISupportInitialize)(this.categoryBindingSource)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.documentContainer1)).BeginInit();
            this.documentContainer1.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.documentTabStrip1)).BeginInit();
            this.documentTabStrip1.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.radStatusStrip1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.toolTabStrip1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radPanel1)).BeginInit();
            this.radPanel1.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.radDock1)).BeginInit();
            this.radDock1.SuspendLayout();
            this.toolWindow7.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.radTreeView1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.toolTabStrip4)).BeginInit();
            this.toolTabStrip4.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.radSplitContainer1)).BeginInit();
            this.radSplitContainer1.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.documentContainer2)).BeginInit();
            this.documentContainer2.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.documentTabStrip2)).BeginInit();
            this.documentTabStrip2.SuspendLayout();
            this.documentWindow4.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.radGridView1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.thinkContentsBindingSource)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.toolTabStrip2)).BeginInit();
            this.toolTabStrip2.SuspendLayout();
            this.toolWindow8.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.radPageView1)).BeginInit();
            this.radPageView1.SuspendLayout();
            this.radPageViewPage3.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.radMultiColumnComboBox1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radRibbonBar2)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.thinkContentsBindingSource6)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
            this.SuspendLayout();
            // 
            // categoryBindingSource
            // 
            this.categoryBindingSource.DataSource = typeof(ThinkManage.Category);
            // 
            // documentContainer1
            // 
            this.documentContainer1.CausesValidation = false;
            this.documentContainer1.Controls.Add(this.documentTabStrip1);
            this.documentContainer1.Location = new System.Drawing.Point(209, 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(478, 303);
            this.documentContainer1.SizeInfo.SizeMode = Telerik.WinControls.UI.Docking.SplitPanelSizeMode.Fill;
            this.documentContainer1.SplitterWidth = 4;
            this.documentContainer1.TabIndex = 0;
            this.documentContainer1.TabStop = false;
            // 
            // documentTabStrip1
            // 
            this.documentTabStrip1.CausesValidation = false;
            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(478, 303);
            this.documentTabStrip1.TabIndex = 0;
            this.documentTabStrip1.TabStop = false;
            // 
            // documentWindow1
            // 
            this.documentWindow1.Location = new System.Drawing.Point(6, 37);
            this.documentWindow1.Name = "documentWindow1";
            this.documentWindow1.PreviousDockState = Telerik.WinControls.UI.Docking.DockState.TabbedDocument;
            this.documentWindow1.Size = new System.Drawing.Size(466, 260);
            this.documentWindow1.Text = "documentWindow2";
            // 
            // radStatusStrip1
            // 
            this.radStatusStrip1.AutoSize = true;
            this.radStatusStrip1.LayoutStyle = Telerik.WinControls.UI.RadStatusBarLayoutStyle.Stack;
            this.radStatusStrip1.Location = new System.Drawing.Point(0, 918);
            this.radStatusStrip1.Name = "radStatusStrip1";
            this.radStatusStrip1.Size = new System.Drawing.Size(1727, 28);
            this.radStatusStrip1.TabIndex = 1;
            this.radStatusStrip1.Text = "radStatusStrip1";
            // 
            // toolTabStrip1
            // 
            this.toolTabStrip1.Location = new System.Drawing.Point(5, 5);
            this.toolTabStrip1.Name = "toolTabStrip1";
            // 
            // 
            // 
            this.toolTabStrip1.RootElement.MinSize = new System.Drawing.Size(25, 25);
            this.toolTabStrip1.Size = new System.Drawing.Size(200, 303);
            this.toolTabStrip1.TabIndex = 1;
            this.toolTabStrip1.TabStop = false;
            // 
            // radPanel1
            // 
            this.radPanel1.AutoScrollToCurrentControl = false;
            this.radPanel1.Controls.Add(this.radDock1);
            this.radPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
            this.radPanel1.EnableTheming = false;
            this.radPanel1.Location = new System.Drawing.Point(0, 167);
            this.radPanel1.Name = "radPanel1";
            this.radPanel1.Size = new System.Drawing.Size(1727, 751);
            this.radPanel1.TabIndex = 3;
            this.radPanel1.TabStop = false;
            this.radPanel1.Text = "radPanel1";
            // 
            // radDock1
            // 
            this.radDock1.ActiveWindow = this.toolWindow7;
            this.radDock1.CausesValidation = false;
            this.radDock1.Controls.Add(this.toolTabStrip4);
            this.radDock1.Controls.Add(this.radSplitContainer1);
            this.radDock1.Dock = System.Windows.Forms.DockStyle.Fill;
            this.radDock1.DocumentManager.DocumentInsertOrder = Telerik.WinControls.UI.Docking.DockWindowInsertOrder.InFront;
            this.radDock1.IsCleanUpTarget = true;
            this.radDock1.Location = new System.Drawing.Point(0, 0);
            this.radDock1.MainDocumentContainer = this.documentContainer2;
            this.radDock1.Name = "radDock1";
            this.radDock1.Padding = new System.Windows.Forms.Padding(5);
            // 
            // 
            // 
            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(1727, 751);
            this.radDock1.SplitterWidth = 4;
            this.radDock1.TabIndex = 0;
            this.radDock1.TabStop = false;
            this.radDock1.Text = "radDock1";
            // 
            // toolWindow7
            // 
            this.toolWindow7.Caption = null;
            this.toolWindow7.Controls.Add(this.radTreeView1);
            this.toolWindow7.Location = new System.Drawing.Point(1, 26);
            this.toolWindow7.Name = "toolWindow7";
            this.toolWindow7.PreviousDockState = Telerik.WinControls.UI.Docking.DockState.Docked;
            this.toolWindow7.Size = new System.Drawing.Size(310, 713);
            this.toolWindow7.Text = "toolWindow7";
            // 
            // radTreeView1
            // 
            this.radTreeView1.AllowAdd = global::ThinkManage.Properties.Settings.Default.New;
            this.radTreeView1.AllowDefaultContextMenu = global::ThinkManage.Properties.Settings.Default.New;
            this.radTreeView1.AllowDragDrop = true;
            this.radTreeView1.AllowEdit = global::ThinkManage.Properties.Settings.Default.Edit;
            this.radTreeView1.AllowRemove = global::ThinkManage.Properties.Settings.Default.Delete;
            this.radTreeView1.BackColor = System.Drawing.Color.White;
            this.radTreeView1.ChildMember = "Id";
            this.radTreeView1.DataBindings.Add(new System.Windows.Forms.Binding("AllowAdd", global::ThinkManage.Properties.Settings.Default, "New", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
            this.radTreeView1.DataBindings.Add(new System.Windows.Forms.Binding("AllowDefaultContextMenu", global::ThinkManage.Properties.Settings.Default, "New", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
            this.radTreeView1.DataBindings.Add(new System.Windows.Forms.Binding("AllowEdit", global::ThinkManage.Properties.Settings.Default, "Edit", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
            this.radTreeView1.DataBindings.Add(new System.Windows.Forms.Binding("AllowRemove", global::ThinkManage.Properties.Settings.Default, "Delete", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
            this.radTreeView1.DataSource = this.categoryBindingSource;
            this.radTreeView1.DisplayMember = "CategoryName";
            this.radTreeView1.Dock = System.Windows.Forms.DockStyle.Fill;
            this.radTreeView1.Location = new System.Drawing.Point(0, 0);
            this.radTreeView1.Name = "radTreeView1";
            this.radTreeView1.ParentMember = "PId";
            this.radTreeView1.RadContextMenu = this.radContextMenu1;
            relationBinding1.ChildMember = "Id";
            relationBinding1.DataSource = this.categoryBindingSource;
            relationBinding1.DisplayMember = "CategoryName";
            relationBinding1.ParentMember = "PId";
            relationBinding1.ValueMember = "Id";
            this.radTreeView1.RelationBindings.AddRange(new Telerik.WinControls.UI.RelationBinding[] {
            relationBinding1});
            this.radTreeView1.Size = new System.Drawing.Size(310, 713);
            this.radTreeView1.SpacingBetweenNodes = -1;
            this.radTreeView1.TabIndex = 0;
            this.radTreeView1.Text = "radTreeView1";
            this.radTreeView1.ValueMember = "Id";
            this.radTreeView1.ContextMenuOpening += new Telerik.WinControls.UI.TreeViewContextMenuOpeningEventHandler(this.radTreeView1_ContextMenuOpening);
            // 
            // radContextMenu1
            // 
            this.radContextMenu1.Items.AddRange(new Telerik.WinControls.RadItem[] {
            this.radMenuItem1,
            this.radMenuItem2,
            this.radMenuItem3,
            this.radMenuItem4,
            this.radMenuItem5});
            // 
            // radMenuItem1
            // 
            this.radMenuItem1.AccessibleDescription = "New";
            this.radMenuItem1.AccessibleName = "New";
            this.radMenuItem1.Name = "radMenuItem1";
            this.radMenuItem1.Text = "New";
            this.radMenuItem1.Visibility = Telerik.WinControls.ElementVisibility.Visible;
            // 
            // radMenuItem2
            // 
            this.radMenuItem2.AccessibleDescription = "Edit";
            this.radMenuItem2.AccessibleName = "Edit";
            this.radMenuItem2.Name = "radMenuItem2";
            this.radMenuItem2.Text = "Edit";
            this.radMenuItem2.Visibility = Telerik.WinControls.ElementVisibility.Visible;
            // 
            // radMenuItem3
            // 
            this.radMenuItem3.AccessibleDescription = "Expand";
            this.radMenuItem3.AccessibleName = "Expand";
            this.radMenuItem3.Name = "radMenuItem3";
            this.radMenuItem3.Text = "Expand";
            this.radMenuItem3.Visibility = Telerik.WinControls.ElementVisibility.Visible;
            // 
            // radMenuItem4
            // 
            this.radMenuItem4.AccessibleDescription = "Collapse";
            this.radMenuItem4.AccessibleName = "Collapse";
            this.radMenuItem4.Name = "radMenuItem4";
            this.radMenuItem4.Text = "Collapse";
            this.radMenuItem4.Visibility = Telerik.WinControls.ElementVisibility.Visible;
            // 
            // radMenuItem5
            // 
            this.radMenuItem5.AccessibleDescription = "Delete";
            this.radMenuItem5.AccessibleName = "Delete";
            this.radMenuItem5.Name = "radMenuItem5";
            this.radMenuItem5.Text = "Delete";
            this.radMenuItem5.Visibility = Telerik.WinControls.ElementVisibility.Visible;
            // 
            // toolTabStrip4
            // 
            this.toolTabStrip4.Controls.Add(this.toolWindow7);
            this.toolTabStrip4.Location = new System.Drawing.Point(5, 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(312, 741);
            this.toolTabStrip4.SizeInfo.AbsoluteSize = new System.Drawing.Size(312, 200);
            this.toolTabStrip4.SizeInfo.SplitterCorrection = new System.Drawing.Size(112, 0);
            this.toolTabStrip4.TabIndex = 1;
            this.toolTabStrip4.TabStop = false;
            // 
            // radSplitContainer1
            // 
            this.radSplitContainer1.CausesValidation = false;
            this.radSplitContainer1.Controls.Add(this.documentContainer2);
            this.radSplitContainer1.Controls.Add(this.toolTabStrip2);
            this.radSplitContainer1.IsCleanUpTarget = true;
            this.radSplitContainer1.Location = new System.Drawing.Point(321, 5);
            this.radSplitContainer1.Name = "radSplitContainer1";
            this.radSplitContainer1.Orientation = System.Windows.Forms.Orientation.Horizontal;
            this.radSplitContainer1.Padding = new System.Windows.Forms.Padding(5);
            // 
            // 
            // 
            this.radSplitContainer1.RootElement.MinSize = new System.Drawing.Size(25, 25);
            this.radSplitContainer1.RootElement.Padding = new System.Windows.Forms.Padding(5);
            this.radSplitContainer1.Size = new System.Drawing.Size(1401, 741);
            this.radSplitContainer1.SizeInfo.AbsoluteSize = new System.Drawing.Size(850, 200);
            this.radSplitContainer1.SizeInfo.SplitterCorrection = new System.Drawing.Size(-112, 0);
            this.radSplitContainer1.SplitterWidth = 4;
            this.radSplitContainer1.TabIndex = 2;
            this.radSplitContainer1.TabStop = false;
            // 
            // documentContainer2
            // 
            this.documentContainer2.CausesValidation = false;
            this.documentContainer2.Controls.Add(this.documentTabStrip2);
            this.documentContainer2.Location = new System.Drawing.Point(0, 0);
            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(1401, 567);
            this.documentContainer2.SizeInfo.AbsoluteSize = new System.Drawing.Size(200, 435);
            this.documentContainer2.SizeInfo.SizeMode = Telerik.WinControls.UI.Docking.SplitPanelSizeMode.Fill;
            this.documentContainer2.SizeInfo.SplitterCorrection = new System.Drawing.Size(0, 30);
            this.documentContainer2.SplitterWidth = 4;
            this.documentContainer2.TabIndex = 0;
            this.documentContainer2.TabStop = false;
            // 
            // documentTabStrip2
            // 
            this.documentTabStrip2.CausesValidation = false;
            this.documentTabStrip2.Controls.Add(this.documentWindow4);
            this.documentTabStrip2.Controls.Add(this.documentWindow3);
            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(1401, 567);
            this.documentTabStrip2.TabIndex = 0;
            this.documentTabStrip2.TabStop = false;
            // 
            // documentWindow4
            // 
            this.documentWindow4.Controls.Add(this.radGridView1);
            this.documentWindow4.Location = new System.Drawing.Point(6, 33);
            this.documentWindow4.Name = "documentWindow4";
            this.documentWindow4.PreviousDockState = Telerik.WinControls.UI.Docking.DockState.TabbedDocument;
            this.documentWindow4.Size = new System.Drawing.Size(1389, 528);
            this.documentWindow4.Text = "documentWindow1";
            // 
            // radGridView1
            // 
            this.radGridView1.AutoGenerateHierarchy = true;
            this.radGridView1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(233)))), ((int)(((byte)(240)))), ((int)(((byte)(249)))));
            this.radGridView1.Cursor = System.Windows.Forms.Cursors.Default;
            this.radGridView1.Dock = System.Windows.Forms.DockStyle.Fill;
            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(0, 0);
            // 
            // radGridView1
            // 
            this.radGridView1.MasterTemplate.AutoGenerateColumns = false;
            gridViewDecimalColumn1.DataType = typeof(int);
            gridViewDecimalColumn1.EnableExpressionEditor = false;
            gridViewDecimalColumn1.FieldName = "Id";
            gridViewDecimalColumn1.HeaderText = "Id";
            gridViewDecimalColumn1.IsAutoGenerated = true;
            gridViewDecimalColumn1.IsVisible = false;
            gridViewDecimalColumn1.Name = "Id";
            gridViewDecimalColumn2.DataType = typeof(int);
            gridViewDecimalColumn2.EnableExpressionEditor = true;
            gridViewDecimalColumn2.FieldName = "CategoryId";
            gridViewDecimalColumn2.HeaderText = "CategoryId";
            gridViewDecimalColumn2.IsAutoGenerated = true;
            gridViewDecimalColumn2.IsVisible = false;
            gridViewDecimalColumn2.Name = "CategoryId";
            gridViewDecimalColumn3.DataType = typeof(int);
            gridViewDecimalColumn3.EnableExpressionEditor = false;
            gridViewDecimalColumn3.FieldName = "TagId";
            gridViewDecimalColumn3.HeaderText = "TagId";
            gridViewDecimalColumn3.IsAutoGenerated = true;
            gridViewDecimalColumn3.IsVisible = false;
            gridViewDecimalColumn3.Name = "TagId";
            gridViewTextBoxColumn1.EnableExpressionEditor = false;
            gridViewTextBoxColumn1.FieldName = "ThinkContent";
            gridViewTextBoxColumn1.FormatString = "";
            gridViewTextBoxColumn1.HeaderText = "ThinkContent";
            gridViewTextBoxColumn1.IsAutoGenerated = true;
            gridViewTextBoxColumn1.Name = "ThinkContent";
            gridViewTextBoxColumn1.SortOrder = Telerik.WinControls.UI.RadSortOrder.Ascending;
            gridViewTextBoxColumn1.Width = 300;
            gridViewComboBoxColumn1.DataSource = this.categoryBindingSource;
            gridViewComboBoxColumn1.DisplayMember = "CategoryName";
            gridViewComboBoxColumn1.EnableExpressionEditor = false;
            gridViewComboBoxColumn1.FormatString = "";
            gridViewComboBoxColumn1.HeaderText = "Categorys";
            gridViewComboBoxColumn1.Name = "Categorys";
            gridViewComboBoxColumn1.ValueMember = "Id";
            gridViewComboBoxColumn1.Width = 200;
            gridViewDateTimeColumn1.EnableExpressionEditor = false;
            gridViewDateTimeColumn1.FieldName = "DateCreated";
            gridViewDateTimeColumn1.Format = System.Windows.Forms.DateTimePickerFormat.Long;
            gridViewDateTimeColumn1.FormatString = "";
            gridViewDateTimeColumn1.HeaderText = "DateCreated";
            gridViewDateTimeColumn1.IsAutoGenerated = true;
            gridViewDateTimeColumn1.Name = "DateCreated";
            gridViewDateTimeColumn1.Width = 200;
            gridViewTextBoxColumn2.DataType = typeof(ThinkManage.Tag);
            gridViewTextBoxColumn2.EnableExpressionEditor = false;
            gridViewTextBoxColumn2.FieldName = "Tag";
            gridViewTextBoxColumn2.HeaderText = "Tag";
            gridViewTextBoxColumn2.IsAutoGenerated = true;
            gridViewTextBoxColumn2.IsVisible = false;
            gridViewTextBoxColumn2.Name = "Tag";
            gridViewTextBoxColumn3.DataType = typeof(ThinkManage.Category);
            gridViewTextBoxColumn3.EnableExpressionEditor = false;
            gridViewTextBoxColumn3.FieldName = "Category";
            gridViewTextBoxColumn3.HeaderText = "Category";
            gridViewTextBoxColumn3.IsAutoGenerated = true;
            gridViewTextBoxColumn3.IsVisible = false;
            gridViewTextBoxColumn3.Name = "Category";
            this.radGridView1.MasterTemplate.Columns.AddRange(new Telerik.WinControls.UI.GridViewDataColumn[] {
            gridViewDecimalColumn1,
            gridViewDecimalColumn2,
            gridViewDecimalColumn3,
            gridViewTextBoxColumn1,
            gridViewComboBoxColumn1,
            gridViewDateTimeColumn1,
            gridViewTextBoxColumn2,
            gridViewTextBoxColumn3});
            this.radGridView1.MasterTemplate.DataSource = this.thinkContentsBindingSource;
            sortDescriptor1.PropertyName = "ThinkContent";
            this.radGridView1.MasterTemplate.SortDescriptors.AddRange(new Telerik.WinControls.Data.SortDescriptor[] {
            sortDescriptor1});
            this.radGridView1.Name = "radGridView1";
            this.radGridView1.RightToLeft = System.Windows.Forms.RightToLeft.No;
            this.radGridView1.Size = new System.Drawing.Size(1389, 528);
            this.radGridView1.TabIndex = 0;
            this.radGridView1.Text = "radGridView1";
            // 
            // thinkContentsBindingSource
            // 
            this.thinkContentsBindingSource.DataSource = typeof(ThinkManage.ThinkContents);
            // 
            // documentWindow3
            // 
            this.documentWindow3.Location = new System.Drawing.Point(6, 37);
            this.documentWindow3.Name = "documentWindow3";
            this.documentWindow3.PreviousDockState = Telerik.WinControls.UI.Docking.DockState.TabbedDocument;
            this.documentWindow3.Size = new System.Drawing.Size(1596, 650);
            this.documentWindow3.Text = "documentWindow3";
            // 
            // toolTabStrip2
            // 
            this.toolTabStrip2.Controls.Add(this.toolWindow8);
            this.toolTabStrip2.Location = new System.Drawing.Point(0, 571);
            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(1401, 170);
            this.toolTabStrip2.SizeInfo.AbsoluteSize = new System.Drawing.Size(200, 170);
            this.toolTabStrip2.SizeInfo.SplitterCorrection = new System.Drawing.Size(0, -30);
            this.toolTabStrip2.TabIndex = 1;
            this.toolTabStrip2.TabStop = false;
            // 
            // toolWindow8
            // 
            this.toolWindow8.Caption = null;
            this.toolWindow8.Controls.Add(this.radPageView1);
            this.toolWindow8.Location = new System.Drawing.Point(1, 26);
            this.toolWindow8.Name = "toolWindow8";
            this.toolWindow8.PreviousDockState = Telerik.WinControls.UI.Docking.DockState.Docked;
            this.toolWindow8.Size = new System.Drawing.Size(1399, 142);
            this.toolWindow8.Text = "toolWindow8";
            // 
            // radPageView1
            // 
            this.radPageView1.Controls.Add(this.radPageViewPage1);
            this.radPageView1.Controls.Add(this.radPageViewPage2);
            this.radPageView1.Controls.Add(this.radPageViewPage3);
            this.radPageView1.Dock = System.Windows.Forms.DockStyle.Fill;
            this.radPageView1.Location = new System.Drawing.Point(0, 0);
            this.radPageView1.Name = "radPageView1";
            this.radPageView1.SelectedPage = this.radPageViewPage3;
            this.radPageView1.Size = new System.Drawing.Size(1399, 142);
            this.radPageView1.TabIndex = 0;
            this.radPageView1.Text = "radPageView1";
            // 
            // radPageViewPage1
            // 
            this.radPageViewPage1.Location = new System.Drawing.Point(10, 45);
            this.radPageViewPage1.Name = "radPageViewPage1";
            this.radPageViewPage1.Size = new System.Drawing.Size(1585, 82);
            this.radPageViewPage1.Text = "radPageViewPage1";
            // 
            // radPageViewPage2
            // 
            this.radPageViewPage2.Location = new System.Drawing.Point(10, 37);
            this.radPageViewPage2.Name = "radPageViewPage2";
            this.radPageViewPage2.Size = new System.Drawing.Size(931, 96);
            this.radPageViewPage2.Text = "radPageViewPage2";
            // 
            // radPageViewPage3
            // 
            this.radPageViewPage3.Controls.Add(this.radMultiColumnComboBox1);
            this.radPageViewPage3.Location = new System.Drawing.Point(10, 41);
            this.radPageViewPage3.Name = "radPageViewPage3";
            this.radPageViewPage3.Size = new System.Drawing.Size(1378, 90);
            this.radPageViewPage3.Text = "radPageViewPage3";
            // 
            // radMultiColumnComboBox1
            // 
            this.radMultiColumnComboBox1.DataSource = this.categoryBindingSource;
            this.radMultiColumnComboBox1.DisplayMember = "CategoryName";
            // 
            // radMultiColumnComboBox1.NestedRadGridView
            // 
            this.radMultiColumnComboBox1.EditorControl.BackColor = System.Drawing.SystemColors.Window;
            this.radMultiColumnComboBox1.EditorControl.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
            this.radMultiColumnComboBox1.EditorControl.ForeColor = System.Drawing.SystemColors.ControlText;
            this.radMultiColumnComboBox1.EditorControl.Location = new System.Drawing.Point(0, 0);
            // 
            // 
            // 
            this.radMultiColumnComboBox1.EditorControl.MasterTemplate.AllowAddNewRow = false;
            this.radMultiColumnComboBox1.EditorControl.MasterTemplate.AllowCellContextMenu = false;
            this.radMultiColumnComboBox1.EditorControl.MasterTemplate.AllowColumnChooser = false;
            gridViewTextBoxColumn4.FieldName = "CategoryName";
            gridViewTextBoxColumn4.HeaderText = "CategoryName";
            gridViewTextBoxColumn4.IsAutoGenerated = true;
            gridViewTextBoxColumn4.Name = "CategoryName";
            gridViewDecimalColumn4.DataType = typeof(int);
            gridViewDecimalColumn4.FieldName = "Id";
            gridViewDecimalColumn4.HeaderText = "Id";
            gridViewDecimalColumn4.IsAutoGenerated = true;
            gridViewDecimalColumn4.Name = "Id";
            gridViewDecimalColumn5.DataType = typeof(int);
            gridViewDecimalColumn5.FieldName = "PId";
            gridViewDecimalColumn5.HeaderText = "PId";
            gridViewDecimalColumn5.IsAutoGenerated = true;
            gridViewDecimalColumn5.Name = "PId";
            gridViewDateTimeColumn2.FieldName = "DateCreated";
            gridViewDateTimeColumn2.HeaderText = "DateCreated";
            gridViewDateTimeColumn2.IsAutoGenerated = true;
            gridViewDateTimeColumn2.Name = "DateCreated";
            gridViewDecimalColumn6.DataType = typeof(int);
            gridViewDecimalColumn6.FieldName = "Id2";
            gridViewDecimalColumn6.HeaderText = "Id2";
            gridViewDecimalColumn6.IsAutoGenerated = true;
            gridViewDecimalColumn6.Name = "Id2";
            gridViewTextBoxColumn5.DataType = typeof(System.Collections.Generic.IList<ThinkManage.ThinkContents>);
            gridViewTextBoxColumn5.FieldName = "ThinkContents";
            gridViewTextBoxColumn5.HeaderText = "ThinkContents";
            gridViewTextBoxColumn5.IsAutoGenerated = true;
            gridViewTextBoxColumn5.Name = "ThinkContents";
            gridViewTextBoxColumn5.ReadOnly = true;
            this.radMultiColumnComboBox1.EditorControl.MasterTemplate.Columns.AddRange(new Telerik.WinControls.UI.GridViewDataColumn[] {
            gridViewTextBoxColumn4,
            gridViewDecimalColumn4,
            gridViewDecimalColumn5,
            gridViewDateTimeColumn2,
            gridViewDecimalColumn6,
            gridViewTextBoxColumn5});
            this.radMultiColumnComboBox1.EditorControl.MasterTemplate.DataSource = this.categoryBindingSource;
            this.radMultiColumnComboBox1.EditorControl.MasterTemplate.EnableGrouping = false;
            this.radMultiColumnComboBox1.EditorControl.MasterTemplate.ShowFilteringRow = false;
            this.radMultiColumnComboBox1.EditorControl.Name = "NestedRadGridView";
            this.radMultiColumnComboBox1.EditorControl.ReadOnly = true;
            this.radMultiColumnComboBox1.EditorControl.ShowGroupPanel = false;
            this.radMultiColumnComboBox1.EditorControl.Size = new System.Drawing.Size(240, 150);
            this.radMultiColumnComboBox1.EditorControl.TabIndex = 0;
            this.radMultiColumnComboBox1.Location = new System.Drawing.Point(327, 13);
            this.radMultiColumnComboBox1.Name = "radMultiColumnComboBox1";
            // 
            // 
            // 
            this.radMultiColumnComboBox1.RootElement.AutoSizeMode = Telerik.WinControls.RadAutoSizeMode.WrapAroundChildren;
            this.radMultiColumnComboBox1.Size = new System.Drawing.Size(275, 24);
            this.radMultiColumnComboBox1.TabIndex = 0;
            this.radMultiColumnComboBox1.TabStop = false;
            this.radMultiColumnComboBox1.ValueMember = "Id";
            // 
            // radRibbonBar2
            // 
            this.radRibbonBar2.AutoSize = true;
            this.radRibbonBar2.CommandTabs.AddRange(new Telerik.WinControls.RadItem[] {
            this.homeTab,
            this.viewTab});
            // 
            // 
            // 
            this.radRibbonBar2.ExitButton.AccessibleDescription = "Exit";
            this.radRibbonBar2.ExitButton.AccessibleName = "Exit";
            // 
            // 
            // 
            this.radRibbonBar2.ExitButton.ButtonElement.AccessibleDescription = "Exit";
            this.radRibbonBar2.ExitButton.ButtonElement.AccessibleName = "Exit";
            this.radRibbonBar2.ExitButton.ButtonElement.Class = "RadMenuButtonElement";
            this.radRibbonBar2.ExitButton.ButtonElement.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageBeforeText;
            this.radRibbonBar2.ExitButton.Text = "Exit";
            this.radRibbonBar2.Location = new System.Drawing.Point(0, 0);
            this.radRibbonBar2.Name = "radRibbonBar2";
            // 
            // 
            // 
            this.radRibbonBar2.OptionsButton.AccessibleDescription = "Options";
            this.radRibbonBar2.OptionsButton.AccessibleName = "Options";
            // 
            // 
            // 
            this.radRibbonBar2.OptionsButton.ButtonElement.AccessibleDescription = "Options";
            this.radRibbonBar2.OptionsButton.ButtonElement.AccessibleName = "Options";
            this.radRibbonBar2.OptionsButton.ButtonElement.Class = "RadMenuButtonElement";
            this.radRibbonBar2.OptionsButton.ButtonElement.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageBeforeText;
            this.radRibbonBar2.OptionsButton.Text = "Options";
            // 
            // 
            // 
            this.radRibbonBar2.RootElement.AutoSizeMode = Telerik.WinControls.RadAutoSizeMode.WrapAroundChildren;
            this.radRibbonBar2.Size = new System.Drawing.Size(1727, 167);
            this.radRibbonBar2.StartButtonImage = null;
            this.radRibbonBar2.TabIndex = 1;
            this.radRibbonBar2.Text = "思想管理软件";
            // 
            // homeTab
            // 
            this.homeTab.AccessibleDescription = "Home";
            this.homeTab.AccessibleName = "Home";
            this.homeTab.Alignment = System.Drawing.ContentAlignment.BottomLeft;
            this.homeTab.AutoEllipsis = false;
            this.homeTab.Class = "RibbonTab";
            this.homeTab.IsSelected = true;
            this.homeTab.Items.AddRange(new Telerik.WinControls.RadItem[] {
            this.databaseGroup,
            this.editGroup,
            this.viewGroup});
            this.homeTab.Name = "homeTab";
            this.homeTab.StretchHorizontally = false;
            this.homeTab.Text = "Home";
            this.homeTab.Visibility = Telerik.WinControls.ElementVisibility.Visible;
            // 
            // databaseGroup
            // 
            this.databaseGroup.AccessibleDescription = "Database";
            this.databaseGroup.AccessibleName = "Database";
            this.databaseGroup.Items.AddRange(new Telerik.WinControls.RadItem[] {
            this.loadDatabaseButton});
            this.databaseGroup.Margin = new System.Windows.Forms.Padding(0);
            this.databaseGroup.MaxSize = new System.Drawing.Size(0, 0);
            this.databaseGroup.MinSize = new System.Drawing.Size(0, 0);
            this.databaseGroup.Name = "databaseGroup";
            this.databaseGroup.Text = "Database";
            this.databaseGroup.Visibility = Telerik.WinControls.ElementVisibility.Visible;
            // 
            // loadDatabaseButton
            // 
            this.loadDatabaseButton.AccessibleDescription = "Load";
            this.loadDatabaseButton.AccessibleName = "Load";
            this.loadDatabaseButton.Class = "RibbonBarButtonElement";
            this.loadDatabaseButton.Image = global::ThinkManage.Properties.Resources.Load;
            this.loadDatabaseButton.ImageAlignment = System.Drawing.ContentAlignment.MiddleCenter;
            this.loadDatabaseButton.MinSize = new System.Drawing.Size(48, 0);
            this.loadDatabaseButton.Name = "loadDatabaseButton";
            this.loadDatabaseButton.Text = "Save";
            this.loadDatabaseButton.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
            this.loadDatabaseButton.Visibility = Telerik.WinControls.ElementVisibility.Visible;
            // 
            // editGroup
            // 
            this.editGroup.AccessibleDescription = "Edit";
            this.editGroup.AccessibleName = "Edit";
            this.editGroup.Items.AddRange(new Telerik.WinControls.RadItem[] {
            this.addButton,
            this.removeButton,
            this.editButton,
            this.radButtonElement3,
            this.radButtonElement5});
            this.editGroup.Margin = new System.Windows.Forms.Padding(0);
            this.editGroup.MaxSize = new System.Drawing.Size(0, 0);
            this.editGroup.MinSize = new System.Drawing.Size(0, 0);
            this.editGroup.Name = "editGroup";
            this.editGroup.Text = "Edit";
            this.editGroup.Visibility = Telerik.WinControls.ElementVisibility.Visible;
            // 
            // addButton
            // 
            this.addButton.AccessibleDescription = "Add";
            this.addButton.AccessibleName = "Add";
            this.addButton.Class = "RibbonBarButtonElement";
            this.addButton.Image = global::ThinkManage.Properties.Resources.Add;
            this.addButton.ImageAlignment = System.Drawing.ContentAlignment.MiddleCenter;
            this.addButton.MinSize = new System.Drawing.Size(48, 0);
            this.addButton.Name = "addButton";
            this.addButton.Text = "Add";
            this.addButton.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
            this.addButton.Visibility = Telerik.WinControls.ElementVisibility.Visible;
            this.addButton.Click += new System.EventHandler(this.addButton_Click);
            // 
            // removeButton
            // 
            this.removeButton.AccessibleDescription = "Remove";
            this.removeButton.AccessibleName = "Remove";
            this.removeButton.Class = "RibbonBarButtonElement";
            this.removeButton.Image = global::ThinkManage.Properties.Resources.Remove;
            this.removeButton.ImageAlignment = System.Drawing.ContentAlignment.MiddleCenter;
            this.removeButton.MinSize = new System.Drawing.Size(48, 0);
            this.removeButton.Name = "removeButton";
            this.removeButton.Text = "Remove";
            this.removeButton.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
            this.removeButton.Visibility = Telerik.WinControls.ElementVisibility.Visible;
            this.removeButton.Click += new System.EventHandler(this.removeButton_Click);
            // 
            // editButton
            // 
            this.editButton.AccessibleDescription = "Edit";
            this.editButton.AccessibleName = "Edit";
            this.editButton.Class = "RibbonBarButtonElement";
            this.editButton.Image = global::ThinkManage.Properties.Resources.Edit;
            this.editButton.ImageAlignment = System.Drawing.ContentAlignment.MiddleCenter;
            this.editButton.MinSize = new System.Drawing.Size(48, 0);
            this.editButton.Name = "editButton";
            this.editButton.Text = "Edit";
            this.editButton.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
            this.editButton.Visibility = Telerik.WinControls.ElementVisibility.Visible;
            this.editButton.Click += new System.EventHandler(this.editButton_Click);
            // 
            // radButtonElement3
            // 
            this.radButtonElement3.AccessibleDescription = "radButtonElement3";
            this.radButtonElement3.AccessibleName = "radButtonElement3";
            this.radButtonElement3.Class = "RibbonBarButtonElement";
            this.radButtonElement3.DisplayStyle = Telerik.WinControls.DisplayStyle.Image;
            this.radButtonElement3.Name = "radButtonElement3";
            this.radButtonElement3.Text = "radButtonElement3";
            this.radButtonElement3.Visibility = Telerik.WinControls.ElementVisibility.Visible;
            // 
            // radButtonElement5
            // 
            this.radButtonElement5.AccessibleDescription = "Save";
            this.radButtonElement5.AccessibleName = "Save";
            this.radButtonElement5.AutoSize = true;
            this.radButtonElement5.Class = "RibbonBarButtonElement";
            this.radButtonElement5.Image = global::ThinkManage.Properties.Resources.Save;
            this.radButtonElement5.Name = "radButtonElement5";
            this.radButtonElement5.Text = "Save";
            this.radButtonElement5.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
            this.radButtonElement5.Visibility = Telerik.WinControls.ElementVisibility.Visible;
            this.radButtonElement5.Click += new System.EventHandler(this.radButtonElement5_Click);
            // 
            // viewGroup
            // 
            this.viewGroup.AccessibleDescription = "View";
            this.viewGroup.AccessibleName = "View";
            this.viewGroup.Items.AddRange(new Telerik.WinControls.RadItem[] {
            this.sortDropDownButton,
            this.radRibbonBarButtonGroup1});
            this.viewGroup.Margin = new System.Windows.Forms.Padding(0);
            this.viewGroup.MaxSize = new System.Drawing.Size(0, 0);
            this.viewGroup.MinSize = new System.Drawing.Size(0, 0);
            this.viewGroup.Name = "viewGroup";
            this.viewGroup.Text = "View";
            this.viewGroup.Visibility = Telerik.WinControls.ElementVisibility.Visible;
            // 
            // sortDropDownButton
            // 
            this.sortDropDownButton.AccessibleDescription = "Sort By";
            this.sortDropDownButton.AccessibleName = "Sort By";
            this.sortDropDownButton.ArrowButtonMinSize = new System.Drawing.Size(12, 12);
            this.sortDropDownButton.DropDownDirection = Telerik.WinControls.UI.RadDirection.Down;
            this.sortDropDownButton.ExpandArrowButton = false;
            this.sortDropDownButton.Image = global::ThinkManage.Properties.Resources.Sort_A_to_Z;
            this.sortDropDownButton.ImageAlignment = System.Drawing.ContentAlignment.MiddleCenter;
            this.sortDropDownButton.Name = "sortDropDownButton";
            this.sortDropDownButton.Text = "Sort By";
            this.sortDropDownButton.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
            this.sortDropDownButton.Visibility = Telerik.WinControls.ElementVisibility.Visible;
            // 
            // radRibbonBarButtonGroup1
            // 
            this.radRibbonBarButtonGroup1.AccessibleDescription = "radRibbonBarButtonGroup1";
            this.radRibbonBarButtonGroup1.AccessibleName = "radRibbonBarButtonGroup1";
            this.radRibbonBarButtonGroup1.AutoSize = true;
            this.radRibbonBarButtonGroup1.AutoSizeMode = Telerik.WinControls.RadAutoSizeMode.WrapAroundChildren;
            this.radRibbonBarButtonGroup1.Items.AddRange(new Telerik.WinControls.RadItem[] {
            this.radRibbonBarButtonGroup2,
            this.radRibbonBarButtonGroup3});
            this.radRibbonBarButtonGroup1.MaxSize = new System.Drawing.Size(0, 0);
            this.radRibbonBarButtonGroup1.Name = "radRibbonBarButtonGroup1";
            this.radRibbonBarButtonGroup1.Orientation = System.Windows.Forms.Orientation.Horizontal;
            this.radRibbonBarButtonGroup1.StretchVertically = true;
            this.radRibbonBarButtonGroup1.Text = "radRibbonBarButtonGroup1";
            this.radRibbonBarButtonGroup1.Visibility = Telerik.WinControls.ElementVisibility.Visible;
            // 
            // radRibbonBarButtonGroup2
            // 
            this.radRibbonBarButtonGroup2.AccessibleDescription = "radRibbonBarButtonGroup2";
            this.radRibbonBarButtonGroup2.AccessibleName = "radRibbonBarButtonGroup2";
            this.radRibbonBarButtonGroup2.Items.AddRange(new Telerik.WinControls.RadItem[] {
            this.openCheckBox,
            this.readyForTestCheckBox,
            this.doneCheckBox});
            this.radRibbonBarButtonGroup2.Name = "radRibbonBarButtonGroup2";
            this.radRibbonBarButtonGroup2.Orientation = System.Windows.Forms.Orientation.Vertical;
            this.radRibbonBarButtonGroup2.StretchVertically = true;
            this.radRibbonBarButtonGroup2.Text = "radRibbonBarButtonGroup2";
            this.radRibbonBarButtonGroup2.Visibility = Telerik.WinControls.ElementVisibility.Visible;
            // 
            // openCheckBox
            // 
            this.openCheckBox.AccessibleDescription = "Open";
            this.openCheckBox.AccessibleName = "Open";
            this.openCheckBox.Checked = false;
            this.openCheckBox.Name = "openCheckBox";
            this.openCheckBox.Text = "Open";
            this.openCheckBox.Visibility = Telerik.WinControls.ElementVisibility.Visible;
            // 
            // readyForTestCheckBox
            // 
            this.readyForTestCheckBox.AccessibleDescription = "Ready For Test";
            this.readyForTestCheckBox.AccessibleName = "Ready For Test";
            this.readyForTestCheckBox.Checked = false;
            this.readyForTestCheckBox.Name = "readyForTestCheckBox";
            this.readyForTestCheckBox.Text = "Ready For Test";
            this.readyForTestCheckBox.Visibility = Telerik.WinControls.ElementVisibility.Visible;
            // 
            // doneCheckBox
            // 
            this.doneCheckBox.AccessibleDescription = "Done";
            this.doneCheckBox.AccessibleName = "Done";
            this.doneCheckBox.Checked = false;
            this.doneCheckBox.Name = "doneCheckBox";
            this.doneCheckBox.Text = "Done";
            this.doneCheckBox.Visibility = Telerik.WinControls.ElementVisibility.Visible;
            // 
            // radRibbonBarButtonGroup3
            // 
            this.radRibbonBarButtonGroup3.AccessibleDescription = "radRibbonBarButtonGroup3";
            this.radRibbonBarButtonGroup3.AccessibleName = "radRibbonBarButtonGroup3";
            this.radRibbonBarButtonGroup3.Items.AddRange(new Telerik.WinControls.RadItem[] {
            this.unassignedCheckBox,
            this.newCheckBox});
            this.radRibbonBarButtonGroup3.Name = "radRibbonBarButtonGroup3";
            this.radRibbonBarButtonGroup3.Orientation = System.Windows.Forms.Orientation.Vertical;
            this.radRibbonBarButtonGroup3.StretchVertically = true;
            this.radRibbonBarButtonGroup3.Text = "radRibbonBarButtonGroup3";
            this.radRibbonBarButtonGroup3.Visibility = Telerik.WinControls.ElementVisibility.Visible;
            // 
            // unassignedCheckBox
            // 
            this.unassignedCheckBox.AccessibleDescription = "Unassigned";
            this.unassignedCheckBox.AccessibleName = "Unassigned";
            this.unassignedCheckBox.Checked = false;
            this.unassignedCheckBox.Name = "unassignedCheckBox";
            this.unassignedCheckBox.Text = "Unassigned";
            this.unassignedCheckBox.Visibility = Telerik.WinControls.ElementVisibility.Visible;
            // 
            // newCheckBox
            // 
            this.newCheckBox.AccessibleDescription = "New";
            this.newCheckBox.AccessibleName = "New";
            this.newCheckBox.Checked = false;
            this.newCheckBox.Name = "newCheckBox";
            this.newCheckBox.Text = "New";
            this.newCheckBox.Visibility = Telerik.WinControls.ElementVisibility.Visible;
            // 
            // viewTab
            // 
            this.viewTab.AccessibleDescription = "View";
            this.viewTab.AccessibleName = "View";
            this.viewTab.Alignment = System.Drawing.ContentAlignment.BottomLeft;
            this.viewTab.AutoEllipsis = false;
            this.viewTab.Class = "RibbonTab";
            this.viewTab.IsSelected = false;
            this.viewTab.Items.AddRange(new Telerik.WinControls.RadItem[] {
            this.layoutGroup,
            this.panelsGroup,
            this.radRibbonBarGroup2});
            this.viewTab.Name = "viewTab";
            this.viewTab.StretchHorizontally = false;
            this.viewTab.Text = "View";
            this.viewTab.Visibility = Telerik.WinControls.ElementVisibility.Visible;
            // 
            // layoutGroup
            // 
            this.layoutGroup.AccessibleDescription = "Layout";
            this.layoutGroup.AccessibleName = "Layout";
            this.layoutGroup.Items.AddRange(new Telerik.WinControls.RadItem[] {
            this.loadLayoutButton,
            this.saveLayoutButton});
            this.layoutGroup.Margin = new System.Windows.Forms.Padding(0);
            this.layoutGroup.MaxSize = new System.Drawing.Size(0, 0);
            this.layoutGroup.MinSize = new System.Drawing.Size(0, 0);
            this.layoutGroup.Name = "layoutGroup";
            this.layoutGroup.Text = "Layout";
            this.layoutGroup.Visibility = Telerik.WinControls.ElementVisibility.Visible;
            // 
            // loadLayoutButton
            // 
            this.loadLayoutButton.AccessibleDescription = "Load";
            this.loadLayoutButton.AccessibleName = "Load";
            this.loadLayoutButton.Class = "RibbonBarButtonElement";
            this.loadLayoutButton.Image = global::ThinkManage.Properties.Resources.load_layout;
            this.loadLayoutButton.ImageAlignment = System.Drawing.ContentAlignment.MiddleCenter;
            this.loadLayoutButton.MinSize = new System.Drawing.Size(48, 0);
            this.loadLayoutButton.Name = "loadLayoutButton";
            this.loadLayoutButton.Text = "Load";
            this.loadLayoutButton.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
            this.loadLayoutButton.Visibility = Telerik.WinControls.ElementVisibility.Visible;
            // 
            // saveLayoutButton
            // 
            this.saveLayoutButton.AccessibleDescription = "Save";
            this.saveLayoutButton.AccessibleName = "Save";
            this.saveLayoutButton.Class = "RibbonBarButtonElement";
            this.saveLayoutButton.Image = global::ThinkManage.Properties.Resources.Save_Layout;
            this.saveLayoutButton.ImageAlignment = System.Drawing.ContentAlignment.MiddleCenter;
            this.saveLayoutButton.MinSize = new System.Drawing.Size(48, 0);
            this.saveLayoutButton.Name = "saveLayoutButton";
            this.saveLayoutButton.Text = "Save";
            this.saveLayoutButton.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
            this.saveLayoutButton.Visibility = Telerik.WinControls.ElementVisibility.Visible;
            // 
            // panelsGroup
            // 
            this.panelsGroup.AccessibleDescription = "Panels";
            this.panelsGroup.AccessibleName = "Panels";
            this.panelsGroup.Items.AddRange(new Telerik.WinControls.RadItem[] {
            this.projectsButton,
            this.detailsButton,
            this.bugsButton,
            this.featuresButton});
            this.panelsGroup.Margin = new System.Windows.Forms.Padding(0);
            this.panelsGroup.MaxSize = new System.Drawing.Size(0, 0);
            this.panelsGroup.MinSize = new System.Drawing.Size(0, 0);
            this.panelsGroup.Name = "panelsGroup";
            this.panelsGroup.Text = "Panels";
            this.panelsGroup.Visibility = Telerik.WinControls.ElementVisibility.Visible;
            // 
            // projectsButton
            // 
            this.projectsButton.AccessibleDescription = "Projects";
            this.projectsButton.AccessibleName = "Projects";
            this.projectsButton.Class = "RibbonBarButtonElement";
            this.projectsButton.Image = ((System.Drawing.Image)(resources.GetObject("projectsButton.Image")));
            this.projectsButton.ImageAlignment = System.Drawing.ContentAlignment.MiddleCenter;
            this.projectsButton.MinSize = new System.Drawing.Size(48, 0);
            this.projectsButton.Name = "projectsButton";
            this.projectsButton.Text = "Projects";
            this.projectsButton.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
            this.projectsButton.Visibility = Telerik.WinControls.ElementVisibility.Visible;
            // 
            // detailsButton
            // 
            this.detailsButton.AccessibleDescription = "Details";
            this.detailsButton.AccessibleName = "Details";
            this.detailsButton.Class = "RibbonBarButtonElement";
            this.detailsButton.Image = ((System.Drawing.Image)(resources.GetObject("detailsButton.Image")));
            this.detailsButton.ImageAlignment = System.Drawing.ContentAlignment.MiddleCenter;
            this.detailsButton.MinSize = new System.Drawing.Size(48, 0);
            this.detailsButton.Name = "detailsButton";
            this.detailsButton.Text = "Details";
            this.detailsButton.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
            this.detailsButton.Visibility = Telerik.WinControls.ElementVisibility.Visible;
            // 
            // bugsButton
            // 
            this.bugsButton.AccessibleDescription = "Bugs";
            this.bugsButton.AccessibleName = "Bugs";
            this.bugsButton.Class = "RibbonBarButtonElement";
            this.bugsButton.Image = ((System.Drawing.Image)(resources.GetObject("bugsButton.Image")));
            this.bugsButton.ImageAlignment = System.Drawing.ContentAlignment.MiddleCenter;
            this.bugsButton.MinSize = new System.Drawing.Size(48, 0);
            this.bugsButton.Name = "bugsButton";
            this.bugsButton.Text = "Bugs";
            this.bugsButton.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
            this.bugsButton.Visibility = Telerik.WinControls.ElementVisibility.Visible;
            // 
            // featuresButton
            // 
            this.featuresButton.AccessibleDescription = "Features";
            this.featuresButton.AccessibleName = "Features";
            this.featuresButton.Class = "RibbonBarButtonElement";
            this.featuresButton.Image = ((System.Drawing.Image)(resources.GetObject("featuresButton.Image")));
            this.featuresButton.ImageAlignment = System.Drawing.ContentAlignment.MiddleCenter;
            this.featuresButton.MinSize = new System.Drawing.Size(48, 0);
            this.featuresButton.Name = "featuresButton";
            this.featuresButton.Text = "Features";
            this.featuresButton.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
            this.featuresButton.Visibility = Telerik.WinControls.ElementVisibility.Visible;
            // 
            // radRibbonBarGroup2
            // 
            this.radRibbonBarGroup2.AccessibleDescription = "Themes";
            this.radRibbonBarGroup2.AccessibleName = "Themes";
            this.radRibbonBarGroup2.Items.AddRange(new Telerik.WinControls.RadItem[] {
            this.radGalleryElement1});
            this.radRibbonBarGroup2.Margin = new System.Windows.Forms.Padding(0);
            this.radRibbonBarGroup2.MaxSize = new System.Drawing.Size(0, 0);
            this.radRibbonBarGroup2.MinSize = new System.Drawing.Size(0, 0);
            this.radRibbonBarGroup2.Name = "radRibbonBarGroup2";
            this.radRibbonBarGroup2.Text = "Themes";
            this.radRibbonBarGroup2.Visibility = Telerik.WinControls.ElementVisibility.Visible;
            // 
            // radGalleryElement1
            // 
            this.radGalleryElement1.AccessibleDescription = "radGalleryElement1";
            this.radGalleryElement1.AccessibleName = "radGalleryElement1";
            this.radGalleryElement1.Items.AddRange(new Telerik.WinControls.RadItem[] {
            this.office2010BlackButton,
            this.office2010BlueButton,
            this.office2010SilverButton,
            this.controlDefaultButton,
            this.telerikButton});
            this.radGalleryElement1.Name = "radGalleryElement1";
            this.radGalleryElement1.Padding = new System.Windows.Forms.Padding(2, 2, 0, 0);
            this.radGalleryElement1.Text = "radGalleryElement1";
            this.radGalleryElement1.Visibility = Telerik.WinControls.ElementVisibility.Visible;
            // 
            // office2010BlackButton
            // 
            this.office2010BlackButton.AccessibleDescription = "Office2010Black";
            this.office2010BlackButton.AccessibleName = "Office2010Black";
            this.office2010BlackButton.DescriptionText = "";
            this.office2010BlackButton.Image = global::ThinkManage.Properties.Resources.Office2010Black;
            this.office2010BlackButton.ImageAlignment = System.Drawing.ContentAlignment.MiddleCenter;
            this.office2010BlackButton.Name = "office2010BlackButton";
            this.office2010BlackButton.StretchHorizontally = false;
            this.office2010BlackButton.StretchVertically = false;
            this.office2010BlackButton.Text = "Office2010Black";
            this.office2010BlackButton.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
            this.office2010BlackButton.Visibility = Telerik.WinControls.ElementVisibility.Visible;
            // 
            // office2010BlueButton
            // 
            this.office2010BlueButton.AccessibleDescription = "Office2010Blue";
            this.office2010BlueButton.AccessibleName = "Office2010Blue";
            this.office2010BlueButton.DescriptionText = "";
            this.office2010BlueButton.Image = global::ThinkManage.Properties.Resources.Office2010Blue;
            this.office2010BlueButton.ImageAlignment = System.Drawing.ContentAlignment.MiddleCenter;
            this.office2010BlueButton.Name = "office2010BlueButton";
            this.office2010BlueButton.StretchHorizontally = false;
            this.office2010BlueButton.StretchVertically = false;
            this.office2010BlueButton.Text = "Office2010Blue";
            this.office2010BlueButton.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
            this.office2010BlueButton.Visibility = Telerik.WinControls.ElementVisibility.Visible;
            // 
            // office2010SilverButton
            // 
            this.office2010SilverButton.AccessibleDescription = "Office2010Silver";
            this.office2010SilverButton.AccessibleName = "Office2010Silver";
            this.office2010SilverButton.DescriptionText = "";
            this.office2010SilverButton.Image = global::ThinkManage.Properties.Resources.Office2010Silver;
            this.office2010SilverButton.ImageAlignment = System.Drawing.ContentAlignment.MiddleCenter;
            this.office2010SilverButton.Name = "office2010SilverButton";
            this.office2010SilverButton.StretchHorizontally = false;
            this.office2010SilverButton.StretchVertically = false;
            this.office2010SilverButton.Text = "Office2010Silver";
            this.office2010SilverButton.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
            this.office2010SilverButton.Visibility = Telerik.WinControls.ElementVisibility.Visible;
            // 
            // controlDefaultButton
            // 
            this.controlDefaultButton.AccessibleDescription = "ControlDefault";
            this.controlDefaultButton.AccessibleName = "ControlDefault";
            this.controlDefaultButton.DescriptionText = "";
            this.controlDefaultButton.Image = global::ThinkManage.Properties.Resources.ControlDefault;
            this.controlDefaultButton.ImageAlignment = System.Drawing.ContentAlignment.MiddleCenter;
            this.controlDefaultButton.Name = "controlDefaultButton";
            this.controlDefaultButton.StretchHorizontally = false;
            this.controlDefaultButton.StretchVertically = false;
            this.controlDefaultButton.Text = "ControlDefault";
            this.controlDefaultButton.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
            this.controlDefaultButton.Visibility = Telerik.WinControls.ElementVisibility.Visible;
            // 
            // telerikButton
            // 
            this.telerikButton.AccessibleDescription = "TelerikMetro";
            this.telerikButton.AccessibleName = "TelerikMetro";
            this.telerikButton.DescriptionText = "";
            this.telerikButton.Image = global::ThinkManage.Properties.Resources.Telerik;
            this.telerikButton.ImageAlignment = System.Drawing.ContentAlignment.MiddleCenter;
            this.telerikButton.Name = "telerikButton";
            this.telerikButton.StretchHorizontally = false;
            this.telerikButton.StretchVertically = false;
            this.telerikButton.Text = "TelerikMetro";
            this.telerikButton.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
            this.telerikButton.Visibility = Telerik.WinControls.ElementVisibility.Visible;
            // 
            // toolWindow2
            // 
            this.toolWindow2.Caption = null;
            this.toolWindow2.Location = new System.Drawing.Point(0, 0);
            this.toolWindow2.Name = "toolWindow2";
            this.toolWindow2.PreviousDockState = Telerik.WinControls.UI.Docking.DockState.Docked;
            this.toolWindow2.Size = new System.Drawing.Size(200, 200);
            this.toolWindow2.Text = "toolWindow2";
            // 
            // toolWindow3
            // 
            this.toolWindow3.Caption = null;
            this.toolWindow3.Location = new System.Drawing.Point(0, 0);
            this.toolWindow3.Name = "toolWindow3";
            this.toolWindow3.PreviousDockState = Telerik.WinControls.UI.Docking.DockState.Docked;
            this.toolWindow3.Size = new System.Drawing.Size(200, 200);
            this.toolWindow3.Text = "toolWindow3";
            // 
            // toolWindow4
            // 
            this.toolWindow4.Caption = null;
            this.toolWindow4.DesiredDockState = Telerik.WinControls.UI.Docking.DockState.Hidden;
            this.toolWindow4.Location = new System.Drawing.Point(4, 4);
            this.toolWindow4.Name = "toolWindow4";
            this.toolWindow4.PreviousDockState = Telerik.WinControls.UI.Docking.DockState.Docked;
            this.toolWindow4.Size = new System.Drawing.Size(192, 119);
            this.toolWindow4.Text = "toolWindow4";
            // 
            // toolWindow1
            // 
            this.toolWindow1.Caption = null;
            this.toolWindow1.Location = new System.Drawing.Point(0, 0);
            this.toolWindow1.Name = "toolWindow1";
            this.toolWindow1.PreviousDockState = Telerik.WinControls.UI.Docking.DockState.Docked;
            this.toolWindow1.Size = new System.Drawing.Size(200, 200);
            this.toolWindow1.Text = "toolWindow1";
            // 
            // toolWindow5
            // 
            this.toolWindow5.Caption = null;
            this.toolWindow5.Location = new System.Drawing.Point(0, 0);
            this.toolWindow5.Name = "toolWindow5";
            this.toolWindow5.PreviousDockState = Telerik.WinControls.UI.Docking.DockState.Docked;
            this.toolWindow5.Size = new System.Drawing.Size(200, 200);
            this.toolWindow5.Text = "toolWindow5";
            // 
            // toolWindow6
            // 
            this.toolWindow6.Caption = null;
            this.toolWindow6.Location = new System.Drawing.Point(0, 0);
            this.toolWindow6.Name = "toolWindow6";
            this.toolWindow6.PreviousDockState = Telerik.WinControls.UI.Docking.DockState.Docked;
            this.toolWindow6.Size = new System.Drawing.Size(200, 200);
            this.toolWindow6.Text = "toolWindow6";
            // 
            // documentWindow2
            // 
            this.documentWindow2.Location = new System.Drawing.Point(0, 0);
            this.documentWindow2.Name = "documentWindow2";
            this.documentWindow2.PreviousDockState = Telerik.WinControls.UI.Docking.DockState.TabbedDocument;
            this.documentWindow2.Size = new System.Drawing.Size(200, 200);
            this.documentWindow2.Text = "documentWindow2";
            // 
            // saveDatabaseButton
            // 
            this.saveDatabaseButton.AccessibleDescription = "Save";
            this.saveDatabaseButton.AccessibleName = "Save";
            this.saveDatabaseButton.Class = "RibbonBarButtonElement";
            this.saveDatabaseButton.Image = global::ThinkManage.Properties.Resources.Save;
            this.saveDatabaseButton.ImageAlignment = System.Drawing.ContentAlignment.MiddleCenter;
            this.saveDatabaseButton.MinSize = new System.Drawing.Size(48, 0);
            this.saveDatabaseButton.Name = "saveDatabaseButton";
            this.saveDatabaseButton.Text = "Save";
            this.saveDatabaseButton.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
            this.saveDatabaseButton.Visibility = Telerik.WinControls.ElementVisibility.Visible;
            // 
            // radButtonElement1
            // 
            this.radButtonElement1.AccessibleDescription = "Save";
            this.radButtonElement1.AccessibleName = "Save";
            this.radButtonElement1.Class = "RibbonBarButtonElement";
            this.radButtonElement1.Image = global::ThinkManage.Properties.Resources.Save;
            this.radButtonElement1.ImageAlignment = System.Drawing.ContentAlignment.MiddleCenter;
            this.radButtonElement1.MinSize = new System.Drawing.Size(48, 0);
            this.radButtonElement1.Name = "radButtonElement1";
            this.radButtonElement1.Text = "Save";
            this.radButtonElement1.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
            this.radButtonElement1.Visibility = Telerik.WinControls.ElementVisibility.Visible;
            // 
            // radButtonElement2
            // 
            this.radButtonElement2.AccessibleDescription = "Save";
            this.radButtonElement2.AccessibleName = "Save";
            this.radButtonElement2.Class = "RibbonBarButtonElement";
            this.radButtonElement2.Image = global::ThinkManage.Properties.Resources.Save;
            this.radButtonElement2.ImageAlignment = System.Drawing.ContentAlignment.MiddleCenter;
            this.radButtonElement2.MinSize = new System.Drawing.Size(48, 0);
            this.radButtonElement2.Name = "radButtonElement2";
            this.radButtonElement2.Text = "Save";
            this.radButtonElement2.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
            this.radButtonElement2.Visibility = Telerik.WinControls.ElementVisibility.Visible;
            // 
            // radRibbonBarButtonGroup4
            // 
            this.radRibbonBarButtonGroup4.AccessibleDescription = "radRibbonBarButtonGroup4";
            this.radRibbonBarButtonGroup4.AccessibleName = "radRibbonBarButtonGroup4";
            this.radRibbonBarButtonGroup4.Name = "radRibbonBarButtonGroup4";
            this.radRibbonBarButtonGroup4.Text = "radRibbonBarButtonGroup4";
            this.radRibbonBarButtonGroup4.Visibility = Telerik.WinControls.ElementVisibility.Visible;
            // 
            // radButtonElement4
            // 
            this.radButtonElement4.AccessibleDescription = "Save";
            this.radButtonElement4.AccessibleName = "Save";
            this.radButtonElement4.Class = "RibbonBarButtonElement";
            this.radButtonElement4.Image = global::ThinkManage.Properties.Resources.Save;
            this.radButtonElement4.ImageAlignment = System.Drawing.ContentAlignment.MiddleCenter;
            this.radButtonElement4.MinSize = new System.Drawing.Size(48, 0);
            this.radButtonElement4.Name = "radButtonElement4";
            this.radButtonElement4.Text = "Save";
            this.radButtonElement4.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
            this.radButtonElement4.Visibility = Telerik.WinControls.ElementVisibility.Visible;
            // 
            // thinkContentsBindingSource6
            // 
            this.thinkContentsBindingSource6.DataSource = typeof(ThinkManage.ThinkContents);
            // 
            // ThinkManageMain
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 15F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.ClientSize = new System.Drawing.Size(1727, 946);
            this.Controls.Add(this.radPanel1);
            this.Controls.Add(this.radStatusStrip1);
            this.Controls.Add(this.radRibbonBar2);
            this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
            this.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
            this.Name = "ThinkManageMain";
            // 
            // 
            // 
            this.RootElement.ApplyShapeToControl = true;
            this.Text = "思想管理软件";
            this.FormClosed += new System.Windows.Forms.FormClosedEventHandler(this.ThinkManageMain_FormClosed);
            this.Load += new System.EventHandler(this.ThinkManageMain_Load);
            this.Leave += new System.EventHandler(this.ThinkManageMain_Leave);
            ((System.ComponentModel.ISupportInitialize)(this.categoryBindingSource)).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.radStatusStrip1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.toolTabStrip1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radPanel1)).EndInit();
            this.radPanel1.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.radDock1)).EndInit();
            this.radDock1.ResumeLayout(false);
            this.toolWindow7.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.radTreeView1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.toolTabStrip4)).EndInit();
            this.toolTabStrip4.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.radSplitContainer1)).EndInit();
            this.radSplitContainer1.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.documentContainer2)).EndInit();
            this.documentContainer2.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.documentTabStrip2)).EndInit();
            this.documentTabStrip2.ResumeLayout(false);
            this.documentWindow4.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.radGridView1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.thinkContentsBindingSource)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.toolTabStrip2)).EndInit();
            this.toolTabStrip2.ResumeLayout(false);
            this.toolWindow8.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.radPageView1)).EndInit();
            this.radPageView1.ResumeLayout(false);
            this.radPageViewPage3.ResumeLayout(false);
            this.radPageViewPage3.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.radMultiColumnComboBox1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radRibbonBar2)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.thinkContentsBindingSource6)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this)).EndInit();
            this.ResumeLayout(false);
            this.PerformLayout();

        }
Example #29
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.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.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.GridViewComboBoxColumn gridViewComboBoxColumn1 = new Telerik.WinControls.UI.GridViewComboBoxColumn();
            Telerik.WinControls.UI.TableViewDefinition tableViewDefinition1 = new Telerik.WinControls.UI.TableViewDefinition();
            this.daybookDescriptionsBindingSource = new System.Windows.Forms.BindingSource(this.components);
            this.dibs = new System.Windows.Forms.BindingSource(this.components);
            this.radLabel4 = new Telerik.WinControls.UI.RadLabel();
            this.radLabel7 = new Telerik.WinControls.UI.RadLabel();
            this.radLabel6 = new Telerik.WinControls.UI.RadLabel();
            this.amountCreditorTb = new Telerik.WinControls.UI.RadMaskedEditBox();
            this.behalfCreditorTb = new Telerik.WinControls.UI.RadMaskedEditBox();
            this.amountDebtorTb = new Telerik.WinControls.UI.RadMaskedEditBox();
            this.behalfDebtorTb = new Telerik.WinControls.UI.RadMaskedEditBox();
            this.radButton2 = new Telerik.WinControls.UI.RadButton();
            this.radButton1 = new Telerik.WinControls.UI.RadButton();
            this.ddGrid = new Telerik.WinControls.UI.RadGridView();
            this.saveAndNew = new Telerik.WinControls.UI.RadButton();
            this.Save = new Telerik.WinControls.UI.RadButton();
            this.radTextBox1 = new Telerik.WinControls.UI.RadTextBox();
            this.radLabel8 = 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.Date = new tiraxco.Views.Controls.DateTextBox();
            this.Creditor = new tiraxco.Views.Controls.AccountTextBox();
            this.Debtor = new tiraxco.Views.Controls.AccountTextBox();
            this.addChequeBtn = new Telerik.WinControls.UI.RadButton();
            this.chequeStatus = new System.Windows.Forms.ComboBox();
            this.radLabel11 = new Telerik.WinControls.UI.RadLabel();
            this.button1 = new System.Windows.Forms.Button();
            this.chequeNumCreditor = new Telerik.WinControls.UI.RadMaskedEditBox();
            this.radLabel12 = new Telerik.WinControls.UI.RadLabel();
            this.radLabel5 = new Telerik.WinControls.UI.RadLabel();
            this.radLabel9 = new Telerik.WinControls.UI.RadLabel();
            this.radPageView1 = new Telerik.WinControls.UI.RadPageView();
            this.radPageViewPage1 = new Telerik.WinControls.UI.RadPageViewPage();
            this.radPageViewPage2 = new Telerik.WinControls.UI.RadPageViewPage();
            this.behalfLbl = new Telerik.WinControls.UI.RadLabel();
            ((System.ComponentModel.ISupportInitialize)(this.daybookDescriptionsBindingSource)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.dibs)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel4)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel7)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel6)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.amountCreditorTb)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.behalfCreditorTb)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.amountDebtorTb)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.behalfDebtorTb)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radButton2)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radButton1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.ddGrid)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.ddGrid.MasterTemplate)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.saveAndNew)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.Save)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radTextBox1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel8)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel3)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel2)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.addChequeBtn)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel11)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.chequeNumCreditor)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel12)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel5)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel9)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radPageView1)).BeginInit();
            this.radPageView1.SuspendLayout();
            this.radPageViewPage1.SuspendLayout();
            this.radPageViewPage2.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.behalfLbl)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
            this.SuspendLayout();
            // 
            // daybookDescriptionsBindingSource
            // 
            this.daybookDescriptionsBindingSource.DataMember = "DaybookDescriptions";
            this.daybookDescriptionsBindingSource.DataSource = this.dibs;
            // 
            // dibs
            // 
            this.dibs.DataSource = typeof(tiraxco.DayBookInfo);
            // 
            // radLabel4
            // 
            this.radLabel4.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)));
            this.radLabel4.Location = new System.Drawing.Point(254, 63);
            this.radLabel4.Name = "radLabel4";
            this.radLabel4.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
            this.radLabel4.Size = new System.Drawing.Size(29, 18);
            this.radLabel4.TabIndex = 1026;
            this.radLabel4.Text = "بابت:";
            this.radLabel4.TextAlignment = System.Drawing.ContentAlignment.TopRight;
            this.radLabel4.Click += new System.EventHandler(this.radLabel4_Click);
            // 
            // radLabel7
            // 
            this.radLabel7.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)));
            this.radLabel7.Location = new System.Drawing.Point(253, 5);
            this.radLabel7.Name = "radLabel7";
            this.radLabel7.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
            this.radLabel7.Size = new System.Drawing.Size(29, 18);
            this.radLabel7.TabIndex = 1022;
            this.radLabel7.Text = "بابت:";
            this.radLabel7.TextAlignment = System.Drawing.ContentAlignment.TopRight;
            // 
            // radLabel6
            // 
            this.radLabel6.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)));
            this.radLabel6.Location = new System.Drawing.Point(407, 5);
            this.radLabel6.Name = "radLabel6";
            this.radLabel6.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
            this.radLabel6.Size = new System.Drawing.Size(29, 18);
            this.radLabel6.TabIndex = 1023;
            this.radLabel6.Text = "مبلغ:";
            this.radLabel6.TextAlignment = System.Drawing.ContentAlignment.TopRight;
            // 
            // amountCreditorTb
            // 
            this.amountCreditorTb.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)));
            this.amountCreditorTb.Location = new System.Drawing.Point(281, 61);
            this.amountCreditorTb.MaskType = Telerik.WinControls.UI.MaskType.Numeric;
            this.amountCreditorTb.Name = "amountCreditorTb";
            this.amountCreditorTb.Size = new System.Drawing.Size(84, 20);
            this.amountCreditorTb.TabIndex = 1043;
            this.amountCreditorTb.TabStop = false;
            this.amountCreditorTb.Text = "0";
            // 
            // behalfCreditorTb
            // 
            this.behalfCreditorTb.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)));
            this.behalfCreditorTb.Location = new System.Drawing.Point(49, 62);
            this.behalfCreditorTb.Name = "behalfCreditorTb";
            this.behalfCreditorTb.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
            this.behalfCreditorTb.Size = new System.Drawing.Size(199, 20);
            this.behalfCreditorTb.TabIndex = 1044;
            this.behalfCreditorTb.TabStop = false;
            // 
            // amountDebtorTb
            // 
            this.amountDebtorTb.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)));
            this.amountDebtorTb.Location = new System.Drawing.Point(280, 4);
            this.amountDebtorTb.MaskType = Telerik.WinControls.UI.MaskType.Numeric;
            this.amountDebtorTb.Name = "amountDebtorTb";
            this.amountDebtorTb.Size = new System.Drawing.Size(84, 20);
            this.amountDebtorTb.TabIndex = 1018;
            this.amountDebtorTb.TabStop = false;
            this.amountDebtorTb.Text = "0";
            // 
            // behalfDebtorTb
            // 
            this.behalfDebtorTb.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)));
            this.behalfDebtorTb.Location = new System.Drawing.Point(48, 4);
            this.behalfDebtorTb.Name = "behalfDebtorTb";
            this.behalfDebtorTb.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
            this.behalfDebtorTb.Size = new System.Drawing.Size(199, 20);
            this.behalfDebtorTb.TabIndex = 1020;
            this.behalfDebtorTb.TabStop = false;
            // 
            // radButton2
            // 
            this.radButton2.Anchor = System.Windows.Forms.AnchorStyles.Top;
            this.radButton2.Location = new System.Drawing.Point(1, 60);
            this.radButton2.Name = "radButton2";
            this.radButton2.Size = new System.Drawing.Size(42, 24);
            this.radButton2.TabIndex = 1045;
            this.radButton2.Text = "افزودن";
            this.radButton2.Click += new System.EventHandler(this.radButton2_Click);
            // 
            // radButton1
            // 
            this.radButton1.Anchor = System.Windows.Forms.AnchorStyles.Top;
            this.radButton1.Location = new System.Drawing.Point(0, 3);
            this.radButton1.Name = "radButton1";
            this.radButton1.Size = new System.Drawing.Size(42, 24);
            this.radButton1.TabIndex = 1040;
            this.radButton1.Text = "افزودن";
            this.radButton1.Click += new System.EventHandler(this.radButton1_Click);
            // 
            // ddGrid
            // 
            this.ddGrid.Anchor = System.Windows.Forms.AnchorStyles.Top;
            this.ddGrid.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(191)))), ((int)(((byte)(219)))), ((int)(((byte)(255)))));
            this.ddGrid.Cursor = System.Windows.Forms.Cursors.Default;
            this.ddGrid.Font = new System.Drawing.Font("Tahoma", 8.25F);
            this.ddGrid.ForeColor = System.Drawing.Color.Black;
            this.ddGrid.ImeMode = System.Windows.Forms.ImeMode.NoControl;
            this.ddGrid.Location = new System.Drawing.Point(16, 197);
            // 
            // 
            // 
            this.ddGrid.MasterTemplate.AllowAddNewRow = false;
            this.ddGrid.MasterTemplate.AllowColumnChooser = false;
            this.ddGrid.MasterTemplate.AllowColumnReorder = false;
            this.ddGrid.MasterTemplate.AllowDragToGroup = false;
            this.ddGrid.MasterTemplate.AutoSizeColumnsMode = Telerik.WinControls.UI.GridViewAutoSizeColumnsMode.Fill;
            gridViewDecimalColumn1.DataType = typeof(int);
            gridViewDecimalColumn1.EnableExpressionEditor = false;
            gridViewDecimalColumn1.FieldName = "ID";
            gridViewDecimalColumn1.HeaderText = "ID";
            gridViewDecimalColumn1.IsAutoGenerated = true;
            gridViewDecimalColumn1.IsVisible = false;
            gridViewDecimalColumn1.Name = "ID";
            gridViewDecimalColumn1.Width = 74;
            gridViewDecimalColumn2.DataType = typeof(System.Nullable<int>);
            gridViewDecimalColumn2.EnableExpressionEditor = false;
            gridViewDecimalColumn2.FieldName = "DayBookID";
            gridViewDecimalColumn2.HeaderText = "DayBookID";
            gridViewDecimalColumn2.IsAutoGenerated = true;
            gridViewDecimalColumn2.IsVisible = false;
            gridViewDecimalColumn2.Name = "DayBookID";
            gridViewDecimalColumn2.Width = 66;
            gridViewDecimalColumn3.DataType = typeof(System.Nullable<int>);
            gridViewDecimalColumn3.EnableExpressionEditor = false;
            gridViewDecimalColumn3.FieldName = "Debtor";
            gridViewDecimalColumn3.HeaderText = "بدهکار";
            gridViewDecimalColumn3.IsAutoGenerated = true;
            gridViewDecimalColumn3.Name = "Debtor";
            gridViewDecimalColumn3.Width = 97;
            gridViewDecimalColumn4.DataType = typeof(System.Nullable<int>);
            gridViewDecimalColumn4.EnableExpressionEditor = false;
            gridViewDecimalColumn4.FieldName = "Creditor";
            gridViewDecimalColumn4.HeaderText = "بستانکار";
            gridViewDecimalColumn4.IsAutoGenerated = true;
            gridViewDecimalColumn4.Name = "Creditor";
            gridViewDecimalColumn4.Width = 113;
            gridViewDecimalColumn5.DataType = typeof(System.Nullable<int>);
            gridViewDecimalColumn5.EnableExpressionEditor = false;
            gridViewDecimalColumn5.FieldName = "Price";
            gridViewDecimalColumn5.HeaderText = "مبلغ";
            gridViewDecimalColumn5.IsAutoGenerated = true;
            gridViewDecimalColumn5.Name = "Price";
            gridViewDecimalColumn5.Width = 93;
            gridViewTextBoxColumn1.EnableExpressionEditor = false;
            gridViewTextBoxColumn1.FieldName = "Behlaf";
            gridViewTextBoxColumn1.HeaderText = "بابت";
            gridViewTextBoxColumn1.IsAutoGenerated = true;
            gridViewTextBoxColumn1.Name = "Behlaf";
            gridViewTextBoxColumn1.Width = 215;
            gridViewTextBoxColumn2.DataType = typeof(tiraxco.AccAccount);
            gridViewTextBoxColumn2.EnableExpressionEditor = false;
            gridViewTextBoxColumn2.FieldName = "AccAccount";
            gridViewTextBoxColumn2.HeaderText = "AccAccount";
            gridViewTextBoxColumn2.IsAutoGenerated = true;
            gridViewTextBoxColumn2.IsVisible = false;
            gridViewTextBoxColumn2.Name = "AccAccount";
            gridViewTextBoxColumn2.Width = 84;
            gridViewTextBoxColumn3.DataType = typeof(tiraxco.AccAccount);
            gridViewTextBoxColumn3.EnableExpressionEditor = false;
            gridViewTextBoxColumn3.FieldName = "AccAccount1";
            gridViewTextBoxColumn3.HeaderText = "AccAccount1";
            gridViewTextBoxColumn3.IsAutoGenerated = true;
            gridViewTextBoxColumn3.IsVisible = false;
            gridViewTextBoxColumn3.Name = "AccAccount1";
            gridViewTextBoxColumn3.Width = 98;
            gridViewTextBoxColumn4.DataType = typeof(tiraxco.DayBookInfo);
            gridViewTextBoxColumn4.EnableExpressionEditor = false;
            gridViewTextBoxColumn4.FieldName = "DayBookInfo";
            gridViewTextBoxColumn4.HeaderText = "DayBookInfo";
            gridViewTextBoxColumn4.IsAutoGenerated = true;
            gridViewTextBoxColumn4.IsVisible = false;
            gridViewTextBoxColumn4.Name = "DayBookInfo";
            gridViewTextBoxColumn4.Width = 118;
            gridViewTextBoxColumn5.DataType = typeof(System.Data.Linq.EntitySet<tiraxco.ChequesTurnOver>);
            gridViewTextBoxColumn5.EnableExpressionEditor = false;
            gridViewTextBoxColumn5.FieldName = "ChequesTurnOvers";
            gridViewTextBoxColumn5.HeaderText = "ChequesTurnOvers";
            gridViewTextBoxColumn5.IsAutoGenerated = true;
            gridViewTextBoxColumn5.IsVisible = false;
            gridViewTextBoxColumn5.Name = "ChequesTurnOvers";
            gridViewTextBoxColumn5.Width = 39;
            gridViewTextBoxColumn6.EnableExpressionEditor = false;
            gridViewTextBoxColumn6.FieldName = "Cheque.ChequeID";
            gridViewTextBoxColumn6.HeaderText = "شماره چک";
            gridViewTextBoxColumn6.Name = "ChequeID";
            gridViewTextBoxColumn6.Width = 74;
            gridViewComboBoxColumn1.EnableExpressionEditor = false;
            gridViewComboBoxColumn1.FieldName = "Cheque.Status";
            gridViewComboBoxColumn1.HeaderText = "وضعیت چک";
            gridViewComboBoxColumn1.Name = "ChequeStatus";
            gridViewComboBoxColumn1.Width = 100;
            this.ddGrid.MasterTemplate.Columns.AddRange(new Telerik.WinControls.UI.GridViewDataColumn[] {
            gridViewDecimalColumn1,
            gridViewDecimalColumn2,
            gridViewDecimalColumn3,
            gridViewDecimalColumn4,
            gridViewDecimalColumn5,
            gridViewTextBoxColumn1,
            gridViewTextBoxColumn2,
            gridViewTextBoxColumn3,
            gridViewTextBoxColumn4,
            gridViewTextBoxColumn5,
            gridViewTextBoxColumn6,
            gridViewComboBoxColumn1});
            this.ddGrid.MasterTemplate.DataSource = this.daybookDescriptionsBindingSource;
            this.ddGrid.MasterTemplate.ViewDefinition = tableViewDefinition1;
            this.ddGrid.Name = "ddGrid";
            this.ddGrid.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
            this.ddGrid.Size = new System.Drawing.Size(708, 150);
            this.ddGrid.TabIndex = 1018;
            this.ddGrid.Text = "radGridView1";
            this.ddGrid.RowsChanged += new Telerik.WinControls.UI.GridViewCollectionChangedEventHandler(this.ddGrid_RowsChanged);
            this.ddGrid.Click += new System.EventHandler(this.ddGrid_Click);
            // 
            // saveAndNew
            // 
            this.saveAndNew.Anchor = System.Windows.Forms.AnchorStyles.Top;
            this.saveAndNew.Location = new System.Drawing.Point(132, 392);
            this.saveAndNew.Name = "saveAndNew";
            this.saveAndNew.Size = new System.Drawing.Size(110, 25);
            this.saveAndNew.TabIndex = 1026;
            this.saveAndNew.Text = "ذخیره و جدید";
            this.saveAndNew.Click += new System.EventHandler(this.saveAndNew_Click);
            // 
            // Save
            // 
            this.Save.Anchor = System.Windows.Forms.AnchorStyles.Top;
            this.Save.Location = new System.Drawing.Point(16, 392);
            this.Save.Name = "Save";
            this.Save.Size = new System.Drawing.Size(110, 25);
            this.Save.TabIndex = 10025;
            this.Save.Text = "ذخیره";
            this.Save.Click += new System.EventHandler(this.Save_Click);
            // 
            // radTextBox1
            // 
            this.radTextBox1.Anchor = System.Windows.Forms.AnchorStyles.Top;
            this.radTextBox1.AutoSize = false;
            this.radTextBox1.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.dibs, "infos", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
            this.radTextBox1.Location = new System.Drawing.Point(16, 353);
            this.radTextBox1.Multiline = true;
            this.radTextBox1.Name = "radTextBox1";
            this.radTextBox1.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
            this.radTextBox1.Size = new System.Drawing.Size(635, 33);
            this.radTextBox1.TabIndex = 1019;
            // 
            // radLabel8
            // 
            this.radLabel8.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)));
            this.radLabel8.Location = new System.Drawing.Point(663, 353);
            this.radLabel8.Name = "radLabel8";
            this.radLabel8.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
            this.radLabel8.Size = new System.Drawing.Size(53, 18);
            this.radLabel8.TabIndex = 1010;
            this.radLabel8.Text = "توضیحات:";
            this.radLabel8.TextAlignment = System.Drawing.ContentAlignment.TopRight;
            // 
            // radLabel3
            // 
            this.radLabel3.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)));
            this.radLabel3.Location = new System.Drawing.Point(636, 64);
            this.radLabel3.Name = "radLabel3";
            this.radLabel3.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
            this.radLabel3.Size = new System.Drawing.Size(78, 18);
            this.radLabel3.TabIndex = 1012;
            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)));
            this.radLabel2.Location = new System.Drawing.Point(635, 4);
            this.radLabel2.Name = "radLabel2";
            this.radLabel2.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
            this.radLabel2.Size = new System.Drawing.Size(71, 18);
            this.radLabel2.TabIndex = 1013;
            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)));
            this.radLabel1.Location = new System.Drawing.Point(687, 15);
            this.radLabel1.Name = "radLabel1";
            this.radLabel1.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
            this.radLabel1.Size = new System.Drawing.Size(31, 18);
            this.radLabel1.TabIndex = 1014;
            this.radLabel1.Text = "تاریخ:";
            this.radLabel1.TextAlignment = System.Drawing.ContentAlignment.TopRight;
            // 
            // Date
            // 
            this.Date.Anchor = System.Windows.Forms.AnchorStyles.Top;
            this.Date.DataBindings.Add(new System.Windows.Forms.Binding("Value", this.dibs, "date", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
            this.Date.Location = new System.Drawing.Point(548, 10);
            this.Date.Mask = tiraxco.Views.Controls.DateTextBox.MaskType.ThisYear;
            this.Date.Name = "Date";
            this.Date.Size = new System.Drawing.Size(136, 24);
            this.Date.TabIndex = 0;
            this.Date.Validate = false;
            this.Date.Value = "1395/__/__";
            // 
            // Creditor
            // 
            this.Creditor.AccountType = tiraxco.Views.Controls.AccountTextBox.GROUPS.All;
            this.Creditor.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)));
            this.Creditor.Location = new System.Drawing.Point(407, 62);
            this.Creditor.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
            this.Creditor.Name = "Creditor";
            this.Creditor.Size = new System.Drawing.Size(229, 57);
            this.Creditor.TabIndex = 1042;
            this.Creditor.Value = 0;
            // 
            // Debtor
            // 
            this.Debtor.AccountType = tiraxco.Views.Controls.AccountTextBox.GROUPS.All;
            this.Debtor.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)));
            this.Debtor.Location = new System.Drawing.Point(406, 5);
            this.Debtor.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
            this.Debtor.Name = "Debtor";
            this.Debtor.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
            this.Debtor.Size = new System.Drawing.Size(231, 57);
            this.Debtor.TabIndex = 1017;
            this.Debtor.Value = 0;
            // 
            // addChequeBtn
            // 
            this.addChequeBtn.Anchor = System.Windows.Forms.AnchorStyles.Top;
            this.addChequeBtn.Location = new System.Drawing.Point(318, 12);
            this.addChequeBtn.Name = "addChequeBtn";
            this.addChequeBtn.Size = new System.Drawing.Size(56, 24);
            this.addChequeBtn.TabIndex = 1010;
            this.addChequeBtn.Text = "افزودن";
            this.addChequeBtn.Click += new System.EventHandler(this.addChequeBtn_Click);
            // 
            // chequeStatus
            // 
            this.chequeStatus.Font = new System.Drawing.Font("Tahoma", 8.25F);
            this.chequeStatus.FormattingEnabled = true;
            this.chequeStatus.Items.AddRange(new object[] {
            "صادر شده",
            "دریافت شده",
            "وصول شده",
            "برگشت خورده",
            "خرج شده"});
            this.chequeStatus.Location = new System.Drawing.Point(395, 13);
            this.chequeStatus.Name = "chequeStatus";
            this.chequeStatus.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
            this.chequeStatus.Size = new System.Drawing.Size(112, 21);
            this.chequeStatus.TabIndex = 1005;
            // 
            // radLabel11
            // 
            this.radLabel11.Anchor = System.Windows.Forms.AnchorStyles.Top;
            this.radLabel11.Location = new System.Drawing.Point(518, 15);
            this.radLabel11.Name = "radLabel11";
            this.radLabel11.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
            this.radLabel11.Size = new System.Drawing.Size(67, 18);
            this.radLabel11.TabIndex = 1002;
            this.radLabel11.Text = "وضعیت چک:";
            this.radLabel11.TextAlignment = System.Drawing.ContentAlignment.TopRight;
            // 
            // button1
            // 
            this.button1.Font = new System.Drawing.Font("Microsoft Sans Serif", 6F);
            this.button1.Location = new System.Drawing.Point(374, 14);
            this.button1.Name = "button1";
            this.button1.Size = new System.Drawing.Size(20, 20);
            this.button1.TabIndex = 1003;
            this.button1.Text = "...";
            this.button1.UseVisualStyleBackColor = true;
            this.button1.Click += new System.EventHandler(this.button1_Click);
            // 
            // chequeNumCreditor
            // 
            this.chequeNumCreditor.Anchor = System.Windows.Forms.AnchorStyles.Top;
            this.chequeNumCreditor.Enabled = false;
            this.chequeNumCreditor.Location = new System.Drawing.Point(600, 15);
            this.chequeNumCreditor.MaskType = Telerik.WinControls.UI.MaskType.Numeric;
            this.chequeNumCreditor.Name = "chequeNumCreditor";
            this.chequeNumCreditor.Size = new System.Drawing.Size(42, 20);
            this.chequeNumCreditor.TabIndex = 30;
            this.chequeNumCreditor.TabStop = false;
            this.chequeNumCreditor.Text = "0";
            // 
            // radLabel12
            // 
            this.radLabel12.Anchor = System.Windows.Forms.AnchorStyles.Top;
            this.radLabel12.Location = new System.Drawing.Point(648, 16);
            this.radLabel12.Name = "radLabel12";
            this.radLabel12.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
            this.radLabel12.Size = new System.Drawing.Size(57, 18);
            this.radLabel12.TabIndex = 1001;
            this.radLabel12.Text = "شماره چک:";
            this.radLabel12.TextAlignment = System.Drawing.ContentAlignment.TopRight;
            // 
            // radLabel5
            // 
            this.radLabel5.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)));
            this.radLabel5.Location = new System.Drawing.Point(371, 64);
            this.radLabel5.Name = "radLabel5";
            this.radLabel5.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
            this.radLabel5.Size = new System.Drawing.Size(29, 18);
            this.radLabel5.TabIndex = 1027;
            this.radLabel5.Text = "مبلغ:";
            this.radLabel5.TextAlignment = System.Drawing.ContentAlignment.TopRight;
            // 
            // radLabel9
            // 
            this.radLabel9.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)));
            this.radLabel9.Location = new System.Drawing.Point(370, 6);
            this.radLabel9.Name = "radLabel9";
            this.radLabel9.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
            this.radLabel9.Size = new System.Drawing.Size(29, 18);
            this.radLabel9.TabIndex = 1028;
            this.radLabel9.Text = "مبلغ:";
            this.radLabel9.TextAlignment = System.Drawing.ContentAlignment.TopRight;
            // 
            // radPageView1
            // 
            this.radPageView1.Anchor = System.Windows.Forms.AnchorStyles.Top;
            this.radPageView1.Controls.Add(this.radPageViewPage1);
            this.radPageView1.Controls.Add(this.radPageViewPage2);
            this.radPageView1.Location = new System.Drawing.Point(0, 36);
            this.radPageView1.Name = "radPageView1";
            this.radPageView1.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
            this.radPageView1.SelectedPage = this.radPageViewPage1;
            this.radPageView1.Size = new System.Drawing.Size(731, 155);
            this.radPageView1.TabIndex = 1;
            ((Telerik.WinControls.UI.RadPageViewStripElement)(this.radPageView1.GetChildAt(0))).StripButtons = Telerik.WinControls.UI.StripViewButtons.None;
            // 
            // radPageViewPage1
            // 
            this.radPageViewPage1.Controls.Add(this.radLabel9);
            this.radPageViewPage1.Controls.Add(this.radButton2);
            this.radPageViewPage1.Controls.Add(this.radLabel5);
            this.radPageViewPage1.Controls.Add(this.radLabel2);
            this.radPageViewPage1.Controls.Add(this.radButton1);
            this.radPageViewPage1.Controls.Add(this.radLabel3);
            this.radPageViewPage1.Controls.Add(this.behalfDebtorTb);
            this.radPageViewPage1.Controls.Add(this.Debtor);
            this.radPageViewPage1.Controls.Add(this.amountCreditorTb);
            this.radPageViewPage1.Controls.Add(this.Creditor);
            this.radPageViewPage1.Controls.Add(this.amountDebtorTb);
            this.radPageViewPage1.Controls.Add(this.radLabel7);
            this.radPageViewPage1.Controls.Add(this.behalfCreditorTb);
            this.radPageViewPage1.Controls.Add(this.radLabel4);
            this.radPageViewPage1.Controls.Add(this.radLabel6);
            this.radPageViewPage1.ItemSize = new System.Drawing.SizeF(40F, 28F);
            this.radPageViewPage1.Location = new System.Drawing.Point(10, 37);
            this.radPageViewPage1.Name = "radPageViewPage1";
            this.radPageViewPage1.Size = new System.Drawing.Size(710, 107);
            this.radPageViewPage1.TabStop = true;
            this.radPageViewPage1.Text = "نقدی";
            // 
            // radPageViewPage2
            // 
            this.radPageViewPage2.Controls.Add(this.behalfLbl);
            this.radPageViewPage2.Controls.Add(this.addChequeBtn);
            this.radPageViewPage2.Controls.Add(this.chequeStatus);
            this.radPageViewPage2.Controls.Add(this.radLabel12);
            this.radPageViewPage2.Controls.Add(this.radLabel11);
            this.radPageViewPage2.Controls.Add(this.chequeNumCreditor);
            this.radPageViewPage2.Controls.Add(this.button1);
            this.radPageViewPage2.ItemSize = new System.Drawing.SizeF(33F, 28F);
            this.radPageViewPage2.Location = new System.Drawing.Point(10, 37);
            this.radPageViewPage2.Name = "radPageViewPage2";
            this.radPageViewPage2.Size = new System.Drawing.Size(710, 107);
            this.radPageViewPage2.Text = "چک";
            // 
            // behalfLbl
            // 
            this.behalfLbl.Font = new System.Drawing.Font("Tahoma", 8.25F);
            this.behalfLbl.Location = new System.Drawing.Point(490, 56);
            this.behalfLbl.Name = "behalfLbl";
            this.behalfLbl.Size = new System.Drawing.Size(2, 2);
            this.behalfLbl.TabIndex = 1011;
            this.behalfLbl.TextAlignment = System.Drawing.ContentAlignment.TopRight;
            // 
            // AdvanceDaybook
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.ClientSize = new System.Drawing.Size(735, 424);
            this.Controls.Add(this.radPageView1);
            this.Controls.Add(this.ddGrid);
            this.Controls.Add(this.Date);
            this.Controls.Add(this.saveAndNew);
            this.Controls.Add(this.Save);
            this.Controls.Add(this.radTextBox1);
            this.Controls.Add(this.radLabel8);
            this.Controls.Add(this.radLabel1);
            this.Name = "AdvanceDaybook";
            // 
            // 
            // 
            this.RootElement.ApplyShapeToControl = true;
            this.Text = "ثبت پیشرفته";
            this.Load += new System.EventHandler(this.AdvanceDaybook_Load);
            ((System.ComponentModel.ISupportInitialize)(this.daybookDescriptionsBindingSource)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.dibs)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel4)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel7)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel6)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.amountCreditorTb)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.behalfCreditorTb)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.amountDebtorTb)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.behalfDebtorTb)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radButton2)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radButton1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.ddGrid.MasterTemplate)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.ddGrid)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.saveAndNew)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.Save)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radTextBox1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel8)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel3)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel2)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.addChequeBtn)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel11)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.chequeNumCreditor)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel12)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel5)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel9)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radPageView1)).EndInit();
            this.radPageView1.ResumeLayout(false);
            this.radPageViewPage1.ResumeLayout(false);
            this.radPageViewPage1.PerformLayout();
            this.radPageViewPage2.ResumeLayout(false);
            this.radPageViewPage2.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.behalfLbl)).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.GridViewComboBoxColumn  gridViewComboBoxColumn1 = new Telerik.WinControls.UI.GridViewComboBoxColumn();
     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.GridViewComboBoxColumn  gridViewComboBoxColumn2 = new Telerik.WinControls.UI.GridViewComboBoxColumn();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(SuiviRemboursement));
     this.groupBoxSaisie      = new System.Windows.Forms.GroupBox();
     this.btn_afficherFiche   = new System.Windows.Forms.Button();
     this.cmb_listFiches      = new System.Windows.Forms.ComboBox();
     this.manqueJustif        = new System.Windows.Forms.Label();
     this.lab_date            = new System.Windows.Forms.Label();
     this.groupBoxForfait     = new System.Windows.Forms.GroupBox();
     this.table_frForfait     = new Telerik.WinControls.UI.RadGridView();
     this.groupBox2           = new System.Windows.Forms.GroupBox();
     this.table_frHorsForfait = new Telerik.WinControls.UI.RadGridView();
     this.btn_quit            = new System.Windows.Forms.Button();
     this.groupBoxSaisie.SuspendLayout();
     this.groupBoxForfait.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.table_frForfait)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.table_frForfait.MasterTemplate)).BeginInit();
     this.groupBox2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.table_frHorsForfait)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.table_frHorsForfait.MasterTemplate)).BeginInit();
     this.SuspendLayout();
     //
     // groupBoxSaisie
     //
     this.groupBoxSaisie.Controls.Add(this.btn_afficherFiche);
     this.groupBoxSaisie.Controls.Add(this.cmb_listFiches);
     this.groupBoxSaisie.Controls.Add(this.manqueJustif);
     this.groupBoxSaisie.Controls.Add(this.lab_date);
     this.groupBoxSaisie.Location = new System.Drawing.Point(12, 12);
     this.groupBoxSaisie.Name     = "groupBoxSaisie";
     this.groupBoxSaisie.Size     = new System.Drawing.Size(529, 56);
     this.groupBoxSaisie.TabIndex = 16;
     this.groupBoxSaisie.TabStop  = false;
     this.groupBoxSaisie.Text     = "Période";
     //
     // btn_afficherFiche
     //
     this.btn_afficherFiche.Location = new System.Drawing.Point(182, 22);
     this.btn_afficherFiche.Name     = "btn_afficherFiche";
     this.btn_afficherFiche.Size     = new System.Drawing.Size(75, 23);
     this.btn_afficherFiche.TabIndex = 6;
     this.btn_afficherFiche.Text     = "Afficher";
     this.btn_afficherFiche.UseVisualStyleBackColor = true;
     this.btn_afficherFiche.Click += new System.EventHandler(this.btn_afficherFiche_Click);
     //
     // cmb_listFiches
     //
     this.cmb_listFiches.DropDownStyle     = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.cmb_listFiches.FormattingEnabled = true;
     this.cmb_listFiches.Location          = new System.Drawing.Point(55, 23);
     this.cmb_listFiches.Name     = "cmb_listFiches";
     this.cmb_listFiches.Size     = new System.Drawing.Size(121, 21);
     this.cmb_listFiches.TabIndex = 5;
     //
     // manqueJustif
     //
     this.manqueJustif.AutoSize  = true;
     this.manqueJustif.Font      = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.manqueJustif.ForeColor = System.Drawing.Color.Red;
     this.manqueJustif.Location  = new System.Drawing.Point(388, 26);
     this.manqueJustif.Name      = "manqueJustif";
     this.manqueJustif.Size      = new System.Drawing.Size(131, 13);
     this.manqueJustif.TabIndex  = 4;
     this.manqueJustif.Text      = "/!\\ Manque justificatif";
     this.manqueJustif.Visible   = false;
     //
     // lab_date
     //
     this.lab_date.AutoSize = true;
     this.lab_date.Location = new System.Drawing.Point(20, 26);
     this.lab_date.Name     = "lab_date";
     this.lab_date.Size     = new System.Drawing.Size(29, 13);
     this.lab_date.TabIndex = 3;
     this.lab_date.Text     = "Mois";
     //
     // groupBoxForfait
     //
     this.groupBoxForfait.Controls.Add(this.table_frForfait);
     this.groupBoxForfait.Location = new System.Drawing.Point(12, 74);
     this.groupBoxForfait.Name     = "groupBoxForfait";
     this.groupBoxForfait.Size     = new System.Drawing.Size(529, 169);
     this.groupBoxForfait.TabIndex = 17;
     this.groupBoxForfait.TabStop  = false;
     this.groupBoxForfait.Text     = "Frais forfait";
     //
     // table_frForfait
     //
     this.table_frForfait.Location = new System.Drawing.Point(6, 19);
     //
     // table_frForfait
     //
     this.table_frForfait.MasterTemplate.AllowAddNewRow = false;
     this.table_frForfait.MasterTemplate.AllowColumnHeaderContextMenu = false;
     this.table_frForfait.MasterTemplate.AllowDeleteRow   = false;
     this.table_frForfait.MasterTemplate.AllowDragToGroup = false;
     this.table_frForfait.MasterTemplate.AllowEditRow     = false;
     gridViewTextBoxColumn1.HeaderText     = "Repas midi";
     gridViewTextBoxColumn1.Name           = "midi";
     gridViewTextBoxColumn1.Width          = 90;
     gridViewTextBoxColumn2.HeaderText     = "Nuitée";
     gridViewTextBoxColumn2.Name           = "nuitee";
     gridViewTextBoxColumn2.Width          = 100;
     gridViewTextBoxColumn3.HeaderText     = "Étape";
     gridViewTextBoxColumn3.Name           = "etape";
     gridViewTextBoxColumn3.Width          = 100;
     gridViewTextBoxColumn4.HeaderText     = "Kilomètres";
     gridViewTextBoxColumn4.Name           = "km";
     gridViewTextBoxColumn4.Width          = 90;
     gridViewComboBoxColumn1.DisplayMember = null;
     gridViewComboBoxColumn1.HeaderText    = "Situation";
     gridViewComboBoxColumn1.Name          = "situation";
     gridViewComboBoxColumn1.ValueMember   = null;
     gridViewComboBoxColumn1.Width         = 117;
     this.table_frForfait.MasterTemplate.Columns.AddRange(new Telerik.WinControls.UI.GridViewDataColumn[] {
         gridViewTextBoxColumn1,
         gridViewTextBoxColumn2,
         gridViewTextBoxColumn3,
         gridViewTextBoxColumn4,
         gridViewComboBoxColumn1
     });
     this.table_frForfait.Name     = "table_frForfait";
     this.table_frForfait.Size     = new System.Drawing.Size(513, 142);
     this.table_frForfait.TabIndex = 1;
     this.table_frForfait.Text     = "radGridView1";
     //
     // groupBox2
     //
     this.groupBox2.Controls.Add(this.table_frHorsForfait);
     this.groupBox2.Location = new System.Drawing.Point(12, 249);
     this.groupBox2.Name     = "groupBox2";
     this.groupBox2.Size     = new System.Drawing.Size(529, 137);
     this.groupBox2.TabIndex = 19;
     this.groupBox2.TabStop  = false;
     this.groupBox2.Text     = "Frais hors-forfait";
     //
     // table_frHorsForfait
     //
     this.table_frHorsForfait.Location = new System.Drawing.Point(6, 17);
     //
     // table_frHorsForfait
     //
     this.table_frHorsForfait.MasterTemplate.AllowAddNewRow               = false;
     this.table_frHorsForfait.MasterTemplate.AllowCellContextMenu         = false;
     this.table_frHorsForfait.MasterTemplate.AllowColumnHeaderContextMenu = false;
     this.table_frHorsForfait.MasterTemplate.AllowDragToGroup             = false;
     this.table_frHorsForfait.MasterTemplate.AllowEditRow = false;
     gridViewTextBoxColumn5.HeaderText     = "Date";
     gridViewTextBoxColumn5.Name           = "date";
     gridViewTextBoxColumn5.Width          = 120;
     gridViewTextBoxColumn6.HeaderText     = "Libellé";
     gridViewTextBoxColumn6.Name           = "libelle";
     gridViewTextBoxColumn6.Width          = 125;
     gridViewTextBoxColumn7.HeaderText     = "Montant";
     gridViewTextBoxColumn7.Name           = "montant";
     gridViewTextBoxColumn7.Width          = 125;
     gridViewComboBoxColumn2.DisplayMember = null;
     gridViewComboBoxColumn2.HeaderText    = "Situation";
     gridViewComboBoxColumn2.Name          = "situation";
     gridViewComboBoxColumn2.ValueMember   = null;
     gridViewComboBoxColumn2.Width         = 126;
     this.table_frHorsForfait.MasterTemplate.Columns.AddRange(new Telerik.WinControls.UI.GridViewDataColumn[] {
         gridViewTextBoxColumn5,
         gridViewTextBoxColumn6,
         gridViewTextBoxColumn7,
         gridViewComboBoxColumn2
     });
     this.table_frHorsForfait.Name     = "table_frHorsForfait";
     this.table_frHorsForfait.Size     = new System.Drawing.Size(513, 112);
     this.table_frHorsForfait.TabIndex = 1;
     this.table_frHorsForfait.Text     = "radGridView2";
     //
     // btn_quit
     //
     this.btn_quit.Image      = ((System.Drawing.Image)(resources.GetObject("btn_quit.Image")));
     this.btn_quit.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.btn_quit.Location   = new System.Drawing.Point(445, 392);
     this.btn_quit.Name       = "btn_quit";
     this.btn_quit.Size       = new System.Drawing.Size(96, 32);
     this.btn_quit.TabIndex   = 24;
     this.btn_quit.Text       = "Quitter";
     this.btn_quit.TextAlign  = System.Drawing.ContentAlignment.MiddleRight;
     this.btn_quit.UseVisualStyleBackColor = true;
     this.btn_quit.Click += new System.EventHandler(this.btn_quit_Click);
     //
     // SuiviRemboursement
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize          = new System.Drawing.Size(549, 428);
     this.Controls.Add(this.btn_quit);
     this.Controls.Add(this.groupBox2);
     this.Controls.Add(this.groupBoxForfait);
     this.Controls.Add(this.groupBoxSaisie);
     this.Name  = "SuiviRemboursement";
     this.Text  = "GSB - Suivi de remboursement des frais";
     this.Load += new System.EventHandler(this.SuiviRemboursement_Load);
     this.groupBoxSaisie.ResumeLayout(false);
     this.groupBoxSaisie.PerformLayout();
     this.groupBoxForfait.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.table_frForfait.MasterTemplate)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.table_frForfait)).EndInit();
     this.groupBox2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.table_frHorsForfait.MasterTemplate)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.table_frHorsForfait)).EndInit();
     this.ResumeLayout(false);
 }
Example #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.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.GridViewComboBoxColumn gridViewComboBoxColumn1 = new Telerik.WinControls.UI.GridViewComboBoxColumn();
     Telerik.WinControls.UI.GridViewDateTimeColumn gridViewDateTimeColumn1 = new Telerik.WinControls.UI.GridViewDateTimeColumn();
     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.GridViewImageColumn    gridViewImageColumn1    = new Telerik.WinControls.UI.GridViewImageColumn();
     Telerik.WinControls.UI.GridViewTextBoxColumn  gridViewTextBoxColumn10 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
     Telerik.WinControls.UI.GridViewDateTimeColumn gridViewDateTimeColumn2 = new Telerik.WinControls.UI.GridViewDateTimeColumn();
     Telerik.WinControls.UI.GridViewTextBoxColumn  gridViewTextBoxColumn11 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
     Telerik.WinControls.UI.GridViewTextBoxColumn  gridViewTextBoxColumn12 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
     Telerik.WinControls.UI.GridViewDateTimeColumn gridViewDateTimeColumn3 = new Telerik.WinControls.UI.GridViewDateTimeColumn();
     Telerik.WinControls.UI.GridViewDateTimeColumn gridViewDateTimeColumn4 = new Telerik.WinControls.UI.GridViewDateTimeColumn();
     Telerik.WinControls.UI.GridViewTextBoxColumn  gridViewTextBoxColumn13 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
     Telerik.WinControls.UI.GridViewCheckBoxColumn gridViewCheckBoxColumn1 = new Telerik.WinControls.UI.GridViewCheckBoxColumn();
     Telerik.WinControls.UI.GridViewTextBoxColumn  gridViewTextBoxColumn14 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
     Telerik.WinControls.UI.GridViewDecimalColumn  gridViewDecimalColumn2  = new Telerik.WinControls.UI.GridViewDecimalColumn();
     Telerik.WinControls.UI.GridViewDateTimeColumn gridViewDateTimeColumn5 = new Telerik.WinControls.UI.GridViewDateTimeColumn();
     Telerik.WinControls.UI.GridViewDecimalColumn  gridViewDecimalColumn3  = new Telerik.WinControls.UI.GridViewDecimalColumn();
     Telerik.WinControls.UI.GridViewDateTimeColumn gridViewDateTimeColumn6 = new Telerik.WinControls.UI.GridViewDateTimeColumn();
     Telerik.WinControls.UI.GridViewTextBoxColumn  gridViewTextBoxColumn15 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
     Telerik.WinControls.UI.GridViewTextBoxColumn  gridViewTextBoxColumn16 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
     this.gridEmployees         = new Telerik.WinControls.UI.RadGridView();
     this.employeeBindingSource = new System.Windows.Forms.BindingSource(this.components);
     ((System.ComponentModel.ISupportInitialize)(this.gridEmployees)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridEmployees.MasterTemplate)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.employeeBindingSource)).BeginInit();
     this.SuspendLayout();
     //
     // gridEmployees
     //
     this.gridEmployees.BackColor = System.Drawing.SystemColors.Control;
     this.gridEmployees.Cursor    = System.Windows.Forms.Cursors.Default;
     this.gridEmployees.Dock      = System.Windows.Forms.DockStyle.Fill;
     this.gridEmployees.Font      = new System.Drawing.Font("Segoe UI", 8.25F);
     this.gridEmployees.ForeColor = System.Drawing.SystemColors.ControlText;
     this.gridEmployees.ImeMode   = System.Windows.Forms.ImeMode.NoControl;
     this.gridEmployees.Location  = new System.Drawing.Point(0, 0);
     //
     // gridEmployees
     //
     gridViewDecimalColumn1.DataType            = typeof(int);
     gridViewDecimalColumn1.FieldName           = "Employee_ID";
     gridViewDecimalColumn1.FormatInfo          = new System.Globalization.CultureInfo("");
     gridViewDecimalColumn1.HeaderText          = "Employee_ID";
     gridViewDecimalColumn1.IsAutoGenerated     = true;
     gridViewDecimalColumn1.IsVisible           = false;
     gridViewDecimalColumn1.Name                = "Employee_ID";
     gridViewDecimalColumn1.TextAlignment       = System.Drawing.ContentAlignment.MiddleRight;
     gridViewTextBoxColumn1.FormatInfo          = new System.Globalization.CultureInfo("");
     gridViewTextBoxColumn1.HeaderText          = "No";
     gridViewTextBoxColumn1.Name                = "No";
     gridViewTextBoxColumn1.ReadOnly            = true;
     gridViewTextBoxColumn2.FieldName           = "FirstName";
     gridViewTextBoxColumn2.FormatInfo          = new System.Globalization.CultureInfo("");
     gridViewTextBoxColumn2.HeaderText          = "FirstName";
     gridViewTextBoxColumn2.HeaderTextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
     gridViewTextBoxColumn2.IsAutoGenerated     = true;
     gridViewTextBoxColumn2.Name                = "FirstName";
     gridViewTextBoxColumn2.Width               = 100;
     gridViewTextBoxColumn3.FieldName           = "LastName";
     gridViewTextBoxColumn3.FormatInfo          = new System.Globalization.CultureInfo("");
     gridViewTextBoxColumn3.HeaderText          = "LastName";
     gridViewTextBoxColumn3.HeaderTextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
     gridViewTextBoxColumn3.IsAutoGenerated     = true;
     gridViewTextBoxColumn3.Name                = "LastName";
     gridViewTextBoxColumn3.Width               = 150;
     gridViewTextBoxColumn4.FieldName           = "NickName";
     gridViewTextBoxColumn4.FormatInfo          = new System.Globalization.CultureInfo("");
     gridViewTextBoxColumn4.HeaderText          = "NickName";
     gridViewTextBoxColumn4.IsAutoGenerated     = true;
     gridViewTextBoxColumn4.Name                = "NickName";
     gridViewTextBoxColumn4.Width               = 100;
     gridViewComboBoxColumn1.DataType           = typeof(System.Nullable <int>);
     gridViewComboBoxColumn1.DisplayMember      = null;
     gridViewComboBoxColumn1.FieldName          = "DeptID";
     gridViewComboBoxColumn1.FormatInfo         = new System.Globalization.CultureInfo("");
     gridViewComboBoxColumn1.HeaderText         = "Department";
     gridViewComboBoxColumn1.Name               = "DeptID";
     gridViewComboBoxColumn1.ValueMember        = null;
     gridViewComboBoxColumn1.Width              = 100;
     gridViewDateTimeColumn1.CustomFormat       = "dd/MMM/yyyy";
     gridViewDateTimeColumn1.DataType           = typeof(System.Nullable <System.DateTime>);
     gridViewDateTimeColumn1.FieldName          = "Birthday";
     gridViewDateTimeColumn1.Format             = System.Windows.Forms.DateTimePickerFormat.Custom;
     gridViewDateTimeColumn1.FormatInfo         = new System.Globalization.CultureInfo("");
     gridViewDateTimeColumn1.FormatString       = "{0:dd/MMM/yyyy}";
     gridViewDateTimeColumn1.HeaderText         = "Birthday";
     gridViewDateTimeColumn1.IsAutoGenerated    = true;
     gridViewDateTimeColumn1.Name               = "Birthday";
     gridViewDateTimeColumn1.Width              = 120;
     gridViewTextBoxColumn5.FieldName           = "BirthLocation";
     gridViewTextBoxColumn5.FormatInfo          = new System.Globalization.CultureInfo("");
     gridViewTextBoxColumn5.HeaderText          = "BirthLocation";
     gridViewTextBoxColumn5.HeaderTextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
     gridViewTextBoxColumn5.IsAutoGenerated     = true;
     gridViewTextBoxColumn5.Multiline           = true;
     gridViewTextBoxColumn5.Name                = "BirthLocation";
     gridViewTextBoxColumn5.Width               = 150;
     gridViewTextBoxColumn5.WrapText            = true;
     gridViewTextBoxColumn6.FieldName           = "Address";
     gridViewTextBoxColumn6.FormatInfo          = new System.Globalization.CultureInfo("");
     gridViewTextBoxColumn6.HeaderText          = "Address";
     gridViewTextBoxColumn6.HeaderTextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
     gridViewTextBoxColumn6.IsAutoGenerated     = true;
     gridViewTextBoxColumn6.Multiline           = true;
     gridViewTextBoxColumn6.Name                = "Address";
     gridViewTextBoxColumn6.Width               = 150;
     gridViewTextBoxColumn6.WrapText            = true;
     gridViewTextBoxColumn7.FieldName           = "Phone";
     gridViewTextBoxColumn7.FormatInfo          = new System.Globalization.CultureInfo("");
     gridViewTextBoxColumn7.HeaderText          = "Phone";
     gridViewTextBoxColumn7.IsAutoGenerated     = true;
     gridViewTextBoxColumn7.Name                = "Phone";
     gridViewTextBoxColumn7.TextAlignment       = System.Drawing.ContentAlignment.MiddleCenter;
     gridViewTextBoxColumn7.Width               = 100;
     gridViewTextBoxColumn8.FieldName           = "Email";
     gridViewTextBoxColumn8.FormatInfo          = new System.Globalization.CultureInfo("");
     gridViewTextBoxColumn8.HeaderText          = "Email";
     gridViewTextBoxColumn8.HeaderTextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
     gridViewTextBoxColumn8.IsAutoGenerated     = true;
     gridViewTextBoxColumn8.Name                = "Email";
     gridViewTextBoxColumn8.Width               = 120;
     gridViewTextBoxColumn9.FieldName           = "Website";
     gridViewTextBoxColumn9.FormatInfo          = new System.Globalization.CultureInfo("");
     gridViewTextBoxColumn9.HeaderText          = "Website";
     gridViewTextBoxColumn9.IsAutoGenerated     = true;
     gridViewTextBoxColumn9.IsVisible           = false;
     gridViewTextBoxColumn9.Name                = "Website";
     gridViewTextBoxColumn9.Width               = 80;
     gridViewImageColumn1.DataType              = typeof(byte[]);
     gridViewImageColumn1.FieldName             = "Picture";
     gridViewImageColumn1.FormatInfo            = new System.Globalization.CultureInfo("");
     gridViewImageColumn1.HeaderText            = "Picture";
     gridViewImageColumn1.IsAutoGenerated       = true;
     gridViewImageColumn1.IsVisible             = false;
     gridViewImageColumn1.Name                   = "Picture";
     gridViewTextBoxColumn10.FieldName           = "IDNo";
     gridViewTextBoxColumn10.FormatInfo          = new System.Globalization.CultureInfo("");
     gridViewTextBoxColumn10.HeaderText          = "ID No";
     gridViewTextBoxColumn10.IsAutoGenerated     = true;
     gridViewTextBoxColumn10.IsVisible           = false;
     gridViewTextBoxColumn10.Name                = "IDNo";
     gridViewTextBoxColumn10.Width               = 80;
     gridViewDateTimeColumn2.DataType            = typeof(System.Nullable <System.DateTime>);
     gridViewDateTimeColumn2.FieldName           = "IDIssuedDate";
     gridViewDateTimeColumn2.Format              = System.Windows.Forms.DateTimePickerFormat.Long;
     gridViewDateTimeColumn2.FormatInfo          = new System.Globalization.CultureInfo("");
     gridViewDateTimeColumn2.HeaderText          = "IDIssuedDate";
     gridViewDateTimeColumn2.IsAutoGenerated     = true;
     gridViewDateTimeColumn2.IsVisible           = false;
     gridViewDateTimeColumn2.Name                = "IDIssuedDate";
     gridViewTextBoxColumn11.FieldName           = "IDIssuer";
     gridViewTextBoxColumn11.FormatInfo          = new System.Globalization.CultureInfo("");
     gridViewTextBoxColumn11.HeaderText          = "IDIssuer";
     gridViewTextBoxColumn11.IsAutoGenerated     = true;
     gridViewTextBoxColumn11.IsVisible           = false;
     gridViewTextBoxColumn11.Name                = "IDIssuer";
     gridViewTextBoxColumn12.FieldName           = "PassportNo";
     gridViewTextBoxColumn12.FormatInfo          = new System.Globalization.CultureInfo("");
     gridViewTextBoxColumn12.HeaderText          = "PassportNo";
     gridViewTextBoxColumn12.IsAutoGenerated     = true;
     gridViewTextBoxColumn12.IsVisible           = false;
     gridViewTextBoxColumn12.Name                = "PassportNo";
     gridViewDateTimeColumn3.DataType            = typeof(System.Nullable <System.DateTime>);
     gridViewDateTimeColumn3.FieldName           = "PassportIssuedDate";
     gridViewDateTimeColumn3.Format              = System.Windows.Forms.DateTimePickerFormat.Long;
     gridViewDateTimeColumn3.FormatInfo          = new System.Globalization.CultureInfo("");
     gridViewDateTimeColumn3.HeaderText          = "PassportIssuedDate";
     gridViewDateTimeColumn3.IsAutoGenerated     = true;
     gridViewDateTimeColumn3.IsVisible           = false;
     gridViewDateTimeColumn3.Name                = "PassportIssuedDate";
     gridViewDateTimeColumn4.DataType            = typeof(System.Nullable <System.DateTime>);
     gridViewDateTimeColumn4.FieldName           = "PassportExpiredDate";
     gridViewDateTimeColumn4.Format              = System.Windows.Forms.DateTimePickerFormat.Long;
     gridViewDateTimeColumn4.FormatInfo          = new System.Globalization.CultureInfo("");
     gridViewDateTimeColumn4.HeaderText          = "PassportExpiredDate";
     gridViewDateTimeColumn4.IsAutoGenerated     = true;
     gridViewDateTimeColumn4.IsVisible           = false;
     gridViewDateTimeColumn4.Name                = "PassportExpiredDate";
     gridViewTextBoxColumn13.FieldName           = "PassportIssuer";
     gridViewTextBoxColumn13.FormatInfo          = new System.Globalization.CultureInfo("");
     gridViewTextBoxColumn13.HeaderText          = "PassportIssuer";
     gridViewTextBoxColumn13.IsAutoGenerated     = true;
     gridViewTextBoxColumn13.IsVisible           = false;
     gridViewTextBoxColumn13.Name                = "PassportIssuer";
     gridViewCheckBoxColumn1.DataType            = typeof(System.Nullable <bool>);
     gridViewCheckBoxColumn1.FieldName           = "Active";
     gridViewCheckBoxColumn1.FormatInfo          = new System.Globalization.CultureInfo("");
     gridViewCheckBoxColumn1.HeaderText          = "Active";
     gridViewCheckBoxColumn1.IsAutoGenerated     = true;
     gridViewCheckBoxColumn1.MinWidth            = 20;
     gridViewCheckBoxColumn1.Name                = "Active";
     gridViewTextBoxColumn14.FieldName           = "Notes";
     gridViewTextBoxColumn14.FormatInfo          = new System.Globalization.CultureInfo("");
     gridViewTextBoxColumn14.HeaderText          = "Notes";
     gridViewTextBoxColumn14.HeaderTextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
     gridViewTextBoxColumn14.IsAutoGenerated     = true;
     gridViewTextBoxColumn14.Multiline           = true;
     gridViewTextBoxColumn14.Name                = "Notes";
     gridViewTextBoxColumn14.Width               = 250;
     gridViewTextBoxColumn14.WrapText            = true;
     gridViewDecimalColumn2.DataType             = typeof(System.Nullable <int>);
     gridViewDecimalColumn2.FieldName            = "Creator";
     gridViewDecimalColumn2.FormatInfo           = new System.Globalization.CultureInfo("");
     gridViewDecimalColumn2.HeaderText           = "Creator";
     gridViewDecimalColumn2.IsAutoGenerated      = true;
     gridViewDecimalColumn2.IsVisible            = false;
     gridViewDecimalColumn2.Name                 = "Creator";
     gridViewDecimalColumn2.TextAlignment        = System.Drawing.ContentAlignment.MiddleRight;
     gridViewDateTimeColumn5.DataType            = typeof(System.Nullable <System.DateTime>);
     gridViewDateTimeColumn5.FieldName           = "CreatedDate";
     gridViewDateTimeColumn5.Format              = System.Windows.Forms.DateTimePickerFormat.Long;
     gridViewDateTimeColumn5.FormatInfo          = new System.Globalization.CultureInfo("");
     gridViewDateTimeColumn5.HeaderText          = "CreatedDate";
     gridViewDateTimeColumn5.IsAutoGenerated     = true;
     gridViewDateTimeColumn5.IsVisible           = false;
     gridViewDateTimeColumn5.Name                = "CreatedDate";
     gridViewDecimalColumn3.DataType             = typeof(System.Nullable <int>);
     gridViewDecimalColumn3.FieldName            = "Updator";
     gridViewDecimalColumn3.FormatInfo           = new System.Globalization.CultureInfo("");
     gridViewDecimalColumn3.HeaderText           = "Updator";
     gridViewDecimalColumn3.IsAutoGenerated      = true;
     gridViewDecimalColumn3.IsVisible            = false;
     gridViewDecimalColumn3.Name                 = "Updator";
     gridViewDecimalColumn3.TextAlignment        = System.Drawing.ContentAlignment.MiddleRight;
     gridViewDateTimeColumn6.DataType            = typeof(System.Nullable <System.DateTime>);
     gridViewDateTimeColumn6.FieldName           = "UpdatedDate";
     gridViewDateTimeColumn6.Format              = System.Windows.Forms.DateTimePickerFormat.Long;
     gridViewDateTimeColumn6.FormatInfo          = new System.Globalization.CultureInfo("");
     gridViewDateTimeColumn6.HeaderText          = "UpdatedDate";
     gridViewDateTimeColumn6.IsAutoGenerated     = true;
     gridViewDateTimeColumn6.IsVisible           = false;
     gridViewDateTimeColumn6.Name                = "UpdatedDate";
     gridViewTextBoxColumn15.DataType            = typeof(System.Collections.Generic.ICollection <PGS.Entity.Car_Drivers>);
     gridViewTextBoxColumn15.FieldName           = "Car_Drivers";
     gridViewTextBoxColumn15.FormatInfo          = new System.Globalization.CultureInfo("");
     gridViewTextBoxColumn15.HeaderText          = "Car_Drivers";
     gridViewTextBoxColumn15.IsAutoGenerated     = true;
     gridViewTextBoxColumn15.IsVisible           = false;
     gridViewTextBoxColumn15.Name                = "Car_Drivers";
     gridViewTextBoxColumn16.DataType            = typeof(System.Collections.Generic.ICollection <PGS.Entity.User>);
     gridViewTextBoxColumn16.FieldName           = "Users";
     gridViewTextBoxColumn16.FormatInfo          = new System.Globalization.CultureInfo("");
     gridViewTextBoxColumn16.HeaderText          = "Users";
     gridViewTextBoxColumn16.IsAutoGenerated     = true;
     gridViewTextBoxColumn16.IsVisible           = false;
     gridViewTextBoxColumn16.Name                = "Users";
     this.gridEmployees.MasterTemplate.Columns.AddRange(new Telerik.WinControls.UI.GridViewDataColumn[] {
         gridViewDecimalColumn1,
         gridViewTextBoxColumn1,
         gridViewTextBoxColumn2,
         gridViewTextBoxColumn3,
         gridViewTextBoxColumn4,
         gridViewComboBoxColumn1,
         gridViewDateTimeColumn1,
         gridViewTextBoxColumn5,
         gridViewTextBoxColumn6,
         gridViewTextBoxColumn7,
         gridViewTextBoxColumn8,
         gridViewTextBoxColumn9,
         gridViewImageColumn1,
         gridViewTextBoxColumn10,
         gridViewDateTimeColumn2,
         gridViewTextBoxColumn11,
         gridViewTextBoxColumn12,
         gridViewDateTimeColumn3,
         gridViewDateTimeColumn4,
         gridViewTextBoxColumn13,
         gridViewCheckBoxColumn1,
         gridViewTextBoxColumn14,
         gridViewDecimalColumn2,
         gridViewDateTimeColumn5,
         gridViewDecimalColumn3,
         gridViewDateTimeColumn6,
         gridViewTextBoxColumn15,
         gridViewTextBoxColumn16
     });
     this.gridEmployees.MasterTemplate.DataSource = this.employeeBindingSource;
     this.gridEmployees.Name        = "gridEmployees";
     this.gridEmployees.Padding     = new System.Windows.Forms.Padding(0, 0, 0, 1);
     this.gridEmployees.RightToLeft = System.Windows.Forms.RightToLeft.No;
     //
     //
     //
     this.gridEmployees.RootElement.Padding = new System.Windows.Forms.Padding(0, 0, 0, 1);
     this.gridEmployees.Size                 = new System.Drawing.Size(800, 600);
     this.gridEmployees.TabIndex             = 0;
     this.gridEmployees.CellFormatting      += new Telerik.WinControls.UI.CellFormattingEventHandler(this.gridEmployees_CellFormatting);
     this.gridEmployees.CellValidating      += new Telerik.WinControls.UI.CellValidatingEventHandler(this.gridEmployees_CellValidating);
     this.gridEmployees.UserAddingRow       += new Telerik.WinControls.UI.GridViewRowCancelEventHandler(this.gridEmployees_UserAddingRow);
     this.gridEmployees.UserAddedRow        += new Telerik.WinControls.UI.GridViewRowEventHandler(this.gridEmployees_UserAddedRow);
     this.gridEmployees.UserDeletingRow     += new Telerik.WinControls.UI.GridViewRowCancelEventHandler(this.gridEmployees_UserDeletingRow);
     this.gridEmployees.UserDeletedRow      += new Telerik.WinControls.UI.GridViewRowEventHandler(this.gridEmployees_UserDeletedRow);
     this.gridEmployees.CellValueChanged    += new Telerik.WinControls.UI.GridViewCellEventHandler(this.gridEmployees_CellValueChanged);
     this.gridEmployees.DataBindingComplete += new Telerik.WinControls.UI.GridViewBindingCompleteEventHandler(this.gridEmployees_DataBindingComplete);
     //
     // employeeBindingSource
     //
     this.employeeBindingSource.DataSource = typeof(PGS.Entity.Employee);
     //
     // EmployeeList
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.Controls.Add(this.gridEmployees);
     this.Name = "EmployeeList";
     this.Size = new System.Drawing.Size(800, 600);
     ((System.ComponentModel.ISupportInitialize)(this.gridEmployees.MasterTemplate)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridEmployees)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.employeeBindingSource)).EndInit();
     this.ResumeLayout(false);
 }
        /// <summary>
        /// Required method for Designer support - do not modify
        /// the contents of this method with the code editor.
        /// </summary>
        private void InitializeComponent()
        {
            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();

        }
 /// <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(InvoiceRemark));
     Telerik.WinControls.UI.GridViewTextBoxColumn       gridViewTextBoxColumn4       = new Telerik.WinControls.UI.GridViewTextBoxColumn();
     Telerik.WinControls.UI.GridViewTextBoxColumn       gridViewTextBoxColumn5       = new Telerik.WinControls.UI.GridViewTextBoxColumn();
     Telerik.WinControls.UI.GridViewComboBoxColumn      gridViewComboBoxColumn2      = new Telerik.WinControls.UI.GridViewComboBoxColumn();
     Telerik.WinControls.UI.GridViewMultiComboBoxColumn gridViewMultiComboBoxColumn2 = new Telerik.WinControls.UI.GridViewMultiComboBoxColumn();
     Telerik.WinControls.UI.GridViewTextBoxColumn       gridViewTextBoxColumn6       = new Telerik.WinControls.UI.GridViewTextBoxColumn();
     Telerik.WinControls.UI.TableViewDefinition         tableViewDefinition2         = 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.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.radRibbonBarGroup4       = new Telerik.WinControls.UI.RadRibbonBarGroup();
     this.radButtonElement1        = new Telerik.WinControls.UI.RadButtonElement();
     this.radRibbonBarGroup2       = new Telerik.WinControls.UI.RadRibbonBarGroup();
     this.btnListitem              = 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.contextMenuStrip1        = new System.Windows.Forms.ContextMenuStrip(this.components);
     this.btnDel_Item              = new System.Windows.Forms.ToolStripMenuItem();
     this.radPanel2                = new Telerik.WinControls.UI.RadPanel();
     this.txtCreateDate            = new Telerik.WinControls.UI.RadTextBox();
     this.radLabel10               = new Telerik.WinControls.UI.RadLabel();
     this.txtCreateBy              = new Telerik.WinControls.UI.RadTextBox();
     this.radLabel8                = new Telerik.WinControls.UI.RadLabel();
     this.radPanel1                = new Telerik.WinControls.UI.RadPanel();
     this.radLabel2                = new Telerik.WinControls.UI.RadLabel();
     this.radLabel4                = new Telerik.WinControls.UI.RadLabel();
     this.txtid                    = new Telerik.WinControls.UI.RadTextBox();
     this.txtInvNo                 = new Telerik.WinControls.UI.RadTextBox();
     this.txtItemNo                = new Telerik.WinControls.UI.RadTextBox();
     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();
     ((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();
     this.contextMenuStrip1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.radPanel2)).BeginInit();
     this.radPanel2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.txtCreateDate)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel10)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtCreateBy)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel8)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radPanel1)).BeginInit();
     this.radPanel1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel4)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtid)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtInvNo)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtItemNo)).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(588, 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      = "Invoice Remark";
     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.radRibbonBarGroup3,
         this.radRibbonBarGroup5,
         this.radRibbonBarGroup4,
         this.radRibbonBarGroup2
     });
     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.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);
     //
     // 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";
     //
     // radRibbonBarGroup4
     //
     this.radRibbonBarGroup4.Items.AddRange(new Telerik.WinControls.RadItem[] {
         this.radButtonElement1
     });
     this.radRibbonBarGroup4.Name       = "radRibbonBarGroup4";
     this.radRibbonBarGroup4.Text       = "Print Document";
     this.radRibbonBarGroup4.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);
     //
     // radRibbonBarGroup2
     //
     this.radRibbonBarGroup2.Items.AddRange(new Telerik.WinControls.RadItem[] {
         this.btnListitem
     });
     this.radRibbonBarGroup2.Name       = "radRibbonBarGroup2";
     this.radRibbonBarGroup2.Text       = "List item";
     this.radRibbonBarGroup2.Visibility = Telerik.WinControls.ElementVisibility.Collapsed;
     //
     // btnListitem
     //
     this.btnListitem.Image          = ((System.Drawing.Image)(resources.GetObject("btnListitem.Image")));
     this.btnListitem.ImageAlignment = System.Drawing.ContentAlignment.TopCenter;
     this.btnListitem.Name           = "btnListitem";
     this.btnListitem.Text           = "รายการ";
     this.btnListitem.TextAlignment  = System.Drawing.ContentAlignment.BottomCenter;
     this.btnListitem.Click         += new System.EventHandler(this.btnListitem_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.Visibility = Telerik.WinControls.ElementVisibility.Collapsed;
     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, 524);
     this.radStatusStrip1.Name       = "radStatusStrip1";
     this.radStatusStrip1.Size       = new System.Drawing.Size(588, 26);
     this.radStatusStrip1.SizingGrip = false;
     this.radStatusStrip1.TabIndex   = 1;
     //
     // radLabelElement1
     //
     this.radLabelElement1.Name = "radLabelElement1";
     this.radStatusStrip1.SetSpring(this.radLabelElement1, false);
     this.radLabelElement1.Text     = "Status : Invoice Remark";
     this.radLabelElement1.TextWrap = true;
     //
     // panel1
     //
     this.panel1.BackColor = System.Drawing.Color.White;
     this.panel1.Controls.Add(this.dgvData);
     this.panel1.Controls.Add(this.radPanel2);
     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(588, 364);
     this.panel1.TabIndex = 2;
     //
     // dgvData
     //
     this.dgvData.BackColor = System.Drawing.Color.White;
     this.dgvData.ColumnChooserSortOrder = Telerik.WinControls.UI.RadSortOrder.Ascending;
     this.dgvData.ContextMenuStrip       = this.contextMenuStrip1;
     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, 59);
     //
     //
     //
     this.dgvData.MasterTemplate.AddNewRowPosition            = Telerik.WinControls.UI.SystemRowPosition.Bottom;
     this.dgvData.MasterTemplate.AllowCellContextMenu         = false;
     this.dgvData.MasterTemplate.AllowColumnChooser           = 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;
     gridViewTextBoxColumn4.EnableExpressionEditor   = false;
     gridViewTextBoxColumn4.HeaderText                   = "No";
     gridViewTextBoxColumn4.Name                         = "dgvNo";
     gridViewTextBoxColumn4.Width                        = 45;
     gridViewTextBoxColumn5.EnableExpressionEditor       = false;
     gridViewTextBoxColumn5.FieldName                    = "DetailRemark";
     gridViewTextBoxColumn5.HeaderText                   = "Description";
     gridViewTextBoxColumn5.Name                         = "DetailRemark";
     gridViewTextBoxColumn5.Width                        = 471;
     gridViewComboBoxColumn2.DropDownStyle               = Telerik.WinControls.RadDropDownStyle.DropDown;
     gridViewComboBoxColumn2.EnableExpressionEditor      = false;
     gridViewComboBoxColumn2.FieldName                   = "Refid";
     gridViewComboBoxColumn2.HeaderText                  = "Refid";
     gridViewComboBoxColumn2.IsVisible                   = false;
     gridViewComboBoxColumn2.Name                        = "Refid";
     gridViewComboBoxColumn2.ReadOnly                    = true;
     gridViewComboBoxColumn2.Width                       = 129;
     gridViewMultiComboBoxColumn2.EnableExpressionEditor = false;
     gridViewMultiComboBoxColumn2.FieldName              = "Seq";
     gridViewMultiComboBoxColumn2.HeaderText             = "Seq";
     gridViewMultiComboBoxColumn2.IsVisible              = false;
     gridViewMultiComboBoxColumn2.Name                   = "Seq";
     gridViewMultiComboBoxColumn2.ReadOnly               = true;
     gridViewMultiComboBoxColumn2.Width                  = 124;
     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[] {
         gridViewTextBoxColumn4,
         gridViewTextBoxColumn5,
         gridViewComboBoxColumn2,
         gridViewMultiComboBoxColumn2,
         gridViewTextBoxColumn6
     });
     this.dgvData.MasterTemplate.SelectionMode  = Telerik.WinControls.UI.GridViewSelectionMode.CellSelect;
     this.dgvData.MasterTemplate.ViewDefinition = tableViewDefinition2;
     this.dgvData.Name                   = "dgvData";
     this.dgvData.RightToLeft            = System.Windows.Forms.RightToLeft.No;
     this.dgvData.ShowGroupPanel         = false;
     this.dgvData.Size                   = new System.Drawing.Size(588, 268);
     this.dgvData.TabIndex               = 1;
     this.dgvData.ThemeName              = "Office2010Blue";
     this.dgvData.EditorRequired        += new Telerik.WinControls.UI.EditorRequiredEventHandler(this.MasterTemplate_EditorRequired);
     this.dgvData.CellBeginEdit         += new Telerik.WinControls.UI.GridViewCellCancelEventHandler(this.MasterTemplate_CellBeginEdit);
     this.dgvData.CellEditorInitialized += new Telerik.WinControls.UI.GridViewCellEventHandler(this.MasterTemplate_CellEditorInitialized);
     this.dgvData.CellEndEdit           += new Telerik.WinControls.UI.GridViewCellEventHandler(this.radGridView1_CellEndEdit);
     this.dgvData.PreviewKeyDown        += new System.Windows.Forms.PreviewKeyDownEventHandler(this.radGridView1_PreviewKeyDown);
     //
     // contextMenuStrip1
     //
     this.contextMenuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.btnDel_Item
     });
     this.contextMenuStrip1.Name = "contextMenuStrip1";
     this.contextMenuStrip1.Size = new System.Drawing.Size(121, 26);
     //
     // btnDel_Item
     //
     this.btnDel_Item.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(192)))), ((int)(((byte)(192)))));
     this.btnDel_Item.Name      = "btnDel_Item";
     this.btnDel_Item.Size      = new System.Drawing.Size(120, 22);
     this.btnDel_Item.Text      = "ลบรายการ";
     this.btnDel_Item.Click    += new System.EventHandler(this.btnDel_Item_Click);
     //
     // radPanel2
     //
     this.radPanel2.Controls.Add(this.txtCreateDate);
     this.radPanel2.Controls.Add(this.radLabel10);
     this.radPanel2.Controls.Add(this.txtCreateBy);
     this.radPanel2.Controls.Add(this.radLabel8);
     this.radPanel2.Dock          = System.Windows.Forms.DockStyle.Bottom;
     this.radPanel2.Location      = new System.Drawing.Point(0, 327);
     this.radPanel2.Name          = "radPanel2";
     this.radPanel2.Size          = new System.Drawing.Size(588, 37);
     this.radPanel2.TabIndex      = 1;
     this.radPanel2.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
     this.radPanel2.Visible       = false;
     //
     // txtCreateDate
     //
     this.txtCreateDate.BackColor = System.Drawing.Color.WhiteSmoke;
     this.txtCreateDate.Font      = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtCreateDate.Location  = new System.Drawing.Point(299, 7);
     this.txtCreateDate.Name      = "txtCreateDate";
     this.txtCreateDate.Size      = new System.Drawing.Size(162, 19);
     this.txtCreateDate.TabIndex  = 7;
     this.txtCreateDate.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     //
     // radLabel10
     //
     this.radLabel10.Font     = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.radLabel10.Location = new System.Drawing.Point(238, 8);
     this.radLabel10.Name     = "radLabel10";
     this.radLabel10.Size     = new System.Drawing.Size(56, 17);
     this.radLabel10.TabIndex = 8;
     this.radLabel10.Text     = "วันที่บันทึก";
     //
     // txtCreateBy
     //
     this.txtCreateBy.BackColor = System.Drawing.Color.WhiteSmoke;
     this.txtCreateBy.Font      = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtCreateBy.Location  = new System.Drawing.Point(60, 7);
     this.txtCreateBy.Name      = "txtCreateBy";
     this.txtCreateBy.ReadOnly  = true;
     this.txtCreateBy.Size      = new System.Drawing.Size(162, 19);
     this.txtCreateBy.TabIndex  = 7;
     this.txtCreateBy.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     //
     // radLabel8
     //
     this.radLabel8.Font     = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.radLabel8.Location = new System.Drawing.Point(15, 8);
     this.radLabel8.Name     = "radLabel8";
     this.radLabel8.Size     = new System.Drawing.Size(42, 17);
     this.radLabel8.TabIndex = 8;
     this.radLabel8.Text     = "ผู้บันทึก";
     //
     // radPanel1
     //
     this.radPanel1.BackColor = System.Drawing.Color.Lavender;
     this.radPanel1.Controls.Add(this.radLabel2);
     this.radPanel1.Controls.Add(this.radLabel4);
     this.radPanel1.Controls.Add(this.txtid);
     this.radPanel1.Controls.Add(this.txtInvNo);
     this.radPanel1.Controls.Add(this.txtItemNo);
     this.radPanel1.Dock      = System.Windows.Forms.DockStyle.Top;
     this.radPanel1.Font      = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.radPanel1.Location  = new System.Drawing.Point(0, 0);
     this.radPanel1.Name      = "radPanel1";
     this.radPanel1.Size      = new System.Drawing.Size(588, 59);
     this.radPanel1.TabIndex  = 0;
     this.radPanel1.ThemeName = "Office2010Blue";
     this.radPanel1.Paint    += new System.Windows.Forms.PaintEventHandler(this.radPanel1_Paint);
     //
     // 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(253, 23);
     this.radLabel2.Name     = "radLabel2";
     this.radLabel2.Size     = new System.Drawing.Size(50, 17);
     this.radLabel2.TabIndex = 8;
     this.radLabel2.Text     = "Item No.";
     this.radLabel2.Click   += new System.EventHandler(this.radLabel5_Click);
     //
     // radLabel4
     //
     this.radLabel4.Font     = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.radLabel4.Location = new System.Drawing.Point(50, 20);
     this.radLabel4.Name     = "radLabel4";
     this.radLabel4.Size     = new System.Drawing.Size(62, 17);
     this.radLabel4.TabIndex = 8;
     this.radLabel4.Text     = "Invoice no.";
     this.radLabel4.Click   += new System.EventHandler(this.radLabel4_Click);
     //
     // txtid
     //
     this.txtid.BackColor    = System.Drawing.Color.WhiteSmoke;
     this.txtid.Font         = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtid.Location     = new System.Drawing.Point(518, 20);
     this.txtid.Name         = "txtid";
     this.txtid.ReadOnly     = true;
     this.txtid.Size         = new System.Drawing.Size(36, 19);
     this.txtid.TabIndex     = 7;
     this.txtid.Visible      = false;
     this.txtid.TextChanged += new System.EventHandler(this.radTextBox2_TextChanged);
     //
     // txtInvNo
     //
     this.txtInvNo.BackColor = System.Drawing.Color.WhiteSmoke;
     this.txtInvNo.Font      = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtInvNo.Location  = new System.Drawing.Point(118, 21);
     this.txtInvNo.Name      = "txtInvNo";
     this.txtInvNo.ReadOnly  = true;
     this.txtInvNo.Size      = new System.Drawing.Size(119, 19);
     this.txtInvNo.TabIndex  = 7;
     //
     // txtItemNo
     //
     this.txtItemNo.Font     = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtItemNo.Location = new System.Drawing.Point(309, 20);
     this.txtItemNo.Name     = "txtItemNo";
     this.txtItemNo.ReadOnly = true;
     this.txtItemNo.Size     = new System.Drawing.Size(203, 19);
     this.txtItemNo.TabIndex = 7;
     //
     // 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";
     //
     // InvoiceRemark
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize          = new System.Drawing.Size(588, 550);
     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       = "InvoiceRemark";
     //
     //
     //
     this.RootElement.ApplyShapeToControl = true;
     this.StartPosition   = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text            = "Invoice Remark";
     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();
     this.contextMenuStrip1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.radPanel2)).EndInit();
     this.radPanel2.ResumeLayout(false);
     this.radPanel2.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.txtCreateDate)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel10)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtCreateBy)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel8)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radPanel1)).EndInit();
     this.radPanel1.ResumeLayout(false);
     this.radPanel1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel4)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtid)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtInvNo)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtItemNo)).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.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);

        }
Example #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();
     Telerik.WinControls.UI.GridViewDateTimeColumn gridViewDateTimeColumn1 = new Telerik.WinControls.UI.GridViewDateTimeColumn();
     Telerik.WinControls.UI.GridViewComboBoxColumn gridViewComboBoxColumn1 = new Telerik.WinControls.UI.GridViewComboBoxColumn();
     Telerik.WinControls.UI.GridViewTextBoxColumn  gridViewTextBoxColumn1  = 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.GridViewTextBoxColumn  gridViewTextBoxColumn2  = new Telerik.WinControls.UI.GridViewTextBoxColumn();
     Telerik.WinControls.UI.GridViewDecimalColumn  gridViewDecimalColumn3  = new Telerik.WinControls.UI.GridViewDecimalColumn();
     Telerik.WinControls.UI.GridViewDateTimeColumn gridViewDateTimeColumn2 = new Telerik.WinControls.UI.GridViewDateTimeColumn();
     Telerik.WinControls.UI.GridViewTextBoxColumn  gridViewTextBoxColumn3  = new Telerik.WinControls.UI.GridViewTextBoxColumn();
     Telerik.WinControls.UI.GridViewDateTimeColumn gridViewDateTimeColumn3 = new Telerik.WinControls.UI.GridViewDateTimeColumn();
     Telerik.WinControls.UI.GridViewTextBoxColumn  gridViewTextBoxColumn4  = 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.vproductbaseBindingSource = new System.Windows.Forms.BindingSource(this.components);
     this.sinarekDataSet            = new NB.sinarekDataSet();
     this.radGridView1 = new Telerik.WinControls.UI.RadGridView();
     this.producttotalBindingSource = new System.Windows.Forms.BindingSource(this.components);
     this.radGroupBox1             = new Telerik.WinControls.UI.RadGroupBox();
     this.btnPrint                 = new Telerik.WinControls.UI.RadButton();
     this.radLabel2                = new Telerik.WinControls.UI.RadLabel();
     this.radLabel1                = new Telerik.WinControls.UI.RadLabel();
     this.dtpTanggal               = new Telerik.WinControls.UI.RadDateTimePicker();
     this.rddTipe                  = new Telerik.WinControls.UI.RadDropDownList();
     this.tipeprodBindingSource    = new System.Windows.Forms.BindingSource(this.components);
     this.staffBindingSource       = new System.Windows.Forms.BindingSource(this.components);
     this.fingermachDataSet        = new NB.fingermachDataSet();
     this.vproductbaseTableAdapter = new NB.sinarekDataSetTableAdapters.vproductbaseTableAdapter();
     this.tipeprodTableAdapter     = new NB.sinarekDataSetTableAdapters.tipeprodTableAdapter();
     this.staffTableAdapter        = new NB.fingermachDataSetTableAdapters.staffTableAdapter();
     this.producttotalTableAdapter = new NB.sinarekDataSetTableAdapters.producttotalTableAdapter();
     ((System.ComponentModel.ISupportInitialize)(this.vproductbaseBindingSource)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.sinarekDataSet)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radGridView1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radGridView1.MasterTemplate)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.producttotalBindingSource)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radGroupBox1)).BeginInit();
     this.radGroupBox1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.btnPrint)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dtpTanggal)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.rddTipe)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.tipeprodBindingSource)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.staffBindingSource)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.fingermachDataSet)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
     this.SuspendLayout();
     //
     // vproductbaseBindingSource
     //
     this.vproductbaseBindingSource.DataMember = "vproductbase";
     this.vproductbaseBindingSource.DataSource = this.sinarekDataSet;
     this.vproductbaseBindingSource.Filter     = "active = 1";
     //
     // sinarekDataSet
     //
     this.sinarekDataSet.DataSetName             = "sinarekDataSet";
     this.sinarekDataSet.SchemaSerializationMode = System.Data.SchemaSerializationMode.IncludeSchema;
     //
     // 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(0, 74);
     //
     //
     //
     this.radGridView1.MasterTemplate.AllowAddNewRow     = false;
     this.radGridView1.MasterTemplate.AllowColumnReorder = false;
     gridViewDateTimeColumn1.FieldName       = "tanggal";
     gridViewDateTimeColumn1.FormatString    = "{0:dd MMM yy}";
     gridViewDateTimeColumn1.HeaderText      = "Tanggal";
     gridViewDateTimeColumn1.Name            = "tanggal";
     gridViewDateTimeColumn1.ReadOnly        = true;
     gridViewDateTimeColumn1.Width           = 100;
     gridViewComboBoxColumn1.DataSource      = this.vproductbaseBindingSource;
     gridViewComboBoxColumn1.DataType        = typeof(int);
     gridViewComboBoxColumn1.DisplayMember   = "ProductLong";
     gridViewComboBoxColumn1.FieldName       = "baseid";
     gridViewComboBoxColumn1.HeaderText      = "Nama";
     gridViewComboBoxColumn1.Name            = "baseid";
     gridViewComboBoxColumn1.ReadOnly        = true;
     gridViewComboBoxColumn1.ValueMember     = "baseid";
     gridViewComboBoxColumn1.Width           = 250;
     gridViewTextBoxColumn1.FieldName        = "tipetransaksi";
     gridViewTextBoxColumn1.HeaderText       = "Tipe";
     gridViewTextBoxColumn1.Name             = "tipetransaksi";
     gridViewTextBoxColumn1.ReadOnly         = true;
     gridViewTextBoxColumn1.Width            = 80;
     gridViewDecimalColumn1.FieldName        = "value";
     gridViewDecimalColumn1.FormatString     = "{0:#,###.00}";
     gridViewDecimalColumn1.HeaderText       = "Jumlah";
     gridViewDecimalColumn1.IsAutoGenerated  = true;
     gridViewDecimalColumn1.Name             = "value";
     gridViewDecimalColumn1.ReadOnly         = true;
     gridViewDecimalColumn1.Width            = 100;
     gridViewDecimalColumn2.FieldName        = "adjustedval";
     gridViewDecimalColumn2.FormatString     = "{0:#,###.00}";
     gridViewDecimalColumn2.HeaderText       = "Koreksi";
     gridViewDecimalColumn2.IsAutoGenerated  = true;
     gridViewDecimalColumn2.Name             = "adjustedval";
     gridViewDecimalColumn2.Width            = 100;
     gridViewTextBoxColumn2.FieldName        = "keterangan";
     gridViewTextBoxColumn2.HeaderText       = "Keterangan";
     gridViewTextBoxColumn2.Name             = "keterangan";
     gridViewTextBoxColumn2.Width            = 150;
     gridViewDecimalColumn3.DataType         = typeof(int);
     gridViewDecimalColumn3.FieldName        = "totalid";
     gridViewDecimalColumn3.HeaderText       = "totalid";
     gridViewDecimalColumn3.IsAutoGenerated  = true;
     gridViewDecimalColumn3.IsVisible        = false;
     gridViewDecimalColumn3.Name             = "totalid";
     gridViewDecimalColumn3.ReadOnly         = true;
     gridViewDateTimeColumn2.FieldName       = "modified";
     gridViewDateTimeColumn2.HeaderText      = "modified";
     gridViewDateTimeColumn2.IsAutoGenerated = true;
     gridViewDateTimeColumn2.IsVisible       = false;
     gridViewDateTimeColumn2.Name            = "modified";
     gridViewDateTimeColumn2.ReadOnly        = true;
     gridViewTextBoxColumn3.FieldName        = "createdby";
     gridViewTextBoxColumn3.HeaderText       = "createdby";
     gridViewTextBoxColumn3.IsAutoGenerated  = true;
     gridViewTextBoxColumn3.IsVisible        = false;
     gridViewTextBoxColumn3.Name             = "createdby";
     gridViewTextBoxColumn3.ReadOnly         = true;
     gridViewDateTimeColumn3.FieldName       = "created";
     gridViewDateTimeColumn3.HeaderText      = "created";
     gridViewDateTimeColumn3.IsAutoGenerated = true;
     gridViewDateTimeColumn3.IsVisible       = false;
     gridViewDateTimeColumn3.Name            = "created";
     gridViewDateTimeColumn3.ReadOnly        = true;
     gridViewTextBoxColumn4.FieldName        = "modifiedby";
     gridViewTextBoxColumn4.HeaderText       = "modifiedby";
     gridViewTextBoxColumn4.IsAutoGenerated  = true;
     gridViewTextBoxColumn4.IsVisible        = false;
     gridViewTextBoxColumn4.Name             = "modifiedby";
     gridViewTextBoxColumn4.ReadOnly         = true;
     gridViewCheckBoxColumn1.FieldName       = "adjusted";
     gridViewCheckBoxColumn1.HeaderText      = "adjusted";
     gridViewCheckBoxColumn1.IsAutoGenerated = true;
     gridViewCheckBoxColumn1.IsVisible       = false;
     gridViewCheckBoxColumn1.Name            = "adjusted";
     gridViewCheckBoxColumn1.ReadOnly        = true;
     this.radGridView1.MasterTemplate.Columns.AddRange(new Telerik.WinControls.UI.GridViewDataColumn[] {
         gridViewDateTimeColumn1,
         gridViewComboBoxColumn1,
         gridViewTextBoxColumn1,
         gridViewDecimalColumn1,
         gridViewDecimalColumn2,
         gridViewTextBoxColumn2,
         gridViewDecimalColumn3,
         gridViewDateTimeColumn2,
         gridViewTextBoxColumn3,
         gridViewDateTimeColumn3,
         gridViewTextBoxColumn4,
         gridViewCheckBoxColumn1
     });
     this.radGridView1.MasterTemplate.DataSource          = this.producttotalBindingSource;
     this.radGridView1.MasterTemplate.ShowRowHeaderColumn = false;
     this.radGridView1.MasterTemplate.ViewDefinition      = tableViewDefinition1;
     this.radGridView1.Name           = "radGridView1";
     this.radGridView1.ShowGroupPanel = false;
     this.radGridView1.Size           = new System.Drawing.Size(854, 357);
     this.radGridView1.TabIndex       = 0;
     this.radGridView1.Text           = "radGridView1";
     this.radGridView1.CellEndEdit   += new Telerik.WinControls.UI.GridViewCellEventHandler(this.radGridView1_CellEndEdit);
     //
     // producttotalBindingSource
     //
     this.producttotalBindingSource.DataMember = "producttotal";
     this.producttotalBindingSource.DataSource = this.sinarekDataSet;
     //
     // radGroupBox1
     //
     this.radGroupBox1.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
     this.radGroupBox1.Controls.Add(this.btnPrint);
     this.radGroupBox1.Controls.Add(this.radLabel2);
     this.radGroupBox1.Controls.Add(this.radLabel1);
     this.radGroupBox1.Controls.Add(this.dtpTanggal);
     this.radGroupBox1.Controls.Add(this.rddTipe);
     this.radGroupBox1.Dock          = System.Windows.Forms.DockStyle.Fill;
     this.radGroupBox1.Font          = new System.Drawing.Font("Segoe UI", 10F);
     this.radGroupBox1.GroupBoxStyle = Telerik.WinControls.UI.RadGroupBoxStyle.Office;
     this.radGroupBox1.HeaderText    = "";
     this.radGroupBox1.Location      = new System.Drawing.Point(0, 0);
     this.radGroupBox1.Name          = "radGroupBox1";
     this.radGroupBox1.Size          = new System.Drawing.Size(854, 74);
     this.radGroupBox1.TabIndex      = 1;
     //
     // btnPrint
     //
     this.btnPrint.Font     = new System.Drawing.Font("Segoe UI", 10F);
     this.btnPrint.Location = new System.Drawing.Point(353, 7);
     this.btnPrint.Name     = "btnPrint";
     this.btnPrint.Size     = new System.Drawing.Size(117, 26);
     this.btnPrint.TabIndex = 5;
     this.btnPrint.Text     = "&Print";
     this.btnPrint.Visible  = false;
     this.btnPrint.Click   += new System.EventHandler(this.btnPrint_Click);
     //
     // radLabel2
     //
     this.radLabel2.Location = new System.Drawing.Point(17, 39);
     this.radLabel2.Name     = "radLabel2";
     this.radLabel2.Size     = new System.Drawing.Size(33, 18);
     this.radLabel2.TabIndex = 4;
     this.radLabel2.Text     = "Tipe :";
     //
     // radLabel1
     //
     this.radLabel1.Location = new System.Drawing.Point(17, 10);
     this.radLabel1.Name     = "radLabel1";
     this.radLabel1.Size     = new System.Drawing.Size(52, 18);
     this.radLabel1.TabIndex = 3;
     this.radLabel1.Text     = "Tanggal :";
     //
     // dtpTanggal
     //
     this.dtpTanggal.CustomFormat  = "dd MMM yyyy";
     this.dtpTanggal.Enabled       = false;
     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(97, 9);
     this.dtpTanggal.Name          = "dtpTanggal";
     this.dtpTanggal.Size          = new System.Drawing.Size(148, 23);
     this.dtpTanggal.TabIndex      = 2;
     this.dtpTanggal.TabStop       = false;
     this.dtpTanggal.Text          = "18 Apr 2012";
     this.dtpTanggal.Value         = new System.DateTime(2012, 4, 18, 16, 35, 0, 511);
     this.dtpTanggal.ValueChanged += new System.EventHandler(this.dtpTanggal_ValueChanged);
     //
     // rddTipe
     //
     this.rddTipe.AutoCompleteDisplayMember = "Description";
     this.rddTipe.AutoCompleteValueMember   = "tipeid";
     this.rddTipe.DataSource            = this.tipeprodBindingSource;
     this.rddTipe.DescriptionTextMember = "Name";
     this.rddTipe.DisplayMember         = "Description";
     this.rddTipe.Enabled               = false;
     this.rddTipe.Font                  = new System.Drawing.Font("Segoe UI", 10F);
     this.rddTipe.Location              = new System.Drawing.Point(97, 39);
     this.rddTipe.Name                  = "rddTipe";
     this.rddTipe.Size                  = new System.Drawing.Size(177, 23);
     this.rddTipe.TabIndex              = 3;
     this.rddTipe.ValueMember           = "tipeid";
     this.rddTipe.SelectedValueChanged += new System.EventHandler(this.rddTipe_SelectedValueChanged);
     //
     // tipeprodBindingSource
     //
     this.tipeprodBindingSource.DataMember = "tipeprod";
     this.tipeprodBindingSource.DataSource = this.sinarekDataSet;
     //
     // staffBindingSource
     //
     this.staffBindingSource.DataMember = "staff";
     this.staffBindingSource.DataSource = this.fingermachDataSet;
     this.staffBindingSource.Filter     = "active = 1 and logname is not null";
     //
     // fingermachDataSet
     //
     this.fingermachDataSet.DataSetName             = "fingermachDataSet";
     this.fingermachDataSet.EnforceConstraints      = false;
     this.fingermachDataSet.SchemaSerializationMode = System.Data.SchemaSerializationMode.IncludeSchema;
     //
     // vproductbaseTableAdapter
     //
     this.vproductbaseTableAdapter.ClearBeforeFill = true;
     //
     // tipeprodTableAdapter
     //
     this.tipeprodTableAdapter.ClearBeforeFill = true;
     //
     // staffTableAdapter
     //
     this.staffTableAdapter.ClearBeforeFill = true;
     //
     // producttotalTableAdapter
     //
     this.producttotalTableAdapter.ClearBeforeFill = true;
     //
     // frmKoreksiStock
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize          = new System.Drawing.Size(854, 431);
     this.Controls.Add(this.radGroupBox1);
     this.Controls.Add(this.radGridView1);
     this.Font            = new System.Drawing.Font("Segoe UI", 10F);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
     this.Name            = "frmKoreksiStock";
     //
     //
     //
     this.RootElement.ApplyShapeToControl = true;
     this.Text      = "Stock Awal Barang";
     this.ThemeName = "ControlDefault";
     this.Load     += new System.EventHandler(this.frmLihatTotal_Load);
     ((System.ComponentModel.ISupportInitialize)(this.vproductbaseBindingSource)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.sinarekDataSet)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radGridView1.MasterTemplate)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radGridView1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.producttotalBindingSource)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radGroupBox1)).EndInit();
     this.radGroupBox1.ResumeLayout(false);
     this.radGroupBox1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.btnPrint)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dtpTanggal)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.rddTipe)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.tipeprodBindingSource)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.staffBindingSource)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.fingermachDataSet)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this)).EndInit();
     this.ResumeLayout(false);
 }
        /// <summary>
        /// Required method for Designer support - do not modify
        /// the contents of this method with the code editor.
        /// </summary>
        private void InitializeComponent()
        {
            this.components = new System.ComponentModel.Container();
            Telerik.WinControls.UI.GridViewComboBoxColumn gridViewComboBoxColumn1 = new Telerik.WinControls.UI.GridViewComboBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn1 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn2 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewCommandColumn gridViewCommandColumn1 = new Telerik.WinControls.UI.GridViewCommandColumn();
            Telerik.WinControls.UI.GridViewDecimalColumn gridViewDecimalColumn1 = new Telerik.WinControls.UI.GridViewDecimalColumn();
            Telerik.WinControls.Data.SortDescriptor sortDescriptor1 = new Telerik.WinControls.Data.SortDescriptor();
            this.radGroupBox2 = new Telerik.WinControls.UI.RadGroupBox();
            this.grdTimming = new Telerik.WinControls.UI.RadGridView();
            this.btnAdd = new Telerik.WinControls.UI.RadButton();
            this.radGroupBox1 = new Telerik.WinControls.UI.RadGroupBox();
            this.btnCancel = new Telerik.WinControls.UI.RadButton();
            this.radLabel3 = new Telerik.WinControls.UI.RadLabel();
            this.radLabel2 = new Telerik.WinControls.UI.RadLabel();
            this.tpTo = new Telerik.WinControls.UI.RadTimePicker();
            this.timmingBindingSource = new System.Windows.Forms.BindingSource(this.components);
            this.tpFrom = new Telerik.WinControls.UI.RadTimePicker();
            this.radLabel1 = new Telerik.WinControls.UI.RadLabel();
            this.comboDay = new Telerik.WinControls.UI.RadDropDownList();
            this.gbCalender = new Telerik.WinControls.UI.RadGroupBox();
            this.faMonthView = new FarsiLibrary.Win.Controls.FAMonthView();
            this.btnSave = new Telerik.WinControls.UI.RadButton();
            this.btnExit = new Telerik.WinControls.UI.RadButton();
            this.lblHolidayTitle = new System.Windows.Forms.Label();
            ((System.ComponentModel.ISupportInitialize)(this.radGroupBox2)).BeginInit();
            this.radGroupBox2.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.grdTimming)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.grdTimming.MasterTemplate)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.btnAdd)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radGroupBox1)).BeginInit();
            this.radGroupBox1.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.btnCancel)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel3)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel2)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.tpTo)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.timmingBindingSource)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.tpFrom)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.comboDay)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.gbCalender)).BeginInit();
            this.gbCalender.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.btnSave)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.btnExit)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
            this.SuspendLayout();
            // 
            // 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.Left) 
            | System.Windows.Forms.AnchorStyles.Right)));
            this.radGroupBox2.Controls.Add(this.grdTimming);
            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(12, 2);
            this.radGroupBox2.Name = "radGroupBox2";
            this.radGroupBox2.Padding = new System.Windows.Forms.Padding(2, 17, 2, 2);
            this.radGroupBox2.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
            // 
            // 
            // 
            this.radGroupBox2.RootElement.Padding = new System.Windows.Forms.Padding(2, 17, 2, 2);
            this.radGroupBox2.Size = new System.Drawing.Size(328, 382);
            this.radGroupBox2.TabIndex = 3;
            this.radGroupBox2.Text = "روز های کاری ذخیره شده";
            // 
            // grdTimming
            // 
            this.grdTimming.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.grdTimming.EnableHotTracking = false;
            this.grdTimming.Font = new System.Drawing.Font("B Nazanin", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
            this.grdTimming.Location = new System.Drawing.Point(5, 27);
            // 
            // grdTimming
            // 
            this.grdTimming.MasterTemplate.AllowAddNewRow = false;
            this.grdTimming.MasterTemplate.AllowCellContextMenu = false;
            this.grdTimming.MasterTemplate.AllowColumnChooser = false;
            this.grdTimming.MasterTemplate.AllowColumnHeaderContextMenu = false;
            this.grdTimming.MasterTemplate.AllowDeleteRow = false;
            this.grdTimming.MasterTemplate.AllowDragToGroup = false;
            this.grdTimming.MasterTemplate.AllowEditRow = false;
            this.grdTimming.MasterTemplate.AllowRowResize = false;
            this.grdTimming.MasterTemplate.AutoSizeColumnsMode = Telerik.WinControls.UI.GridViewAutoSizeColumnsMode.Fill;
            gridViewComboBoxColumn1.DataType = typeof(int);
            gridViewComboBoxColumn1.DisplayMember = null;
            gridViewComboBoxColumn1.FieldName = "DayName";
            gridViewComboBoxColumn1.HeaderText = "روز";
            gridViewComboBoxColumn1.Name = "column2";
            gridViewComboBoxColumn1.ValueMember = null;
            gridViewComboBoxColumn1.Width = 119;
            gridViewTextBoxColumn1.DataType = typeof(System.DateTime);
            gridViewTextBoxColumn1.FieldName = "From";
            gridViewTextBoxColumn1.FormatString = "{0: hh:mm}";
            gridViewTextBoxColumn1.HeaderText = "از";
            gridViewTextBoxColumn1.Name = "From";
            gridViewTextBoxColumn1.Width = 79;
            gridViewTextBoxColumn2.FieldName = "To";
            gridViewTextBoxColumn2.FormatString = "{0: hh:mm}";
            gridViewTextBoxColumn2.HeaderText = "تا";
            gridViewTextBoxColumn2.Name = "To";
            gridViewTextBoxColumn2.Width = 92;
            gridViewCommandColumn1.HeaderText = "حذف";
            gridViewCommandColumn1.MaxWidth = 30;
            gridViewCommandColumn1.Name = "column1";
            gridViewCommandColumn1.Width = 30;
            gridViewDecimalColumn1.DataType = typeof(int);
            gridViewDecimalColumn1.FieldName = "DayOfWeek";
            gridViewDecimalColumn1.HeaderText = "column3";
            gridViewDecimalColumn1.IsVisible = false;
            gridViewDecimalColumn1.Name = "column3";
            gridViewDecimalColumn1.SortOrder = Telerik.WinControls.UI.RadSortOrder.Ascending;
            gridViewDecimalColumn1.Width = 41;
            this.grdTimming.MasterTemplate.Columns.AddRange(new Telerik.WinControls.UI.GridViewDataColumn[] {
            gridViewComboBoxColumn1,
            gridViewTextBoxColumn1,
            gridViewTextBoxColumn2,
            gridViewCommandColumn1,
            gridViewDecimalColumn1});
            this.grdTimming.MasterTemplate.EnableGrouping = false;
            this.grdTimming.MasterTemplate.ShowFilteringRow = false;
            this.grdTimming.MasterTemplate.ShowRowHeaderColumn = false;
            sortDescriptor1.PropertyName = "column3";
            this.grdTimming.MasterTemplate.SortDescriptors.AddRange(new Telerik.WinControls.Data.SortDescriptor[] {
            sortDescriptor1});
            this.grdTimming.Name = "grdTimming";
            this.grdTimming.ReadOnly = true;
            this.grdTimming.ShowCellErrors = false;
            this.grdTimming.ShowGroupPanel = false;
            this.grdTimming.ShowNoDataText = false;
            this.grdTimming.ShowRowErrors = false;
            this.grdTimming.Size = new System.Drawing.Size(318, 350);
            this.grdTimming.TabIndex = 0;
            this.grdTimming.Text = "radGridView1";
            this.grdTimming.CellFormatting += new Telerik.WinControls.UI.CellFormattingEventHandler(this.grdTimming_CellFormatting);
            this.grdTimming.CurrentRowChanging += new Telerik.WinControls.UI.CurrentRowChangingEventHandler(this.grdTimming_CurrentRowChanging);
            this.grdTimming.SelectionChanged += new System.EventHandler(this.grdTimming_SelectionChanged);
            this.grdTimming.CommandCellClick += new Telerik.WinControls.UI.CommandCellClickEventHandler(this.grdTimming_CommandCellClick);
            this.grdTimming.KeyDown += new System.Windows.Forms.KeyEventHandler(this.comp_KeyDown);
            // 
            // 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(101, 109);
            this.btnAdd.Name = "btnAdd";
            this.btnAdd.RightToLeft = System.Windows.Forms.RightToLeft.No;
            this.btnAdd.Size = new System.Drawing.Size(90, 35);
            this.btnAdd.TabIndex = 3;
            this.btnAdd.Text = "افزودن   ";
            this.btnAdd.TextAlignment = System.Drawing.ContentAlignment.MiddleRight;
            this.btnAdd.Click += new System.EventHandler(this.btnAdd_Click);
            // 
            // 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.Right)));
            this.radGroupBox1.Controls.Add(this.btnAdd);
            this.radGroupBox1.Controls.Add(this.btnCancel);
            this.radGroupBox1.Controls.Add(this.radLabel3);
            this.radGroupBox1.Controls.Add(this.radLabel2);
            this.radGroupBox1.Controls.Add(this.tpTo);
            this.radGroupBox1.Controls.Add(this.tpFrom);
            this.radGroupBox1.Controls.Add(this.radLabel1);
            this.radGroupBox1.Controls.Add(this.comboDay);
            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(346, 2);
            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(200, 149);
            this.radGroupBox1.TabIndex = 2;
            this.radGroupBox1.Text = "تعریف روز های کاری";
            // 
            // 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(5, 109);
            this.btnCancel.Name = "btnCancel";
            this.btnCancel.RightToLeft = System.Windows.Forms.RightToLeft.No;
            this.btnCancel.Size = new System.Drawing.Size(90, 35);
            this.btnCancel.TabIndex = 4;
            this.btnCancel.Text = "جدید   ";
            this.btnCancel.TextAlignment = System.Drawing.ContentAlignment.MiddleRight;
            this.btnCancel.Click += new System.EventHandler(this.btnCancel_Click);
            // 
            // radLabel3
            // 
            this.radLabel3.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) 
            | System.Windows.Forms.AnchorStyles.Right)));
            this.radLabel3.Font = new System.Drawing.Font("B Koodak", 11.25F, System.Drawing.FontStyle.Bold);
            this.radLabel3.Location = new System.Drawing.Point(139, 52);
            this.radLabel3.Name = "radLabel3";
            this.radLabel3.Size = new System.Drawing.Size(55, 30);
            this.radLabel3.TabIndex = 2;
            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.Right)));
            this.radLabel2.Font = new System.Drawing.Font("B Koodak", 11.25F, System.Drawing.FontStyle.Bold);
            this.radLabel2.Location = new System.Drawing.Point(139, 79);
            this.radLabel2.Name = "radLabel2";
            this.radLabel2.Size = new System.Drawing.Size(54, 30);
            this.radLabel2.TabIndex = 4;
            this.radLabel2.Text = "تا ساعت:";
            this.radLabel2.TextAlignment = System.Drawing.ContentAlignment.TopRight;
            // 
            // tpTo
            // 
            this.tpTo.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) 
            | System.Windows.Forms.AnchorStyles.Right)));
            this.tpTo.DataBindings.Add(new System.Windows.Forms.Binding("Value", this.timmingBindingSource, "To", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged, null, "t"));
            this.tpTo.Font = new System.Drawing.Font("B Nazanin", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
            this.tpTo.HeadersHeight = 19;
            this.tpTo.Location = new System.Drawing.Point(5, 79);
            this.tpTo.Name = "tpTo";
            this.tpTo.Size = new System.Drawing.Size(130, 25);
            this.tpTo.TabIndex = 2;
            this.tpTo.TabStop = false;
            this.tpTo.Text = "radTimePicker2";
            this.tpTo.Value = new System.DateTime(2012, 7, 31, 11, 15, 6, 0);
            this.tpTo.KeyDown += new System.Windows.Forms.KeyEventHandler(this.comp_KeyDown);
            // 
            // timmingBindingSource
            // 
            this.timmingBindingSource.DataSource = typeof(Shayan.Data.Timming);
            // 
            // tpFrom
            // 
            this.tpFrom.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) 
            | System.Windows.Forms.AnchorStyles.Right)));
            this.tpFrom.DataBindings.Add(new System.Windows.Forms.Binding("Value", this.timmingBindingSource, "from", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged, null, "t"));
            this.tpFrom.Font = new System.Drawing.Font("B Nazanin", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
            this.tpFrom.HeadersHeight = 19;
            this.tpFrom.Location = new System.Drawing.Point(5, 53);
            this.tpFrom.Name = "tpFrom";
            this.tpFrom.Size = new System.Drawing.Size(130, 25);
            this.tpFrom.TabIndex = 1;
            this.tpFrom.TabStop = false;
            this.tpFrom.Text = "radTimePicker1";
            this.tpFrom.Value = new System.DateTime(2012, 7, 31, 11, 14, 20, 0);
            this.tpFrom.KeyDown += new System.Windows.Forms.KeyEventHandler(this.comp_KeyDown);
            // 
            // 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 Koodak", 11.25F, System.Drawing.FontStyle.Bold);
            this.radLabel1.Location = new System.Drawing.Point(140, 25);
            this.radLabel1.Name = "radLabel1";
            this.radLabel1.Size = new System.Drawing.Size(56, 30);
            this.radLabel1.TabIndex = 1;
            this.radLabel1.Text = "روز هفته:";
            this.radLabel1.TextAlignment = System.Drawing.ContentAlignment.TopRight;
            // 
            // comboDay
            // 
            this.comboDay.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) 
            | System.Windows.Forms.AnchorStyles.Right)));
            this.comboDay.DropDownAnimationEnabled = true;
            this.comboDay.DropDownStyle = Telerik.WinControls.RadDropDownStyle.DropDownList;
            this.comboDay.Font = new System.Drawing.Font("B Nazanin", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
            this.comboDay.Location = new System.Drawing.Point(5, 27);
            this.comboDay.MaxDropDownItems = 0;
            this.comboDay.Name = "comboDay";
            this.comboDay.ShowImageInEditorArea = true;
            this.comboDay.Size = new System.Drawing.Size(130, 25);
            this.comboDay.TabIndex = 0;
            this.comboDay.KeyDown += new System.Windows.Forms.KeyEventHandler(this.comp_KeyDown);
            // 
            // gbCalender
            // 
            this.gbCalender.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
            this.gbCalender.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
            this.gbCalender.Controls.Add(this.lblHolidayTitle);
            this.gbCalender.Controls.Add(this.faMonthView);
            this.gbCalender.Font = new System.Drawing.Font("B Nazanin", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
            this.gbCalender.FooterImageIndex = -1;
            this.gbCalender.FooterImageKey = "";
            this.gbCalender.HeaderImageIndex = -1;
            this.gbCalender.HeaderImageKey = "";
            this.gbCalender.HeaderMargin = new System.Windows.Forms.Padding(0);
            this.gbCalender.HeaderText = "ثبت تعطیلات";
            this.gbCalender.Location = new System.Drawing.Point(346, 155);
            this.gbCalender.Name = "gbCalender";
            this.gbCalender.Padding = new System.Windows.Forms.Padding(2, 18, 2, 2);
            this.gbCalender.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
            // 
            // 
            // 
            this.gbCalender.RootElement.MinSize = new System.Drawing.Size(0, 0);
            this.gbCalender.RootElement.Padding = new System.Windows.Forms.Padding(2, 18, 2, 2);
            this.gbCalender.Size = new System.Drawing.Size(198, 229);
            this.gbCalender.TabIndex = 4;
            this.gbCalender.Text = "ثبت تعطیلات";
            // 
            // faMonthView
            // 
            this.faMonthView.Anchor = System.Windows.Forms.AnchorStyles.None;
            this.faMonthView.IsNull = false;
            this.faMonthView.Location = new System.Drawing.Point(9, 26);
            this.faMonthView.Name = "faMonthView";
            this.faMonthView.SelectedDateTime = new System.DateTime(2012, 8, 1, 11, 43, 56, 593);
            this.faMonthView.TabIndex = 0;
            this.faMonthView.DrawCurrentDay += new FarsiLibrary.Win.Events.CustomDrawDayEventHandler(this.faMonthView_DrawCurrentDay);
            this.faMonthView.ButtonClicked += new FarsiLibrary.Win.Events.CalendarButtonClickedEventHandler(this.faMonthView_ButtonClicked);
            // 
            // 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(447, 391);
            this.btnSave.Name = "btnSave";
            this.btnSave.RightToLeft = System.Windows.Forms.RightToLeft.No;
            this.btnSave.Size = new System.Drawing.Size(90, 35);
            this.btnSave.TabIndex = 0;
            this.btnSave.Text = "ذخیره   ";
            this.btnSave.TextAlignment = System.Drawing.ContentAlignment.MiddleRight;
            this.btnSave.Click += new System.EventHandler(this.btnSave_Click);
            // 
            // btnExit
            // 
            this.btnExit.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
            this.btnExit.Font = new System.Drawing.Font("B Nazanin", 10.5F, System.Drawing.FontStyle.Bold);
            this.btnExit.Location = new System.Drawing.Point(351, 391);
            this.btnExit.Name = "btnExit";
            this.btnExit.RightToLeft = System.Windows.Forms.RightToLeft.No;
            this.btnExit.Size = new System.Drawing.Size(90, 35);
            this.btnExit.TabIndex = 1;
            this.btnExit.Text = "انصراف   ";
            this.btnExit.TextAlignment = System.Drawing.ContentAlignment.MiddleRight;
            this.btnExit.Click += new System.EventHandler(this.btnExit_Click);
            // 
            // lblHolidayTitle
            // 
            this.lblHolidayTitle.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(192)))), ((int)(((byte)(0)))));
            this.lblHolidayTitle.Dock = System.Windows.Forms.DockStyle.Bottom;
            this.lblHolidayTitle.ForeColor = System.Drawing.SystemColors.Desktop;
            this.lblHolidayTitle.Location = new System.Drawing.Point(2, 208);
            this.lblHolidayTitle.Name = "lblHolidayTitle";
            this.lblHolidayTitle.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
            this.lblHolidayTitle.Size = new System.Drawing.Size(194, 19);
            this.lblHolidayTitle.TabIndex = 1;
            this.lblHolidayTitle.TextAlign = System.Drawing.ContentAlignment.TopCenter;
            // 
            // FormDefineOfficeTimming
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.ClientSize = new System.Drawing.Size(558, 428);
            this.Controls.Add(this.btnExit);
            this.Controls.Add(this.btnSave);
            this.Controls.Add(this.gbCalender);
            this.Controls.Add(this.radGroupBox2);
            this.Controls.Add(this.radGroupBox1);
            this.Font = new System.Drawing.Font("B Nazanin", 9.3F, System.Drawing.FontStyle.Bold);
            this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
            this.MaximizeBox = false;
            this.MinimumSize = new System.Drawing.Size(540, 453);
            this.Name = "FormDefineOfficeTimming";
            // 
            // 
            // 
            this.RootElement.ApplyShapeToControl = true;
            this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
            this.Text = "ساعات کاری";
            ((System.ComponentModel.ISupportInitialize)(this.radGroupBox2)).EndInit();
            this.radGroupBox2.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.grdTimming.MasterTemplate)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.grdTimming)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.btnAdd)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radGroupBox1)).EndInit();
            this.radGroupBox1.ResumeLayout(false);
            this.radGroupBox1.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.btnCancel)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel3)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel2)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.tpTo)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.timmingBindingSource)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.tpFrom)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.comboDay)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.gbCalender)).EndInit();
            this.gbCalender.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.btnSave)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.btnExit)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this)).EndInit();
            this.ResumeLayout(false);

        }
Example #37
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmInyeccion));
     Telerik.WinControls.UI.GridViewTextBoxColumn   gridViewTextBoxColumn1  = new Telerik.WinControls.UI.GridViewTextBoxColumn();
     Telerik.WinControls.UI.GridViewDateTimeColumn  gridViewDateTimeColumn1 = new Telerik.WinControls.UI.GridViewDateTimeColumn();
     Telerik.WinControls.UI.GridViewTextBoxColumn   gridViewTextBoxColumn2  = new Telerik.WinControls.UI.GridViewTextBoxColumn();
     Telerik.WinControls.UI.GridViewComboBoxColumn  gridViewComboBoxColumn1 = new Telerik.WinControls.UI.GridViewComboBoxColumn();
     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.GridViewTimeSpanColumn  gridViewTimeSpanColumn1 = new Telerik.WinControls.UI.GridViewTimeSpanColumn();
     Telerik.WinControls.UI.GridViewTimeSpanColumn  gridViewTimeSpanColumn2 = new Telerik.WinControls.UI.GridViewTimeSpanColumn();
     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.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.GridViewCheckBoxColumn  gridViewCheckBoxColumn5 = new Telerik.WinControls.UI.GridViewCheckBoxColumn();
     Telerik.WinControls.UI.GridViewCheckBoxColumn  gridViewCheckBoxColumn6 = new Telerik.WinControls.UI.GridViewCheckBoxColumn();
     Telerik.WinControls.UI.GridViewCheckBoxColumn  gridViewCheckBoxColumn7 = new Telerik.WinControls.UI.GridViewCheckBoxColumn();
     Telerik.WinControls.UI.GridViewCheckBoxColumn  gridViewCheckBoxColumn8 = 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.btnGuardar           = new Telerik.WinControls.UI.CommandBarButton();
     this.commandBarSeparator1 = 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.cboColores           = new Telerik.WinControls.UI.RadDropDownList();
     this.txtOP   = new Telerik.WinControls.UI.RadTextBox();
     this.label2  = new System.Windows.Forms.Label();
     this.label1  = new System.Windows.Forms.Label();
     this.gvDatos = new Telerik.WinControls.UI.RadGridView();
     this.commandBarStripElement2 = new Telerik.WinControls.UI.CommandBarStripElement();
     this.commandBarStripElement3 = new Telerik.WinControls.UI.CommandBarStripElement();
     this.materialTealTheme1      = new Telerik.WinControls.Themes.MaterialTealTheme();
     ((System.ComponentModel.ISupportInitialize)(this.radCommandBar1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radPanel1)).BeginInit();
     this.radPanel1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.cboColores)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtOP)).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(791, 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.btnGuardar,
         this.commandBarSeparator1,
         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;
     //
     // 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;
     //
     // 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("Arial Rounded MT Bold", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.commandBarLabel1.ForeColor           = System.Drawing.Color.Navy;
     this.commandBarLabel1.Name                = "commandBarLabel1";
     this.commandBarLabel1.StretchHorizontally = true;
     this.commandBarLabel1.Text                = "PRODUCCIÓN INYECCIÓN";
     //
     // radPanel1
     //
     this.radPanel1.Controls.Add(this.cboColores);
     this.radPanel1.Controls.Add(this.txtOP);
     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(791, 71);
     this.radPanel1.TabIndex = 1;
     //
     // cboColores
     //
     this.cboColores.AutoCompleteMode      = System.Windows.Forms.AutoCompleteMode.SuggestAppend;
     this.cboColores.Location              = new System.Drawing.Point(64, 42);
     this.cboColores.Name                  = "cboColores";
     this.cboColores.Size                  = new System.Drawing.Size(175, 20);
     this.cboColores.TabIndex              = 2;
     this.cboColores.SelectedIndexChanged += new Telerik.WinControls.UI.Data.PositionChangedEventHandler(this.cboColores_SelectedIndexChanged);
     //
     // txtOP
     //
     this.txtOP.Location  = new System.Drawing.Point(64, 16);
     this.txtOP.Name      = "txtOP";
     this.txtOP.Size      = new System.Drawing.Size(133, 20);
     this.txtOP.TabIndex  = 1;
     this.txtOP.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     this.txtOP.KeyDown  += new System.Windows.Forms.KeyEventHandler(this.txtOP_KeyDown);
     this.txtOP.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.txtOP_KeyPress);
     this.txtOP.Leave    += new System.EventHandler(this.txtOP_Leave);
     //
     // label2
     //
     this.label2.AutoSize = true;
     this.label2.Location = new System.Drawing.Point(22, 46);
     this.label2.Name     = "label2";
     this.label2.Size     = new System.Drawing.Size(38, 13);
     this.label2.TabIndex = 1;
     this.label2.Text     = "Color:";
     //
     // label1
     //
     this.label1.AutoSize = true;
     this.label1.Location = new System.Drawing.Point(35, 20);
     this.label1.Name     = "label1";
     this.label1.Size     = new System.Drawing.Size(25, 13);
     this.label1.TabIndex = 0;
     this.label1.Text     = "OP:";
     //
     // gvDatos
     //
     this.gvDatos.AutoScroll   = true;
     this.gvDatos.Dock         = System.Windows.Forms.DockStyle.Fill;
     this.gvDatos.EnterKeyMode = Telerik.WinControls.UI.RadGridViewEnterKeyMode.EnterMovesToNextCell;
     this.gvDatos.Location     = new System.Drawing.Point(0, 124);
     //
     //
     //
     this.gvDatos.MasterTemplate.AllowColumnReorder = false;
     this.gvDatos.MasterTemplate.AllowDeleteRow     = false;
     this.gvDatos.MasterTemplate.AllowRowResize     = false;
     this.gvDatos.MasterTemplate.AutoExpandGroups   = true;
     gridViewTextBoxColumn1.FieldName         = "Id";
     gridViewTextBoxColumn1.HeaderText        = "Id";
     gridViewTextBoxColumn1.IsVisible         = false;
     gridViewTextBoxColumn1.Name              = "Id";
     gridViewDateTimeColumn1.FieldName        = "Fecha";
     gridViewDateTimeColumn1.Format           = System.Windows.Forms.DateTimePickerFormat.Short;
     gridViewDateTimeColumn1.FormatString     = "{0:dd/MM/yyyy}";
     gridViewDateTimeColumn1.HeaderText       = "Fecha";
     gridViewDateTimeColumn1.MaxWidth         = 90;
     gridViewDateTimeColumn1.MinWidth         = 80;
     gridViewDateTimeColumn1.Name             = "Fecha";
     gridViewDateTimeColumn1.TextAlignment    = System.Drawing.ContentAlignment.MiddleCenter;
     gridViewDateTimeColumn1.Width            = 80;
     gridViewTextBoxColumn2.FieldName         = "Lista";
     gridViewTextBoxColumn2.HeaderText        = "Lista";
     gridViewTextBoxColumn2.MaxWidth          = 120;
     gridViewTextBoxColumn2.MinWidth          = 100;
     gridViewTextBoxColumn2.Name              = "Lista";
     gridViewTextBoxColumn2.Width             = 100;
     gridViewComboBoxColumn1.AutoCompleteMode = System.Windows.Forms.AutoCompleteMode.SuggestAppend;
     gridViewComboBoxColumn1.FieldName        = "Turno";
     gridViewComboBoxColumn1.HeaderText       = "Turno";
     gridViewComboBoxColumn1.MaxWidth         = 120;
     gridViewComboBoxColumn1.MinWidth         = 100;
     gridViewComboBoxColumn1.Name             = "Turno";
     gridViewComboBoxColumn1.Width            = 100;
     gridViewDecimalColumn1.DecimalPlaces     = 0;
     gridViewDecimalColumn1.FieldName         = "Piezas";
     gridViewDecimalColumn1.FormatString      = "{0:N0}";
     gridViewDecimalColumn1.HeaderText        = "Piezas";
     gridViewDecimalColumn1.MaxWidth          = 100;
     gridViewDecimalColumn1.Minimum           = new decimal(new int[] {
         0,
         0,
         0,
         0
     });
     gridViewDecimalColumn1.MinWidth           = 90;
     gridViewDecimalColumn1.Name               = "Piezas";
     gridViewDecimalColumn1.ShowUpDownButtons  = false;
     gridViewDecimalColumn1.ThousandsSeparator = true;
     gridViewDecimalColumn1.Width              = 90;
     gridViewDecimalColumn2.FieldName          = "Virgen";
     gridViewDecimalColumn2.FormatString       = "{0:N2}";
     gridViewDecimalColumn2.HeaderText         = "Virgen";
     gridViewDecimalColumn2.Maximum            = new decimal(new int[] {
         100,
         0,
         0,
         0
     });
     gridViewDecimalColumn2.MaxWidth = 60;
     gridViewDecimalColumn2.Minimum  = new decimal(new int[] {
         0,
         0,
         0,
         0
     });
     gridViewDecimalColumn2.MinWidth          = 80;
     gridViewDecimalColumn2.Name              = "Virgen";
     gridViewDecimalColumn2.ShowUpDownButtons = false;
     gridViewDecimalColumn2.Width             = 60;
     gridViewDecimalColumn3.FieldName         = "Remolido";
     gridViewDecimalColumn3.FormatString      = "{0:N2}";
     gridViewDecimalColumn3.HeaderText        = "Remolido";
     gridViewDecimalColumn3.Maximum           = new decimal(new int[] {
         100,
         0,
         0,
         0
     });
     gridViewDecimalColumn3.MaxWidth = 60;
     gridViewDecimalColumn3.Minimum  = new decimal(new int[] {
         0,
         0,
         0,
         0
     });
     gridViewDecimalColumn3.MinWidth          = 80;
     gridViewDecimalColumn3.Name              = "Remolido";
     gridViewDecimalColumn3.ShowUpDownButtons = false;
     gridViewDecimalColumn3.Width             = 60;
     gridViewDecimalColumn4.FieldName         = "Master";
     gridViewDecimalColumn4.FormatString      = "{0:N2}";
     gridViewDecimalColumn4.HeaderText        = "Master";
     gridViewDecimalColumn4.Maximum           = new decimal(new int[] {
         100,
         0,
         0,
         0
     });
     gridViewDecimalColumn4.MaxWidth = 60;
     gridViewDecimalColumn4.Minimum  = new decimal(new int[] {
         0,
         0,
         0,
         0
     });
     gridViewDecimalColumn4.MinWidth          = 80;
     gridViewDecimalColumn4.Name              = "Master";
     gridViewDecimalColumn4.ShowUpDownButtons = false;
     gridViewDecimalColumn4.Width             = 60;
     gridViewTimeSpanColumn1.FieldName        = "Inicio";
     gridViewTimeSpanColumn1.Format           = "hh:mm";
     gridViewTimeSpanColumn1.FormatString     = "hh:mm";
     gridViewTimeSpanColumn1.HeaderText       = "Hora Inicial";
     gridViewTimeSpanColumn1.MaxWidth         = 60;
     gridViewTimeSpanColumn1.MinWidth         = 60;
     gridViewTimeSpanColumn1.Name             = "Inicio";
     gridViewTimeSpanColumn1.TextAlignment    = System.Drawing.ContentAlignment.MiddleCenter;
     gridViewTimeSpanColumn1.Width            = 60;
     gridViewTimeSpanColumn1.WrapText         = true;
     gridViewTimeSpanColumn2.FieldName        = "Fin";
     gridViewTimeSpanColumn2.Format           = "hh:mm";
     gridViewTimeSpanColumn2.FormatString     = "hh:mm";
     gridViewTimeSpanColumn2.HeaderText       = "Hora Final";
     gridViewTimeSpanColumn2.MaxWidth         = 50;
     gridViewTimeSpanColumn2.MinWidth         = 50;
     gridViewTimeSpanColumn2.Name             = "Fin";
     gridViewTimeSpanColumn2.TextAlignment    = System.Drawing.ContentAlignment.MiddleCenter;
     gridViewTimeSpanColumn2.WrapText         = true;
     gridViewDecimalColumn5.DecimalPlaces     = 0;
     gridViewDecimalColumn5.FieldName         = "Real";
     gridViewDecimalColumn5.FormatString      = "{0:N0}";
     gridViewDecimalColumn5.HeaderText        = "Piezas Reales";
     gridViewDecimalColumn5.MaxWidth          = 71;
     gridViewDecimalColumn5.Minimum           = new decimal(new int[] {
         0,
         0,
         0,
         0
     });
     gridViewDecimalColumn5.MinWidth           = 80;
     gridViewDecimalColumn5.Name               = "Real";
     gridViewDecimalColumn5.ThousandsSeparator = true;
     gridViewDecimalColumn5.Width              = 71;
     gridViewDecimalColumn5.WrapText           = true;
     gridViewDecimalColumn6.FieldName          = "Muestra";
     gridViewDecimalColumn6.FormatString       = "{0:N0}";
     gridViewDecimalColumn6.HeaderText         = "Total Muestra";
     gridViewDecimalColumn6.Minimum            = new decimal(new int[] {
         0,
         0,
         0,
         0
     });
     gridViewDecimalColumn6.Name                   = "Muestra";
     gridViewDecimalColumn6.ReadOnly               = true;
     gridViewDecimalColumn6.ThousandsSeparator     = true;
     gridViewDecimalColumn6.WrapText               = true;
     gridViewDecimalColumn7.EnableExpressionEditor = false;
     gridViewDecimalColumn7.Expression             = "";
     gridViewDecimalColumn7.FieldName              = "Porcentaje";
     gridViewDecimalColumn7.FormatString           = "{0:N2}";
     gridViewDecimalColumn7.HeaderText             = "% Muestreo";
     gridViewDecimalColumn7.MaxWidth               = 60;
     gridViewDecimalColumn7.Minimum                = new decimal(new int[] {
         0,
         0,
         0,
         0
     });
     gridViewDecimalColumn7.MinWidth      = 60;
     gridViewDecimalColumn7.Name          = "Porcentaje";
     gridViewDecimalColumn7.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
     gridViewDecimalColumn7.Width         = 60;
     gridViewDecimalColumn7.WrapText      = true;
     gridViewCheckBoxColumn1.FieldName    = "Cav1";
     gridViewCheckBoxColumn1.HeaderText   = "Cavidad 1";
     gridViewCheckBoxColumn1.MaxWidth     = 60;
     gridViewCheckBoxColumn1.MinWidth     = 60;
     gridViewCheckBoxColumn1.Name         = "Cav1";
     gridViewCheckBoxColumn1.Width        = 60;
     gridViewCheckBoxColumn2.FieldName    = "Cav2";
     gridViewCheckBoxColumn2.HeaderText   = "Cavidad 2";
     gridViewCheckBoxColumn2.MaxWidth     = 60;
     gridViewCheckBoxColumn2.MinWidth     = 60;
     gridViewCheckBoxColumn2.Name         = "Cav2";
     gridViewCheckBoxColumn2.Width        = 60;
     gridViewCheckBoxColumn3.FieldName    = "Cav3";
     gridViewCheckBoxColumn3.HeaderText   = "Cavidad 3";
     gridViewCheckBoxColumn3.MaxWidth     = 60;
     gridViewCheckBoxColumn3.MinWidth     = 60;
     gridViewCheckBoxColumn3.Name         = "Cav3";
     gridViewCheckBoxColumn3.Width        = 60;
     gridViewCheckBoxColumn4.FieldName    = "Cav4";
     gridViewCheckBoxColumn4.HeaderText   = "Cavidad 4";
     gridViewCheckBoxColumn4.MaxWidth     = 60;
     gridViewCheckBoxColumn4.MinWidth     = 60;
     gridViewCheckBoxColumn4.Name         = "Cav4";
     gridViewCheckBoxColumn4.Width        = 60;
     gridViewCheckBoxColumn5.FieldName    = "Cav5";
     gridViewCheckBoxColumn5.HeaderText   = "Cavidad 5";
     gridViewCheckBoxColumn5.MaxWidth     = 60;
     gridViewCheckBoxColumn5.MinWidth     = 60;
     gridViewCheckBoxColumn5.Name         = "Cav5";
     gridViewCheckBoxColumn5.Width        = 60;
     gridViewCheckBoxColumn6.FieldName    = "Cav6";
     gridViewCheckBoxColumn6.HeaderText   = "Cavidad 6";
     gridViewCheckBoxColumn6.MaxWidth     = 60;
     gridViewCheckBoxColumn6.MinWidth     = 60;
     gridViewCheckBoxColumn6.Name         = "Cav6";
     gridViewCheckBoxColumn6.Width        = 60;
     gridViewCheckBoxColumn7.FieldName    = "Cav7";
     gridViewCheckBoxColumn7.HeaderText   = "Cavidad 7";
     gridViewCheckBoxColumn7.MaxWidth     = 60;
     gridViewCheckBoxColumn7.MinWidth     = 60;
     gridViewCheckBoxColumn7.Name         = "Cav7";
     gridViewCheckBoxColumn7.Width        = 60;
     gridViewCheckBoxColumn8.FieldName    = "Cav8";
     gridViewCheckBoxColumn8.HeaderText   = "Cavidad 8";
     gridViewCheckBoxColumn8.MaxWidth     = 60;
     gridViewCheckBoxColumn8.MinWidth     = 60;
     gridViewCheckBoxColumn8.Name         = "Cav8";
     gridViewCheckBoxColumn8.Width        = 60;
     this.gvDatos.MasterTemplate.Columns.AddRange(new Telerik.WinControls.UI.GridViewDataColumn[] {
         gridViewTextBoxColumn1,
         gridViewDateTimeColumn1,
         gridViewTextBoxColumn2,
         gridViewComboBoxColumn1,
         gridViewDecimalColumn1,
         gridViewDecimalColumn2,
         gridViewDecimalColumn3,
         gridViewDecimalColumn4,
         gridViewTimeSpanColumn1,
         gridViewTimeSpanColumn2,
         gridViewDecimalColumn5,
         gridViewDecimalColumn6,
         gridViewDecimalColumn7,
         gridViewCheckBoxColumn1,
         gridViewCheckBoxColumn2,
         gridViewCheckBoxColumn3,
         gridViewCheckBoxColumn4,
         gridViewCheckBoxColumn5,
         gridViewCheckBoxColumn6,
         gridViewCheckBoxColumn7,
         gridViewCheckBoxColumn8
     });
     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.NewRowEnterKeyMode = Telerik.WinControls.UI.RadGridViewNewRowEnterKeyMode.EnterMovesToNextCell;
     this.gvDatos.ShowNoDataText     = false;
     this.gvDatos.Size     = new System.Drawing.Size(791, 257);
     this.gvDatos.TabIndex = 2;
     //
     // commandBarStripElement2
     //
     this.commandBarStripElement2.DisplayName = "commandBarStripElement2";
     this.commandBarStripElement2.Name        = "commandBarStripElement2";
     //
     // commandBarStripElement3
     //
     this.commandBarStripElement3.DisplayName = "commandBarStripElement3";
     this.commandBarStripElement3.Name        = "commandBarStripElement3";
     //
     // frmInyeccion
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize          = new System.Drawing.Size(791, 381);
     this.Controls.Add(this.gvDatos);
     this.Controls.Add(this.radPanel1);
     this.Controls.Add(this.radCommandBar1);
     this.Name = "frmInyeccion";
     //
     //
     //
     this.RootElement.ApplyShapeToControl = true;
     this.ShowIcon  = false;
     this.Text      = "PRODUCCIÓN INYECCIÓN";
     this.ThemeName = "MaterialTeal";
     this.Load     += new System.EventHandler(this.frmInyeccion_Load);
     ((System.ComponentModel.ISupportInitialize)(this.radCommandBar1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radPanel1)).EndInit();
     this.radPanel1.ResumeLayout(false);
     this.radPanel1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.cboColores)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtOP)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvDatos.MasterTemplate)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvDatos)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this)).EndInit();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Example #38
0
        private void FormatGridServicios()
        {
            try
            {
                Telerik.WinControls.UI.Localization.RadGridLocalizationProvider.CurrentProvider = new Infrastructure.WinForms.Controls.MySpanishRadGridLocalizationProvider();
                this.grdItemsServicio.Columns.Clear();
                this.grdItemsServicio.AllowAddNewRow = false;

                //Descripción del servicio
                Telerik.WinControls.UI.GridViewComboBoxColumn _servicio = new Telerik.WinControls.UI.GridViewComboBoxColumn();
                _servicio.Name          = "SERV_Codigo";
                _servicio.HeaderText    = "Servicio";
                _servicio.FieldName     = "SERV_CodigoStr";
                _servicio.ValueMember   = "SERV_CodigoStr";
                _servicio.DisplayMember = "SERV_Nombre_SPA";
                _servicio.DataSource    = Presenter.ListServicio;
                _servicio.DataType      = typeof(System.String);
                //_servicio.FilteringMode = Telerik.WinControls.UI.GridViewFilteringMode.DisplayMember;
                //_servicio.AutoCompleteMode = AutoCompleteMode.SuggestAppend;
                //_servicio.DropDownStyle = Telerik.WinControls.RadDropDownStyle.DropDown;
                this.grdItemsServicio.Columns.Add(_servicio);


                //Cantidad
                Telerik.WinControls.UI.GridViewDecimalColumn _cantidad = new Telerik.WinControls.UI.GridViewDecimalColumn();
                _cantidad.Name          = "DDOV_Cantidad";
                _cantidad.HeaderText    = "Cantidad";
                _cantidad.FieldName     = "DDOV_Cantidad";
                _cantidad.DecimalPlaces = 2;
                _cantidad.Minimum       = (Decimal)0.00;
                this.grdItemsServicio.Columns.Add(_cantidad);
                //Precio Unitario
                Telerik.WinControls.UI.GridViewDecimalColumn _precio = new Telerik.WinControls.UI.GridViewDecimalColumn();
                _precio.Name          = "DDOV_PrecioUnitario";
                _precio.HeaderText    = "Precio Unitario";
                _precio.FieldName     = "DDOV_PrecioUnitario";
                _precio.DecimalPlaces = 2;
                _precio.Minimum       = (Decimal)0.00;
                this.grdItemsServicio.Columns.Add(_precio);
                //Afecto a IGV (no editable)
                Telerik.WinControls.UI.GridViewCheckBoxColumn _afectoIGV = new Telerik.WinControls.UI.GridViewCheckBoxColumn();
                _afectoIGV.Name       = "SERV_AfeIgv";
                _afectoIGV.HeaderText = "Afecto IGV";
                _afectoIGV.FieldName  = "SERV_AfeIgv";
                this.grdItemsServicio.Columns.Add(_afectoIGV);
                //Impuesto
                Telerik.WinControls.UI.GridViewDecimalColumn _impuesto = new Telerik.WinControls.UI.GridViewDecimalColumn();
                _impuesto.Name          = "DDOV_Impuesto1";
                _impuesto.HeaderText    = "IGV";
                _impuesto.FieldName     = "DDOV_Impuesto1";
                _impuesto.DecimalPlaces = 2;
                _impuesto.Minimum       = (Decimal)0.00;
                this.grdItemsServicio.Columns.Add(_impuesto);
                //Importe de Venta
                Telerik.WinControls.UI.GridViewDecimalColumn _importeingreso = new Telerik.WinControls.UI.GridViewDecimalColumn();
                _importeingreso.Name          = "DDOV_ValorVenta";
                _importeingreso.HeaderText    = "Importe";
                _importeingreso.FieldName     = "DDOV_ValorVenta";
                _importeingreso.DecimalPlaces = 2;
                _importeingreso.Minimum       = (Decimal)0.00;
                this.grdItemsServicio.Columns.Add(_importeingreso);

                grdItemsServicio.BestFitColumns();
                Infrastructure.WinForms.Controls.GridAutoFit.Fit(grdItemsServicio);

                this.grdItemsServicio.SelectionMode = Telerik.WinControls.UI.GridViewSelectionMode.CellSelect;
                this.grdItemsServicio.MultiSelect   = false;

                this.grdItemsServicio.ShowFilteringRow = false;
                this.grdItemsServicio.EnableFiltering  = false;
                this.grdItemsServicio.MasterTemplate.EnableFiltering = false;
                this.grdItemsServicio.EnableGrouping = false;
                this.grdItemsServicio.MasterTemplate.EnableGrouping = false;
                this.grdItemsServicio.EnableSorting = false;
                this.grdItemsServicio.MasterTemplate.EnableCustomSorting = false;

                this.grdItemsServicio.ReadOnly     = false;
                this.grdItemsServicio.AllowEditRow = true;

                this.grdItemsServicio.Columns["SERV_Codigo"].ReadOnly         = false;
                this.grdItemsServicio.Columns["DDOV_Cantidad"].ReadOnly       = false;
                this.grdItemsServicio.Columns["DDOV_PrecioUnitario"].ReadOnly = false;
                this.grdItemsServicio.Columns["DDOV_ValorVenta"].ReadOnly     = true;
                this.grdItemsServicio.Columns["SERV_AfeIgv"].ReadOnly         = true;
            }
            catch (Exception ex)
            {
                Infrastructure.WinForms.Controls.Dialogos.MostrarMensajeError(Presenter.Title, Infrastructure.Aspect.Constants.Mensajes.FormatDataGridView + " (Grid Servicios)", ex);
            }
        }
Example #39
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.GridViewCommandColumn gridViewCommandColumn1 = new Telerik.WinControls.UI.GridViewCommandColumn();
     Telerik.WinControls.UI.GridViewComboBoxColumn gridViewComboBoxColumn1 = new Telerik.WinControls.UI.GridViewComboBoxColumn();
     Telerik.WinControls.UI.GridViewComboBoxColumn gridViewComboBoxColumn2 = new Telerik.WinControls.UI.GridViewComboBoxColumn();
     Telerik.WinControls.UI.GridViewDecimalColumn gridViewDecimalColumn1 = new Telerik.WinControls.UI.GridViewDecimalColumn();
     this.serviceBindingSource = new System.Windows.Forms.BindingSource(this.components);
     this.radGroupBox2 = new Telerik.WinControls.UI.RadGroupBox();
     this.filteringPanel = new Telerik.WinControls.UI.RadPanel();
     this.ucFilter1 = new ShayanDental.UserControls.UCFilter();
     this.grdInsurance = new Telerik.WinControls.UI.RadGridView();
     this.btnSave = new Telerik.WinControls.UI.RadButton();
     this.btnCancel = new Telerik.WinControls.UI.RadButton();
     this.radGroupBox1 = new Telerik.WinControls.UI.RadGroupBox();
     this.grdFee = new Telerik.WinControls.UI.RadGridView();
     this.insuranceBindingSource = new System.Windows.Forms.BindingSource(this.components);
     this.btnAdd = new Telerik.WinControls.UI.RadButton();
     this.btnNew = new Telerik.WinControls.UI.RadButton();
     this.roleTitleLabel = new Telerik.WinControls.UI.RadLabel();
     this.txtInssuranceName = new Telerik.WinControls.UI.RadTextBox();
     ((System.ComponentModel.ISupportInitialize)(this.serviceBindingSource)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radGroupBox2)).BeginInit();
     this.radGroupBox2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.filteringPanel)).BeginInit();
     this.filteringPanel.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.grdInsurance)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.btnSave)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.btnCancel)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radGroupBox1)).BeginInit();
     this.radGroupBox1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.grdFee)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.insuranceBindingSource)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.btnAdd)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.btnNew)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.roleTitleLabel)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtInssuranceName)).BeginInit();
     this.SuspendLayout();
     //
     // serviceBindingSource
     //
     this.serviceBindingSource.DataSource = typeof(Shayan.Data.Service);
     //
     // 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.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.radGroupBox2.Controls.Add(this.filteringPanel);
     this.radGroupBox2.Controls.Add(this.grdInsurance);
     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(3, 3);
     this.radGroupBox2.Name = "radGroupBox2";
     this.radGroupBox2.Padding = new System.Windows.Forms.Padding(2, 17, 2, 2);
     //
     //
     //
     this.radGroupBox2.RootElement.Padding = new System.Windows.Forms.Padding(2, 17, 2, 2);
     this.radGroupBox2.Size = new System.Drawing.Size(204, 358);
     this.radGroupBox2.TabIndex = 18;
     this.radGroupBox2.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, 26);
     this.filteringPanel.Name = "filteringPanel";
     this.filteringPanel.Size = new System.Drawing.Size(194, 32);
     this.filteringPanel.TabIndex = 12;
     //
     // ucFilter1
     //
     this.ucFilter1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.ucFilter1.Location = new System.Drawing.Point(0, 0);
     this.ucFilter1.Name = "ucFilter1";
     this.ucFilter1.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
     this.ucFilter1.Size = new System.Drawing.Size(194, 32);
     this.ucFilter1.TabIndex = 0;
     //
     // grdInsurance
     //
     this.grdInsurance.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.grdInsurance.AutoScroll = true;
     this.grdInsurance.Font = new System.Drawing.Font("B Nazanin", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
     this.grdInsurance.Location = new System.Drawing.Point(5, 64);
     //
     // grdInsurance
     //
     this.grdInsurance.MasterTemplate.AllowAddNewRow = false;
     this.grdInsurance.MasterTemplate.AllowCellContextMenu = false;
     this.grdInsurance.MasterTemplate.AllowColumnChooser = false;
     this.grdInsurance.MasterTemplate.AllowColumnHeaderContextMenu = false;
     this.grdInsurance.MasterTemplate.AllowColumnReorder = false;
     this.grdInsurance.MasterTemplate.AllowDeleteRow = false;
     this.grdInsurance.MasterTemplate.AllowDragToGroup = false;
     this.grdInsurance.MasterTemplate.AutoSizeColumnsMode = Telerik.WinControls.UI.GridViewAutoSizeColumnsMode.Fill;
     gridViewTextBoxColumn1.FieldName = "Title";
     gridViewTextBoxColumn1.HeaderText = "عنوان بیمه";
     gridViewTextBoxColumn1.Name = "Title";
     gridViewTextBoxColumn1.Width = 163;
     gridViewCommandColumn1.AllowHide = false;
     gridViewCommandColumn1.AllowReorder = false;
     gridViewCommandColumn1.AllowResize = false;
     gridViewCommandColumn1.AllowSort = false;
     gridViewCommandColumn1.HeaderText = "حذف";
     gridViewCommandColumn1.Name = "column3";
     gridViewCommandColumn1.Width = 30;
     this.grdInsurance.MasterTemplate.Columns.AddRange(new Telerik.WinControls.UI.GridViewDataColumn[] {
     gridViewTextBoxColumn1,
     gridViewCommandColumn1});
     this.grdInsurance.MasterTemplate.EnableGrouping = false;
     this.grdInsurance.MasterTemplate.ShowFilteringRow = false;
     this.grdInsurance.MasterTemplate.ShowRowHeaderColumn = false;
     this.grdInsurance.Name = "grdInsurance";
     this.grdInsurance.ReadOnly = true;
     this.grdInsurance.ShowGroupPanel = false;
     this.grdInsurance.Size = new System.Drawing.Size(194, 284);
     this.grdInsurance.TabIndex = 0;
     this.grdInsurance.CellFormatting += new Telerik.WinControls.UI.CellFormattingEventHandler(this.grdInsurance_CellFormatting);
     this.grdInsurance.CurrentRowChanging += new Telerik.WinControls.UI.CurrentRowChangingEventHandler(this.grdInsurance_CurrentRowChanging);
     this.grdInsurance.SelectionChanged += new System.EventHandler(this.grdInsurance_SelectionChanged);
     this.grdInsurance.CommandCellClick += new Telerik.WinControls.UI.CommandCellClickEventHandler(this.grdInsurance_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(494, 363);
     this.btnSave.Name = "btnSave";
     this.btnSave.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.btnSave.Size = new System.Drawing.Size(100, 35);
     this.btnSave.TabIndex = 0;
     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(390, 363);
     this.btnCancel.Name = "btnCancel";
     this.btnCancel.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.btnCancel.Size = new System.Drawing.Size(100, 35);
     this.btnCancel.TabIndex = 1;
     this.btnCancel.Text = "انصراف   ";
     this.btnCancel.TextAlignment = System.Drawing.ContentAlignment.MiddleRight;
     this.btnCancel.Click += new System.EventHandler(this.btnExit_Click);
     //
     // 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.Right)));
     this.radGroupBox1.Controls.Add(this.grdFee);
     this.radGroupBox1.Controls.Add(this.btnAdd);
     this.radGroupBox1.Controls.Add(this.btnNew);
     this.radGroupBox1.Controls.Add(this.roleTitleLabel);
     this.radGroupBox1.Controls.Add(this.txtInssuranceName);
     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(213, 3);
     this.radGroupBox1.Name = "radGroupBox1";
     this.radGroupBox1.Padding = new System.Windows.Forms.Padding(2, 17, 2, 2);
     //
     //
     //
     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(386, 358);
     this.radGroupBox1.TabIndex = 15;
     this.radGroupBox1.Text = "تعریف بیمه";
     //
     // grdFee
     //
     this.grdFee.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.grdFee.AutoScroll = true;
     this.grdFee.DataBindings.Add(new System.Windows.Forms.Binding("DataSource", this.insuranceBindingSource, "InsuranceDefs", true));
     this.grdFee.Font = new System.Drawing.Font("B Nazanin", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
     this.grdFee.Location = new System.Drawing.Point(5, 76);
     //
     // grdFee
     //
     this.grdFee.MasterTemplate.AllowAddNewRow = false;
     this.grdFee.MasterTemplate.AutoSizeColumnsMode = Telerik.WinControls.UI.GridViewAutoSizeColumnsMode.Fill;
     gridViewComboBoxColumn1.DataSource = this.serviceBindingSource;
     gridViewComboBoxColumn1.DisplayMember = "Title";
     gridViewComboBoxColumn1.FieldName = "ServiceId";
     gridViewComboBoxColumn1.HeaderText = "نام خدمات";
     gridViewComboBoxColumn1.Name = "ServiceName";
     gridViewComboBoxColumn1.ReadOnly = true;
     gridViewComboBoxColumn1.ValueMember = "Id";
     gridViewComboBoxColumn1.Width = 174;
     gridViewComboBoxColumn2.DataSource = this.serviceBindingSource;
     gridViewComboBoxColumn2.DisplayMember = "Price";
     gridViewComboBoxColumn2.FieldName = "ServiceId";
     gridViewComboBoxColumn2.FormatString = "{0:N0}";
     gridViewComboBoxColumn2.HeaderText = "قیمت";
     gridViewComboBoxColumn2.Name = "Price";
     gridViewComboBoxColumn2.ReadOnly = true;
     gridViewComboBoxColumn2.ValueMember = "Id";
     gridViewComboBoxColumn2.Width = 101;
     gridViewDecimalColumn1.FieldName = "Fee";
     gridViewDecimalColumn1.FormatString = "{0:N0}";
     gridViewDecimalColumn1.HeaderText = "تعرفه بیمه";
     gridViewDecimalColumn1.Maximum = new decimal(new int[] {
     1000000000,
     0,
     0,
     0});
     gridViewDecimalColumn1.Minimum = new decimal(new int[] {
     0,
     0,
     0,
     0});
     gridViewDecimalColumn1.Name = "column3";
     gridViewDecimalColumn1.Width = 102;
     this.grdFee.MasterTemplate.Columns.AddRange(new Telerik.WinControls.UI.GridViewDataColumn[] {
     gridViewComboBoxColumn1,
     gridViewComboBoxColumn2,
     gridViewDecimalColumn1});
     this.grdFee.MasterTemplate.ShowRowHeaderColumn = false;
     this.grdFee.Name = "grdFee";
     this.grdFee.ShowGroupPanel = false;
     this.grdFee.Size = new System.Drawing.Size(376, 231);
     this.grdFee.TabIndex = 1;
     this.grdFee.Text = "radGridView1";
     //
     // insuranceBindingSource
     //
     this.insuranceBindingSource.DataSource = typeof(Shayan.Data.Insurance);
     //
     // 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(281, 318);
     this.btnAdd.Name = "btnAdd";
     this.btnAdd.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.btnAdd.Size = new System.Drawing.Size(100, 35);
     this.btnAdd.TabIndex = 3;
     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(177, 318);
     this.btnNew.Name = "btnNew";
     this.btnNew.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.btnNew.Size = new System.Drawing.Size(100, 35);
     this.btnNew.TabIndex = 4;
     this.btnNew.Text = "جدید   ";
     this.btnNew.TextAlignment = System.Drawing.ContentAlignment.MiddleRight;
     this.btnNew.Click += new System.EventHandler(this.btnCancel_Click);
     //
     // roleTitleLabel
     //
     this.roleTitleLabel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.roleTitleLabel.Font = new System.Drawing.Font("B Nazanin", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
     this.roleTitleLabel.Location = new System.Drawing.Point(347, 35);
     this.roleTitleLabel.Name = "roleTitleLabel";
     this.roleTitleLabel.Size = new System.Drawing.Size(34, 23);
     this.roleTitleLabel.TabIndex = 3;
     this.roleTitleLabel.Text = "عنوان:";
     this.roleTitleLabel.TextAlignment = System.Drawing.ContentAlignment.TopRight;
     //
     // txtInssuranceName
     //
     this.txtInssuranceName.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.txtInssuranceName.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.insuranceBindingSource, "Title", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
     this.txtInssuranceName.Font = new System.Drawing.Font("B Nazanin", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
     this.txtInssuranceName.Location = new System.Drawing.Point(172, 34);
     this.txtInssuranceName.Name = "txtInssuranceName";
     this.txtInssuranceName.Size = new System.Drawing.Size(172, 25);
     this.txtInssuranceName.TabIndex = 0;
     this.txtInssuranceName.TabStop = false;
     this.txtInssuranceName.TextChanging += new Telerik.WinControls.TextChangingEventHandler(this.txtInssuranceName_TextChanging);
     //
     // UCInssurance
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.Controls.Add(this.radGroupBox2);
     this.Controls.Add(this.btnSave);
     this.Controls.Add(this.btnCancel);
     this.Controls.Add(this.radGroupBox1);
     this.Name = "UCInssurance";
     this.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
     this.Size = new System.Drawing.Size(602, 401);
     ((System.ComponentModel.ISupportInitialize)(this.serviceBindingSource)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radGroupBox2)).EndInit();
     this.radGroupBox2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.filteringPanel)).EndInit();
     this.filteringPanel.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.grdInsurance)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.btnSave)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.btnCancel)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radGroupBox1)).EndInit();
     this.radGroupBox1.ResumeLayout(false);
     this.radGroupBox1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.grdFee)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.insuranceBindingSource)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.btnAdd)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.btnNew)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.roleTitleLabel)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtInssuranceName)).EndInit();
     this.ResumeLayout(false);
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.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();
 }
Example #41
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.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.GridViewComboBoxColumn  gridViewComboBoxColumn1 = new Telerik.WinControls.UI.GridViewComboBoxColumn();
     Telerik.WinControls.UI.GridViewDecimalColumn   gridViewDecimalColumn5  = new Telerik.WinControls.UI.GridViewDecimalColumn();
     Telerik.WinControls.UI.GridViewDateTimeColumn  gridViewDateTimeColumn1 = new Telerik.WinControls.UI.GridViewDateTimeColumn();
     Telerik.WinControls.UI.GridViewTextBoxColumn   gridViewTextBoxColumn1  = new Telerik.WinControls.UI.GridViewTextBoxColumn();
     Telerik.WinControls.UI.GridViewDateTimeColumn  gridViewDateTimeColumn2 = new Telerik.WinControls.UI.GridViewDateTimeColumn();
     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.GridViewDateTimeColumn  gridViewDateTimeColumn3 = new Telerik.WinControls.UI.GridViewDateTimeColumn();
     Telerik.WinControls.UI.GridViewCheckBoxColumn  gridViewCheckBoxColumn2 = new Telerik.WinControls.UI.GridViewCheckBoxColumn();
     Telerik.WinControls.UI.GridViewDecimalColumn   gridViewDecimalColumn6  = new Telerik.WinControls.UI.GridViewDecimalColumn();
     Telerik.WinControls.UI.GridViewDateTimeColumn  gridViewDateTimeColumn4 = new Telerik.WinControls.UI.GridViewDateTimeColumn();
     Telerik.WinControls.UI.GridViewTextBoxColumn   gridViewTextBoxColumn4  = new Telerik.WinControls.UI.GridViewTextBoxColumn();
     Telerik.WinControls.UI.GridViewTextBoxColumn   gridViewTextBoxColumn5  = new Telerik.WinControls.UI.GridViewTextBoxColumn();
     Telerik.WinControls.UI.GridViewDecimalColumn   gridViewDecimalColumn7  = new Telerik.WinControls.UI.GridViewDecimalColumn();
     Telerik.WinControls.UI.GridViewDateTimeColumn  gridViewDateTimeColumn5 = new Telerik.WinControls.UI.GridViewDateTimeColumn();
     Telerik.WinControls.UI.GridViewDecimalColumn   gridViewDecimalColumn8  = new Telerik.WinControls.UI.GridViewDecimalColumn();
     Telerik.WinControls.UI.GridViewTextBoxColumn   gridViewTextBoxColumn6  = new Telerik.WinControls.UI.GridViewTextBoxColumn();
     Telerik.WinControls.UI.GridViewDecimalColumn   gridViewDecimalColumn9  = new Telerik.WinControls.UI.GridViewDecimalColumn();
     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.GridViewDecimalColumn   gridViewDecimalColumn10 = new Telerik.WinControls.UI.GridViewDecimalColumn();
     Telerik.WinControls.UI.GridViewTextBoxColumn   gridViewTextBoxColumn14 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
     Telerik.WinControls.UI.GridViewTextBoxColumn   gridViewTextBoxColumn15 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
     Telerik.WinControls.Data.GroupDescriptor       groupDescriptor1        = new Telerik.WinControls.Data.GroupDescriptor();
     Telerik.WinControls.Data.SortDescriptor        sortDescriptor1         = new Telerik.WinControls.Data.SortDescriptor();
     Telerik.WinControls.UI.GridViewRelation        gridViewRelation1       = new Telerik.WinControls.UI.GridViewRelation();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmLihatNR));
     this.vproductbaseBindingSource = new System.Windows.Forms.BindingSource(this.components);
     this.sinarekDataSet            = new NB.sinarekDataSet();
     this.gridViewTemplate1         = new Telerik.WinControls.UI.GridViewTemplate();
     this.logdetailBindingSource    = new System.Windows.Forms.BindingSource(this.components);
     this.radGridView1             = new Telerik.WinControls.UI.RadGridView();
     this.vlogproductBindingSource = new System.Windows.Forms.BindingSource(this.components);
     this.logpelBindingSource      = new System.Windows.Forms.BindingSource(this.components);
     this.logpelTableAdapter       = new NB.sinarekDataSetTableAdapters.logpelTableAdapter();
     this.vlogproductTableAdapter  = new NB.sinarekDataSetTableAdapters.vlogproductTableAdapter();
     this.logdetailTableAdapter    = new NB.sinarekDataSetTableAdapters.logdetailTableAdapter();
     this.vproductbaseTableAdapter = new NB.sinarekDataSetTableAdapters.vproductbaseTableAdapter();
     ((System.ComponentModel.ISupportInitialize)(this.vproductbaseBindingSource)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.sinarekDataSet)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewTemplate1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.logdetailBindingSource)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radGridView1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.vlogproductBindingSource)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.logpelBindingSource)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
     this.SuspendLayout();
     //
     // vproductbaseBindingSource
     //
     this.vproductbaseBindingSource.DataMember = "vproductbase";
     this.vproductbaseBindingSource.DataSource = this.sinarekDataSet;
     this.vproductbaseBindingSource.Filter     = "";
     //
     // sinarekDataSet
     //
     this.sinarekDataSet.DataSetName             = "sinarekDataSet";
     this.sinarekDataSet.SchemaSerializationMode = System.Data.SchemaSerializationMode.IncludeSchema;
     //
     // gridViewTemplate1
     //
     this.gridViewTemplate1.AllowAddNewRow      = false;
     this.gridViewTemplate1.AllowDeleteRow      = false;
     this.gridViewTemplate1.AllowEditRow        = false;
     this.gridViewTemplate1.AutoGenerateColumns = false;
     this.gridViewTemplate1.Caption             = "Produk";
     gridViewDecimalColumn1.DataType            = typeof(long);
     gridViewDecimalColumn1.FieldName           = "Detailid";
     gridViewDecimalColumn1.HeaderText          = "Detailid";
     gridViewDecimalColumn1.IsAutoGenerated     = true;
     gridViewDecimalColumn1.IsVisible           = false;
     gridViewDecimalColumn1.Name             = "Detailid";
     gridViewDecimalColumn1.TextAlignment    = System.Drawing.ContentAlignment.MiddleRight;
     gridViewDecimalColumn2.DataType         = typeof(long);
     gridViewDecimalColumn2.FieldName        = "Logid";
     gridViewDecimalColumn2.HeaderText       = "Logid";
     gridViewDecimalColumn2.IsAutoGenerated  = true;
     gridViewDecimalColumn2.IsVisible        = false;
     gridViewDecimalColumn2.Name             = "Logid";
     gridViewDecimalColumn2.TextAlignment    = System.Drawing.ContentAlignment.MiddleRight;
     gridViewDecimalColumn3.DataType         = typeof(int);
     gridViewDecimalColumn3.FieldName        = "custtypeid";
     gridViewDecimalColumn3.HeaderText       = "custtypeid";
     gridViewDecimalColumn3.IsAutoGenerated  = true;
     gridViewDecimalColumn3.IsVisible        = false;
     gridViewDecimalColumn3.Name             = "custtypeid";
     gridViewDecimalColumn3.TextAlignment    = System.Drawing.ContentAlignment.MiddleRight;
     gridViewDecimalColumn4.FieldName        = "Quantity";
     gridViewDecimalColumn4.HeaderText       = "Jumlah";
     gridViewDecimalColumn4.IsAutoGenerated  = true;
     gridViewDecimalColumn4.Name             = "Quantity";
     gridViewDecimalColumn4.TextAlignment    = System.Drawing.ContentAlignment.MiddleCenter;
     gridViewDecimalColumn4.Width            = 100;
     gridViewComboBoxColumn1.DataSource      = this.vproductbaseBindingSource;
     gridViewComboBoxColumn1.DataType        = typeof(int);
     gridViewComboBoxColumn1.DisplayMember   = "ProductLong";
     gridViewComboBoxColumn1.FieldName       = "BaseID";
     gridViewComboBoxColumn1.HeaderText      = "Product";
     gridViewComboBoxColumn1.Name            = "BaseID";
     gridViewComboBoxColumn1.ValueMember     = "baseid";
     gridViewComboBoxColumn1.Width           = 300;
     gridViewDecimalColumn5.FieldName        = "price";
     gridViewDecimalColumn5.HeaderText       = "price";
     gridViewDecimalColumn5.IsAutoGenerated  = true;
     gridViewDecimalColumn5.IsVisible        = false;
     gridViewDecimalColumn5.Name             = "price";
     gridViewDecimalColumn5.TextAlignment    = System.Drawing.ContentAlignment.MiddleRight;
     gridViewDateTimeColumn1.FieldName       = "Created";
     gridViewDateTimeColumn1.HeaderText      = "Created";
     gridViewDateTimeColumn1.IsAutoGenerated = true;
     gridViewDateTimeColumn1.IsVisible       = false;
     gridViewDateTimeColumn1.Name            = "Created";
     gridViewTextBoxColumn1.FieldName        = "CreatedBy";
     gridViewTextBoxColumn1.HeaderText       = "CreatedBy";
     gridViewTextBoxColumn1.IsAutoGenerated  = true;
     gridViewTextBoxColumn1.IsVisible        = false;
     gridViewTextBoxColumn1.Name             = "CreatedBy";
     gridViewDateTimeColumn2.FieldName       = "Modified";
     gridViewDateTimeColumn2.HeaderText      = "Modified";
     gridViewDateTimeColumn2.IsAutoGenerated = true;
     gridViewDateTimeColumn2.IsVisible       = false;
     gridViewDateTimeColumn2.Name            = "Modified";
     gridViewTextBoxColumn2.FieldName        = "ModifiedBy";
     gridViewTextBoxColumn2.HeaderText       = "ModifiedBy";
     gridViewTextBoxColumn2.IsAutoGenerated  = true;
     gridViewTextBoxColumn2.IsVisible        = false;
     gridViewTextBoxColumn2.Name             = "ModifiedBy";
     gridViewCheckBoxColumn1.FieldName       = "Expired";
     gridViewCheckBoxColumn1.HeaderText      = "Expired";
     gridViewCheckBoxColumn1.IsAutoGenerated = true;
     gridViewCheckBoxColumn1.IsVisible       = false;
     gridViewCheckBoxColumn1.Name            = "Expired";
     gridViewTextBoxColumn3.FieldName        = "Keterangan";
     gridViewTextBoxColumn3.HeaderText       = "Keterangan";
     gridViewTextBoxColumn3.IsAutoGenerated  = true;
     gridViewTextBoxColumn3.IsVisible        = false;
     gridViewTextBoxColumn3.Name             = "Keterangan";
     gridViewDateTimeColumn3.FieldName       = "ExpireDate";
     gridViewDateTimeColumn3.HeaderText      = "ExpireDate";
     gridViewDateTimeColumn3.IsAutoGenerated = true;
     gridViewDateTimeColumn3.IsVisible       = false;
     gridViewDateTimeColumn3.Name            = "ExpireDate";
     this.gridViewTemplate1.Columns.AddRange(new Telerik.WinControls.UI.GridViewDataColumn[] {
         gridViewDecimalColumn1,
         gridViewDecimalColumn2,
         gridViewDecimalColumn3,
         gridViewDecimalColumn4,
         gridViewComboBoxColumn1,
         gridViewDecimalColumn5,
         gridViewDateTimeColumn1,
         gridViewTextBoxColumn1,
         gridViewDateTimeColumn2,
         gridViewTextBoxColumn2,
         gridViewCheckBoxColumn1,
         gridViewTextBoxColumn3,
         gridViewDateTimeColumn3
     });
     this.gridViewTemplate1.DataSource = this.logdetailBindingSource;
     this.gridViewTemplate1.ReadOnly   = true;
     //
     // logdetailBindingSource
     //
     this.logdetailBindingSource.DataMember = "logdetail";
     this.logdetailBindingSource.DataSource = this.sinarekDataSet;
     //
     // radGridView1
     //
     this.radGridView1.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.radGridView1.Font     = new System.Drawing.Font("Segoe UI", 10F);
     this.radGridView1.Location = new System.Drawing.Point(0, 0);
     //
     // radGridView1
     //
     this.radGridView1.MasterTemplate.AllowAddNewRow      = false;
     this.radGridView1.MasterTemplate.AllowColumnReorder  = false;
     this.radGridView1.MasterTemplate.AutoGenerateColumns = false;
     gridViewCheckBoxColumn2.FieldName       = "Printed";
     gridViewCheckBoxColumn2.HeaderText      = "P";
     gridViewCheckBoxColumn2.IsAutoGenerated = true;
     gridViewCheckBoxColumn2.Name            = "Printed";
     gridViewCheckBoxColumn2.Width           = 20;
     gridViewDecimalColumn6.DataType         = typeof(long);
     gridViewDecimalColumn6.FieldName        = "Logid";
     gridViewDecimalColumn6.FormatString     = "";
     gridViewDecimalColumn6.HeaderText       = "Logid";
     gridViewDecimalColumn6.IsAutoGenerated  = true;
     gridViewDecimalColumn6.IsVisible        = false;
     gridViewDecimalColumn6.Name             = "Logid";
     gridViewDecimalColumn6.TextAlignment    = System.Drawing.ContentAlignment.MiddleRight;
     gridViewDateTimeColumn4.FieldName       = "Tanggal";
     gridViewDateTimeColumn4.FormatString    = "{0:dd MMM yyy}";
     gridViewDateTimeColumn4.HeaderText      = "Tanggal";
     gridViewDateTimeColumn4.IsAutoGenerated = true;
     gridViewDateTimeColumn4.Name            = "Tanggal";
     gridViewDateTimeColumn4.Width           = 100;
     gridViewTextBoxColumn4.FieldName        = "NoSJ";
     gridViewTextBoxColumn4.FormatString     = "";
     gridViewTextBoxColumn4.HeaderText       = "No. SJ";
     gridViewTextBoxColumn4.IsAutoGenerated  = true;
     gridViewTextBoxColumn4.Name             = "NoSJ";
     gridViewTextBoxColumn4.Width            = 75;
     gridViewTextBoxColumn5.FieldName        = "Keterangan";
     gridViewTextBoxColumn5.FormatString     = "";
     gridViewTextBoxColumn5.HeaderText       = "Keterangan";
     gridViewTextBoxColumn5.IsAutoGenerated  = true;
     gridViewTextBoxColumn5.IsVisible        = false;
     gridViewTextBoxColumn5.Name             = "Keterangan";
     gridViewDecimalColumn7.DataType         = typeof(int);
     gridViewDecimalColumn7.FieldName        = "CustID";
     gridViewDecimalColumn7.FormatString     = "";
     gridViewDecimalColumn7.HeaderText       = "CustID";
     gridViewDecimalColumn7.IsAutoGenerated  = true;
     gridViewDecimalColumn7.IsVisible        = false;
     gridViewDecimalColumn7.Name             = "CustID";
     gridViewDecimalColumn7.TextAlignment    = System.Drawing.ContentAlignment.MiddleRight;
     gridViewDateTimeColumn5.FieldName       = "Modified";
     gridViewDateTimeColumn5.HeaderText      = "Modified";
     gridViewDateTimeColumn5.IsAutoGenerated = true;
     gridViewDateTimeColumn5.IsVisible       = false;
     gridViewDateTimeColumn5.Name            = "Modified";
     gridViewDecimalColumn8.DataType         = typeof(short);
     gridViewDecimalColumn8.FieldName        = "StatusID";
     gridViewDecimalColumn8.HeaderText       = "StatusID";
     gridViewDecimalColumn8.IsAutoGenerated  = true;
     gridViewDecimalColumn8.IsVisible        = false;
     gridViewDecimalColumn8.Name             = "StatusID";
     gridViewDecimalColumn8.TextAlignment    = System.Drawing.ContentAlignment.MiddleRight;
     gridViewTextBoxColumn6.FieldName        = "StatName";
     gridViewTextBoxColumn6.HeaderText       = "StatName";
     gridViewTextBoxColumn6.IsAutoGenerated  = true;
     gridViewTextBoxColumn6.IsVisible        = false;
     gridViewTextBoxColumn6.Name             = "StatName";
     gridViewDecimalColumn9.DataType         = typeof(int);
     gridViewDecimalColumn9.FieldName        = "custtypetoid";
     gridViewDecimalColumn9.HeaderText       = "custtypetoid";
     gridViewDecimalColumn9.IsAutoGenerated  = true;
     gridViewDecimalColumn9.IsVisible        = false;
     gridViewDecimalColumn9.Name             = "custtypetoid";
     gridViewDecimalColumn9.TextAlignment    = System.Drawing.ContentAlignment.MiddleRight;
     gridViewTextBoxColumn7.FieldName        = "CustTypeName";
     gridViewTextBoxColumn7.HeaderText       = "CustTypeName";
     gridViewTextBoxColumn7.IsAutoGenerated  = true;
     gridViewTextBoxColumn7.Name             = "CustTypeName";
     gridViewTextBoxColumn8.FieldName        = "CUSTNAME";
     gridViewTextBoxColumn8.HeaderText       = "Nama";
     gridViewTextBoxColumn8.IsAutoGenerated  = true;
     gridViewTextBoxColumn8.Name             = "CUSTNAME";
     gridViewTextBoxColumn8.Width            = 150;
     gridViewTextBoxColumn9.FieldName        = "SALESNAME";
     gridViewTextBoxColumn9.HeaderText       = "Sales";
     gridViewTextBoxColumn9.IsAutoGenerated  = true;
     gridViewTextBoxColumn9.IsVisible        = false;
     gridViewTextBoxColumn9.Name             = "SALESNAME";
     gridViewTextBoxColumn9.Width            = 75;
     gridViewTextBoxColumn10.FieldName       = "SalesShort";
     gridViewTextBoxColumn10.HeaderText      = "Sales";
     gridViewTextBoxColumn10.IsAutoGenerated = true;
     gridViewTextBoxColumn10.Name            = "SalesShort";
     gridViewTextBoxColumn10.Width           = 75;
     gridViewTextBoxColumn11.FieldName       = "MobilName";
     gridViewTextBoxColumn11.HeaderText      = "Mobil";
     gridViewTextBoxColumn11.IsAutoGenerated = true;
     gridViewTextBoxColumn11.Name            = "MobilName";
     gridViewTextBoxColumn11.Width           = 85;
     gridViewTextBoxColumn12.FieldName       = "KernetName";
     gridViewTextBoxColumn12.HeaderText      = "Kernet";
     gridViewTextBoxColumn12.IsAutoGenerated = true;
     gridViewTextBoxColumn12.Name            = "KernetName";
     gridViewTextBoxColumn12.Width           = 100;
     gridViewTextBoxColumn13.FieldName       = "SopirName";
     gridViewTextBoxColumn13.HeaderText      = "Sopir";
     gridViewTextBoxColumn13.IsAutoGenerated = true;
     gridViewTextBoxColumn13.Name            = "SopirName";
     gridViewTextBoxColumn13.Width           = 100;
     gridViewDecimalColumn10.DataType        = typeof(int);
     gridViewDecimalColumn10.FieldName       = "kotaid";
     gridViewDecimalColumn10.HeaderText      = "kotaid";
     gridViewDecimalColumn10.IsAutoGenerated = true;
     gridViewDecimalColumn10.IsVisible       = false;
     gridViewDecimalColumn10.Name            = "kotaid";
     gridViewDecimalColumn10.TextAlignment   = System.Drawing.ContentAlignment.MiddleRight;
     gridViewTextBoxColumn14.FieldName       = "Tujuan";
     gridViewTextBoxColumn14.HeaderText      = "Tujuan";
     gridViewTextBoxColumn14.IsAutoGenerated = true;
     gridViewTextBoxColumn14.Name            = "Tujuan";
     gridViewTextBoxColumn14.Width           = 100;
     gridViewTextBoxColumn15.FieldName       = "ModifiedBy";
     gridViewTextBoxColumn15.FormatString    = "";
     gridViewTextBoxColumn15.HeaderText      = "";
     gridViewTextBoxColumn15.IsAutoGenerated = true;
     gridViewTextBoxColumn15.Name            = "ModifiedBy";
     this.radGridView1.MasterTemplate.Columns.AddRange(new Telerik.WinControls.UI.GridViewDataColumn[] {
         gridViewCheckBoxColumn2,
         gridViewDecimalColumn6,
         gridViewDateTimeColumn4,
         gridViewTextBoxColumn4,
         gridViewTextBoxColumn5,
         gridViewDecimalColumn7,
         gridViewDateTimeColumn5,
         gridViewDecimalColumn8,
         gridViewTextBoxColumn6,
         gridViewDecimalColumn9,
         gridViewTextBoxColumn7,
         gridViewTextBoxColumn8,
         gridViewTextBoxColumn9,
         gridViewTextBoxColumn10,
         gridViewTextBoxColumn11,
         gridViewTextBoxColumn12,
         gridViewTextBoxColumn13,
         gridViewDecimalColumn10,
         gridViewTextBoxColumn14,
         gridViewTextBoxColumn15
     });
     this.radGridView1.MasterTemplate.DataSource = this.vlogproductBindingSource;
     groupDescriptor1.Format      = "{1}";
     sortDescriptor1.PropertyName = "CustTypeName";
     groupDescriptor1.GroupNames.AddRange(new Telerik.WinControls.Data.SortDescriptor[] {
         sortDescriptor1
     });
     this.radGridView1.MasterTemplate.GroupDescriptors.AddRange(new Telerik.WinControls.Data.GroupDescriptor[] {
         groupDescriptor1
     });
     this.radGridView1.MasterTemplate.ShowRowHeaderColumn = false;
     this.radGridView1.MasterTemplate.Templates.AddRange(new Telerik.WinControls.UI.GridViewTemplate[] {
         this.gridViewTemplate1
     });
     this.radGridView1.Name              = "radGridView1";
     this.radGridView1.ReadOnly          = true;
     gridViewRelation1.ChildColumnNames  = ((System.Collections.Specialized.StringCollection)(resources.GetObject("gridViewRelation1.ChildColumnNames")));
     gridViewRelation1.ChildTemplate     = this.gridViewTemplate1;
     gridViewRelation1.ParentColumnNames = ((System.Collections.Specialized.StringCollection)(resources.GetObject("gridViewRelation1.ParentColumnNames")));
     gridViewRelation1.ParentTemplate    = this.radGridView1.MasterTemplate;
     gridViewRelation1.RelationName      = "primary";
     this.radGridView1.Relations.AddRange(new Telerik.WinControls.UI.GridViewRelation[] {
         gridViewRelation1
     });
     this.radGridView1.ShowGroupPanel = false;
     this.radGridView1.Size           = new System.Drawing.Size(894, 466);
     this.radGridView1.TabIndex       = 1;
     this.radGridView1.Text           = "radGridView1";
     this.radGridView1.KeyUp         += new System.Windows.Forms.KeyEventHandler(this.radGridView1_KeyUp);
     //
     // vlogproductBindingSource
     //
     this.vlogproductBindingSource.DataMember = "vlogproduct";
     this.vlogproductBindingSource.DataSource = this.sinarekDataSet;
     this.vlogproductBindingSource.Filter     = "";
     //
     // logpelBindingSource
     //
     this.logpelBindingSource.DataMember = "logpel";
     this.logpelBindingSource.DataSource = this.sinarekDataSet;
     //
     // logpelTableAdapter
     //
     this.logpelTableAdapter.ClearBeforeFill = true;
     //
     // vlogproductTableAdapter
     //
     this.vlogproductTableAdapter.ClearBeforeFill = true;
     //
     // logdetailTableAdapter
     //
     this.logdetailTableAdapter.ClearBeforeFill = true;
     //
     // vproductbaseTableAdapter
     //
     this.vproductbaseTableAdapter.ClearBeforeFill = true;
     //
     // frmLihatNR
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize          = new System.Drawing.Size(894, 466);
     this.Controls.Add(this.radGridView1);
     this.Font = new System.Drawing.Font("Segoe UI", 10F);
     this.Name = "frmLihatNR";
     //
     //
     //
     this.RootElement.ApplyShapeToControl = true;
     this.ShowIcon      = false;
     this.ShowInTaskbar = false;
     this.Text          = "Lihat Surat Jalan Tanpa Laporan";
     this.ThemeName     = "ControlDefault";
     this.Load         += new System.EventHandler(this.frmLihatNR_Load);
     ((System.ComponentModel.ISupportInitialize)(this.vproductbaseBindingSource)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.sinarekDataSet)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewTemplate1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.logdetailBindingSource)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radGridView1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.vlogproductBindingSource)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.logpelBindingSource)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this)).EndInit();
     this.ResumeLayout(false);
 }
Example #42
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);
 }
Example #43
0
        private void FormUpdateStore_Load(object sender, EventArgs e)
        {
            try
            {
                radTextBoxStoreID.Text = StoreID;
                //            radTextBoxStoreName.Text = StoreName;

                //string StoreQuery = "SELECT redStoreTypeID, redStoreCategoryID, redStoreRegionID, Name FROM redStore WHERE redStoreID = " + StoreID + ";";
                string StoreQuery = "SELECT redStoreTypeID, redStoreCategoryID, redStoreRegionID, Name, redRomID FROM redStore WHERE redStoreID = " + StoreID + ";";

                DataTable StoreDT = Catman_Class_Library.SqlFunctions_RedReport.GetData(StoreQuery);
                StoreDR = StoreDT.Rows[0];

                string    StoreOwnerGroupQuery = "SELECT redStoreOwnerGroupDetailID, redOwnerGroupID, DateFrom FROM redStoreOwnerGroupDetail WHERE redStoreID = " + StoreID + ";";
                DataTable StoreOwnerGroupDT    = Catman_Class_Library.SqlFunctions_RedReport.GetData(StoreOwnerGroupQuery);

                string LinkedAccountQuery = "SELECT rAS.redAccountStoreID, rA.redAccountID as [Account ID], rA.StoreName as Name, ISNULL(rAS.MasterIND,'N') as [Master Account], 'Y' as Linked FROM redAccountStore rAS, redAccount rA WHERE rA.redAccountID = rAS.redAccountID AND rAS.redStoreID = " + StoreID + " ORDER BY ISNULL(rAS.MasterIND,'N') DESC;";
                LinkedAccountDT = Catman_Class_Library.SqlFunctions_RedReport.GetData(LinkedAccountQuery);
                AccountDR       = LinkedAccountDT.Rows[0];

                if (StoreDR["Name"].ToString() == "")
                {
                    radCheckBoxCustom.Checked = false;
                    radTextBoxName.Enabled    = false;
                    radTextBoxName.Text       = AccountDR["Name"].ToString();
                }
                else
                {
                    radCheckBoxCustom.Checked = true;
                    radTextBoxName.Enabled    = true;
                    radTextBoxName.Text       = StoreDR["Name"].ToString();
                }

                radGridViewLinkedAccounts.DataSource = LinkedAccountDT;

                radGridViewLinkedAccounts.Columns[0].IsVisible = false;
                radGridViewLinkedAccounts.EnableFiltering      = false;

                for (int i = 1; i < radGridViewLinkedAccounts.ColumnCount; i++)
                {
                    radGridViewLinkedAccounts.Columns[i].BestFit();
                }
                //STORE TYPE
                string StoreTypeQuery = "SELECT redStoreTypeID, Type FROM redStoreType ORDER BY Type;";
                StoreTypeDT = Catman_Class_Library.SqlFunctions_RedReport.GetData(StoreTypeQuery);

                radComboBoxType.DataSource    = StoreTypeDT;
                radComboBoxType.ValueMember   = "redStoreTypeID";
                radComboBoxType.DisplayMember = "Type";
                radComboBoxType.SelectedValue = StoreDR["redStoreTypeID"];

                //STORE ROM
                string StoreROMQuery = "SELECT redRomID, RomName FROM redRom ORDER BY RomName;";
                StoreROMDT = Catman_Class_Library.SqlFunctions_RedReport.GetData(StoreROMQuery);

                DataRow RomNullRow = StoreROMDT.NewRow();
                RomNullRow.SetField("RomName", "--Select ROM if different to AS400--");
                RomNullRow.SetField("redRomID", 0);
                StoreROMDT.Rows.InsertAt(RomNullRow, 0);

                cmbROM.DataSource    = StoreROMDT;
                cmbROM.DisplayMember = "RomName";
                cmbROM.ValueMember   = "redRomID";
                if (StoreDR["redRomID"] != "0")
                {
                    cmbROM.SelectedValue = StoreDR["redRomID"];
                }

                //REGION
                String RegionQuery = "select redStoreRegionID, Region from redStoreRegion order by Region;";
                RegionDT = Catman_Class_Library.SqlFunctions_RedReport.GetData(RegionQuery);

                DataRow RegionAddRow = RegionDT.NewRow();
                RegionAddRow.SetField("Region", "Add a new region");
                RegionAddRow.SetField("redStoreRegionID", 0);
                RegionDT.Rows.InsertAt(RegionAddRow, 0);

                DataRow RegionNullRow = RegionDT.NewRow();
                RegionNullRow.SetField("Region", "Please select a region");
                RegionDT.Rows.InsertAt(RegionNullRow, 0);

                radComboBoxRegion.DataSource    = RegionDT;
                radComboBoxRegion.DisplayMember = "Region";
                radComboBoxRegion.ValueMember   = "redStoreRegionID";
                radComboBoxRegion.SelectedValue = StoreDR["redStoreRegionID"];

                string StoreCategoryQuery = "SELECT redStoreCategoryID, Category FROM redStoreCategory ORDER BY Category;";
                StoreCategoryDT = Catman_Class_Library.SqlFunctions_RedReport.GetData(StoreCategoryQuery);

                DataRow StoreCategoryDR = StoreCategoryDT.NewRow();
                StoreCategoryDR.SetField("Category", "Please Select a store category");
                StoreCategoryDT.Rows.InsertAt(StoreCategoryDR, 0);
                radComboBoxCategory.DataSource    = StoreCategoryDT;
                radComboBoxCategory.ValueMember   = "redStoreCategoryID";
                radComboBoxCategory.DisplayMember = "Category";
                radComboBoxCategory.SelectedValue = StoreDR["redStoreCategoryID"];

                Telerik.WinControls.UI.GridViewDecimalColumn OGID = new Telerik.WinControls.UI.GridViewDecimalColumn();
                OGID.FieldName  = "redStoreOwnerGroupDetailID";
                OGID.HeaderText = "redStoreOwnerGroupDetailID";
                radGridViewOwnerGroup.MasterGridViewTemplate.Columns.Add(OGID);

                string OwnerGroupQuery = "SELECT redOwnerGroupID, Name FROM redOwnerGroup ORDER BY Name;";
                OwnerGroupDT = Catman_Class_Library.SqlFunctions_RedReport.GetData(OwnerGroupQuery);

                DataRow OwnerGroupAddRow = OwnerGroupDT.NewRow();
                OwnerGroupAddRow.SetField("Name", "Add a new owner group");
                OwnerGroupAddRow.SetField("redOwnerGroupID", 0);
                OwnerGroupDT.Rows.InsertAt(OwnerGroupAddRow, 0);

                Telerik.WinControls.UI.GridViewComboBoxColumn OGCombo = new Telerik.WinControls.UI.GridViewComboBoxColumn();
                OGCombo.FieldName        = "OwnerGroup";
                OGCombo.HeaderText       = "Owner Group";
                OGCombo.DataSource       = OwnerGroupDT;
                OGCombo.DisplayMember    = "Name";
                OGCombo.ValueMember      = "redOwnerGroupID";
                OGCombo.AutoCompleteMode = AutoCompleteMode.SuggestAppend;

                radGridViewOwnerGroup.MasterGridViewTemplate.Columns.Add(OGCombo);

                Telerik.WinControls.UI.GridViewDateTimeColumn DTPicker = new Telerik.WinControls.UI.GridViewDateTimeColumn();
                DTPicker.FieldName  = "DateFrom";
                DTPicker.HeaderText = "Date From";
                radGridViewOwnerGroup.MasterGridViewTemplate.Columns.Add(DTPicker);

                radGridViewOwnerGroup.Columns[0].IsVisible = false;
                radGridViewOwnerGroup.Columns[1].Width     = 180;

                radGridViewOwnerGroup.DataSource = StoreOwnerGroupDT;

                if (radGridViewOwnerGroup.Rows.Count > 0)
                {
                    for (int i = 0; i < StoreOwnerGroupDT.Rows.Count; i++)
                    {
                        DataRow thisrow = StoreOwnerGroupDT.Rows[i];
                        radGridViewOwnerGroup.Rows[i].Cells[1].Value = thisrow["redOwnerGroupID"];
                    }
                }

                string StoreDetail = "SELECT [redStoreDetailID] ,DateFrom,[SquareMeters] FROM redStoreDetail WHERE redStoreID = " + StoreID + " ORDER BY DateFrom;";
                StoreDetailDT = Catman_Class_Library.SqlFunctions_RedReport.GetData(StoreDetail);

                radGridViewDetail.DataSource           = StoreDetailDT;
                radGridViewDetail.Columns[0].IsVisible = false;
            }
            catch (Exception ex)
            {
                MessageBox.Show(ex.Message, "Page Load", MessageBoxButtons.OK, MessageBoxIcon.Stop);
            }
        }
 /// <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(frmEnsambleSup));
     Telerik.WinControls.UI.GridViewDateTimeColumn  gridViewDateTimeColumn1 = new Telerik.WinControls.UI.GridViewDateTimeColumn();
     Telerik.WinControls.UI.GridViewComboBoxColumn  gridViewComboBoxColumn1 = new Telerik.WinControls.UI.GridViewComboBoxColumn();
     Telerik.WinControls.UI.GridViewDecimalColumn   gridViewDecimalColumn1  = new Telerik.WinControls.UI.GridViewDecimalColumn();
     Telerik.WinControls.UI.GridViewDecimalColumn   gridViewDecimalColumn2  = 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.GridViewDecimalColumn   gridViewDecimalColumn3  = new Telerik.WinControls.UI.GridViewDecimalColumn();
     Telerik.WinControls.UI.GridViewDecimalColumn   gridViewDecimalColumn4  = new Telerik.WinControls.UI.GridViewDecimalColumn();
     Telerik.WinControls.UI.GridViewTextBoxColumn   gridViewTextBoxColumn3  = new Telerik.WinControls.UI.GridViewTextBoxColumn();
     Telerik.WinControls.UI.GridViewTextBoxColumn   gridViewTextBoxColumn4  = new Telerik.WinControls.UI.GridViewTextBoxColumn();
     Telerik.WinControls.UI.TableViewDefinition     tableViewDefinition1    = new Telerik.WinControls.UI.TableViewDefinition();
     this.radPanel1      = new Telerik.WinControls.UI.RadPanel();
     this.cboReflejante2 = new Telerik.WinControls.UI.RadDropDownList();
     this.cboReflejante1 = new Telerik.WinControls.UI.RadDropDownList();
     this.label5         = new System.Windows.Forms.Label();
     this.cboProducto    = new Telerik.WinControls.UI.RadDropDownList();
     this.cboCarcasa     = new Telerik.WinControls.UI.RadDropDownList();
     this.label10        = new System.Windows.Forms.Label();
     this.label3         = new System.Windows.Forms.Label();
     this.label4         = new System.Windows.Forms.Label();
     this.txtId          = new Telerik.WinControls.UI.RadTextBox();
     this.txtLista       = new Telerik.WinControls.UI.RadTextBox();
     this.label2         = new System.Windows.Forms.Label();
     this.txtOP          = new Telerik.WinControls.UI.RadTextBox();
     this.label1         = new System.Windows.Forms.Label();
     this.radPanel3      = new Telerik.WinControls.UI.RadPanel();
     this.btnBuscar      = new Telerik.WinControls.UI.RadButton();
     this.btnSalir       = new Telerik.WinControls.UI.RadButton();
     this.btnGuardar     = new Telerik.WinControls.UI.RadButton();
     this.radPanel2      = new Telerik.WinControls.UI.RadPanel();
     this.gvDatos        = new Telerik.WinControls.UI.RadGridView();
     ((System.ComponentModel.ISupportInitialize)(this.radPanel1)).BeginInit();
     this.radPanel1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.cboReflejante2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cboReflejante1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cboProducto)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cboCarcasa)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtId)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtLista)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtOP)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radPanel3)).BeginInit();
     this.radPanel3.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.btnBuscar)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.btnSalir)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.btnGuardar)).BeginInit();
     ((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();
     //
     // radPanel1
     //
     this.radPanel1.Controls.Add(this.cboReflejante2);
     this.radPanel1.Controls.Add(this.cboReflejante1);
     this.radPanel1.Controls.Add(this.label5);
     this.radPanel1.Controls.Add(this.cboProducto);
     this.radPanel1.Controls.Add(this.cboCarcasa);
     this.radPanel1.Controls.Add(this.label10);
     this.radPanel1.Controls.Add(this.label3);
     this.radPanel1.Controls.Add(this.label4);
     this.radPanel1.Controls.Add(this.txtId);
     this.radPanel1.Controls.Add(this.txtLista);
     this.radPanel1.Controls.Add(this.label2);
     this.radPanel1.Controls.Add(this.txtOP);
     this.radPanel1.Controls.Add(this.label1);
     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(858, 102);
     this.radPanel1.TabIndex = 0;
     //
     // cboReflejante2
     //
     this.cboReflejante2.AutoCompleteMode = System.Windows.Forms.AutoCompleteMode.SuggestAppend;
     this.cboReflejante2.Location         = new System.Drawing.Point(468, 65);
     this.cboReflejante2.Name             = "cboReflejante2";
     this.cboReflejante2.Size             = new System.Drawing.Size(153, 20);
     this.cboReflejante2.TabIndex         = 6;
     //
     // cboReflejante1
     //
     this.cboReflejante1.AutoCompleteMode = System.Windows.Forms.AutoCompleteMode.SuggestAppend;
     this.cboReflejante1.Location         = new System.Drawing.Point(468, 41);
     this.cboReflejante1.Name             = "cboReflejante1";
     this.cboReflejante1.Size             = new System.Drawing.Size(153, 20);
     this.cboReflejante1.TabIndex         = 5;
     //
     // label5
     //
     this.label5.AutoSize = true;
     this.label5.Location = new System.Drawing.Point(396, 69);
     this.label5.Name     = "label5";
     this.label5.Size     = new System.Drawing.Size(71, 13);
     this.label5.TabIndex = 30;
     this.label5.Text     = "Reflejante 2:";
     //
     // cboProducto
     //
     this.cboProducto.AutoCompleteMode      = System.Windows.Forms.AutoCompleteMode.SuggestAppend;
     this.cboProducto.DropDownStyle         = Telerik.WinControls.RadDropDownStyle.DropDownList;
     this.cboProducto.Location              = new System.Drawing.Point(67, 65);
     this.cboProducto.Name                  = "cboProducto";
     this.cboProducto.Size                  = new System.Drawing.Size(221, 20);
     this.cboProducto.TabIndex              = 3;
     this.cboProducto.SelectedIndexChanged += new Telerik.WinControls.UI.Data.PositionChangedEventHandler(this.cboProducto_SelectedIndexChanged);
     //
     // cboCarcasa
     //
     this.cboCarcasa.AutoCompleteMode = System.Windows.Forms.AutoCompleteMode.SuggestAppend;
     this.cboCarcasa.Location         = new System.Drawing.Point(468, 16);
     this.cboCarcasa.Name             = "cboCarcasa";
     this.cboCarcasa.Size             = new System.Drawing.Size(153, 20);
     this.cboCarcasa.TabIndex         = 4;
     //
     // label10
     //
     this.label10.AutoSize = true;
     this.label10.Location = new System.Drawing.Point(418, 20);
     this.label10.Name     = "label10";
     this.label10.Size     = new System.Drawing.Size(49, 13);
     this.label10.TabIndex = 27;
     this.label10.Text     = "Carcasa:";
     //
     // label3
     //
     this.label3.AutoSize = true;
     this.label3.Location = new System.Drawing.Point(396, 45);
     this.label3.Name     = "label3";
     this.label3.Size     = new System.Drawing.Size(71, 13);
     this.label3.TabIndex = 26;
     this.label3.Text     = "Reflejante 1:";
     //
     // label4
     //
     this.label4.AutoSize = true;
     this.label4.Location = new System.Drawing.Point(9, 69);
     this.label4.Name     = "label4";
     this.label4.Size     = new System.Drawing.Size(57, 13);
     this.label4.TabIndex = 25;
     this.label4.Text     = "Producto:";
     //
     // txtId
     //
     this.txtId.Location  = new System.Drawing.Point(191, 20);
     this.txtId.Name      = "txtId";
     this.txtId.Size      = new System.Drawing.Size(47, 20);
     this.txtId.TabIndex  = 7;
     this.txtId.Text      = "0";
     this.txtId.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     this.txtId.Visible   = false;
     //
     // txtLista
     //
     this.txtLista.AcceptsReturn = true;
     this.txtLista.Location      = new System.Drawing.Point(67, 41);
     this.txtLista.Name          = "txtLista";
     this.txtLista.Size          = new System.Drawing.Size(76, 20);
     this.txtLista.TabIndex      = 2;
     this.txtLista.TextAlign     = System.Windows.Forms.HorizontalAlignment.Center;
     this.txtLista.KeyDown      += new System.Windows.Forms.KeyEventHandler(this.Contol_KeyDown);
     this.txtLista.KeyPress     += new System.Windows.Forms.KeyPressEventHandler(this.txtLista_KeyPress);
     this.txtLista.Leave        += new System.EventHandler(this.txtOP_Leave);
     //
     // label2
     //
     this.label2.AutoSize = true;
     this.label2.Location = new System.Drawing.Point(33, 45);
     this.label2.Name     = "label2";
     this.label2.Size     = new System.Drawing.Size(33, 13);
     this.label2.TabIndex = 4;
     this.label2.Text     = "Lista:";
     //
     // txtOP
     //
     this.txtOP.AcceptsReturn = true;
     this.txtOP.Location      = new System.Drawing.Point(67, 16);
     this.txtOP.Name          = "txtOP";
     this.txtOP.Size          = new System.Drawing.Size(97, 20);
     this.txtOP.TabIndex      = 1;
     this.txtOP.TextAlign     = System.Windows.Forms.HorizontalAlignment.Center;
     this.txtOP.KeyDown      += new System.Windows.Forms.KeyEventHandler(this.Contol_KeyDown);
     this.txtOP.Leave        += new System.EventHandler(this.txtOP_Leave);
     //
     // label1
     //
     this.label1.AutoSize = true;
     this.label1.Location = new System.Drawing.Point(41, 20);
     this.label1.Name     = "label1";
     this.label1.Size     = new System.Drawing.Size(25, 13);
     this.label1.TabIndex = 2;
     this.label1.Text     = "OP:";
     //
     // radPanel3
     //
     this.radPanel3.Controls.Add(this.btnBuscar);
     this.radPanel3.Controls.Add(this.btnSalir);
     this.radPanel3.Controls.Add(this.btnGuardar);
     this.radPanel3.Dock     = System.Windows.Forms.DockStyle.Bottom;
     this.radPanel3.Location = new System.Drawing.Point(0, 299);
     this.radPanel3.Name     = "radPanel3";
     this.radPanel3.Size     = new System.Drawing.Size(858, 47);
     this.radPanel3.TabIndex = 29;
     //
     // btnBuscar
     //
     this.btnBuscar.Image             = ((System.Drawing.Image)(resources.GetObject("btnBuscar.Image")));
     this.btnBuscar.ImageAlignment    = System.Drawing.ContentAlignment.MiddleCenter;
     this.btnBuscar.Location          = new System.Drawing.Point(12, 3);
     this.btnBuscar.Name              = "btnBuscar";
     this.btnBuscar.Size              = new System.Drawing.Size(80, 40);
     this.btnBuscar.TabIndex          = 7;
     this.btnBuscar.Text              = "Buscar";
     this.btnBuscar.TextAlignment     = System.Drawing.ContentAlignment.MiddleRight;
     this.btnBuscar.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageBeforeText;
     this.btnBuscar.Click            += new System.EventHandler(this.btnBuscar_Click);
     //
     // btnSalir
     //
     this.btnSalir.Image             = ((System.Drawing.Image)(resources.GetObject("btnSalir.Image")));
     this.btnSalir.ImageAlignment    = System.Drawing.ContentAlignment.MiddleCenter;
     this.btnSalir.Location          = new System.Drawing.Point(756, 3);
     this.btnSalir.Name              = "btnSalir";
     this.btnSalir.Size              = new System.Drawing.Size(80, 40);
     this.btnSalir.TabIndex          = 9;
     this.btnSalir.Text              = "Salir";
     this.btnSalir.TextAlignment     = System.Drawing.ContentAlignment.MiddleRight;
     this.btnSalir.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageBeforeText;
     this.btnSalir.Click            += new System.EventHandler(this.btnSalir_Click);
     //
     // btnGuardar
     //
     this.btnGuardar.Image             = ((System.Drawing.Image)(resources.GetObject("btnGuardar.Image")));
     this.btnGuardar.ImageAlignment    = System.Drawing.ContentAlignment.MiddleCenter;
     this.btnGuardar.Location          = new System.Drawing.Point(670, 3);
     this.btnGuardar.Name              = "btnGuardar";
     this.btnGuardar.Size              = new System.Drawing.Size(80, 40);
     this.btnGuardar.TabIndex          = 8;
     this.btnGuardar.Text              = "Guardar";
     this.btnGuardar.TextAlignment     = System.Drawing.ContentAlignment.MiddleRight;
     this.btnGuardar.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageBeforeText;
     this.btnGuardar.Click            += new System.EventHandler(this.btnGuardar_Click);
     //
     // radPanel2
     //
     this.radPanel2.Controls.Add(this.gvDatos);
     this.radPanel2.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.radPanel2.Location = new System.Drawing.Point(0, 102);
     this.radPanel2.Name     = "radPanel2";
     this.radPanel2.Size     = new System.Drawing.Size(858, 197);
     this.radPanel2.TabIndex = 30;
     //
     // gvDatos
     //
     this.gvDatos.AutoScroll   = true;
     this.gvDatos.Dock         = System.Windows.Forms.DockStyle.Fill;
     this.gvDatos.EnterKeyMode = Telerik.WinControls.UI.RadGridViewEnterKeyMode.EnterMovesToNextCell;
     this.gvDatos.Location     = new System.Drawing.Point(0, 0);
     //
     //
     //
     this.gvDatos.MasterTemplate.AllowCellContextMenu      = false;
     this.gvDatos.MasterTemplate.AllowColumnReorder        = false;
     this.gvDatos.MasterTemplate.AllowDeleteRow            = false;
     this.gvDatos.MasterTemplate.AllowDragToGroup          = false;
     this.gvDatos.MasterTemplate.AllowRowHeaderContextMenu = false;
     this.gvDatos.MasterTemplate.AllowRowResize            = false;
     this.gvDatos.MasterTemplate.AutoGenerateColumns       = false;
     gridViewDateTimeColumn1.FieldName         = "Fecha";
     gridViewDateTimeColumn1.HeaderText        = "FECHA";
     gridViewDateTimeColumn1.MaxWidth          = 150;
     gridViewDateTimeColumn1.MinWidth          = 150;
     gridViewDateTimeColumn1.Name              = "Fecha";
     gridViewDateTimeColumn1.ReadOnly          = true;
     gridViewDateTimeColumn1.Width             = 150;
     gridViewComboBoxColumn1.FieldName         = "Maquina";
     gridViewComboBoxColumn1.HeaderText        = "MÁQUINA";
     gridViewComboBoxColumn1.MaxWidth          = 100;
     gridViewComboBoxColumn1.MinWidth          = 60;
     gridViewComboBoxColumn1.Name              = "Maquina";
     gridViewComboBoxColumn1.Width             = 60;
     gridViewDecimalColumn1.FieldName          = "Presion";
     gridViewDecimalColumn1.FormatString       = "{0:N2}";
     gridViewDecimalColumn1.HeaderText         = "PRESIÓN";
     gridViewDecimalColumn1.MaxWidth           = 60;
     gridViewDecimalColumn1.MinWidth           = 60;
     gridViewDecimalColumn1.Name               = "Presion";
     gridViewDecimalColumn1.TextAlignment      = System.Drawing.ContentAlignment.MiddleCenter;
     gridViewDecimalColumn1.ThousandsSeparator = true;
     gridViewDecimalColumn1.Width              = 60;
     gridViewDecimalColumn2.FieldName          = "Energia";
     gridViewDecimalColumn2.FormatString       = "{0:N2}";
     gridViewDecimalColumn2.HeaderText         = "ENERGÍA";
     gridViewDecimalColumn2.MaxWidth           = 60;
     gridViewDecimalColumn2.MinWidth           = 60;
     gridViewDecimalColumn2.Name               = "Energia";
     gridViewDecimalColumn2.TextAlignment      = System.Drawing.ContentAlignment.MiddleCenter;
     gridViewDecimalColumn2.ThousandsSeparator = true;
     gridViewDecimalColumn2.Width              = 60;
     gridViewTextBoxColumn1.FieldName          = "Colapso";
     gridViewTextBoxColumn1.HeaderText         = "COLAPSO";
     gridViewTextBoxColumn1.MaxWidth           = 200;
     gridViewTextBoxColumn1.MinWidth           = 150;
     gridViewTextBoxColumn1.Name               = "Colapso";
     gridViewTextBoxColumn1.Width              = 150;
     gridViewTextBoxColumn2.FieldName          = "Tiempo";
     gridViewTextBoxColumn2.HeaderText         = "TIEMPO";
     gridViewTextBoxColumn2.MaxWidth           = 50;
     gridViewTextBoxColumn2.MinWidth           = 50;
     gridViewTextBoxColumn2.Name               = "Tiempo";
     gridViewTextBoxColumn2.TextAlignment      = System.Drawing.ContentAlignment.MiddleCenter;
     gridViewDecimalColumn3.FieldName          = "Planeada";
     gridViewDecimalColumn3.FormatString       = "{0:N0}";
     gridViewDecimalColumn3.HeaderText         = "PROD. PLANEADA";
     gridViewDecimalColumn3.MaxWidth           = 65;
     gridViewDecimalColumn3.Minimum            = new decimal(new int[] {
         0,
         0,
         0,
         0
     });
     gridViewDecimalColumn3.MinWidth           = 65;
     gridViewDecimalColumn3.Name               = "Planeada";
     gridViewDecimalColumn3.TextAlignment      = System.Drawing.ContentAlignment.MiddleCenter;
     gridViewDecimalColumn3.ThousandsSeparator = true;
     gridViewDecimalColumn3.Width              = 65;
     gridViewDecimalColumn3.WrapText           = true;
     gridViewDecimalColumn4.FieldName          = "Real";
     gridViewDecimalColumn4.FormatString       = "{0:N0}";
     gridViewDecimalColumn4.HeaderText         = "PROD. REAL";
     gridViewDecimalColumn4.MaxWidth           = 55;
     gridViewDecimalColumn4.Minimum            = new decimal(new int[] {
         0,
         0,
         0,
         0
     });
     gridViewDecimalColumn4.MinWidth              = 55;
     gridViewDecimalColumn4.Name                  = "Real";
     gridViewDecimalColumn4.TextAlignment         = System.Drawing.ContentAlignment.MiddleCenter;
     gridViewDecimalColumn4.ThousandsSeparator    = true;
     gridViewDecimalColumn4.Width                 = 55;
     gridViewDecimalColumn4.WrapText              = true;
     gridViewTextBoxColumn3.ColumnCharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
     gridViewTextBoxColumn3.FieldName             = "Comentarios";
     gridViewTextBoxColumn3.HeaderText            = "COMENTARIOS";
     gridViewTextBoxColumn3.MaxWidth              = 200;
     gridViewTextBoxColumn3.MinWidth              = 180;
     gridViewTextBoxColumn3.Name                  = "Comentarios";
     gridViewTextBoxColumn3.Width                 = 180;
     gridViewTextBoxColumn4.FieldName             = "Estatus";
     gridViewTextBoxColumn4.HeaderText            = "Estatus";
     gridViewTextBoxColumn4.IsVisible             = false;
     gridViewTextBoxColumn4.Name                  = "Estatus";
     this.gvDatos.MasterTemplate.Columns.AddRange(new Telerik.WinControls.UI.GridViewDataColumn[] {
         gridViewDateTimeColumn1,
         gridViewComboBoxColumn1,
         gridViewDecimalColumn1,
         gridViewDecimalColumn2,
         gridViewTextBoxColumn1,
         gridViewTextBoxColumn2,
         gridViewDecimalColumn3,
         gridViewDecimalColumn4,
         gridViewTextBoxColumn3,
         gridViewTextBoxColumn4
     });
     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.ShowNoDataText     = false;
     this.gvDatos.Size         = new System.Drawing.Size(858, 197);
     this.gvDatos.TabIndex     = 10;
     this.gvDatos.CellEndEdit += new Telerik.WinControls.UI.GridViewCellEventHandler(this.gvDatos_CellEndEdit);
     //
     // frmEnsambleSup
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize          = new System.Drawing.Size(858, 346);
     this.Controls.Add(this.radPanel2);
     this.Controls.Add(this.radPanel3);
     this.Controls.Add(this.radPanel1);
     this.MaximizeBox = false;
     this.MinimizeBox = false;
     this.Name        = "frmEnsambleSup";
     //
     //
     //
     this.RootElement.ApplyShapeToControl = true;
     this.ShowIcon      = false;
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text          = "PARÁMETROS ENSAMBLE";
     this.ThemeName     = "MaterialTeal";
     this.Load         += new System.EventHandler(this.frmEnsambleSup_Load);
     ((System.ComponentModel.ISupportInitialize)(this.radPanel1)).EndInit();
     this.radPanel1.ResumeLayout(false);
     this.radPanel1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.cboReflejante2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cboReflejante1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cboProducto)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cboCarcasa)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtId)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtLista)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtOP)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radPanel3)).EndInit();
     this.radPanel3.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.btnBuscar)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.btnSalir)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.btnGuardar)).EndInit();
     ((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);
 }
Example #45
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 tanggalLabel;
     System.Windows.Forms.Label label3;
     System.Windows.Forms.Label label4;
     System.Windows.Forms.Label label2;
     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.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.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  gridViewDecimalColumn3  = new Telerik.WinControls.UI.GridViewDecimalColumn();
     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();
     this.vproductbaseBindingSource = new System.Windows.Forms.BindingSource(this.components);
     this.sinarekDataSet            = new NB.sinarekDataSet();
     this.btnSimpan               = new Telerik.WinControls.UI.RadButton();
     this.btnCancel               = new Telerik.WinControls.UI.RadButton();
     this.radGridView1            = new Telerik.WinControls.UI.RadGridView();
     this.btnNext                 = new Telerik.WinControls.UI.RadButton();
     this.radGroupBox2            = new Telerik.WinControls.UI.RadGroupBox();
     this.radGroupBox3            = new Telerik.WinControls.UI.RadGroupBox();
     this.rbtnMeja                = new Telerik.WinControls.UI.RadRadioButton();
     this.rbtnMesin               = new Telerik.WinControls.UI.RadRadioButton();
     this.rbtnBorongan            = new Telerik.WinControls.UI.RadRadioButton();
     this.radLabel3               = new Telerik.WinControls.UI.RadLabel();
     this.txtKeterangan           = new Telerik.WinControls.UI.RadTextBox();
     this.btnAdd                  = new Telerik.WinControls.UI.RadButton();
     this.txtQuantity             = new Telerik.WinControls.UI.RadMaskedEditBox();
     this.rddProduct              = new Telerik.WinControls.UI.RadDropDownList();
     this.vallsupBindingSource    = new System.Windows.Forms.BindingSource(this.components);
     this.custtypeBindingSource1  = new System.Windows.Forms.BindingSource(this.components);
     this.btnCancelSJ             = new Telerik.WinControls.UI.RadButton();
     this.radLabel1               = new Telerik.WinControls.UI.RadLabel();
     this.radMultiColumnComboBox1 = new Telerik.WinControls.UI.RadMultiColumnComboBox();
     this.radMultiColumnComboBox2 = new Telerik.WinControls.UI.RadMultiColumnComboBox();
     this.txtSJ                    = new Telerik.WinControls.UI.RadTextBox();
     this.radGroupBox1             = new Telerik.WinControls.UI.RadGroupBox();
     this.dtpTanggal               = new Telerik.WinControls.UI.RadDateTimePicker();
     this.rddSup                   = new Telerik.WinControls.UI.RadDropDownList();
     this.vproductbaseTableAdapter = new NB.sinarekDataSetTableAdapters.vproductbaseTableAdapter();
     this.custtypeBindingSource    = new System.Windows.Forms.BindingSource(this.components);
     this.custtypeTableAdapter     = new NB.sinarekDataSetTableAdapters.custtypeTableAdapter();
     this.logdetailBindingSource   = new System.Windows.Forms.BindingSource(this.components);
     this.logdetailTableAdapter    = new NB.sinarekDataSetTableAdapters.logdetailTableAdapter();
     this.vallsupTableAdapter      = new NB.sinarekDataSetTableAdapters.vallsupTableAdapter();
     this.salesBindingSource       = new System.Windows.Forms.BindingSource(this.components);
     this.salesTableAdapter        = new NB.sinarekDataSetTableAdapters.salesTableAdapter();
     tanggalLabel                  = new System.Windows.Forms.Label();
     label3 = new System.Windows.Forms.Label();
     label4 = new System.Windows.Forms.Label();
     label2 = new System.Windows.Forms.Label();
     ((System.ComponentModel.ISupportInitialize)(this.vproductbaseBindingSource)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.sinarekDataSet)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.btnSimpan)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.btnCancel)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radGridView1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radGridView1.MasterTemplate)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.btnNext)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radGroupBox2)).BeginInit();
     this.radGroupBox2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.radGroupBox3)).BeginInit();
     this.radGroupBox3.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.rbtnMeja)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.rbtnMesin)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.rbtnBorongan)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtKeterangan)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.btnAdd)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtQuantity)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.rddProduct)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.vallsupBindingSource)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.custtypeBindingSource1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.btnCancelSJ)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radMultiColumnComboBox1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radMultiColumnComboBox1.EditorControl)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radMultiColumnComboBox1.EditorControl.MasterTemplate)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radMultiColumnComboBox2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radMultiColumnComboBox2.EditorControl)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radMultiColumnComboBox2.EditorControl.MasterTemplate)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtSJ)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radGroupBox1)).BeginInit();
     this.radGroupBox1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dtpTanggal)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.rddSup)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.custtypeBindingSource)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.logdetailBindingSource)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.salesBindingSource)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
     this.SuspendLayout();
     //
     // tanggalLabel
     //
     tanggalLabel.AutoSize = true;
     tanggalLabel.Font     = new System.Drawing.Font("Segoe UI", 10F);
     tanggalLabel.Location = new System.Drawing.Point(15, 13);
     tanggalLabel.Name     = "tanggalLabel";
     tanggalLabel.Size     = new System.Drawing.Size(64, 19);
     tanggalLabel.TabIndex = 20;
     tanggalLabel.Text     = "Tanggal :";
     //
     // label3
     //
     label3.AutoSize = true;
     label3.Font     = new System.Drawing.Font("Segoe UI", 10F);
     label3.Location = new System.Drawing.Point(6, 53);
     label3.Name     = "label3";
     label3.Size     = new System.Drawing.Size(59, 19);
     label3.TabIndex = 45;
     label3.Text     = "Jumlah :";
     //
     // label4
     //
     label4.AutoSize = true;
     label4.Font     = new System.Drawing.Font("Segoe UI", 10F);
     label4.Location = new System.Drawing.Point(6, 25);
     label4.Name     = "label4";
     label4.Size     = new System.Drawing.Size(52, 19);
     label4.TabIndex = 48;
     label4.Text     = "Nama :";
     //
     // label2
     //
     label2.AutoSize = true;
     label2.Font     = new System.Drawing.Font("Segoe UI", 10F);
     label2.Location = new System.Drawing.Point(5, 6);
     label2.Name     = "label2";
     label2.Size     = new System.Drawing.Size(64, 19);
     label2.TabIndex = 49;
     label2.Text     = "Kondisi  :";
     //
     // vproductbaseBindingSource
     //
     this.vproductbaseBindingSource.DataMember = "vproductbase";
     this.vproductbaseBindingSource.DataSource = this.sinarekDataSet;
     this.vproductbaseBindingSource.Filter     = "active = 1";
     this.vproductbaseBindingSource.Sort       = "ProductLong Asc";
     //
     // sinarekDataSet
     //
     this.sinarekDataSet.DataSetName             = "sinarekDataSet";
     this.sinarekDataSet.SchemaSerializationMode = System.Data.SchemaSerializationMode.IncludeSchema;
     //
     // btnSimpan
     //
     this.btnSimpan.Font     = new System.Drawing.Font("Segoe UI", 10F);
     this.btnSimpan.Location = new System.Drawing.Point(208, 392);
     this.btnSimpan.Name     = "btnSimpan";
     this.btnSimpan.Size     = new System.Drawing.Size(124, 28);
     this.btnSimpan.TabIndex = 21;
     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(406, 392);
     this.btnCancel.Name     = "btnCancel";
     this.btnCancel.Size     = new System.Drawing.Size(93, 28);
     this.btnCancel.TabIndex = 22;
     this.btnCancel.Text     = "&Cancel";
     this.btnCancel.Click   += new System.EventHandler(this.btnCancel_Click);
     //
     // radGridView1
     //
     this.radGridView1.EnableCustomDrawing = true;
     this.radGridView1.Font     = new System.Drawing.Font("Segoe UI", 10F);
     this.radGridView1.Location = new System.Drawing.Point(10, 225);
     //
     //
     //
     this.radGridView1.MasterTemplate.AllowAddNewRow      = false;
     this.radGridView1.MasterTemplate.AllowDragToGroup    = false;
     this.radGridView1.MasterTemplate.AllowEditRow        = false;
     this.radGridView1.MasterTemplate.AutoGenerateColumns = false;
     gridViewDecimalColumn1.HeaderText     = "#";
     gridViewDecimalColumn1.Name           = "norow";
     gridViewDecimalColumn1.ReadOnly       = true;
     gridViewTextBoxColumn1.DataType       = typeof(long);
     gridViewTextBoxColumn1.FieldName      = "detailid";
     gridViewTextBoxColumn1.HeaderText     = "detailid";
     gridViewTextBoxColumn1.IsVisible      = false;
     gridViewTextBoxColumn1.Name           = "detailid";
     gridViewDecimalColumn2.FieldName      = "quantity";
     gridViewDecimalColumn2.HeaderText     = "Jumlah";
     gridViewDecimalColumn2.Name           = "quantity";
     gridViewDecimalColumn2.Width          = 100;
     gridViewComboBoxColumn1.DataSource    = this.vproductbaseBindingSource;
     gridViewComboBoxColumn1.DataType      = typeof(int);
     gridViewComboBoxColumn1.DisplayMember = "ProdName";
     gridViewComboBoxColumn1.FieldName     = "baseid";
     gridViewComboBoxColumn1.HeaderText    = "Nama Barang";
     gridViewComboBoxColumn1.Name          = "productid";
     gridViewComboBoxColumn1.ValueMember   = "baseid";
     gridViewComboBoxColumn1.Width         = 175;
     gridViewDateTimeColumn1.FieldName     = "expireddate";
     gridViewDateTimeColumn1.FormatString  = "{0:dd MMM yyy}";
     gridViewDateTimeColumn1.HeaderText    = "Tanggal";
     gridViewDateTimeColumn1.IsVisible     = false;
     gridViewDateTimeColumn1.Name          = "expireddate";
     gridViewDateTimeColumn1.Width         = 100;
     gridViewComboBoxColumn2.DisplayMember = "Short";
     gridViewComboBoxColumn2.FieldName     = "unitid";
     gridViewComboBoxColumn2.HeaderText    = "";
     gridViewComboBoxColumn2.IsPinned      = true;
     gridViewComboBoxColumn2.IsVisible     = false;
     gridViewComboBoxColumn2.Name          = "unitid";
     gridViewComboBoxColumn2.PinPosition   = Telerik.WinControls.UI.PinnedColumnPosition.Right;
     gridViewComboBoxColumn2.ValueMember   = "unitid";
     gridViewTextBoxColumn2.FieldName      = "keterangan";
     gridViewTextBoxColumn2.HeaderText     = "Keterangan";
     gridViewTextBoxColumn2.Name           = "keterangan";
     gridViewTextBoxColumn2.Width          = 150;
     gridViewTextBoxColumn3.FieldName      = "custtypeid";
     gridViewTextBoxColumn3.HeaderText     = "custtypeid";
     gridViewTextBoxColumn3.IsVisible      = false;
     gridViewTextBoxColumn3.Name           = "custtypeid";
     gridViewTextBoxColumn4.FieldName      = "status";
     gridViewTextBoxColumn4.HeaderText     = "status";
     gridViewTextBoxColumn4.IsVisible      = false;
     gridViewTextBoxColumn4.Name           = "status";
     gridViewDecimalColumn3.FieldName      = "custtypetoid";
     gridViewDecimalColumn3.HeaderText     = "custtypetoid";
     gridViewDecimalColumn3.IsVisible      = false;
     gridViewDecimalColumn3.Name           = "custtypetoid";
     this.radGridView1.MasterTemplate.Columns.AddRange(new Telerik.WinControls.UI.GridViewDataColumn[] {
         gridViewDecimalColumn1,
         gridViewTextBoxColumn1,
         gridViewDecimalColumn2,
         gridViewComboBoxColumn1,
         gridViewDateTimeColumn1,
         gridViewComboBoxColumn2,
         gridViewTextBoxColumn2,
         gridViewTextBoxColumn3,
         gridViewTextBoxColumn4,
         gridViewDecimalColumn3
     });
     this.radGridView1.MasterTemplate.ShowRowHeaderColumn = false;
     this.radGridView1.MasterTemplate.ViewDefinition      = tableViewDefinition1;
     this.radGridView1.Name           = "radGridView1";
     this.radGridView1.ShowGroupPanel = false;
     this.radGridView1.Size           = new System.Drawing.Size(491, 155);
     this.radGridView1.TabIndex       = 37;
     this.radGridView1.Text           = "radGridView1";
     this.radGridView1.RowsChanged   += new Telerik.WinControls.UI.GridViewCollectionChangedEventHandler(this.radGridView1_RowsChanged);
     //
     // btnNext
     //
     this.btnNext.Font      = new System.Drawing.Font("Segoe UI", 10F);
     this.btnNext.Location  = new System.Drawing.Point(10, 392);
     this.btnNext.Name      = "btnNext";
     this.btnNext.Size      = new System.Drawing.Size(124, 28);
     this.btnNext.TabIndex  = 20;
     this.btnNext.Text      = "&Next";
     this.btnNext.ThemeName = "Office2007Black";
     this.btnNext.Click    += new System.EventHandler(this.btnNext_Click);
     //
     // radGroupBox2
     //
     this.radGroupBox2.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
     this.radGroupBox2.Controls.Add(this.radGroupBox3);
     this.radGroupBox2.Controls.Add(this.radLabel3);
     this.radGroupBox2.Controls.Add(label4);
     this.radGroupBox2.Controls.Add(this.txtKeterangan);
     this.radGroupBox2.Controls.Add(this.btnAdd);
     this.radGroupBox2.Controls.Add(label3);
     this.radGroupBox2.Controls.Add(this.txtQuantity);
     this.radGroupBox2.Controls.Add(this.rddProduct);
     this.radGroupBox2.Font       = new System.Drawing.Font("Segoe UI", 10F);
     this.radGroupBox2.HeaderText = "Barang";
     this.radGroupBox2.Location   = new System.Drawing.Point(10, 73);
     this.radGroupBox2.Name       = "radGroupBox2";
     this.radGroupBox2.Size       = new System.Drawing.Size(491, 148);
     this.radGroupBox2.TabIndex   = 7;
     this.radGroupBox2.TabStop    = false;
     this.radGroupBox2.Text       = "Barang";
     //
     // radGroupBox3
     //
     this.radGroupBox3.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
     this.radGroupBox3.Controls.Add(label2);
     this.radGroupBox3.Controls.Add(this.rbtnMeja);
     this.radGroupBox3.Controls.Add(this.rbtnMesin);
     this.radGroupBox3.Controls.Add(this.rbtnBorongan);
     this.radGroupBox3.Dock          = System.Windows.Forms.DockStyle.Bottom;
     this.radGroupBox3.Font          = new System.Drawing.Font("Segoe UI", 10F);
     this.radGroupBox3.GroupBoxStyle = Telerik.WinControls.UI.RadGroupBoxStyle.Office;
     this.radGroupBox3.HeaderText    = "";
     this.radGroupBox3.Location      = new System.Drawing.Point(2, 112);
     this.radGroupBox3.Name          = "radGroupBox3";
     this.radGroupBox3.Size          = new System.Drawing.Size(487, 34);
     this.radGroupBox3.TabIndex      = 8;
     this.radGroupBox3.TabStop       = false;
     this.radGroupBox3.Visible       = false;
     //
     // rbtnMeja
     //
     this.rbtnMeja.Font                = new System.Drawing.Font("Segoe UI", 10F);
     this.rbtnMeja.Location            = new System.Drawing.Point(326, 5);
     this.rbtnMeja.Name                = "rbtnMeja";
     this.rbtnMeja.Size                = new System.Drawing.Size(91, 21);
     this.rbtnMeja.TabIndex            = 12;
     this.rbtnMeja.Text                = "Pecah Meja";
     this.rbtnMeja.ToggleStateChanged += new Telerik.WinControls.UI.StateChangedEventHandler(this.rbtn_Changed);
     //
     // rbtnMesin
     //
     this.rbtnMesin.Font                = new System.Drawing.Font("Segoe UI", 10F);
     this.rbtnMesin.Location            = new System.Drawing.Point(216, 5);
     this.rbtnMesin.Name                = "rbtnMesin";
     this.rbtnMesin.Size                = new System.Drawing.Size(97, 21);
     this.rbtnMesin.TabIndex            = 11;
     this.rbtnMesin.Text                = "Pecah Mesin";
     this.rbtnMesin.ToggleStateChanged += new Telerik.WinControls.UI.StateChangedEventHandler(this.rbtn_Changed);
     //
     // rbtnBorongan
     //
     this.rbtnBorongan.CheckState          = System.Windows.Forms.CheckState.Checked;
     this.rbtnBorongan.Font                = new System.Drawing.Font("Segoe UI", 10F);
     this.rbtnBorongan.Location            = new System.Drawing.Point(89, 5);
     this.rbtnBorongan.Name                = "rbtnBorongan";
     this.rbtnBorongan.Size                = new System.Drawing.Size(120, 21);
     this.rbtnBorongan.TabIndex            = 9;
     this.rbtnBorongan.Text                = "Pecah Borongan";
     this.rbtnBorongan.ToggleState         = Telerik.WinControls.Enumerations.ToggleState.On;
     this.rbtnBorongan.ToggleStateChanged += new Telerik.WinControls.UI.StateChangedEventHandler(this.rbtn_Changed);
     //
     // radLabel3
     //
     this.radLabel3.Location = new System.Drawing.Point(6, 80);
     this.radLabel3.Name     = "radLabel3";
     this.radLabel3.Size     = new System.Drawing.Size(69, 18);
     this.radLabel3.TabIndex = 5;
     this.radLabel3.Text     = "Keterangan :";
     //
     // txtKeterangan
     //
     this.txtKeterangan.Font     = new System.Drawing.Font("Segoe UI", 10F);
     this.txtKeterangan.Location = new System.Drawing.Point(94, 79);
     this.txtKeterangan.Name     = "txtKeterangan";
     this.txtKeterangan.Size     = new System.Drawing.Size(262, 23);
     this.txtKeterangan.TabIndex = 7;
     this.txtKeterangan.TabStop  = false;
     //
     // btnAdd
     //
     this.btnAdd.Font      = new System.Drawing.Font("Segoe UI", 10F);
     this.btnAdd.Location  = new System.Drawing.Point(362, 24);
     this.btnAdd.Name      = "btnAdd";
     this.btnAdd.Size      = new System.Drawing.Size(123, 22);
     this.btnAdd.TabIndex  = 15;
     this.btnAdd.Tag       = "add";
     this.btnAdd.Text      = "&Add Item";
     this.btnAdd.ThemeName = "Office2007Black";
     this.btnAdd.Click    += new System.EventHandler(this.btnAdd_Click);
     //
     // txtQuantity
     //
     this.txtQuantity.Font      = new System.Drawing.Font("Segoe UI", 10F);
     this.txtQuantity.Location  = new System.Drawing.Point(94, 51);
     this.txtQuantity.Mask      = "n1";
     this.txtQuantity.MaskType  = Telerik.WinControls.UI.MaskType.Numeric;
     this.txtQuantity.Name      = "txtQuantity";
     this.txtQuantity.Size      = new System.Drawing.Size(67, 23);
     this.txtQuantity.TabIndex  = 5;
     this.txtQuantity.TabStop   = false;
     this.txtQuantity.Text      = "0.0";
     this.txtQuantity.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     //
     // rddProduct
     //
     this.rddProduct.AllowShowFocusCues        = true;
     this.rddProduct.AutoCompleteDisplayMember = "ProductLong";
     this.rddProduct.AutoCompleteMode          = System.Windows.Forms.AutoCompleteMode.SuggestAppend;
     this.rddProduct.AutoCompleteValueMember   = "baseid";
     this.rddProduct.DataBindings.Add(new System.Windows.Forms.Binding("Tag", this.vproductbaseBindingSource, "custtypeid", true));
     this.rddProduct.DataSource            = this.vproductbaseBindingSource;
     this.rddProduct.DescriptionTextMember = "UnitName";
     this.rddProduct.DisplayMember         = "ProductLong";
     this.rddProduct.Font        = new System.Drawing.Font("Segoe UI", 10F);
     this.rddProduct.Location    = new System.Drawing.Point(94, 23);
     this.rddProduct.Name        = "rddProduct";
     this.rddProduct.Size        = new System.Drawing.Size(262, 23);
     this.rddProduct.TabIndex    = 4;
     this.rddProduct.ValueMember = "baseid";
     this.rddProduct.Validating += new System.ComponentModel.CancelEventHandler(this.rddProduct_Validating);
     //
     // vallsupBindingSource
     //
     this.vallsupBindingSource.DataMember = "vallsup";
     this.vallsupBindingSource.DataSource = this.sinarekDataSet;
     this.vallsupBindingSource.Filter     = "custtypeid in (2,3,4,5) and sales =0";
     this.vallsupBindingSource.Sort       = "Nama asc";
     //
     // custtypeBindingSource1
     //
     this.custtypeBindingSource1.DataMember = "custtype";
     this.custtypeBindingSource1.DataSource = this.sinarekDataSet;
     //
     // btnCancelSJ
     //
     this.btnCancelSJ.Font      = new System.Drawing.Font("Segoe UI", 10F);
     this.btnCancelSJ.Location  = new System.Drawing.Point(317, 43);
     this.btnCancelSJ.Name      = "btnCancelSJ";
     this.btnCancelSJ.Size      = new System.Drawing.Size(184, 23);
     this.btnCancelSJ.TabIndex  = 39;
     this.btnCancelSJ.Tag       = "delete";
     this.btnCancelSJ.Text      = "Batalkan &Transaksi Masuk";
     this.btnCancelSJ.ThemeName = "Office2007Black";
     this.btnCancelSJ.Visible   = false;
     this.btnCancelSJ.Click    += new System.EventHandler(this.btnCancelSJ_Click);
     //
     // radLabel1
     //
     this.radLabel1.BackColor = System.Drawing.Color.Transparent;
     this.radLabel1.Location  = new System.Drawing.Point(15, 45);
     this.radLabel1.Name      = "radLabel1";
     this.radLabel1.Size      = new System.Drawing.Size(41, 18);
     this.radLabel1.TabIndex  = 0;
     this.radLabel1.Text      = "Nama :";
     //
     // radMultiColumnComboBox1
     //
     this.radMultiColumnComboBox1.AutoFilter         = true;
     this.radMultiColumnComboBox1.DisplayMember      = "Name";
     this.radMultiColumnComboBox1.DropDownSizingMode = ((Telerik.WinControls.UI.SizingMode)((Telerik.WinControls.UI.SizingMode.RightBottom | Telerik.WinControls.UI.SizingMode.UpDown)));
     //
     // radMultiColumnComboBox1.NestedRadGridView
     //
     this.radMultiColumnComboBox1.EditorControl.BackColor = System.Drawing.SystemColors.Window;
     this.radMultiColumnComboBox1.EditorControl.Font      = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.radMultiColumnComboBox1.EditorControl.ForeColor = System.Drawing.SystemColors.ControlText;
     this.radMultiColumnComboBox1.EditorControl.Location  = new System.Drawing.Point(0, 0);
     //
     //
     //
     this.radMultiColumnComboBox1.EditorControl.MasterTemplate.AllowAddNewRow       = false;
     this.radMultiColumnComboBox1.EditorControl.MasterTemplate.AllowCellContextMenu = false;
     this.radMultiColumnComboBox1.EditorControl.MasterTemplate.AllowColumnChooser   = false;
     this.radMultiColumnComboBox1.EditorControl.MasterTemplate.EnableFiltering      = true;
     this.radMultiColumnComboBox1.EditorControl.MasterTemplate.EnableGrouping       = false;
     this.radMultiColumnComboBox1.EditorControl.MasterTemplate.ShowFilteringRow     = false;
     this.radMultiColumnComboBox1.EditorControl.MasterTemplate.ViewDefinition       = tableViewDefinition2;
     this.radMultiColumnComboBox1.EditorControl.Name           = "NestedRadGridView";
     this.radMultiColumnComboBox1.EditorControl.ReadOnly       = true;
     this.radMultiColumnComboBox1.EditorControl.ShowGroupPanel = false;
     this.radMultiColumnComboBox1.EditorControl.Size           = new System.Drawing.Size(240, 150);
     this.radMultiColumnComboBox1.EditorControl.TabIndex       = 0;
     this.radMultiColumnComboBox1.Font     = new System.Drawing.Font("Segoe UI", 10F);
     this.radMultiColumnComboBox1.Location = new System.Drawing.Point(201, -21);
     this.radMultiColumnComboBox1.Name     = "radMultiColumnComboBox1";
     //
     //
     //
     this.radMultiColumnComboBox1.RootElement.AutoSizeMode = Telerik.WinControls.RadAutoSizeMode.WrapAroundChildren;
     this.radMultiColumnComboBox1.Size        = new System.Drawing.Size(221, 23);
     this.radMultiColumnComboBox1.TabIndex    = 6;
     this.radMultiColumnComboBox1.TabStop     = false;
     this.radMultiColumnComboBox1.ValueMember = "custid";
     //
     // radMultiColumnComboBox2
     //
     this.radMultiColumnComboBox2.AutoFilter         = true;
     this.radMultiColumnComboBox2.DisplayMember      = "Name";
     this.radMultiColumnComboBox2.DropDownSizingMode = ((Telerik.WinControls.UI.SizingMode)((Telerik.WinControls.UI.SizingMode.RightBottom | Telerik.WinControls.UI.SizingMode.UpDown)));
     //
     // radMultiColumnComboBox2.NestedRadGridView
     //
     this.radMultiColumnComboBox2.EditorControl.BackColor = System.Drawing.SystemColors.Window;
     this.radMultiColumnComboBox2.EditorControl.Font      = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.radMultiColumnComboBox2.EditorControl.ForeColor = System.Drawing.SystemColors.ControlText;
     this.radMultiColumnComboBox2.EditorControl.Location  = new System.Drawing.Point(0, 0);
     //
     //
     //
     this.radMultiColumnComboBox2.EditorControl.MasterTemplate.AllowAddNewRow       = false;
     this.radMultiColumnComboBox2.EditorControl.MasterTemplate.AllowCellContextMenu = false;
     this.radMultiColumnComboBox2.EditorControl.MasterTemplate.AllowColumnChooser   = false;
     this.radMultiColumnComboBox2.EditorControl.MasterTemplate.EnableFiltering      = true;
     this.radMultiColumnComboBox2.EditorControl.MasterTemplate.EnableGrouping       = false;
     this.radMultiColumnComboBox2.EditorControl.MasterTemplate.ShowFilteringRow     = false;
     this.radMultiColumnComboBox2.EditorControl.MasterTemplate.ViewDefinition       = tableViewDefinition3;
     this.radMultiColumnComboBox2.EditorControl.Name           = "NestedRadGridView";
     this.radMultiColumnComboBox2.EditorControl.ReadOnly       = true;
     this.radMultiColumnComboBox2.EditorControl.ShowGroupPanel = false;
     this.radMultiColumnComboBox2.EditorControl.Size           = new System.Drawing.Size(240, 150);
     this.radMultiColumnComboBox2.EditorControl.TabIndex       = 0;
     this.radMultiColumnComboBox2.Font     = new System.Drawing.Font("Segoe UI", 10F);
     this.radMultiColumnComboBox2.Location = new System.Drawing.Point(201, -21);
     this.radMultiColumnComboBox2.Name     = "radMultiColumnComboBox2";
     //
     //
     //
     this.radMultiColumnComboBox2.RootElement.AutoSizeMode = Telerik.WinControls.RadAutoSizeMode.WrapAroundChildren;
     this.radMultiColumnComboBox2.Size        = new System.Drawing.Size(221, 23);
     this.radMultiColumnComboBox2.TabIndex    = 6;
     this.radMultiColumnComboBox2.TabStop     = false;
     this.radMultiColumnComboBox2.ValueMember = "custid";
     //
     // txtSJ
     //
     this.txtSJ.Enabled   = false;
     this.txtSJ.Font      = new System.Drawing.Font("Segoe UI", 10F);
     this.txtSJ.Location  = new System.Drawing.Point(317, 9);
     this.txtSJ.Name      = "txtSJ";
     this.txtSJ.Size      = new System.Drawing.Size(184, 23);
     this.txtSJ.TabIndex  = 50;
     this.txtSJ.TabStop   = false;
     this.txtSJ.Text      = "No Transaksi";
     this.txtSJ.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     this.txtSJ.Visible   = false;
     //
     // radGroupBox1
     //
     this.radGroupBox1.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
     this.radGroupBox1.Controls.Add(this.dtpTanggal);
     this.radGroupBox1.Controls.Add(this.rddSup);
     this.radGroupBox1.Controls.Add(this.radLabel1);
     this.radGroupBox1.Controls.Add(this.btnCancelSJ);
     this.radGroupBox1.Controls.Add(this.txtSJ);
     this.radGroupBox1.Controls.Add(this.radGroupBox2);
     this.radGroupBox1.Controls.Add(this.btnSimpan);
     this.radGroupBox1.Controls.Add(tanggalLabel);
     this.radGroupBox1.Controls.Add(this.btnCancel);
     this.radGroupBox1.Controls.Add(this.btnNext);
     this.radGroupBox1.Controls.Add(this.radGridView1);
     this.radGroupBox1.Font       = new System.Drawing.Font("Segoe UI", 10F);
     this.radGroupBox1.HeaderText = "";
     this.radGroupBox1.Location   = new System.Drawing.Point(3, 6);
     this.radGroupBox1.Name       = "radGroupBox1";
     this.radGroupBox1.Size       = new System.Drawing.Size(506, 432);
     this.radGroupBox1.TabIndex   = 51;
     //
     // 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(79, 11);
     this.dtpTanggal.Name         = "dtpTanggal";
     this.dtpTanggal.Size         = new System.Drawing.Size(116, 23);
     this.dtpTanggal.TabIndex     = 51;
     this.dtpTanggal.TabStop      = false;
     this.dtpTanggal.Text         = "21 Apr 2012";
     this.dtpTanggal.Value        = new System.DateTime(2012, 4, 21, 7, 10, 16, 968);
     //
     // rddSup
     //
     this.rddSup.AutoCompleteDisplayMember = "Nama";
     this.rddSup.AutoCompleteMode          = System.Windows.Forms.AutoCompleteMode.SuggestAppend;
     this.rddSup.AutoCompleteValueMember   = "ID";
     this.rddSup.DataBindings.Add(new System.Windows.Forms.Binding("Tag", this.vallsupBindingSource, "CustTypeID", true));
     this.rddSup.DisplayMember = "Nama";
     this.rddSup.Enabled       = false;
     this.rddSup.Font          = new System.Drawing.Font("Segoe UI", 10F);
     this.rddSup.Location      = new System.Drawing.Point(79, 44);
     this.rddSup.Name          = "rddSup";
     this.rddSup.Size          = new System.Drawing.Size(177, 23);
     this.rddSup.TabIndex      = 3;
     this.rddSup.Text          = "SINAR";
     this.rddSup.ValueMember   = "ID";
     //
     // vproductbaseTableAdapter
     //
     this.vproductbaseTableAdapter.ClearBeforeFill = true;
     //
     // custtypeBindingSource
     //
     this.custtypeBindingSource.DataMember = "custtype";
     this.custtypeBindingSource.DataSource = this.sinarekDataSet;
     //
     // custtypeTableAdapter
     //
     this.custtypeTableAdapter.ClearBeforeFill = true;
     //
     // logdetailBindingSource
     //
     this.logdetailBindingSource.DataMember = "logdetail";
     this.logdetailBindingSource.DataSource = this.sinarekDataSet;
     //
     // logdetailTableAdapter
     //
     this.logdetailTableAdapter.ClearBeforeFill = true;
     //
     // vallsupTableAdapter
     //
     this.vallsupTableAdapter.ClearBeforeFill = true;
     //
     // salesBindingSource
     //
     this.salesBindingSource.DataMember = "sales";
     this.salesBindingSource.DataSource = this.sinarekDataSet;
     //
     // salesTableAdapter
     //
     this.salesTableAdapter.ClearBeforeFill = true;
     //
     // frmInputIntern
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize          = new System.Drawing.Size(512, 441);
     this.Controls.Add(this.radGroupBox1);
     this.Font            = new System.Drawing.Font("Segoe UI", 10F);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
     this.KeyPreview      = true;
     this.MaximizeBox     = false;
     this.MinimizeBox     = false;
     this.Name            = "frmInputIntern";
     //
     //
     //
     this.RootElement.ApplyShapeToControl = true;
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text          = "Barang Pecah";
     this.Load         += new System.EventHandler(this.Form_Load);
     ((System.ComponentModel.ISupportInitialize)(this.vproductbaseBindingSource)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.sinarekDataSet)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.btnSimpan)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.btnCancel)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radGridView1.MasterTemplate)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radGridView1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.btnNext)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radGroupBox2)).EndInit();
     this.radGroupBox2.ResumeLayout(false);
     this.radGroupBox2.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.radGroupBox3)).EndInit();
     this.radGroupBox3.ResumeLayout(false);
     this.radGroupBox3.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.rbtnMeja)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.rbtnMesin)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.rbtnBorongan)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtKeterangan)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.btnAdd)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtQuantity)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.rddProduct)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.vallsupBindingSource)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.custtypeBindingSource1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.btnCancelSJ)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radMultiColumnComboBox1.EditorControl.MasterTemplate)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radMultiColumnComboBox1.EditorControl)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radMultiColumnComboBox1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radMultiColumnComboBox2.EditorControl.MasterTemplate)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radMultiColumnComboBox2.EditorControl)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radMultiColumnComboBox2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtSJ)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radGroupBox1)).EndInit();
     this.radGroupBox1.ResumeLayout(false);
     this.radGroupBox1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dtpTanggal)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.rddSup)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.custtypeBindingSource)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.logdetailBindingSource)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.salesBindingSource)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this)).EndInit();
     this.ResumeLayout(false);
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.Windows.Forms.Label quantityLabel;
     System.Windows.Forms.Label baseIDLabel;
     System.Windows.Forms.Label priceLabel;
     System.Windows.Forms.Label logpelidLabel;
     System.Windows.Forms.Label kotaIDLabel;
     System.Windows.Forms.Label label1;
     System.Windows.Forms.Label label2;
     System.Windows.Forms.Label label3;
     Telerik.WinControls.UI.GridViewTextBoxColumn    gridViewTextBoxColumn37   = new Telerik.WinControls.UI.GridViewTextBoxColumn();
     Telerik.WinControls.UI.GridViewTextBoxColumn    gridViewTextBoxColumn38   = new Telerik.WinControls.UI.GridViewTextBoxColumn();
     Telerik.WinControls.UI.GridViewDecimalColumn    gridViewDecimalColumn19   = new Telerik.WinControls.UI.GridViewDecimalColumn();
     Telerik.WinControls.UI.GridViewComboBoxColumn   gridViewComboBoxColumn13  = new Telerik.WinControls.UI.GridViewComboBoxColumn();
     Telerik.WinControls.UI.GridViewDecimalColumn    gridViewDecimalColumn20   = new Telerik.WinControls.UI.GridViewDecimalColumn();
     Telerik.WinControls.UI.GridViewCalculatorColumn gridViewCalculatorColumn7 = new Telerik.WinControls.UI.GridViewCalculatorColumn();
     Telerik.WinControls.UI.GridViewTextBoxColumn    gridViewTextBoxColumn39   = new Telerik.WinControls.UI.GridViewTextBoxColumn();
     Telerik.WinControls.UI.GridViewComboBoxColumn   gridViewComboBoxColumn14  = new Telerik.WinControls.UI.GridViewComboBoxColumn();
     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.GridViewDecimalColumn    gridViewDecimalColumn21   = new Telerik.WinControls.UI.GridViewDecimalColumn();
     Telerik.WinControls.Data.GroupDescriptor        groupDescriptor7          = new Telerik.WinControls.Data.GroupDescriptor();
     Telerik.WinControls.Data.SortDescriptor         sortDescriptor7           = new Telerik.WinControls.Data.SortDescriptor();
     this.vproductbaseBindingSource = new System.Windows.Forms.BindingSource(this.components);
     this.sinarekDataSet            = new NB.sinarekDataSet();
     this.logotherBindingSource     = new System.Windows.Forms.BindingSource(this.components);
     this.logotherTableAdapter      = new NB.sinarekDataSetTableAdapters.logotherTableAdapter();
     this.txtQuantity              = new Telerik.WinControls.UI.RadMaskedEditBox();
     this.rddProduct               = new Telerik.WinControls.UI.RadDropDownList();
     this.txtPrice                 = new Telerik.WinControls.UI.RadMaskedEditBox();
     this.rddPel                   = new Telerik.WinControls.UI.RadDropDownList();
     this.pelBindingSource         = new System.Windows.Forms.BindingSource(this.components);
     this.rddKota                  = new Telerik.WinControls.UI.RadDropDownList();
     this.kotaBindingSource        = new System.Windows.Forms.BindingSource(this.components);
     this.radGroupBox1             = new Telerik.WinControls.UI.RadGroupBox();
     this.chkTukar                 = new Telerik.WinControls.UI.RadCheckBox();
     this.txtKeterangan            = new Telerik.WinControls.UI.RadTextBox();
     this.txtNota                  = new Telerik.WinControls.UI.RadMaskedEditBox();
     this.btnAdd                   = new Telerik.WinControls.UI.RadButton();
     this.btnCancel                = new Telerik.WinControls.UI.RadButton();
     this.btnSimpan                = new Telerik.WinControls.UI.RadButton();
     this.btnNext                  = new Telerik.WinControls.UI.RadButton();
     this.radGridView1             = new Telerik.WinControls.UI.RadGridView();
     this.kotaTableAdapter         = new NB.sinarekDataSetTableAdapters.kotaTableAdapter();
     this.pelTableAdapter          = new NB.sinarekDataSetTableAdapters.pelTableAdapter();
     this.vproductbaseTableAdapter = new NB.sinarekDataSetTableAdapters.vproductbaseTableAdapter();
     this.btnNewPel                = new Telerik.WinControls.UI.RadButton();
     this.dtpTanggal               = new Telerik.WinControls.UI.RadDateTimePicker();
     this.chkCredit                = new Telerik.WinControls.UI.RadCheckBox();
     this.chkKunjungan             = new Telerik.WinControls.UI.RadCheckBox();
     quantityLabel                 = new System.Windows.Forms.Label();
     baseIDLabel                   = new System.Windows.Forms.Label();
     priceLabel    = new System.Windows.Forms.Label();
     logpelidLabel = new System.Windows.Forms.Label();
     kotaIDLabel   = new System.Windows.Forms.Label();
     label1        = new System.Windows.Forms.Label();
     label2        = new System.Windows.Forms.Label();
     label3        = new System.Windows.Forms.Label();
     ((System.ComponentModel.ISupportInitialize)(this.vproductbaseBindingSource)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.sinarekDataSet)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.logotherBindingSource)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtQuantity)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.rddProduct)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtPrice)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.rddPel)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.pelBindingSource)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.rddKota)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.kotaBindingSource)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radGroupBox1)).BeginInit();
     this.radGroupBox1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.chkTukar)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtKeterangan)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtNota)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.btnAdd)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.btnCancel)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.btnSimpan)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.btnNext)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radGridView1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.btnNewPel)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dtpTanggal)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.chkCredit)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.chkKunjungan)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
     this.SuspendLayout();
     //
     // quantityLabel
     //
     quantityLabel.AutoSize = true;
     quantityLabel.Location = new System.Drawing.Point(16, 34);
     quantityLabel.Name     = "quantityLabel";
     quantityLabel.Size     = new System.Drawing.Size(59, 19);
     quantityLabel.TabIndex = 13;
     quantityLabel.Text     = "Jumlah :";
     //
     // baseIDLabel
     //
     baseIDLabel.AutoSize = true;
     baseIDLabel.Location = new System.Drawing.Point(16, 64);
     baseIDLabel.Name     = "baseIDLabel";
     baseIDLabel.Size     = new System.Drawing.Size(60, 19);
     baseIDLabel.TabIndex = 15;
     baseIDLabel.Text     = "Produk :";
     //
     // priceLabel
     //
     priceLabel.AutoSize = true;
     priceLabel.Location = new System.Drawing.Point(16, 93);
     priceLabel.Name     = "priceLabel";
     priceLabel.Size     = new System.Drawing.Size(96, 19);
     priceLabel.TabIndex = 17;
     priceLabel.Text     = "Harga :      Rp.";
     //
     // logpelidLabel
     //
     logpelidLabel.AutoSize = true;
     logpelidLabel.Location = new System.Drawing.Point(4, 35);
     logpelidLabel.Name     = "logpelidLabel";
     logpelidLabel.Size     = new System.Drawing.Size(80, 19);
     logpelidLabel.TabIndex = 27;
     logpelidLabel.Text     = "Pelanggan :";
     //
     // kotaIDLabel
     //
     kotaIDLabel.AutoSize = true;
     kotaIDLabel.Location = new System.Drawing.Point(4, 8);
     kotaIDLabel.Name     = "kotaIDLabel";
     kotaIDLabel.Size     = new System.Drawing.Size(44, 19);
     kotaIDLabel.TabIndex = 29;
     kotaIDLabel.Text     = "Kota :";
     //
     // label1
     //
     label1.AutoSize = true;
     label1.Location = new System.Drawing.Point(16, 5);
     label1.Name     = "label1";
     label1.Size     = new System.Drawing.Size(71, 19);
     label1.TabIndex = 32;
     label1.Text     = "No. Nota :";
     //
     // label2
     //
     label2.AutoSize = true;
     label2.Location = new System.Drawing.Point(16, 123);
     label2.Name     = "label2";
     label2.Size     = new System.Drawing.Size(82, 19);
     label2.TabIndex = 32;
     label2.Text     = "Keterangan:";
     //
     // label3
     //
     label3.AutoSize = true;
     label3.Location = new System.Drawing.Point(4, 63);
     label3.Name     = "label3";
     label3.Size     = new System.Drawing.Size(64, 19);
     label3.TabIndex = 40;
     label3.Text     = "Tanggal :";
     //
     // vproductbaseBindingSource
     //
     this.vproductbaseBindingSource.DataMember = "vproductbase";
     this.vproductbaseBindingSource.DataSource = this.sinarekDataSet;
     this.vproductbaseBindingSource.Filter     = "tipeid  in ( 1 ,11)";
     //
     // sinarekDataSet
     //
     this.sinarekDataSet.DataSetName             = "sinarekDataSet";
     this.sinarekDataSet.SchemaSerializationMode = System.Data.SchemaSerializationMode.IncludeSchema;
     //
     // logotherBindingSource
     //
     this.logotherBindingSource.DataMember = "logother";
     this.logotherBindingSource.DataSource = this.sinarekDataSet;
     //
     // logotherTableAdapter
     //
     this.logotherTableAdapter.ClearBeforeFill = true;
     //
     // txtQuantity
     //
     this.txtQuantity.AllowPromptAsInput = false;
     this.txtQuantity.AutoSize           = true;
     this.txtQuantity.Font      = new System.Drawing.Font("Segoe UI", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtQuantity.Location  = new System.Drawing.Point(114, 32);
     this.txtQuantity.Mask      = "n1";
     this.txtQuantity.MaskType  = Telerik.WinControls.UI.MaskType.Numeric;
     this.txtQuantity.Name      = "txtQuantity";
     this.txtQuantity.Size      = new System.Drawing.Size(212, 23);
     this.txtQuantity.TabIndex  = 7;
     this.txtQuantity.TabStop   = false;
     this.txtQuantity.Text      = "0.0";
     this.txtQuantity.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     this.txtQuantity.Value     = "0.0";
     //
     // rddProduct
     //
     this.rddProduct.AutoCompleteDisplayMember = "ProdName";
     this.rddProduct.AutoCompleteMode          = System.Windows.Forms.AutoCompleteMode.SuggestAppend;
     this.rddProduct.AutoCompleteValueMember   = "baseid";
     this.rddProduct.DataBindings.Add(new System.Windows.Forms.Binding("Tag", this.vproductbaseBindingSource, "Others", true));
     this.rddProduct.DataSource               = this.vproductbaseBindingSource;
     this.rddProduct.DescriptionTextMember    = "ProductLong";
     this.rddProduct.DisplayMember            = "ProdName";
     this.rddProduct.DropDownAnimationEnabled = true;
     this.rddProduct.Font     = new System.Drawing.Font("Segoe UI", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.rddProduct.Location = new System.Drawing.Point(114, 62);
     this.rddProduct.Name     = "rddProduct";
     this.rddProduct.ShowImageInEditorArea = true;
     this.rddProduct.Size                  = new System.Drawing.Size(258, 23);
     this.rddProduct.TabIndex              = 8;
     this.rddProduct.ValueMember           = "baseid";
     this.rddProduct.SelectedValueChanged += new System.EventHandler(this.rddProduct_SelectedValueChanged);
     //
     // txtPrice
     //
     this.txtPrice.AllowPromptAsInput = false;
     this.txtPrice.AutoSize           = true;
     this.txtPrice.Enabled            = false;
     this.txtPrice.Font      = new System.Drawing.Font("Segoe UI", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtPrice.Location  = new System.Drawing.Point(114, 91);
     this.txtPrice.Mask      = "n2";
     this.txtPrice.MaskType  = Telerik.WinControls.UI.MaskType.Numeric;
     this.txtPrice.Name      = "txtPrice";
     this.txtPrice.Size      = new System.Drawing.Size(212, 23);
     this.txtPrice.TabIndex  = 9;
     this.txtPrice.TabStop   = false;
     this.txtPrice.Text      = "0.00";
     this.txtPrice.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     this.txtPrice.Value     = "0.00";
     //
     // rddPel
     //
     this.rddPel.AutoCompleteDisplayMember = "Name";
     this.rddPel.AutoCompleteMode          = System.Windows.Forms.AutoCompleteMode.SuggestAppend;
     this.rddPel.AutoCompleteValueMember   = "custid";
     this.rddPel.DataSource               = this.pelBindingSource;
     this.rddPel.DescriptionTextMember    = "Address";
     this.rddPel.DisplayMember            = "Name";
     this.rddPel.DropDownAnimationEnabled = true;
     this.rddPel.Font     = new System.Drawing.Font("Segoe UI", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.rddPel.Location = new System.Drawing.Point(102, 33);
     this.rddPel.Name     = "rddPel";
     this.rddPel.ShowImageInEditorArea = true;
     this.rddPel.Size        = new System.Drawing.Size(229, 23);
     this.rddPel.TabIndex    = 2;
     this.rddPel.ValueMember = "custid";
     //
     // pelBindingSource
     //
     this.pelBindingSource.DataMember = "pel";
     this.pelBindingSource.DataSource = this.sinarekDataSet;
     //
     // rddKota
     //
     this.rddKota.AutoCompleteDisplayMember = "Nama";
     this.rddKota.AutoCompleteMode          = System.Windows.Forms.AutoCompleteMode.SuggestAppend;
     this.rddKota.AutoCompleteValueMember   = "KotaID";
     this.rddKota.DataSource               = this.kotaBindingSource;
     this.rddKota.DescriptionTextMember    = "Nama";
     this.rddKota.DisplayMember            = "Nama";
     this.rddKota.DropDownAnimationEnabled = true;
     this.rddKota.Font     = new System.Drawing.Font("Segoe UI", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.rddKota.Location = new System.Drawing.Point(102, 6);
     this.rddKota.Name     = "rddKota";
     this.rddKota.ShowImageInEditorArea = true;
     this.rddKota.Size                  = new System.Drawing.Size(229, 23);
     this.rddKota.TabIndex              = 1;
     this.rddKota.ValueMember           = "KotaID";
     this.rddKota.SelectedValueChanged += new System.EventHandler(this.rddKota_SelectedValueChanged);
     //
     // kotaBindingSource
     //
     this.kotaBindingSource.DataMember = "kota";
     this.kotaBindingSource.DataSource = this.sinarekDataSet;
     this.kotaBindingSource.Filter     = "systemonly = 0";
     //
     // radGroupBox1
     //
     this.radGroupBox1.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
     this.radGroupBox1.Controls.Add(this.chkTukar);
     this.radGroupBox1.Controls.Add(this.txtKeterangan);
     this.radGroupBox1.Controls.Add(this.txtNota);
     this.radGroupBox1.Controls.Add(label2);
     this.radGroupBox1.Controls.Add(this.btnAdd);
     this.radGroupBox1.Controls.Add(quantityLabel);
     this.radGroupBox1.Controls.Add(this.txtQuantity);
     this.radGroupBox1.Controls.Add(baseIDLabel);
     this.radGroupBox1.Controls.Add(label1);
     this.radGroupBox1.Controls.Add(this.rddProduct);
     this.radGroupBox1.Controls.Add(priceLabel);
     this.radGroupBox1.Controls.Add(this.txtPrice);
     this.radGroupBox1.Font             = new System.Drawing.Font("Segoe UI", 10F);
     this.radGroupBox1.FooterImageIndex = -1;
     this.radGroupBox1.FooterImageKey   = "";
     this.radGroupBox1.GroupBoxStyle    = Telerik.WinControls.UI.RadGroupBoxStyle.Office;
     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(5, 119);
     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(690, 150);
     this.radGroupBox1.TabIndex = 5;
     //
     // chkTukar
     //
     this.chkTukar.AutoSize       = false;
     this.chkTukar.CheckAlignment = System.Drawing.ContentAlignment.MiddleRight;
     this.chkTukar.Font           = new System.Drawing.Font("Segoe UI", 10F);
     this.chkTukar.Location       = new System.Drawing.Point(340, 93);
     this.chkTukar.Name           = "chkTukar";
     this.chkTukar.Size           = new System.Drawing.Size(110, 21);
     this.chkTukar.TabIndex       = 10;
     this.chkTukar.Text           = "Tukar Barang";
     //
     // txtKeterangan
     //
     this.txtKeterangan.Font     = new System.Drawing.Font("Segoe UI", 10F);
     this.txtKeterangan.Location = new System.Drawing.Point(114, 121);
     this.txtKeterangan.Name     = "txtKeterangan";
     this.txtKeterangan.Size     = new System.Drawing.Size(258, 23);
     this.txtKeterangan.TabIndex = 11;
     this.txtKeterangan.TabStop  = false;
     //
     // txtNota
     //
     this.txtNota.AllowPromptAsInput = false;
     this.txtNota.AutoSize           = true;
     this.txtNota.Font     = new System.Drawing.Font("Segoe UI", 10F);
     this.txtNota.Location = new System.Drawing.Point(114, 5);
     this.txtNota.Mask     = "d6";
     this.txtNota.MaskType = Telerik.WinControls.UI.MaskType.Numeric;
     this.txtNota.Name     = "txtNota";
     this.txtNota.Size     = new System.Drawing.Size(229, 23);
     this.txtNota.TabIndex = 6;
     this.txtNota.TabStop  = false;
     this.txtNota.Text     = "000000";
     this.txtNota.Value    = "000000";
     //
     // btnAdd
     //
     this.btnAdd.Font     = new System.Drawing.Font("Segoe UI", 10F);
     this.btnAdd.Location = new System.Drawing.Point(471, 12);
     this.btnAdd.Name     = "btnAdd";
     this.btnAdd.Size     = new System.Drawing.Size(81, 41);
     this.btnAdd.TabIndex = 12;
     this.btnAdd.Text     = "&Add";
     this.btnAdd.Click   += new System.EventHandler(this.btnAdd_Click);
     //
     // btnCancel
     //
     this.btnCancel.Font     = new System.Drawing.Font("Segoe UI", 10F);
     this.btnCancel.Location = new System.Drawing.Point(599, 450);
     this.btnCancel.Name     = "btnCancel";
     this.btnCancel.Size     = new System.Drawing.Size(92, 22);
     this.btnCancel.TabIndex = 22;
     this.btnCancel.Text     = "&Batal";
     this.btnCancel.Click   += new System.EventHandler(this.btnCancel_Click);
     //
     // btnSimpan
     //
     this.btnSimpan.Font     = new System.Drawing.Font("Segoe UI", 10F);
     this.btnSimpan.Location = new System.Drawing.Point(299, 450);
     this.btnSimpan.Name     = "btnSimpan";
     this.btnSimpan.Size     = new System.Drawing.Size(108, 22);
     this.btnSimpan.TabIndex = 21;
     this.btnSimpan.Text     = "&Simpan";
     this.btnSimpan.Click   += new System.EventHandler(this.btnSimpan_Click);
     //
     // btnNext
     //
     this.btnNext.Font     = new System.Drawing.Font("Segoe UI", 10F);
     this.btnNext.Location = new System.Drawing.Point(13, 450);
     this.btnNext.Name     = "btnNext";
     this.btnNext.Size     = new System.Drawing.Size(94, 22);
     this.btnNext.TabIndex = 20;
     this.btnNext.Text     = "&Next";
     this.btnNext.Click   += new System.EventHandler(this.btnNext_Click);
     //
     // radGridView1
     //
     this.radGridView1.EnableCustomDrawing = true;
     this.radGridView1.Font     = new System.Drawing.Font("Segoe UI", 10F);
     this.radGridView1.Location = new System.Drawing.Point(5, 274);
     //
     // radGridView1
     //
     this.radGridView1.MasterTemplate.AllowAddNewRow      = false;
     this.radGridView1.MasterTemplate.AllowDragToGroup    = false;
     this.radGridView1.MasterTemplate.AllowEditRow        = false;
     this.radGridView1.MasterTemplate.AutoGenerateColumns = false;
     gridViewTextBoxColumn37.DataType       = typeof(long);
     gridViewTextBoxColumn37.FieldName      = "detailid";
     gridViewTextBoxColumn37.HeaderText     = "detailid";
     gridViewTextBoxColumn37.IsVisible      = false;
     gridViewTextBoxColumn37.Name           = "detailid";
     gridViewTextBoxColumn38.FieldName      = "nota";
     gridViewTextBoxColumn38.HeaderText     = "No. Nota";
     gridViewTextBoxColumn38.Name           = "nota";
     gridViewTextBoxColumn38.Width          = 70;
     gridViewDecimalColumn19.FieldName      = "quantity";
     gridViewDecimalColumn19.FormatString   = "";
     gridViewDecimalColumn19.HeaderText     = "Jumlah";
     gridViewDecimalColumn19.Name           = "quantity";
     gridViewDecimalColumn19.TextAlignment  = System.Drawing.ContentAlignment.MiddleRight;
     gridViewDecimalColumn19.Width          = 75;
     gridViewComboBoxColumn13.DataSource    = this.vproductbaseBindingSource;
     gridViewComboBoxColumn13.DataType      = typeof(int);
     gridViewComboBoxColumn13.DisplayMember = "ProductLong";
     gridViewComboBoxColumn13.FieldName     = "baseid";
     gridViewComboBoxColumn13.FormatString  = "";
     gridViewComboBoxColumn13.HeaderText    = "Nama Barang";
     gridViewComboBoxColumn13.Name          = "productid";
     gridViewComboBoxColumn13.ValueMember   = "baseid";
     gridViewComboBoxColumn13.Width         = 170;
     gridViewDecimalColumn20.FieldName      = "Price";
     gridViewDecimalColumn20.FormatString   = "{0:Rp #,##0.00}";
     gridViewDecimalColumn20.HeaderText     = "Harga";
     gridViewDecimalColumn20.Maximum        = new decimal(new int[] {
         1000,
         0,
         0,
         0
     });
     gridViewDecimalColumn20.Minimum = new decimal(new int[] {
         0,
         0,
         0,
         0
     });
     gridViewDecimalColumn20.Name               = "Harga";
     gridViewDecimalColumn20.TextAlignment      = System.Drawing.ContentAlignment.MiddleRight;
     gridViewDecimalColumn20.ThousandsSeparator = true;
     gridViewDecimalColumn20.Width              = 100;
     gridViewCalculatorColumn7.Expression       = "=quantity * harga";
     gridViewCalculatorColumn7.FormatString     = "{0:Rp #,##0.00}";
     gridViewCalculatorColumn7.HeaderText       = "Total";
     gridViewCalculatorColumn7.Name             = "Total";
     gridViewCalculatorColumn7.TextAlignment    = System.Drawing.ContentAlignment.MiddleRight;
     gridViewCalculatorColumn7.Width            = 130;
     gridViewTextBoxColumn39.FieldName          = "keterangan";
     gridViewTextBoxColumn39.HeaderText         = "Keterangan";
     gridViewTextBoxColumn39.Name               = "keterangan";
     gridViewTextBoxColumn39.Width              = 110;
     gridViewComboBoxColumn14.DisplayMember     = "Short";
     gridViewComboBoxColumn14.FieldName         = "unitid";
     gridViewComboBoxColumn14.FormatString      = "";
     gridViewComboBoxColumn14.HeaderText        = "";
     gridViewComboBoxColumn14.IsPinned          = true;
     gridViewComboBoxColumn14.IsVisible         = false;
     gridViewComboBoxColumn14.Name              = "unitid";
     gridViewComboBoxColumn14.PinPosition       = Telerik.WinControls.UI.PinnedColumnPosition.Right;
     gridViewComboBoxColumn14.ValueMember       = "unitid";
     gridViewTextBoxColumn40.FieldName          = "custtypeid";
     gridViewTextBoxColumn40.HeaderText         = "custtypeid";
     gridViewTextBoxColumn40.IsVisible          = false;
     gridViewTextBoxColumn40.Name               = "custtypeid";
     gridViewTextBoxColumn41.FieldName          = "logpelid";
     gridViewTextBoxColumn41.HeaderText         = "logpelid";
     gridViewTextBoxColumn41.Name               = "logpelid";
     gridViewTextBoxColumn42.FieldName          = "kotaid";
     gridViewTextBoxColumn42.HeaderText         = "column1";
     gridViewTextBoxColumn42.IsVisible          = false;
     gridViewTextBoxColumn42.Name               = "kotaid";
     gridViewDecimalColumn21.FieldName          = "statusid";
     gridViewDecimalColumn21.HeaderText         = "Status";
     gridViewDecimalColumn21.IsVisible          = false;
     gridViewDecimalColumn21.Name               = "statusid";
     gridViewDecimalColumn21.TextAlignment      = System.Drawing.ContentAlignment.MiddleRight;
     this.radGridView1.MasterTemplate.Columns.AddRange(new Telerik.WinControls.UI.GridViewDataColumn[] {
         gridViewTextBoxColumn37,
         gridViewTextBoxColumn38,
         gridViewDecimalColumn19,
         gridViewComboBoxColumn13,
         gridViewDecimalColumn20,
         gridViewCalculatorColumn7,
         gridViewTextBoxColumn39,
         gridViewComboBoxColumn14,
         gridViewTextBoxColumn40,
         gridViewTextBoxColumn41,
         gridViewTextBoxColumn42,
         gridViewDecimalColumn21
     });
     sortDescriptor7.PropertyName = "logpelid";
     groupDescriptor7.GroupNames.AddRange(new Telerik.WinControls.Data.SortDescriptor[] {
         sortDescriptor7
     });
     this.radGridView1.MasterTemplate.GroupDescriptors.AddRange(new Telerik.WinControls.Data.GroupDescriptor[] {
         groupDescriptor7
     });
     this.radGridView1.MasterTemplate.ShowRowHeaderColumn = false;
     this.radGridView1.Name           = "radGridView1";
     this.radGridView1.ShowGroupPanel = false;
     this.radGridView1.Size           = new System.Drawing.Size(690, 170);
     this.radGridView1.TabIndex       = 38;
     this.radGridView1.Text           = "radGridView1";
     //
     // kotaTableAdapter
     //
     this.kotaTableAdapter.ClearBeforeFill = true;
     //
     // pelTableAdapter
     //
     this.pelTableAdapter.ClearBeforeFill = true;
     //
     // vproductbaseTableAdapter
     //
     this.vproductbaseTableAdapter.ClearBeforeFill = true;
     //
     // btnNewPel
     //
     this.btnNewPel.Font     = new System.Drawing.Font("Segoe UI", 10F);
     this.btnNewPel.Location = new System.Drawing.Point(345, 33);
     this.btnNewPel.Name     = "btnNewPel";
     this.btnNewPel.Size     = new System.Drawing.Size(126, 23);
     this.btnNewPel.TabIndex = 39;
     this.btnNewPel.Text     = "&Pelanggan Baru";
     this.btnNewPel.Click   += new System.EventHandler(this.btnNewPel_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(102, 61);
     this.dtpTanggal.MaxDate       = new System.DateTime(9998, 12, 31, 0, 0, 0, 0);
     this.dtpTanggal.MinDate       = new System.DateTime(((long)(0)));
     this.dtpTanggal.Name          = "dtpTanggal";
     this.dtpTanggal.NullableValue = new System.DateTime(2012, 4, 5, 10, 40, 32, 455);
     this.dtpTanggal.NullDate      = new System.DateTime(((long)(0)));
     this.dtpTanggal.Size          = new System.Drawing.Size(179, 23);
     this.dtpTanggal.TabIndex      = 3;
     this.dtpTanggal.TabStop       = false;
     this.dtpTanggal.Text          = "05 Apr 2012";
     this.dtpTanggal.Value         = new System.DateTime(2012, 4, 5, 10, 40, 32, 455);
     //
     // chkCredit
     //
     this.chkCredit.AutoSize       = false;
     this.chkCredit.CheckAlignment = System.Drawing.ContentAlignment.MiddleRight;
     this.chkCredit.Font           = new System.Drawing.Font("Segoe UI", 10F);
     this.chkCredit.Location       = new System.Drawing.Point(7, 91);
     this.chkCredit.Name           = "chkCredit";
     this.chkCredit.Size           = new System.Drawing.Size(110, 21);
     this.chkCredit.TabIndex       = 5;
     this.chkCredit.Text           = "Credit :";
     //
     // chkKunjungan
     //
     this.chkKunjungan.AutoSize            = false;
     this.chkKunjungan.CheckAlignment      = System.Drawing.ContentAlignment.MiddleRight;
     this.chkKunjungan.Font                = new System.Drawing.Font("Segoe UI", 10F);
     this.chkKunjungan.Location            = new System.Drawing.Point(345, 63);
     this.chkKunjungan.Name                = "chkKunjungan";
     this.chkKunjungan.Size                = new System.Drawing.Size(155, 21);
     this.chkKunjungan.TabIndex            = 4;
     this.chkKunjungan.Text                = "Hanya Kunjungan :";
     this.chkKunjungan.ToggleStateChanged += new Telerik.WinControls.UI.StateChangedEventHandler(this.chkKunjungan_ToggleStateChanged);
     //
     // frmInRcnPenjualan
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize          = new System.Drawing.Size(707, 480);
     this.Controls.Add(this.chkKunjungan);
     this.Controls.Add(this.chkCredit);
     this.Controls.Add(this.dtpTanggal);
     this.Controls.Add(label3);
     this.Controls.Add(this.btnNewPel);
     this.Controls.Add(this.radGridView1);
     this.Controls.Add(this.btnCancel);
     this.Controls.Add(this.btnSimpan);
     this.Controls.Add(this.btnNext);
     this.Controls.Add(this.radGroupBox1);
     this.Controls.Add(logpelidLabel);
     this.Controls.Add(this.rddPel);
     this.Controls.Add(kotaIDLabel);
     this.Controls.Add(this.rddKota);
     this.Font            = new System.Drawing.Font("Segoe UI", 10F);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
     this.Name            = "frmInRcnPenjualan";
     //
     //
     //
     this.RootElement.ApplyShapeToControl = true;
     this.Text      = "Input Rincian Penjualan";
     this.ThemeName = "ControlDefault";
     this.Load     += new System.EventHandler(this.frmInRcnPenjualan_Load);
     ((System.ComponentModel.ISupportInitialize)(this.vproductbaseBindingSource)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.sinarekDataSet)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.logotherBindingSource)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtQuantity)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.rddProduct)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtPrice)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.rddPel)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.pelBindingSource)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.rddKota)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.kotaBindingSource)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radGroupBox1)).EndInit();
     this.radGroupBox1.ResumeLayout(false);
     this.radGroupBox1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.chkTukar)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtKeterangan)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtNota)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.btnAdd)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.btnCancel)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.btnSimpan)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.btnNext)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radGridView1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.btnNewPel)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dtpTanggal)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chkCredit)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chkKunjungan)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this)).EndInit();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Example #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.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);
 }
Example #48
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.GridViewComboBoxColumn  gridViewComboBoxColumn1 = new Telerik.WinControls.UI.GridViewComboBoxColumn();
     Telerik.WinControls.UI.GridViewTextBoxColumn   gridViewTextBoxColumn3  = new Telerik.WinControls.UI.GridViewTextBoxColumn();
     Telerik.WinControls.UI.GridViewComboBoxColumn  gridViewComboBoxColumn2 = new Telerik.WinControls.UI.GridViewComboBoxColumn();
     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.Data.SortDescriptor        sortDescriptor1         = new Telerik.WinControls.Data.SortDescriptor();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Mante_ProductoEquivalente));
     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();
     ((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();
     ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
     this.SuspendLayout();
     //
     // 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(12, 232);
     //
     // radGridView6
     //
     this.radGridView6.MasterTemplate.AllowColumnChooser  = false;
     this.radGridView6.MasterTemplate.AllowColumnReorder  = false;
     this.radGridView6.MasterTemplate.AllowColumnResize   = false;
     this.radGridView6.MasterTemplate.AllowDragToGroup    = false;
     this.radGridView6.MasterTemplate.AllowRowResize      = false;
     this.radGridView6.MasterTemplate.AutoGenerateColumns = false;
     gridViewTextBoxColumn1.EnableExpressionEditor        = false;
     gridViewTextBoxColumn1.FormatString            = "";
     gridViewTextBoxColumn1.HeaderText              = "Codigo Producto Distribuidor";
     gridViewTextBoxColumn1.Name                    = "clCodProdDist";
     gridViewTextBoxColumn1.Width                   = 222;
     gridViewTextBoxColumn2.EnableExpressionEditor  = false;
     gridViewTextBoxColumn2.FormatString            = "";
     gridViewTextBoxColumn2.HeaderText              = "Nombre Producto Distribuidor";
     gridViewTextBoxColumn2.Name                    = "clNomProDist";
     gridViewTextBoxColumn2.Width                   = 209;
     gridViewComboBoxColumn1.DisplayMember          = null;
     gridViewComboBoxColumn1.EnableExpressionEditor = false;
     gridViewComboBoxColumn1.FormatString           = "";
     gridViewComboBoxColumn1.HeaderText             = "Codigo Producto SAP";
     gridViewComboBoxColumn1.Name                   = "clCodProSap";
     gridViewComboBoxColumn1.ValueMember            = null;
     gridViewComboBoxColumn1.Width                  = 180;
     gridViewTextBoxColumn3.EnableExpressionEditor  = false;
     gridViewTextBoxColumn3.FormatString            = "";
     gridViewTextBoxColumn3.HeaderText              = "Nombre Prodcuto SAP";
     gridViewTextBoxColumn3.Name                    = "clNomSap";
     gridViewTextBoxColumn3.Width                   = 192;
     gridViewComboBoxColumn2.DisplayMember          = null;
     gridViewComboBoxColumn2.EnableExpressionEditor = false;
     gridViewComboBoxColumn2.FormatString           = "";
     gridViewComboBoxColumn2.HeaderText             = "Tipo Medida";
     gridViewComboBoxColumn2.Name                   = "clTipoMed";
     gridViewComboBoxColumn2.ValueMember            = null;
     gridViewComboBoxColumn2.Width                  = 114;
     gridViewTextBoxColumn4.EnableExpressionEditor  = false;
     gridViewTextBoxColumn4.FormatString            = "";
     gridViewTextBoxColumn4.HeaderText              = "Cantidad";
     gridViewTextBoxColumn4.Name                    = "clCanti";
     gridViewTextBoxColumn4.Width                   = 112;
     gridViewTextBoxColumn5.EnableExpressionEditor  = false;
     gridViewTextBoxColumn5.FormatString            = "";
     gridViewTextBoxColumn5.HeaderText              = "VC";
     gridViewTextBoxColumn5.Name                    = "clVC";
     gridViewTextBoxColumn5.Width                   = 59;
     gridViewTextBoxColumn6.EnableExpressionEditor  = false;
     gridViewTextBoxColumn6.FormatString            = "";
     gridViewTextBoxColumn6.HeaderText              = "Resultado";
     gridViewTextBoxColumn6.Name                    = "clResultado";
     gridViewTextBoxColumn6.Width                   = 88;
     this.radGridView6.MasterTemplate.Columns.AddRange(new Telerik.WinControls.UI.GridViewDataColumn[] {
         gridViewTextBoxColumn1,
         gridViewTextBoxColumn2,
         gridViewComboBoxColumn1,
         gridViewTextBoxColumn3,
         gridViewComboBoxColumn2,
         gridViewTextBoxColumn4,
         gridViewTextBoxColumn5,
         gridViewTextBoxColumn6
     });
     this.radGridView6.MasterTemplate.EnableGrouping = false;
     sortDescriptor1.PropertyName = "column3";
     this.radGridView6.MasterTemplate.SortDescriptors.AddRange(new Telerik.WinControls.Data.SortDescriptor[] {
         sortDescriptor1
     });
     this.radGridView6.Name           = "radGridView6";
     this.radGridView6.RightToLeft    = System.Windows.Forms.RightToLeft.No;
     this.radGridView6.ShowGroupPanel = false;
     this.radGridView6.Size           = new System.Drawing.Size(1192, 532);
     this.radGridView6.TabIndex       = 5;
     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(12, 23);
     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(566, 167);
     this.radGroupBox8.TabIndex  = 4;
     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, 16);
     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(64, 16);
     this.radLabel15.TabIndex = 1;
     this.radLabel15.Text     = "Distribuidor";
     //
     // Mante_ProductoEquivalente
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize          = new System.Drawing.Size(1420, 787);
     this.Controls.Add(this.radGridView6);
     this.Controls.Add(this.radGroupBox8);
     this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.Name = "Mante_ProductoEquivalente";
     //
     //
     //
     this.RootElement.ApplyShapeToControl = true;
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text          = "Mantenimiento Producto Equivalente";
     this.ThemeName     = "TelerikMetroBlue";
     this.WindowState   = System.Windows.Forms.FormWindowState.Maximized;
     ((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();
     ((System.ComponentModel.ISupportInitialize)(this)).EndInit();
     this.ResumeLayout(false);
 }
Example #49
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    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();
 }
        /// <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.GridViewComboBoxColumn gridViewComboBoxColumn1 = new Telerik.WinControls.UI.GridViewComboBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn3 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewComboBoxColumn gridViewComboBoxColumn2 = new Telerik.WinControls.UI.GridViewComboBoxColumn();
            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.Data.SortDescriptor sortDescriptor1 = new Telerik.WinControls.Data.SortDescriptor();
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Mante_ProductoEquivalente));
            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();
            ((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();
            ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
            this.SuspendLayout();
            // 
            // 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(12, 232);
            // 
            // radGridView6
            // 
            this.radGridView6.MasterTemplate.AllowColumnChooser = false;
            this.radGridView6.MasterTemplate.AllowColumnReorder = false;
            this.radGridView6.MasterTemplate.AllowColumnResize = false;
            this.radGridView6.MasterTemplate.AllowDragToGroup = false;
            this.radGridView6.MasterTemplate.AllowRowResize = false;
            this.radGridView6.MasterTemplate.AutoGenerateColumns = false;
            gridViewTextBoxColumn1.EnableExpressionEditor = false;
            gridViewTextBoxColumn1.FormatString = "";
            gridViewTextBoxColumn1.HeaderText = "Codigo Producto Distribuidor";
            gridViewTextBoxColumn1.Name = "clCodProdDist";
            gridViewTextBoxColumn1.Width = 222;
            gridViewTextBoxColumn2.EnableExpressionEditor = false;
            gridViewTextBoxColumn2.FormatString = "";
            gridViewTextBoxColumn2.HeaderText = "Nombre Producto Distribuidor";
            gridViewTextBoxColumn2.Name = "clNomProDist";
            gridViewTextBoxColumn2.Width = 209;
            gridViewComboBoxColumn1.DisplayMember = null;
            gridViewComboBoxColumn1.EnableExpressionEditor = false;
            gridViewComboBoxColumn1.FormatString = "";
            gridViewComboBoxColumn1.HeaderText = "Codigo Producto SAP";
            gridViewComboBoxColumn1.Name = "clCodProSap";
            gridViewComboBoxColumn1.ValueMember = null;
            gridViewComboBoxColumn1.Width = 180;
            gridViewTextBoxColumn3.EnableExpressionEditor = false;
            gridViewTextBoxColumn3.FormatString = "";
            gridViewTextBoxColumn3.HeaderText = "Nombre Prodcuto SAP";
            gridViewTextBoxColumn3.Name = "clNomSap";
            gridViewTextBoxColumn3.Width = 192;
            gridViewComboBoxColumn2.DisplayMember = null;
            gridViewComboBoxColumn2.EnableExpressionEditor = false;
            gridViewComboBoxColumn2.FormatString = "";
            gridViewComboBoxColumn2.HeaderText = "Tipo Medida";
            gridViewComboBoxColumn2.Name = "clTipoMed";
            gridViewComboBoxColumn2.ValueMember = null;
            gridViewComboBoxColumn2.Width = 114;
            gridViewTextBoxColumn4.EnableExpressionEditor = false;
            gridViewTextBoxColumn4.FormatString = "";
            gridViewTextBoxColumn4.HeaderText = "Cantidad";
            gridViewTextBoxColumn4.Name = "clCanti";
            gridViewTextBoxColumn4.Width = 112;
            gridViewTextBoxColumn5.EnableExpressionEditor = false;
            gridViewTextBoxColumn5.FormatString = "";
            gridViewTextBoxColumn5.HeaderText = "VC";
            gridViewTextBoxColumn5.Name = "clVC";
            gridViewTextBoxColumn5.Width = 59;
            gridViewTextBoxColumn6.EnableExpressionEditor = false;
            gridViewTextBoxColumn6.FormatString = "";
            gridViewTextBoxColumn6.HeaderText = "Resultado";
            gridViewTextBoxColumn6.Name = "clResultado";
            gridViewTextBoxColumn6.Width = 88;
            this.radGridView6.MasterTemplate.Columns.AddRange(new Telerik.WinControls.UI.GridViewDataColumn[] {
            gridViewTextBoxColumn1,
            gridViewTextBoxColumn2,
            gridViewComboBoxColumn1,
            gridViewTextBoxColumn3,
            gridViewComboBoxColumn2,
            gridViewTextBoxColumn4,
            gridViewTextBoxColumn5,
            gridViewTextBoxColumn6});
            this.radGridView6.MasterTemplate.EnableGrouping = false;
            sortDescriptor1.PropertyName = "column3";
            this.radGridView6.MasterTemplate.SortDescriptors.AddRange(new Telerik.WinControls.Data.SortDescriptor[] {
            sortDescriptor1});
            this.radGridView6.Name = "radGridView6";
            this.radGridView6.RightToLeft = System.Windows.Forms.RightToLeft.No;
            this.radGridView6.ShowGroupPanel = false;
            this.radGridView6.Size = new System.Drawing.Size(1192, 532);
            this.radGridView6.TabIndex = 5;
            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(12, 23);
            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(566, 167);
            this.radGroupBox8.TabIndex = 4;
            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, 16);
            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(64, 16);
            this.radLabel15.TabIndex = 1;
            this.radLabel15.Text = "Distribuidor";
            // 
            // Mante_ProductoEquivalente
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.ClientSize = new System.Drawing.Size(1420, 787);
            this.Controls.Add(this.radGridView6);
            this.Controls.Add(this.radGroupBox8);
            this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
            this.Name = "Mante_ProductoEquivalente";
            // 
            // 
            // 
            this.RootElement.ApplyShapeToControl = true;
            this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
            this.Text = "Mantenimiento Producto Equivalente";
            this.ThemeName = "TelerikMetroBlue";
            this.WindowState = System.Windows.Forms.FormWindowState.Maximized;
            ((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();
            ((System.ComponentModel.ISupportInitialize)(this)).EndInit();
            this.ResumeLayout(false);

        }